summaryrefslogtreecommitdiff
path: root/health/hdp_manager.c
blob: 88b49fc64aa3f6cea9229831d37b93ae33615669 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos.
 *  Authors:
 *  Santiago Carot Nemesio <sancane at gmail.com>
 *  Jose Antonio Santos-Cadenas <santoscadenas at gmail.com>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <bluetooth/sdp.h>
#include <bluetooth/sdp_lib.h>

#include <btio.h>
#include <adapter.h>
#include <device.h>

#include "hdp_types.h"

#include "log.h"
#include "hdp_manager.h"
#include "hdp.h"

#include "glib-helper.h"

static DBusConnection *connection = NULL;

static int hdp_adapter_probe(struct btd_adapter *adapter)
{
	return hdp_adapter_register(connection, adapter);
}

static void hdp_adapter_remove(struct btd_adapter *adapter)
{
	hdp_adapter_unregister(adapter);
}

static struct btd_adapter_driver hdp_adapter_driver = {
	.name	= "hdp-adapter-driver",
	.probe	= hdp_adapter_probe,
	.remove	= hdp_adapter_remove,
};

static int hdp_driver_probe(struct btd_device *device, GSList *uuids)
{
	return hdp_device_register(connection, device);
}

static void hdp_driver_remove(struct btd_device *device)
{
	hdp_device_unregister(device);
}

static struct btd_device_driver hdp_device_driver = {
	.name	= "hdp-device-driver",
	.uuids	= BTD_UUIDS(HDP_UUID, HDP_SOURCE_UUID, HDP_SINK_UUID),
	.probe	= hdp_driver_probe,
	.remove	= hdp_driver_remove
};

int hdp_manager_init(DBusConnection *conn)
{
	if (hdp_manager_start(conn))
		return -1;

	connection = dbus_connection_ref(conn);
	btd_register_adapter_driver(&hdp_adapter_driver);
	btd_register_device_driver(&hdp_device_driver);

	return 0;
}

void hdp_manager_exit(void)
{
	btd_unregister_device_driver(&hdp_device_driver);
	btd_unregister_adapter_driver(&hdp_adapter_driver);
	hdp_manager_stop();

	dbus_connection_unref(connection);
	connection = NULL;
}