5 * Copyright (C) 2007-2010 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 gint compare_priority(gconstpointer a, gconstpointer b)
37 const struct connman_notifier *notifier1 = a;
38 const struct connman_notifier *notifier2 = b;
40 return notifier2->priority - notifier1->priority;
44 * connman_notifier_register:
45 * @notifier: notifier module
47 * Register a new notifier module
49 * Returns: %0 on success
51 int connman_notifier_register(struct connman_notifier *notifier)
53 DBG("notifier %p name %s", notifier, notifier->name);
55 notifier_list = g_slist_insert_sorted(notifier_list, notifier,
62 * connman_notifier_unregister:
63 * @notifier: notifier module
65 * Remove a previously registered notifier module
67 void connman_notifier_unregister(struct connman_notifier *notifier)
69 DBG("notifier %p name %s", notifier, notifier->name);
71 notifier_list = g_slist_remove(notifier_list, notifier);
74 #define MAX_TECHNOLOGIES 10
76 static volatile int connected[MAX_TECHNOLOGIES];
78 unsigned int __connman_notifier_count_connected(void)
80 unsigned int i, count = 0;
83 for (i = 0; i < MAX_TECHNOLOGIES; i++) {
91 const char *__connman_notifier_get_state(void)
93 unsigned int count = __connman_notifier_count_connected();
101 static void state_changed(connman_bool_t connected)
103 unsigned int count = __connman_notifier_count_connected();
104 char *state = "offline";
110 if (connected == FALSE)
116 connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
117 CONNMAN_MANAGER_INTERFACE, "State",
118 DBUS_TYPE_STRING, &state);
121 static void technology_connected(enum connman_service_type type,
122 connman_bool_t connected)
124 DBG("type %d connected %d", type, connected);
126 __connman_technology_set_connected(type, connected);
127 state_changed(connected);
130 void __connman_notifier_connect(enum connman_service_type type)
132 DBG("type %d", 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:
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:
149 if (__sync_fetch_and_add(&connected[type], 1) == 0)
150 technology_connected(type, TRUE);
153 void __connman_notifier_disconnect(enum connman_service_type type)
155 DBG("type %d", type);
157 __sync_synchronize();
158 if (connected[type] == 0) {
159 connman_error("notifier disconnect underflow");
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:
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:
178 if (__sync_fetch_and_sub(&connected[type], 1) != 1)
181 technology_connected(type, FALSE);
184 static void technology_default(enum connman_service_type type)
188 str = __connman_service_type2string(type);
192 connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
193 CONNMAN_MANAGER_INTERFACE, "DefaultTechnology",
194 DBUS_TYPE_STRING, &str);
197 void __connman_notifier_default_changed(struct connman_service *service)
199 enum connman_service_type type = connman_service_get_type(service);
202 technology_default(type);
204 for (list = notifier_list; list; list = list->next) {
205 struct connman_notifier *notifier = list->data;
207 if (notifier->default_changed)
208 notifier->default_changed(service);
212 void __connman_notifier_service_add(struct connman_service *service,
217 for (list = notifier_list; list; list = list->next) {
218 struct connman_notifier *notifier = list->data;
220 if (notifier->service_add)
221 notifier->service_add(service, name);
225 void __connman_notifier_service_remove(struct connman_service *service)
229 if (g_hash_table_lookup(service_hash, service) != NULL) {
231 * This is a tempory check for consistency. It can be
232 * removed when there are no reports for the following
235 connman_error("Service state machine inconsistency detected.");
237 g_hash_table_remove(service_hash, service);
240 for (list = notifier_list; list; list = list->next) {
241 struct connman_notifier *notifier = list->data;
243 if (notifier->service_remove)
244 notifier->service_remove(service);
248 void __connman_notifier_proxy_changed(struct connman_service *service)
252 for (list = notifier_list; list; list = list->next) {
253 struct connman_notifier *notifier = list->data;
255 if (notifier->proxy_changed)
256 notifier->proxy_changed(service);
260 static void offlinemode_changed(dbus_bool_t enabled)
262 DBG("enabled %d", enabled);
264 connman_dbus_property_changed_basic(CONNMAN_MANAGER_PATH,
265 CONNMAN_MANAGER_INTERFACE, "OfflineMode",
266 DBUS_TYPE_BOOLEAN, &enabled);
269 void __connman_notifier_offlinemode(connman_bool_t enabled)
273 DBG("enabled %d", enabled);
275 offlinemode_changed(enabled);
277 for (list = notifier_list; list; list = list->next) {
278 struct connman_notifier *notifier = list->data;
280 if (notifier->offline_mode)
281 notifier->offline_mode(enabled);
285 static void notify_idle_state(connman_bool_t idle)
289 DBG("idle %d", idle);
291 for (list = notifier_list; list; list = list->next) {
292 struct connman_notifier *notifier = list->data;
294 if (notifier->idle_state)
295 notifier->idle_state(idle);
299 void __connman_notifier_service_state_changed(struct connman_service *service,
300 enum connman_service_state state)
303 unsigned int old_size;
304 connman_bool_t found;
306 for (list = notifier_list; list; list = list->next) {
307 struct connman_notifier *notifier = list->data;
309 if (notifier->service_state_changed)
310 notifier->service_state_changed(service, state);
313 old_size = g_hash_table_size(service_hash);
314 found = g_hash_table_lookup(service_hash, service) != NULL;
317 case CONNMAN_SERVICE_STATE_UNKNOWN:
318 case CONNMAN_SERVICE_STATE_FAILURE:
319 case CONNMAN_SERVICE_STATE_DISCONNECT:
320 case CONNMAN_SERVICE_STATE_IDLE:
324 g_hash_table_remove(service_hash, service);
326 notify_idle_state(TRUE);
329 case CONNMAN_SERVICE_STATE_ASSOCIATION:
330 case CONNMAN_SERVICE_STATE_CONFIGURATION:
331 case CONNMAN_SERVICE_STATE_READY:
332 case CONNMAN_SERVICE_STATE_ONLINE:
336 g_hash_table_insert(service_hash, service, service);
338 notify_idle_state(FALSE);
344 void __connman_notifier_ipconfig_changed(struct connman_service *service,
345 struct connman_ipconfig *ipconfig)
349 for (list = notifier_list; list; list = list->next) {
350 struct connman_notifier *notifier = list->data;
352 if (notifier->ipconfig_changed)
353 notifier->ipconfig_changed(service, ipconfig);
357 int __connman_notifier_init(void)
361 connection = connman_dbus_get_connection();
363 service_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal,
370 void __connman_notifier_cleanup(void)
374 g_hash_table_destroy(service_hash);
377 dbus_connection_unref(connection);