technology: Add 'Connected' Technology property
[platform/upstream/connman.git] / src / notifier.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  Intel Corporation. All rights reserved.
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 version 2 as
9  *  published by the Free Software Foundation.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <gdbus.h>
27
28 #include "connman.h"
29
30 static DBusConnection *connection = NULL;
31
32 static GSList *notifier_list = NULL;
33 static GHashTable *service_hash = NULL;
34
35 static gint compare_priority(gconstpointer a, gconstpointer b)
36 {
37         const struct connman_notifier *notifier1 = a;
38         const struct connman_notifier *notifier2 = b;
39
40         return notifier2->priority - notifier1->priority;
41 }
42
43 /**
44  * connman_notifier_register:
45  * @notifier: notifier module
46  *
47  * Register a new notifier module
48  *
49  * Returns: %0 on success
50  */
51 int connman_notifier_register(struct connman_notifier *notifier)
52 {
53         DBG("notifier %p name %s", notifier, notifier->name);
54
55         notifier_list = g_slist_insert_sorted(notifier_list, notifier,
56                                                         compare_priority);
57
58         return 0;
59 }
60
61 /**
62  * connman_notifier_unregister:
63  * @notifier: notifier module
64  *
65  * Remove a previously registered notifier module
66  */
67 void connman_notifier_unregister(struct connman_notifier *notifier)
68 {
69         DBG("notifier %p name %s", notifier, notifier->name);
70
71         notifier_list = g_slist_remove(notifier_list, notifier);
72 }
73
74 #define MAX_TECHNOLOGIES 10
75
76 static volatile int connected[MAX_TECHNOLOGIES];
77
78 unsigned int __connman_notifier_count_connected(void)
79 {
80         unsigned int i, count = 0;
81
82         __sync_synchronize();
83         for (i = 0; i < MAX_TECHNOLOGIES; i++) {
84                 if (connected[i] > 0)
85                         count++;
86         }
87
88         return count;
89 }
90
91 const char *__connman_notifier_get_state(void)
92 {
93         unsigned int count = __connman_notifier_count_connected();
94
95         if (count > 0)
96                 return "online";
97
98         return "offline";
99 }
100
101 static void state_changed(connman_bool_t connected)
102 {
103         unsigned int count = __connman_notifier_count_connected();
104         char *state = "offline";
105
106         if (count > 1)
107                 return;
108
109         if (count == 1) {
110                 if (connected == FALSE)
111                         return;
112
113                 state = "online";
114         }
115
116         connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
117                                 CONNMAN_MANAGER_INTERFACE, "State",
118                                                 DBUS_TYPE_STRING, &state);
119 }
120
121 static void technology_connected(enum connman_service_type type,
122                                                 connman_bool_t connected)
123 {
124         DBG("type %d connected %d", type, connected);
125
126         __connman_technology_set_connected(type, connected);
127         state_changed(connected);
128 }
129
130 void __connman_notifier_connect(enum connman_service_type type)
131 {
132         DBG("type %d", type);
133
134         switch (type) {
135         case CONNMAN_SERVICE_TYPE_UNKNOWN:
136         case CONNMAN_SERVICE_TYPE_SYSTEM:
137         case CONNMAN_SERVICE_TYPE_GPS:
138         case CONNMAN_SERVICE_TYPE_VPN:
139         case CONNMAN_SERVICE_TYPE_GADGET:
140                 return;
141         case CONNMAN_SERVICE_TYPE_ETHERNET:
142         case CONNMAN_SERVICE_TYPE_WIFI:
143         case CONNMAN_SERVICE_TYPE_WIMAX:
144         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
145         case CONNMAN_SERVICE_TYPE_CELLULAR:
146                 break;
147         }
148
149         if (__sync_fetch_and_add(&connected[type], 1) == 0)
150                 technology_connected(type, TRUE);
151 }
152
153 void __connman_notifier_disconnect(enum connman_service_type type)
154 {
155         DBG("type %d", type);
156
157         __sync_synchronize();
158         if (connected[type] == 0) {
159                 connman_error("notifier disconnect underflow");
160                 return;
161         }
162
163         switch (type) {
164         case CONNMAN_SERVICE_TYPE_UNKNOWN:
165         case CONNMAN_SERVICE_TYPE_SYSTEM:
166         case CONNMAN_SERVICE_TYPE_GPS:
167         case CONNMAN_SERVICE_TYPE_VPN:
168         case CONNMAN_SERVICE_TYPE_GADGET:
169                 return;
170         case CONNMAN_SERVICE_TYPE_ETHERNET:
171         case CONNMAN_SERVICE_TYPE_WIFI:
172         case CONNMAN_SERVICE_TYPE_WIMAX:
173         case CONNMAN_SERVICE_TYPE_BLUETOOTH:
174         case CONNMAN_SERVICE_TYPE_CELLULAR:
175                 break;
176         }
177
178         if (__sync_fetch_and_sub(&connected[type], 1) != 1)
179                 return;
180
181         technology_connected(type, FALSE);
182 }
183
184 static void technology_default(enum connman_service_type type)
185 {
186         const char *str;
187
188         str = __connman_service_type2string(type);
189         if (str == NULL)
190                 str = "";
191
192         connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
193                         CONNMAN_MANAGER_INTERFACE, "DefaultTechnology",
194                                                 DBUS_TYPE_STRING, &str);
195 }
196
197 void __connman_notifier_default_changed(struct connman_service *service)
198 {
199         enum connman_service_type type = connman_service_get_type(service);
200         char *interface;
201         GSList *list;
202
203         technology_default(type);
204
205         interface = connman_service_get_interface(service);
206         __connman_tethering_update_interface(interface);
207         g_free(interface);
208
209         for (list = notifier_list; list; list = list->next) {
210                 struct connman_notifier *notifier = list->data;
211
212                 if (notifier->default_changed)
213                         notifier->default_changed(service);
214         }
215 }
216
217 void __connman_notifier_service_add(struct connman_service *service,
218                                         const char *name)
219 {
220         GSList *list;
221
222         for (list = notifier_list; list; list = list->next) {
223                 struct connman_notifier *notifier = list->data;
224
225                 if (notifier->service_add)
226                         notifier->service_add(service, name);
227         }
228 }
229
230 void __connman_notifier_service_remove(struct connman_service *service)
231 {
232         GSList *list;
233
234         if (g_hash_table_lookup(service_hash, service) != NULL) {
235                 /*
236                  * This is a tempory check for consistency. It can be
237                  * removed when there are no reports for the following
238                  * error message.
239                  */
240                 connman_error("Service state machine inconsistency detected.");
241
242                 g_hash_table_remove(service_hash, service);
243         }
244
245         for (list = notifier_list; list; list = list->next) {
246                 struct connman_notifier *notifier = list->data;
247
248                 if (notifier->service_remove)
249                         notifier->service_remove(service);
250         }
251 }
252
253 void __connman_notifier_proxy_changed(struct connman_service *service)
254 {
255         GSList *list;
256
257         for (list = notifier_list; list; list = list->next) {
258                 struct connman_notifier *notifier = list->data;
259
260                 if (notifier->proxy_changed)
261                         notifier->proxy_changed(service);
262         }
263 }
264
265 static void offlinemode_changed(dbus_bool_t enabled)
266 {
267         DBG("enabled %d", enabled);
268
269         connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
270                                 CONNMAN_MANAGER_INTERFACE, "OfflineMode",
271                                                 DBUS_TYPE_BOOLEAN, &enabled);
272 }
273
274 void __connman_notifier_offlinemode(connman_bool_t enabled)
275 {
276         GSList *list;
277
278         DBG("enabled %d", enabled);
279
280         offlinemode_changed(enabled);
281
282         for (list = notifier_list; list; list = list->next) {
283                 struct connman_notifier *notifier = list->data;
284
285                 if (notifier->offline_mode)
286                         notifier->offline_mode(enabled);
287         }
288 }
289
290 static void notify_idle_state(connman_bool_t idle)
291 {
292         GSList *list;
293
294         DBG("idle %d", idle);
295
296         for (list = notifier_list; list; list = list->next) {
297                 struct connman_notifier *notifier = list->data;
298
299                 if (notifier->idle_state)
300                         notifier->idle_state(idle);
301         }
302 }
303
304 void __connman_notifier_service_state_changed(struct connman_service *service,
305                                         enum connman_service_state state)
306 {
307         GSList *list;
308         unsigned int old_size;
309         connman_bool_t found;
310
311         for (list = notifier_list; list; list = list->next) {
312                 struct connman_notifier *notifier = list->data;
313
314                 if (notifier->service_state_changed)
315                         notifier->service_state_changed(service, state);
316         }
317
318         old_size = g_hash_table_size(service_hash);
319         found = g_hash_table_lookup(service_hash, service) != NULL;
320
321         switch (state) {
322         case CONNMAN_SERVICE_STATE_UNKNOWN:
323         case CONNMAN_SERVICE_STATE_FAILURE:
324         case CONNMAN_SERVICE_STATE_DISCONNECT:
325         case CONNMAN_SERVICE_STATE_IDLE:
326                 if (found == FALSE)
327                         break;
328
329                 g_hash_table_remove(service_hash, service);
330                 if (old_size == 1)
331                         notify_idle_state(TRUE);
332
333                 break;
334         case CONNMAN_SERVICE_STATE_ASSOCIATION:
335         case CONNMAN_SERVICE_STATE_CONFIGURATION:
336         case CONNMAN_SERVICE_STATE_READY:
337         case CONNMAN_SERVICE_STATE_ONLINE:
338                 if (found == TRUE)
339                         break;
340
341                 g_hash_table_insert(service_hash, service, service);
342                 if (old_size == 0)
343                         notify_idle_state(FALSE);
344
345                 break;
346         }
347 }
348
349 void __connman_notifier_ipconfig_changed(struct connman_service *service,
350                                         struct connman_ipconfig *ipconfig)
351 {
352         GSList *list;
353
354         for (list = notifier_list; list; list = list->next) {
355                 struct connman_notifier *notifier = list->data;
356
357                 if (notifier->ipconfig_changed)
358                         notifier->ipconfig_changed(service, ipconfig);
359         }
360 }
361
362 int __connman_notifier_init(void)
363 {
364         DBG("");
365
366         connection = connman_dbus_get_connection();
367
368         service_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
369                                                 NULL, NULL);
370
371
372         return 0;
373 }
374
375 void __connman_notifier_cleanup(void)
376 {
377         DBG("");
378
379         g_hash_table_destroy(service_hash);
380         service_hash = NULL;
381
382         dbus_connection_unref(connection);
383 }