5 * Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
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.
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.
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
30 static DBusConnection *connection = NULL;
32 static GSList *notifier_list = NULL;
33 static GHashTable *service_hash = NULL;
35 static const char *notifier_state;
37 static gint compare_priority(gconstpointer a, gconstpointer b)
39 const struct connman_notifier *notifier1 = a;
40 const struct connman_notifier *notifier2 = b;
42 return notifier2->priority - notifier1->priority;
46 * connman_notifier_register:
47 * @notifier: notifier module
49 * Register a new notifier module
51 * Returns: %0 on success
53 int connman_notifier_register(struct connman_notifier *notifier)
55 DBG("notifier %p name %s", notifier, notifier->name);
57 notifier_list = g_slist_insert_sorted(notifier_list, notifier,
64 * connman_notifier_unregister:
65 * @notifier: notifier module
67 * Remove a previously registered notifier module
69 void connman_notifier_unregister(struct connman_notifier *notifier)
71 DBG("notifier %p name %s", notifier, notifier->name);
73 notifier_list = g_slist_remove(notifier_list, notifier);
76 #define MAX_TECHNOLOGIES 10
78 static int connected[MAX_TECHNOLOGIES];
79 static int online[MAX_TECHNOLOGIES];
81 static connman_bool_t notifier_is_online(void)
86 for (i = 0; i < MAX_TECHNOLOGIES; i++) {
94 connman_bool_t __connman_notifier_is_connected(void)
99 for (i = 0; i < MAX_TECHNOLOGIES; i++) {
100 if (connected[i] > 0)
107 static const char *evaluate_notifier_state(void)
109 if ( __connman_technology_get_offlinemode() == TRUE)
112 if (notifier_is_online() == TRUE)
115 if (__connman_notifier_is_connected() == TRUE)
121 const char *__connman_notifier_get_state(void)
123 return notifier_state;
126 static void state_changed(void)
130 state = evaluate_notifier_state();
132 if (g_strcmp0(state, notifier_state) == 0)
135 notifier_state = state;
137 connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
138 CONNMAN_MANAGER_INTERFACE, "State",
139 DBUS_TYPE_STRING, ¬ifier_state);
142 static void technology_connected(enum connman_service_type type,
143 connman_bool_t connected)
145 DBG("type %d connected %d", type, connected);
147 __connman_technology_set_connected(type, connected);
151 void __connman_notifier_connect(enum connman_service_type type)
153 DBG("type %d", type);
156 case CONNMAN_SERVICE_TYPE_UNKNOWN:
157 case CONNMAN_SERVICE_TYPE_SYSTEM:
158 case CONNMAN_SERVICE_TYPE_GPS:
159 case CONNMAN_SERVICE_TYPE_VPN:
160 case CONNMAN_SERVICE_TYPE_GADGET:
162 case CONNMAN_SERVICE_TYPE_ETHERNET:
163 case CONNMAN_SERVICE_TYPE_WIFI:
164 case CONNMAN_SERVICE_TYPE_WIMAX:
165 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
166 case CONNMAN_SERVICE_TYPE_CELLULAR:
170 if (__sync_fetch_and_add(&connected[type], 1) == 0)
171 technology_connected(type, TRUE);
174 void __connman_notifier_enter_online(enum connman_service_type type)
176 DBG("type %d", type);
178 if (__sync_fetch_and_add(&online[type], 1) == 0)
182 void __connman_notifier_leave_online(enum connman_service_type type)
184 DBG("type %d", type);
186 if (__sync_fetch_and_sub(&online[type], 1) == 1)
190 void __connman_notifier_disconnect(enum connman_service_type type)
192 DBG("type %d", type);
194 __sync_synchronize();
195 if (connected[type] == 0) {
196 connman_error("notifier disconnect underflow");
201 case CONNMAN_SERVICE_TYPE_UNKNOWN:
202 case CONNMAN_SERVICE_TYPE_SYSTEM:
203 case CONNMAN_SERVICE_TYPE_GPS:
204 case CONNMAN_SERVICE_TYPE_VPN:
205 case CONNMAN_SERVICE_TYPE_GADGET:
207 case CONNMAN_SERVICE_TYPE_ETHERNET:
208 case CONNMAN_SERVICE_TYPE_WIFI:
209 case CONNMAN_SERVICE_TYPE_WIMAX:
210 case CONNMAN_SERVICE_TYPE_BLUETOOTH:
211 case CONNMAN_SERVICE_TYPE_CELLULAR:
215 if (__sync_fetch_and_sub(&connected[type], 1) != 1)
218 technology_connected(type, FALSE);
221 void __connman_notifier_default_changed(struct connman_service *service)
225 for (list = notifier_list; list; list = list->next) {
226 struct connman_notifier *notifier = list->data;
228 if (notifier->default_changed)
229 notifier->default_changed(service);
233 void __connman_notifier_service_add(struct connman_service *service,
238 for (list = notifier_list; list; list = list->next) {
239 struct connman_notifier *notifier = list->data;
241 if (notifier->service_add)
242 notifier->service_add(service, name);
246 void __connman_notifier_service_remove(struct connman_service *service)
250 if (g_hash_table_lookup(service_hash, service) != NULL) {
252 * This is a tempory check for consistency. It can be
253 * removed when there are no reports for the following
256 connman_error("Service state machine inconsistency detected.");
258 g_hash_table_remove(service_hash, service);
261 for (list = notifier_list; list; list = list->next) {
262 struct connman_notifier *notifier = list->data;
264 if (notifier->service_remove)
265 notifier->service_remove(service);
269 void __connman_notifier_proxy_changed(struct connman_service *service)
273 for (list = notifier_list; list; list = list->next) {
274 struct connman_notifier *notifier = list->data;
276 if (notifier->proxy_changed)
277 notifier->proxy_changed(service);
281 static void offlinemode_changed(dbus_bool_t enabled)
283 DBG("enabled %d", enabled);
285 connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
286 CONNMAN_MANAGER_INTERFACE, "OfflineMode",
287 DBUS_TYPE_BOOLEAN, &enabled);
290 void __connman_notifier_offlinemode(connman_bool_t enabled)
294 DBG("enabled %d", enabled);
296 offlinemode_changed(enabled);
299 for (list = notifier_list; list; list = list->next) {
300 struct connman_notifier *notifier = list->data;
302 if (notifier->offline_mode)
303 notifier->offline_mode(enabled);
307 static void notify_idle_state(connman_bool_t idle)
311 DBG("idle %d", idle);
313 for (list = notifier_list; list; list = list->next) {
314 struct connman_notifier *notifier = list->data;
316 if (notifier->idle_state)
317 notifier->idle_state(idle);
321 void __connman_notifier_service_state_changed(struct connman_service *service,
322 enum connman_service_state state)
325 unsigned int old_size;
326 connman_bool_t found;
328 for (list = notifier_list; list; list = list->next) {
329 struct connman_notifier *notifier = list->data;
331 if (notifier->service_state_changed)
332 notifier->service_state_changed(service, state);
335 old_size = g_hash_table_size(service_hash);
336 found = g_hash_table_lookup(service_hash, service) != NULL;
339 case CONNMAN_SERVICE_STATE_UNKNOWN:
340 case CONNMAN_SERVICE_STATE_FAILURE:
341 case CONNMAN_SERVICE_STATE_DISCONNECT:
342 case CONNMAN_SERVICE_STATE_IDLE:
346 g_hash_table_remove(service_hash, service);
348 notify_idle_state(TRUE);
351 case CONNMAN_SERVICE_STATE_ASSOCIATION:
352 case CONNMAN_SERVICE_STATE_CONFIGURATION:
353 case CONNMAN_SERVICE_STATE_READY:
354 case CONNMAN_SERVICE_STATE_ONLINE:
358 g_hash_table_insert(service_hash, service, service);
360 notify_idle_state(FALSE);
366 void __connman_notifier_ipconfig_changed(struct connman_service *service,
367 struct connman_ipconfig *ipconfig)
371 for (list = notifier_list; list; list = list->next) {
372 struct connman_notifier *notifier = list->data;
374 if (notifier->ipconfig_changed)
375 notifier->ipconfig_changed(service, ipconfig);
379 int __connman_notifier_init(void)
383 connection = connman_dbus_get_connection();
385 service_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
388 notifier_state = evaluate_notifier_state();
393 void __connman_notifier_cleanup(void)
397 g_hash_table_destroy(service_hash);
400 dbus_connection_unref(connection);