blob: 3e260b333a83e6db511ae8505cf0d981d2b1460c [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
Hemant Gupta41d4a262013-08-19 18:33:01 +05303 * Copyright (c) 2014 The Android Open Source Project
The Android Open Source Project5738f832012-12-12 16:00:35 -08004 * Copyright (C) 2009-2012 Broadcom Corporation
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 ******************************************************************************/
19
20#ifndef BTIF_UTIL_H
21#define BTIF_UTIL_H
22
23#include <hardware/bluetooth.h>
24#include <hardware/bt_hf.h>
Sharvil Nanavati8c65ba92014-08-15 16:14:26 -070025#include <stdbool.h>
Ganesh Ganapathi Battaead3cde2013-02-05 15:22:31 -080026#include <sys/time.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080027
The Android Open Source Project5738f832012-12-12 16:00:35 -080028#include "bt_types.h"
Mike J. Chen60126e42014-01-31 18:13:09 -080029#include "bt_utils.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080030
31/*******************************************************************************
32** Constants & Macros
33********************************************************************************/
34
35#define CASE_RETURN_STR(const) case const: return #const;
36
37
38/*******************************************************************************
39** Type definitions for callback functions
40********************************************************************************/
41
The Android Open Source Project5738f832012-12-12 16:00:35 -080042/*******************************************************************************
43** Functions
44********************************************************************************/
45
46const char* dump_bt_status(bt_status_t status);
Marie Janssenb7f64bc2016-06-22 12:52:19 -070047const char* dump_dm_search_event(uint16_t event);
48const char* dump_dm_event(uint16_t event);
49const char* dump_hf_event(uint16_t event);
50const char* dump_hf_client_event(uint16_t event);
51const char* dump_hh_event(uint16_t event);
52const char* dump_hf_conn_state(uint16_t event);
The Android Open Source Project5738f832012-12-12 16:00:35 -080053const char* dump_hf_call_state(bthf_call_state_t call_state);
54const char* dump_property_type(bt_property_type_t type);
Marie Janssenb7f64bc2016-06-22 12:52:19 -070055const char* dump_hf_audio_state(uint16_t event);
The Android Open Source Project5738f832012-12-12 16:00:35 -080056const char* dump_adapter_scan_mode(bt_scan_mode_t mode);
57const char* dump_thread_evt(bt_cb_thread_evt evt);
Marie Janssenb7f64bc2016-06-22 12:52:19 -070058const char* dump_av_conn_state(uint16_t event);
59const char* dump_av_audio_state(uint16_t event);
60const char* dump_rc_event(uint8_t event);
61const char* dump_rc_notification_event_id(uint8_t event_id);
62const char* dump_rc_pdu(uint8_t pdu);
The Android Open Source Project5738f832012-12-12 16:00:35 -080063
Marie Janssenb7f64bc2016-06-22 12:52:19 -070064uint32_t devclass2uint(DEV_CLASS dev_class);
65void uint2devclass(uint32_t dev, DEV_CLASS dev_class);
The Android Open Source Project5738f832012-12-12 16:00:35 -080066void uuid16_to_uuid128(uint16_t uuid16, bt_uuid_t* uuid128);
67
Andre Eisenbach16856642016-01-29 16:11:13 -080068// Takes a |str| containing a 128-bit GUID formatted UUID and stores the
69// result in |p_uuid|. |str| must be formatted in this format:
70// "12345678-1234-1234-1234-123456789012"
71// |p_uuid| cannot be null. Returns true if parsing was successful, false
72// otherwise. Returns false if |str| is null.
73bool string_to_uuid(const char *str, bt_uuid_t *p_uuid);
74
Marie Janssenb7f64bc2016-06-22 12:52:19 -070075int ascii_2_hex (const char *p_ascii, int len, uint8_t *p_hex);
The Android Open Source Project5738f832012-12-12 16:00:35 -080076
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -070077void uuid_to_string_legacy(bt_uuid_t *p_uuid, char *str, size_t str_len);
Jakub Pawlowski713993d2016-04-21 13:16:45 -070078
The Android Open Source Project5738f832012-12-12 16:00:35 -080079#endif /* BTIF_UTIL_H */