3f846da06d0382423433ea2b654b59b952a2b77e
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / bt-service-main.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <glib.h>
19 #include <dlog.h>
20 #include <string.h>
21 #include <vconf.h>
22
23 #include <bundle.h>
24 #include <eventsystem.h>
25
26 #include "bt-internal-types.h"
27 #include "bt-service-common.h"
28 #include "bt-request-handler.h"
29 #include "bt-service-obex-event.h"
30 #ifdef TIZEN_FEATURE_BT_PAN_NAP
31 #include "bt-service-pan-nap-event.h"
32 #endif
33 #include "bt-service-event.h"
34 #include "bt-service-util.h"
35
36 #include "bt-service-core-adapter.h"
37 #include "bt-service-core-adapter-le.h"
38
39
40
41 /* OAL headers */
42 #include <oal-event.h>
43 #include <oal-manager.h>
44
45 static GMainLoop *main_loop;
46 static gboolean terminated = FALSE;
47 static gboolean is_initialized = FALSE;
48
49 static void __on_log_glib(const gchar *log_domain, GLogLevelFlags log_level,
50                 const gchar *msg, gpointer user_data)
51 {
52         BT_ERR_C("%s", msg);
53 }
54
55 static void __bt_release_service(void)
56 {
57         _bt_service_le_deinit();
58         _bt_deinit_hf_local_term_event_sender();
59         _bt_deinit_service_event_sender();
60         _bt_service_unregister();
61         _bt_service_cynara_deinit();
62
63         if (!TIZEN_PROFILE_TV)
64                 _bt_deinit_obex_event_receiver();
65
66 #ifdef TIZEN_FEATURE_BT_PAN_NAP
67          _bt_deinit_pan_nap_event_receiver();
68 #endif
69
70         _bt_cleanup_profiles();
71         oal_bt_deinit();
72
73         BT_DBG("Terminating the bt-service daemon");
74 }
75
76 static void __bt_sigterm_handler(int signo, siginfo_t *info, void *data)
77 {
78         BT_INFO("signal [%d] is sent by [%d]", signo, info->si_pid);
79
80         if (!TIZEN_PROFILE_TV) {
81                 int ret;
82                 ret = _bt_recover_adapter();
83                 if (ret != BLUETOOTH_ERROR_NONE)
84                         BT_ERR("_bt_recover_adapter is failed : %d", ret);
85         }
86         return;
87 }
88
89 gboolean _bt_terminate_service(gpointer user_data)
90 {
91         __bt_release_service();
92
93         terminated = TRUE;
94
95         BT_INFO_C("Terminating the bt-service daemon");
96
97         if (main_loop != NULL) {
98                 g_main_loop_quit(main_loop);
99         } else {
100                 BT_ERR("main_loop == NULL");
101                 exit(0);
102         }
103
104         return FALSE;
105 }
106
107 gboolean _bt_reliable_terminate_service(gpointer user_data)
108 {
109         _bt_deinit_proxys();
110
111         _bt_clear_request_list();
112
113         _bt_set_disabled(BLUETOOTH_ERROR_NONE);
114
115         _bt_deinit_service_event_sender();
116
117         _bt_service_unregister();
118
119         terminated = TRUE;
120
121         BT_INFO_C("### Terminating the bt-service daemon");
122
123         if (main_loop != NULL)
124                 g_main_loop_quit(main_loop);
125         else
126                 exit(0);
127
128         return FALSE;
129 }
130
131 static gboolean __bt_check_bt_service(void *data)
132 {
133         bt_status_t status = BT_DEACTIVATED;
134         bt_le_status_t le_status = BT_LE_DEACTIVATED;
135         int bt_status = VCONFKEY_BT_STATUS_OFF;
136         int bt_le_status = VCONFKEY_BT_LE_STATUS_OFF;
137         int flight_mode_deactivation = 0;
138         int bt_off_due_to_timeout = 0;
139 #if 0
140         int ps_mode_deactivation = 0;
141 #endif
142
143         if (_is_name_acquired() == FALSE) {
144                 BT_ERR("dbus name is NOT acquired yet");
145                 return TRUE;
146         }
147
148         status = _bt_adapter_get_status();
149         le_status = _bt_adapter_get_le_status();
150         BT_DBG("State: %d, LE State: %d", status, le_status);
151
152         if (TIZEN_PROFILE_TV) {
153 #if TODO_40 /* Need to add this function */
154                 if (_bt_get_enable_timer_id() == 0)
155 #endif
156                         _bt_enable_adapter();
157         } else if (!headed_plugin_info->plugin_headed_enabled) {
158                 BT_DBG("Enable adapter if headless device");
159                 _bt_enable_adapter();
160         } else {
161                 if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0)
162                         BT_DBG("no bluetooth device info, so BT was disabled at previous session");
163
164                 if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_le_status) < 0)
165                         BT_ERR("no bluetooth le info, so BT LE was disabled at previous session");
166
167                 if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &flight_mode_deactivation) != 0)
168                         BT_ERR("Fail to get the flight_mode_deactivation value");
169
170 #if 0
171         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &ps_mode_deactivation) != 0)
172                 BT_ERR("Fail to get the ps_mode_deactivation value");
173 #endif
174
175                 if (vconf_get_int(BT_OFF_DUE_TO_TIMEOUT, &bt_off_due_to_timeout) != 0)
176                         BT_ERR("Fail to get BT_OFF_DUE_TO_TIMEOUT");
177
178                 if (bt_off_due_to_timeout) {
179                         /* Set the vconf flag to 0 here, if BT need to be enabled
180                         bt_off_due_to_timeout variable already hold the old value */
181
182                         if (vconf_set_int(BT_OFF_DUE_TO_TIMEOUT, 0) != 0)
183                                 BT_ERR("Set vconf failed");
184                 }
185
186
187                 if ((bt_status != VCONFKEY_BT_STATUS_OFF || bt_off_due_to_timeout) &&
188                         (status == BT_DEACTIVATED)) {
189                         BT_DBG("Previous session was enabled.");
190
191                         /* Enable the BT */
192                         _bt_enable_adapter();
193                 } else if (bt_status == VCONFKEY_BT_STATUS_OFF && flight_mode_deactivation == 1) {
194                         _bt_enable_core();
195                 }
196
197                 if ((bt_le_status == VCONFKEY_BT_LE_STATUS_ON) && (le_status == BT_LE_DEACTIVATED)) {
198                         BT_DBG("Previous session was le enabled. Turn BT LE on automatically.");
199
200
201                         /* Enable the BT LE */
202                         _bt_enable_adapter_le();
203
204                 } else {
205                         status = _bt_adapter_get_status();
206                         le_status = _bt_adapter_get_le_status();
207                         BT_DBG("State: %d, LE State: %d", status, le_status);
208
209                         if ((status != BT_ACTIVATING && status != BT_ACTIVATED) &&
210                                         (le_status != BT_LE_ACTIVATING && le_status != BT_LE_ACTIVATED)) {
211                                 _bt_terminate_service(NULL);
212                         }
213                 }
214         }
215         return FALSE;
216 }
217
218 int _bt_service_initialize(void)
219 {
220         int ret;
221
222         if (is_initialized == TRUE)
223                 return BLUETOOTH_ERROR_NONE;
224
225         /* Security Initialization */
226         if (_bt_service_cynara_init() != BLUETOOTH_ERROR_NONE) {
227                 BT_ERR("Fail to init cynara");
228                 return EXIT_FAILURE;
229         }
230
231         /* Flight mode handler implemented in HAL */
232
233         /* Event sender Init */
234         ret = _bt_init_service_event_sender();
235         if (ret != BLUETOOTH_ERROR_NONE) {
236                 BT_ERR("Fail to init event sender");
237                 return ret;
238         }
239
240         ret = _bt_init_hf_local_term_event_sender();
241         if (ret != BLUETOOTH_ERROR_NONE) {
242                 BT_ERR("Fail to init core event sender");
243                 return ret;
244         }
245
246         /* Event reciever Init */
247         if (!TIZEN_PROFILE_TV) {
248                 if (_bt_init_obex_event_receiver() != BLUETOOTH_ERROR_NONE)
249                         BT_ERR("Fail to init obex event reciever");
250         }
251
252 #ifdef TIZEN_FEATURE_BT_PAN_NAP
253         /* Event reciever Init */
254         if (_bt_init_pan_nap_event_receiver() != BLUETOOTH_ERROR_NONE) {
255                 BT_ERR("Fail to init PAN NAP reciever");
256                 return 0;
257         }
258 #endif
259 #ifdef TIZEN_FEATURE_BT_IPSP
260         if (_bt_init_ipsp_receiver() != BLUETOOTH_ERROR_NONE) {
261                 BT_ERR("Fail to init ipsp reciever");
262                 return 0;
263         }
264 #endif
265         ret = _bt_service_register();
266         if (ret != BLUETOOTH_ERROR_NONE) {
267                 BT_ERR("Fail to register service");
268                 return ret;
269         }
270
271         /* BT Stack Init */
272         ret = _bt_stack_init();
273         if (ret != BLUETOOTH_ERROR_NONE) {
274                 BT_ERR("Fail to init BT Stack");
275                 return ret;
276         }
277
278         ret = _bt_service_le_init();
279         if (ret != BLUETOOTH_ERROR_NONE) {
280                 BT_ERR("Fail to init le");
281                 return ret;
282         }
283
284         _bt_init_request_id();
285
286         _bt_init_request_list();
287
288         is_initialized = TRUE;
289
290         return BLUETOOTH_ERROR_NONE;
291 }
292
293 int main(void)
294 {
295         struct sigaction sa;
296         BT_INFO_C("### Starting the bt-service daemon");
297
298         memset(&sa, 0, sizeof(sa));
299         sa.sa_sigaction = __bt_sigterm_handler;
300         sa.sa_flags = SA_SIGINFO;
301         sigaction(SIGINT, &sa, NULL);
302         sigaction(SIGTERM, &sa, NULL);
303
304         if (_bt_service_initialize() != BLUETOOTH_ERROR_NONE)
305                 return 0;
306
307         g_timeout_add(500, (GSourceFunc)__bt_check_bt_service, NULL);
308
309         if (terminated == TRUE) {
310                 __bt_release_service();
311                 return 0;
312         }
313
314         bluetooth_plugin_init();
315
316         g_log_set_default_handler(__on_log_glib, NULL);
317
318         main_loop = g_main_loop_new(NULL, FALSE);
319
320         g_main_loop_run(main_loop);
321         BT_DBG("g_main_loop_quit called!");
322
323         bluetooth_plugin_deinit();
324
325         if (main_loop != NULL)
326                 g_main_loop_unref(main_loop);
327
328         if (terminated == FALSE)
329                 __bt_release_service();
330
331         return 0;
332 }
333