Initialize Tizen 2.3
[framework/connectivity/bluez.git] / wearable / deviceinfo / main.c
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2012 Texas Instruments, Inc.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <glib.h>
28 #include <errno.h>
29 #include <stdint.h>
30
31 #include "plugin.h"
32 #include "manager.h"
33 #include "hcid.h"
34 #include "log.h"
35
36 static int deviceinfo_init(void)
37 {
38         if (!main_opts.gatt_enabled) {
39                 error("DIS cannot start: GATT is disabled");
40                 return -ENOTSUP;
41         }
42
43         return deviceinfo_manager_init();
44 }
45
46 static void deviceinfo_exit(void)
47 {
48         deviceinfo_manager_exit();
49 }
50
51 BLUETOOTH_PLUGIN_DEFINE(deviceinfo, VERSION, BLUETOOTH_PLUGIN_PRIORITY_DEFAULT,
52                                         deviceinfo_init, deviceinfo_exit)