Tizen 2.0 Release
[framework/connectivity/bluez.git] / emulator / main.c
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2011-2012  Intel Corporation
6  *  Copyright (C) 2004-2010  Marcel Holtmann <marcel@holtmann.org>
7  *
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include <stdio.h>
30
31 #include "mainloop.h"
32 #include "server.h"
33 #include "vhci.h"
34
35 static void signal_callback(int signum, void *user_data)
36 {
37         switch (signum) {
38         case SIGINT:
39         case SIGTERM:
40                 mainloop_quit();
41                 break;
42         }
43 }
44
45 int main(int argc, char *argv[])
46 {
47         struct vhci *vhci;
48         struct server *server;
49         sigset_t mask;
50
51         mainloop_init();
52
53         sigemptyset(&mask);
54         sigaddset(&mask, SIGINT);
55         sigaddset(&mask, SIGTERM);
56
57         mainloop_set_signal(&mask, signal_callback, NULL, NULL);
58
59         vhci = vhci_open(VHCI_TYPE_BREDR, 0x23);
60         if (!vhci) {
61                 fprintf(stderr, "Failed to open Virtual HCI device\n");
62                 return 1;
63         }
64
65         server = server_open_unix("/tmp/bt-server-bredr", 0x42);
66         if (!server) {
67                 fprintf(stderr, "Failed to open server channel\n");
68                 vhci_close(vhci);
69                 return 1;
70         }
71
72         return mainloop_run();
73 }