blob: 7be8d7f4f9e584a90bcf7177de758321c3e6f2b1 [file] [log] [blame]
/*
* Copyright 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.bluetooth.a2dp;
import android.bluetooth.BluetoothCodecStatus;
import android.bluetooth.BluetoothDevice;
/**
* Stack event sent via a callback from JNI to Java, or generated
* internally by the A2DP State Machine.
*/
public class A2dpStackEvent {
// Event types for STACK_EVENT message (coming from native)
private static final int EVENT_TYPE_NONE = 0;
public static final int EVENT_TYPE_CONNECTION_STATE_CHANGED = 1;
public static final int EVENT_TYPE_AUDIO_STATE_CHANGED = 2;
public static final int EVENT_TYPE_CODEC_CONFIG_CHANGED = 3;
public int type = EVENT_TYPE_NONE;
public BluetoothDevice device = null;
public int valueInt = 0;
public BluetoothCodecStatus codecStatus = null;
A2dpStackEvent(int type) {
this.type = type;
}
@Override
public String toString() {
// event dump
StringBuilder result = new StringBuilder();
result.append("A2dpStackEvent {type:" + eventTypeToString(type));
result.append(", device:" + device);
result.append(", value1:" + valueInt);
if (codecStatus != null) {
result.append(", codecStatus:" + codecStatus);
}
result.append("}");
return result.toString();
}
// for debugging only
private static String eventTypeToString(int type) {
switch (type) {
case EVENT_TYPE_NONE:
return "EVENT_TYPE_NONE";
case EVENT_TYPE_CONNECTION_STATE_CHANGED:
return "EVENT_TYPE_CONNECTION_STATE_CHANGED";
case EVENT_TYPE_AUDIO_STATE_CHANGED:
return "EVENT_TYPE_AUDIO_STATE_CHANGED";
case EVENT_TYPE_CODEC_CONFIG_CHANGED:
return "EVENT_TYPE_CODEC_CONFIG_CHANGED";
default:
return "EVENT_TYPE_UNKNOWN:" + type;
}
}
}