bluetooth: Add support for Media API
[profile/ivi/pulseaudio-panda.git] / src / modules / bluetooth / bluetooth-util.h
1 #ifndef foobluetoothutilhfoo
2 #define foobluetoothutilhfoo
3
4 /***
5   This file is part of PulseAudio.
6
7   Copyright 2008-2009 Joao Paulo Rechi Vita
8
9   PulseAudio is free software; you can redistribute it and/or modify
10   it under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13
14   PulseAudio is distributed in the hope that it will be useful, but
15   WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17   General Public License for more details.
18
19   You should have received a copy of the GNU Lesser General Public
20   License along with PulseAudio; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 #include <dbus/dbus.h>
26
27 #include <pulsecore/llist.h>
28 #include <pulsecore/strlist.h>
29 #include <pulsecore/macro.h>
30 #include <pulsecore/core-util.h>
31
32 /* UUID copied from bluez/audio/device.h */
33 #define GENERIC_AUDIO_UUID      "00001203-0000-1000-8000-00805F9B34FB"
34
35 #define HSP_HS_UUID             "00001108-0000-1000-8000-00805F9B34FB"
36 #define HSP_AG_UUID             "00001112-0000-1000-8000-00805F9B34FB"
37
38 #define HFP_HS_UUID             "0000111E-0000-1000-8000-00805F9B34FB"
39 #define HFP_AG_UUID             "0000111F-0000-1000-8000-00805F9B34FB"
40
41 #define ADVANCED_AUDIO_UUID     "0000110D-0000-1000-8000-00805F9B34FB"
42
43 #define A2DP_SOURCE_UUID        "0000110A-0000-1000-8000-00805F9B34FB"
44 #define A2DP_SINK_UUID          "0000110B-0000-1000-8000-00805F9B34FB"
45
46 typedef struct pa_bluetooth_uuid pa_bluetooth_uuid;
47 typedef struct pa_bluetooth_device pa_bluetooth_device;
48 typedef struct pa_bluetooth_discovery pa_bluetooth_discovery;
49 typedef struct pa_bluetooth_transport pa_bluetooth_transport;
50
51 struct userdata;
52
53 struct pa_bluetooth_uuid {
54     char *uuid;
55     PA_LLIST_FIELDS(pa_bluetooth_uuid);
56 };
57
58 enum profile {
59     PROFILE_A2DP,
60     PROFILE_A2DP_SOURCE,
61     PROFILE_HSP,
62     PROFILE_HFGW,
63     PROFILE_OFF
64 };
65
66 struct pa_bluetooth_transport {
67     pa_bluetooth_discovery *y;
68     char *path;
69     enum profile profile;
70     uint8_t codec;
71     uint8_t *config;
72     int config_size;
73 };
74
75 /* This enum is shared among Audio, Headset, AudioSink, and AudioSource, although not all values are acceptable in all profiles */
76 typedef enum pa_bt_audio_state {
77     PA_BT_AUDIO_STATE_INVALID = -1,
78     PA_BT_AUDIO_STATE_DISCONNECTED,
79     PA_BT_AUDIO_STATE_CONNECTING,
80     PA_BT_AUDIO_STATE_CONNECTED,
81     PA_BT_AUDIO_STATE_PLAYING
82 } pa_bt_audio_state_t;
83
84 struct pa_bluetooth_device {
85     pa_bool_t dead;
86
87     int device_info_valid;      /* 0: no results yet; 1: good results; -1: bad results ... */
88
89     /* Device information */
90     char *name;
91     char *path;
92     pa_hashmap *transports;
93     int paired;
94     char *alias;
95     int device_connected;
96     PA_LLIST_HEAD(pa_bluetooth_uuid, uuids);
97     char *address;
98     int class;
99     int trusted;
100
101     /* Audio state */
102     pa_bt_audio_state_t audio_state;
103
104     /* AudioSink state */
105     pa_bt_audio_state_t audio_sink_state;
106
107     /* AudioSource state */
108     pa_bt_audio_state_t audio_source_state;
109
110     /* Headset state */
111     pa_bt_audio_state_t headset_state;
112
113     /* HandsfreeGateway state */
114     pa_bt_audio_state_t hfgw_state;
115 };
116
117 pa_bluetooth_discovery* pa_bluetooth_discovery_get(pa_core *core);
118 pa_bluetooth_discovery* pa_bluetooth_discovery_ref(pa_bluetooth_discovery *y);
119 void pa_bluetooth_discovery_unref(pa_bluetooth_discovery *d);
120
121 void pa_bluetooth_discovery_sync(pa_bluetooth_discovery *d);
122
123 const pa_bluetooth_device* pa_bluetooth_discovery_get_by_path(pa_bluetooth_discovery *d, const char* path);
124 const pa_bluetooth_device* pa_bluetooth_discovery_get_by_address(pa_bluetooth_discovery *d, const char* address);
125
126 const pa_bluetooth_transport* pa_bluetooth_discovery_get_transport(pa_bluetooth_discovery *y, const char *path);
127 const pa_bluetooth_transport* pa_bluetooth_device_get_transport(const pa_bluetooth_device *d, enum profile profile);
128
129 int pa_bluetooth_transport_acquire(const pa_bluetooth_transport *t, const char *accesstype);
130 void pa_bluetooth_transport_release(const pa_bluetooth_transport *t, const char *accesstype);
131
132 pa_hook* pa_bluetooth_discovery_hook(pa_bluetooth_discovery *d);
133
134 const char* pa_bluetooth_get_form_factor(uint32_t class);
135
136 char *pa_bluetooth_cleanup_name(const char *name);
137
138 pa_bool_t pa_bluetooth_uuid_has(pa_bluetooth_uuid *uuids, const char *uuid);
139
140 #endif