Fix the coverity issues
[platform/core/connectivity/bluetooth-frwk.git] / bt-core / bt-core-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 <vconf.h>
19 #include <vconf-keys.h>
20
21 #include "bt-core-adapter.h"
22 #include "bt-core-dbus-handler.h"
23 #include "bt-core-main.h"
24 #include "bt-core-noti-handler.h"
25 #include "bt-core-common.h"
26
27 static GMainLoop *main_loop = NULL;
28
29 gboolean _bt_check_terminating_condition(void)
30 {
31         int bt_off_flight_mode = 0;     /* if BT was off due to FlightMode*/
32         int bt_off_ps_mode = 0;
33
34         if (_bt_core_is_recovery_mode() == TRUE) {
35                 BT_DBG("Bt core not terminated");
36                 return FALSE;
37         }
38
39         if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &bt_off_flight_mode) != 0)
40                 BT_ERR("Fail to get the BT off due to FlightMode value");
41         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &bt_off_ps_mode) != 0)
42                 BT_ERR("Fail to get the ps_mode_deactivated value");
43
44         if (bt_off_flight_mode == 1 || bt_off_ps_mode == 1) {
45                 BT_DBG("Bt core not terminated");
46                 return FALSE;
47         }
48
49         return TRUE;
50 }
51
52 void _bt_core_terminate(void)
53 {
54         if (_bt_check_terminating_condition() == FALSE)
55                 return;
56
57         _bt_core_gdbus_deinit_proxys();
58         _bt_core_unregister_vconf_handler();
59         if (main_loop) {
60                 g_main_loop_quit(main_loop);
61         } else {
62                 BT_DBG("Terminating bt-core daemon");
63                 exit(0);
64         }
65 }
66
67 static void __bt_core_sigterm_handler(int signo)
68 {
69         BT_DBG("Got the signal: %d", signo);
70
71         _bt_core_terminate();
72 }
73
74 static gboolean __bt_check_bt_core(void *data)
75 {
76         int bt_status = VCONFKEY_BT_STATUS_OFF;
77         int bt_le_status = VCONFKEY_BT_LE_STATUS_OFF;
78         bt_status_t status = BT_DEACTIVATED;
79         bt_le_status_t le_status = BT_LE_DEACTIVATED;
80         int flight_mode_deactivation = 0;
81         int bt_off_due_to_timeout = 0;
82         int ps_mode_deactivation = 0;
83
84         status = _bt_core_get_status();
85         le_status = _bt_core_get_le_status();
86         BT_DBG("State: %d, LE State: %d", status, le_status);
87
88         if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0)
89                 BT_DBG("no bluetooth device info, so BT was disabled at previous session");
90
91 /*
92 #ifdef ENABLE_TIZEN_2_4
93         if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_le_status) < 0)
94                 BT_ERR("no bluetooth le info, so BT LE was disabled at previous session");
95 #endif
96 */
97         if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &flight_mode_deactivation) != 0)
98                 BT_ERR("Fail to get the flight_mode_deactivation value");
99
100         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &ps_mode_deactivation) != 0)
101                 BT_ERR("Fail to get the ps_mode_deactivation value");
102
103         if (vconf_get_int(BT_OFF_DUE_TO_TIMEOUT, &bt_off_due_to_timeout) != 0)
104                 BT_ERR("Fail to get BT_OFF_DUE_TO_TIMEOUT");
105
106         if ((bt_status != VCONFKEY_BT_STATUS_OFF || bt_off_due_to_timeout) &&
107                 (status == BT_DEACTIVATED)) {
108                 BT_DBG("Previous session was enabled.");
109         } else if (bt_status == VCONFKEY_BT_STATUS_OFF &&
110                         (flight_mode_deactivation == 1 || ps_mode_deactivation > 0)) {
111                 //_bt_core_handle_flight_mode_noti();
112
113                 _bt_core_set_bt_status(BT_FLIGHT_MODE, flight_mode_deactivation);
114                 _bt_core_set_bt_status(BT_POWER_SAVING_MODE, ps_mode_deactivation);
115         }
116
117         if ((bt_le_status == VCONFKEY_BT_LE_STATUS_ON) && (le_status == BT_LE_DEACTIVATED)) {
118                 BT_DBG("Previous session was le enabled. Turn BT LE on automatically.");
119         } else {
120                 status = _bt_core_get_status();
121                 le_status = _bt_core_get_le_status();
122                 BT_DBG("State: %d, LE State: %d", status, le_status);
123
124                 if ((status != BT_ACTIVATING && status != BT_ACTIVATED) &&
125                                 (le_status != BT_LE_ACTIVATING && le_status != BT_LE_ACTIVATED))
126                         _bt_core_terminate();
127         }
128
129         return FALSE;
130 }
131
132 int main(void)
133 {
134         gboolean ret;
135         struct sigaction sa;
136
137         BT_INFO_C("Starting bt-core daemeon");
138
139         _bt_core_update_status();
140
141         ret = _bt_core_register_dbus();
142         if (!ret) {
143                 BT_ERR("_bt_core_register_dbus failed");
144                 goto fail;
145         }
146
147
148         memset(&sa, 0, sizeof(sa));
149         sa.sa_handler = __bt_core_sigterm_handler;
150         sigaction(SIGINT, &sa, NULL);
151         sigaction(SIGTERM, &sa, NULL);
152
153         g_timeout_add(500, (GSourceFunc)__bt_check_bt_core, NULL);
154
155         main_loop = g_main_loop_new(NULL, FALSE);
156         if (!main_loop) {
157                 BT_ERR("creating main loop failed");
158                 goto fail;
159         }
160
161         g_main_loop_run(main_loop);
162
163 fail:
164         _bt_core_unregister_dbus();
165
166         if (main_loop)
167                 g_main_loop_unref(main_loop);
168
169         BT_INFO_C("Terminating bt-core daemon");
170
171         return 0;
172 }