132 lines
2.9 KiB
C
132 lines
2.9 KiB
C
/*
|
|
* Copyright (C) 2013 Intel Corporation
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include "if-main.h"
|
|
#include "../hal-utils.h"
|
|
|
|
const btav_interface_t *if_av = NULL;
|
|
|
|
SINTMAP(btav_connection_state_t, -1, "(unknown)")
|
|
DELEMENT(BTAV_CONNECTION_STATE_DISCONNECTED),
|
|
DELEMENT(BTAV_CONNECTION_STATE_CONNECTING),
|
|
DELEMENT(BTAV_CONNECTION_STATE_CONNECTED),
|
|
DELEMENT(BTAV_CONNECTION_STATE_DISCONNECTING),
|
|
ENDMAP
|
|
|
|
SINTMAP(btav_audio_state_t, -1, "(unknown)")
|
|
DELEMENT(BTAV_AUDIO_STATE_REMOTE_SUSPEND),
|
|
DELEMENT(BTAV_AUDIO_STATE_STOPPED),
|
|
DELEMENT(BTAV_AUDIO_STATE_STARTED),
|
|
ENDMAP
|
|
|
|
static char last_addr[MAX_ADDR_STR_LEN];
|
|
|
|
static void connection_state(btav_connection_state_t state,
|
|
bt_bdaddr_t *bd_addr)
|
|
{
|
|
haltest_info("%s: connection_state=%s remote_bd_addr=%s\n", __func__,
|
|
btav_connection_state_t2str(state),
|
|
bt_bdaddr_t2str(bd_addr, last_addr));
|
|
}
|
|
|
|
static void audio_state(btav_audio_state_t state, bt_bdaddr_t *bd_addr)
|
|
{
|
|
haltest_info("%s: audio_state=%s remote_bd_addr=%s\n", __func__,
|
|
btav_audio_state_t2str(state),
|
|
bt_bdaddr_t2str(bd_addr, last_addr));
|
|
}
|
|
|
|
static btav_callbacks_t av_cbacks = {
|
|
.size = sizeof(av_cbacks),
|
|
.connection_state_cb = connection_state,
|
|
.audio_state_cb = audio_state
|
|
};
|
|
|
|
/* init */
|
|
|
|
static void init_p(int argc, const char **argv)
|
|
{
|
|
RETURN_IF_NULL(if_av);
|
|
|
|
EXEC(if_av->init, &av_cbacks);
|
|
}
|
|
|
|
/* connect */
|
|
|
|
static void connect_c(int argc, const char **argv, enum_func *enum_func,
|
|
void **user)
|
|
{
|
|
if (argc == 3) {
|
|
*user = NULL;
|
|
*enum_func = enum_devices;
|
|
}
|
|
}
|
|
|
|
static void connect_p(int argc, const char **argv)
|
|
{
|
|
bt_bdaddr_t addr;
|
|
|
|
RETURN_IF_NULL(if_av);
|
|
VERIFY_ADDR_ARG(2, &addr);
|
|
|
|
EXEC(if_av->connect, &addr);
|
|
}
|
|
|
|
/* disconnect */
|
|
|
|
static void disconnect_c(int argc, const char **argv, enum_func *enum_func,
|
|
void **user)
|
|
{
|
|
if (argc == 3) {
|
|
*user = last_addr;
|
|
*enum_func = enum_one_string;
|
|
}
|
|
}
|
|
|
|
static void disconnect_p(int argc, const char **argv)
|
|
{
|
|
bt_bdaddr_t addr;
|
|
|
|
RETURN_IF_NULL(if_av);
|
|
VERIFY_ADDR_ARG(2, &addr);
|
|
|
|
EXEC(if_av->disconnect, &addr);
|
|
}
|
|
|
|
/* cleanup */
|
|
|
|
static void cleanup_p(int argc, const char **argv)
|
|
{
|
|
RETURN_IF_NULL(if_av);
|
|
|
|
EXECV(if_av->cleanup);
|
|
if_av = NULL;
|
|
}
|
|
|
|
static struct method methods[] = {
|
|
STD_METHOD(init),
|
|
STD_METHODCH(connect, "<addr>"),
|
|
STD_METHODCH(disconnect, "<addr>"),
|
|
STD_METHOD(cleanup),
|
|
END_METHOD
|
|
};
|
|
|
|
const struct interface av_if = {
|
|
.name = "av",
|
|
.methods = methods
|
|
};
|