summaryrefslogtreecommitdiffstats
path: root/plugins/bluez4.h
blob: 3b60cbac299bfb437394d4b2c0b768ae14106609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
 *
 *  oFono - Open Source Telephony
 *
 *  Copyright (C) 2010  Gustavo F. Padovan <gustavo@padovan.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#include <ofono/modem.h>
#include <ofono/dbus.h>

#define	BLUEZ_SERVICE "org.bluez"
#define	BLUEZ_MANAGER_INTERFACE		BLUEZ_SERVICE ".Manager"
#define	BLUEZ_ADAPTER_INTERFACE		BLUEZ_SERVICE ".Adapter"
#define	BLUEZ_DEVICE_INTERFACE		BLUEZ_SERVICE ".Device"
#define	BLUEZ_SERVICE_INTERFACE		BLUEZ_SERVICE ".Service"
#define BLUEZ_SERIAL_INTERFACE		BLUEZ_SERVICE ".Serial"

#define DBUS_TIMEOUT 60

#define DUN_GW_UUID	"00001103-0000-1000-8000-00805f9b34fb"
#define HFP_AG_UUID	"0000111f-0000-1000-8000-00805f9b34fb"
#define HFP_HS_UUID	"0000111e-0000-1000-8000-00805f9b34fb"
#define SAP_UUID	"0000112d-0000-1000-8000-00805f9b34fb"

struct bluetooth_profile {
	const char *name;
	int (*probe)(const char *device, const char *dev_addr,
			const char *adapter_addr, const char *alias);
	void (*remove)(const char *prefix);
	void (*set_alias)(const char *device, const char *);
};

struct bluetooth_sap_driver {
	const char *name;
	int (*enable) (struct ofono_modem *modem, struct ofono_modem *sap_modem,
								int bt_fd);
	void (*pre_sim) (struct ofono_modem *modem);
	void (*post_sim) (struct ofono_modem *modem);
	void (*set_online) (struct ofono_modem *modem, ofono_bool_t online,
				ofono_modem_online_cb_t cb, void *user_data);
	void (*post_online) (struct ofono_modem *modem);
	int (*disable) (struct ofono_modem *modem);
};

struct server;

typedef void (*ConnectFunc)(GIOChannel *io, GError *err, gpointer user_data);

void bluetooth_get_properties();
int bluetooth_register_uuid(const char *uuid,
				struct bluetooth_profile *profile);
void bluetooth_unregister_uuid(const char *uuid);

struct server *bluetooth_register_server(guint8 channel, const char *sdp_record,
					ConnectFunc cb, gpointer user_data);
void bluetooth_unregister_server(struct server *server);

void bluetooth_create_path(const char *dev_addr, const char *adapter_addr,
							char *buf, int size);

int bluetooth_send_with_reply(const char *path, const char *interface,
				const char *method, DBusPendingCall **call,
				DBusPendingCallNotifyFunction cb,
				void *user_data, DBusFreeFunction free_func,
				int timeout, int type, ...);
void bluetooth_parse_properties(DBusMessage *reply, const char *property, ...);

int bluetooth_sap_client_register(struct bluetooth_sap_driver *sap,
					struct ofono_modem *modem);
void bluetooth_sap_client_unregister(struct ofono_modem *modem);