e_connman0_7x: phase-2 - remove the old library and create the new one.
[framework/uifw/edbus.git] / src / lib / connman0_7x / e_connman.c
1 #include "e_connman_private.h"
2 #include <stdlib.h>
3 #include <string.h>
4
5 static E_DBus_Signal_Handler *cb_name_owner_changed = NULL;
6 static DBusPendingCall *pending_get_name_owner = NULL;
7 static unsigned int init_count = 0;
8 static char *unique_name = NULL;
9
10 static const char bus_name[] = "net.connman";
11
12 E_DBus_Connection *e_connman_conn = NULL;
13
14 EAPI int E_CONNMAN_EVENT_MANAGER_IN = 0;
15 EAPI int E_CONNMAN_EVENT_MANAGER_OUT = 0;
16 EAPI int E_CONNMAN_EVENT_ELEMENT_ADD = 0;
17 EAPI int E_CONNMAN_EVENT_ELEMENT_DEL = 0;
18 EAPI int E_CONNMAN_EVENT_ELEMENT_UPDATED = 0;
19
20 const char *e_connman_iface_manager = NULL;
21 const char *e_connman_iface_profile = NULL;
22 const char *e_connman_iface_service = NULL;
23 const char *e_connman_iface_connection = NULL;
24 const char *e_connman_iface_technology = NULL;
25
26 const char *e_connman_prop_ipv4 = NULL;
27 const char *e_connman_prop_ipv4_configuration = NULL;
28 const char *e_connman_prop_ethernet = NULL;
29 const char *e_connman_prop_interface = NULL;
30 const char *e_connman_prop_speed = NULL;
31 const char *e_connman_prop_duplex = NULL;
32 const char *e_connman_prop_method = NULL;
33 const char *e_connman_prop_address = NULL;
34 const char *e_connman_prop_gateway = NULL;
35 const char *e_connman_prop_netmask = NULL;
36 const char *e_connman_prop_mtu = NULL;
37 const char *e_connman_prop_name = NULL;
38 const char *e_connman_prop_offline_mode = NULL;
39 const char *e_connman_prop_profiles = NULL;
40 const char *e_connman_prop_profile_active = NULL;
41 const char *e_connman_prop_services = NULL;
42 const char *e_connman_prop_technologies = NULL;
43 const char *e_connman_prop_state = NULL;
44 const char *e_connman_prop_strength = NULL;
45 const char *e_connman_prop_type = NULL;
46 const char *e_connman_prop_error = NULL;
47 const char *e_connman_prop_security = NULL;
48 const char *e_connman_prop_passphrase = NULL;
49 const char *e_connman_prop_passphrase_required = NULL;
50 const char *e_connman_prop_login_required = NULL;
51 const char *e_connman_prop_favorite = NULL;
52 const char *e_connman_prop_immutable = NULL;
53 const char *e_connman_prop_auto_connect = NULL;
54 const char *e_connman_prop_roaming = NULL;
55 const char *e_connman_prop_technology_default = NULL;
56 const char *e_connman_prop_technologies_available = NULL;
57 const char *e_connman_prop_technologies_enabled = NULL;
58 const char *e_connman_prop_technologies_connected = NULL;
59 const char *e_connman_prop_nameservers = NULL;
60 const char *e_connman_prop_nameservers_configuration = NULL;
61 const char *e_connman_prop_domains = NULL;
62 const char *e_connman_prop_domains_configuration = NULL;
63 const char *e_connman_prop_proxy = NULL;
64 const char *e_connman_prop_proxy_configuration = NULL;
65 const char *e_connman_prop_url = NULL;
66 const char *e_connman_prop_servers = NULL;
67 const char *e_connman_prop_excludes = NULL;
68
69 int _e_dbus_connman_log_dom = -1;
70
71 const char *
72 e_connman_system_bus_name_get(void)
73 {
74    return unique_name ? unique_name : bus_name;
75 }
76
77 /***********************************************************************
78 * Manager
79 ***********************************************************************/
80
81 /**
82  * Synchronize elements with server.
83  *
84  * This will call Manager.GetProperties() on server, retrieve properties
85  * and some element paths and then request their properties.
86  *
87  * This call will add events E_CONNMAN_EVENT_ELEMENT_ADD and
88  * E_CONNMAN_EVENT_ELEMENT_UPDATED to the main loop.
89  *
90  * This will not remove stale elements.
91  *
92  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
93  */
94 Eina_Bool
95 e_connman_manager_sync_elements(void)
96 {
97    E_Connman_Element *manager;
98
99    if (!unique_name)
100       return EINA_FALSE;
101
102    manager = e_connman_element_register(manager_path, e_connman_iface_manager);
103    if (manager)
104       e_connman_element_properties_sync(manager);
105    else
106       return EINA_FALSE;
107
108    DBG("sync_manager: %s (%s)", unique_name, bus_name);
109
110    return EINA_TRUE;
111 }
112
113 static void
114 _e_connman_system_name_owner_exit(void)
115 {
116    e_connman_manager_clear_elements();
117    ecore_event_add(E_CONNMAN_EVENT_MANAGER_OUT, NULL, NULL, NULL);
118
119    free(unique_name);
120    unique_name = NULL;
121 }
122
123 static void
124 _e_connman_system_name_owner_enter(const char *uid)
125 {
126    DBG("enter connman at %s (old was %s)", uid, unique_name);
127    if (unique_name && strcmp(unique_name, uid) == 0)
128      {
129         DBG("same unique_name for connman, ignore.");
130         return;
131      }
132
133    if (unique_name)
134       _e_connman_system_name_owner_exit();
135
136    unique_name = strdup(uid);
137
138    ecore_event_add(E_CONNMAN_EVENT_MANAGER_IN, NULL, NULL, NULL);
139    e_connman_manager_sync_elements();
140 }
141
142 static void
143 _e_connman_system_name_owner_changed(void *data __UNUSED__, DBusMessage *msg)
144 {
145    DBusError err;
146    const char *name, *from, *to;
147
148    dbus_error_init(&err);
149    if (!dbus_message_get_args(msg, &err,
150                               DBUS_TYPE_STRING, &name,
151                               DBUS_TYPE_STRING, &from,
152                               DBUS_TYPE_STRING, &to,
153                               DBUS_TYPE_INVALID))
154      {
155         ERR("could not get NameOwnerChanged arguments: %s: %s",
156             err.name, err.message);
157         dbus_error_free(&err);
158         return;
159      }
160
161    if (strcmp(name, bus_name) != 0)
162       return;
163
164    DBG("NameOwnerChanged from=[%s] to=[%s]", from, to);
165
166    if (from[0] == '\0' && to[0] != '\0')
167      {
168         _e_connman_system_name_owner_enter(to);
169      }
170    else if (from[0] != '\0' && to[0] == '\0')
171      {
172         DBG("exit connman at %s", from);
173         if (strcmp(unique_name, from) != 0)
174            DBG("%s was not the known name %s, ignored.", from, unique_name);
175         else
176            _e_connman_system_name_owner_exit();
177      }
178    else
179      {
180         DBG("unknow change from %s to %s", from, to);
181      }
182 }
183
184 static void
185 _e_connman_get_name_owner(void *data __UNUSED__, DBusMessage *msg, DBusError *err)
186 {
187    DBusMessageIter itr;
188    int t;
189    const char *uid;
190
191    pending_get_name_owner = NULL;
192
193    if (!_dbus_callback_check_and_init(msg, &itr, err))
194       return;
195
196    t = dbus_message_iter_get_arg_type(&itr);
197    if (!_dbus_iter_type_check(t, DBUS_TYPE_STRING))
198       return;
199
200    dbus_message_iter_get_basic(&itr, &uid);
201    if (!uid)
202      {
203         ERR("no name owner!");
204         return;
205      }
206
207    _e_connman_system_name_owner_enter(uid);
208    return;
209 }
210
211 /**
212  * Initialize E Connection Manager (E_Connman) system.
213  *
214  * This will connect and watch net.connman.Manager and Element
215  * events and translate to Ecore main loop events, also provide a
216  * proxy for method invocation on server.
217  *
218  * Interesting events are:
219  *   - E_CONNMAN_EVENT_MANAGER_IN: issued when connman is avaiable.
220  *   - E_CONNMAN_EVENT_MANAGER_OUT: issued when connman connection is lost.
221  *   - E_CONNMAN_EVENT_ELEMENT_ADD: element was added.
222  *   - E_CONNMAN_EVENT_ELEMENT_DEL: element was deleted.
223  *   - E_CONNMAN_EVENT_ELEMENT_UPDATED: element was updated (properties
224  *     or state changed).
225  *
226  * Manager IN/OUT events do not provide any event information, just
227  * tells you that system is usable or not. After manager is out, all
228  * elements will be removed, so after this event do not use the system anymore.
229  *
230  * Element events will give you an element object. After DEL event callback
231  * returns, that element will not be valid anymore.
232  */
233 unsigned int
234 e_connman_system_init(E_DBus_Connection *edbus_conn)
235 {
236    init_count++;
237
238    if (init_count > 1)
239       return init_count;
240
241    _e_dbus_connman_log_dom = eina_log_domain_register
242          ("e_dbus_connman", EINA_LOG_DEFAULT_COLOR);
243
244    if (_e_dbus_connman_log_dom < 0)
245      {
246         EINA_LOG_ERR
247            ("impossible to create a log domain for edbus_connman module");
248         return -1;
249      }
250
251    if (E_CONNMAN_EVENT_MANAGER_IN == 0)
252       E_CONNMAN_EVENT_MANAGER_IN = ecore_event_type_new();
253
254    if (E_CONNMAN_EVENT_MANAGER_OUT == 0)
255       E_CONNMAN_EVENT_MANAGER_OUT = ecore_event_type_new();
256
257    if (E_CONNMAN_EVENT_ELEMENT_ADD == 0)
258       E_CONNMAN_EVENT_ELEMENT_ADD = ecore_event_type_new();
259
260    if (E_CONNMAN_EVENT_ELEMENT_DEL == 0)
261       E_CONNMAN_EVENT_ELEMENT_DEL = ecore_event_type_new();
262
263    if (E_CONNMAN_EVENT_ELEMENT_UPDATED == 0)
264       E_CONNMAN_EVENT_ELEMENT_UPDATED = ecore_event_type_new();
265
266 #define ADD_STRINGSHARE(name, s)       \
267    if (!name)                          \
268       name = eina_stringshare_add(s)
269
270    ADD_STRINGSHARE(e_connman_iface_manager, "net.connman.Manager");
271    ADD_STRINGSHARE(e_connman_iface_profile, "net.connman.Profile");
272    ADD_STRINGSHARE(e_connman_iface_service, "net.connman.Service");
273    ADD_STRINGSHARE(e_connman_iface_connection, "net.connman.Connection");
274    ADD_STRINGSHARE(e_connman_iface_technology, "net.connman.Technology");
275    ADD_STRINGSHARE(e_connman_prop_ipv4, "IPv4");
276    ADD_STRINGSHARE(e_connman_prop_ipv4_configuration, "IPv4.Configuration");
277    ADD_STRINGSHARE(e_connman_prop_ethernet, "Ethernet");
278    ADD_STRINGSHARE(e_connman_prop_interface, "Interface");
279    ADD_STRINGSHARE(e_connman_prop_speed, "Speed");
280    ADD_STRINGSHARE(e_connman_prop_duplex, "Duplex");
281    ADD_STRINGSHARE(e_connman_prop_method, "Method");
282    ADD_STRINGSHARE(e_connman_prop_address, "Address");
283    ADD_STRINGSHARE(e_connman_prop_gateway, "Gateway");
284    ADD_STRINGSHARE(e_connman_prop_netmask, "Netmask");
285    ADD_STRINGSHARE(e_connman_prop_mtu, "MTU");
286    ADD_STRINGSHARE(e_connman_prop_name, "Name");
287    ADD_STRINGSHARE(e_connman_prop_offline_mode, "OfflineMode");
288    ADD_STRINGSHARE(e_connman_prop_profiles, "Profiles");
289    ADD_STRINGSHARE(e_connman_prop_profile_active, "ActiveProfile");
290    ADD_STRINGSHARE(e_connman_prop_services, "Services");
291    ADD_STRINGSHARE(e_connman_prop_technologies, "Technologies");
292    ADD_STRINGSHARE(e_connman_prop_state, "State");
293    ADD_STRINGSHARE(e_connman_prop_strength, "Strength");
294    ADD_STRINGSHARE(e_connman_prop_type, "Type");
295    ADD_STRINGSHARE(e_connman_prop_error, "Error");
296    ADD_STRINGSHARE(e_connman_prop_security, "Security");
297    ADD_STRINGSHARE(e_connman_prop_passphrase, "Passphrase");
298    ADD_STRINGSHARE(e_connman_prop_passphrase_required, "PassphraseRequired");
299    ADD_STRINGSHARE(e_connman_prop_login_required, "LoginRequired");
300    ADD_STRINGSHARE(e_connman_prop_favorite, "Favorite");
301    ADD_STRINGSHARE(e_connman_prop_immutable, "Immutable");
302    ADD_STRINGSHARE(e_connman_prop_auto_connect, "AutoConnect");
303    ADD_STRINGSHARE(e_connman_prop_roaming, "Roaming");
304    ADD_STRINGSHARE(e_connman_prop_technology_default, "DefaultTechnology");
305    ADD_STRINGSHARE(e_connman_prop_technologies_available,
306                    "AvailableTechnologies");
307    ADD_STRINGSHARE(e_connman_prop_technologies_enabled, "EnabledTechnologies");
308    ADD_STRINGSHARE(e_connman_prop_technologies_connected,
309                    "ConnectedTechnologies");
310    ADD_STRINGSHARE(e_connman_prop_nameservers, "Nameservers");
311    ADD_STRINGSHARE(e_connman_prop_nameservers_configuration,
312                    "Nameservers.Configuration");
313    ADD_STRINGSHARE(e_connman_prop_domains, "Domains");
314    ADD_STRINGSHARE(e_connman_prop_domains_configuration,
315                    "Domains.Configuration");
316    ADD_STRINGSHARE(e_connman_prop_proxy, "Proxy");
317    ADD_STRINGSHARE(e_connman_prop_proxy_configuration, "Proxy.Configuration");
318    ADD_STRINGSHARE(e_connman_prop_url, "URL");
319    ADD_STRINGSHARE(e_connman_prop_servers, "Servers");
320    ADD_STRINGSHARE(e_connman_prop_excludes, "Excludes");
321
322 #undef ADD_STRINGSHARE
323
324    e_connman_conn = edbus_conn;
325    cb_name_owner_changed = e_dbus_signal_handler_add
326          (e_connman_conn, E_DBUS_FDO_BUS, E_DBUS_FDO_PATH, E_DBUS_FDO_INTERFACE, "NameOwnerChanged",
327          _e_connman_system_name_owner_changed, NULL);
328
329    if (pending_get_name_owner)
330       dbus_pending_call_cancel(pending_get_name_owner);
331
332    pending_get_name_owner = e_dbus_get_name_owner
333          (e_connman_conn, bus_name, _e_connman_get_name_owner, NULL);
334
335    e_connman_elements_init();
336
337    return init_count;
338 }
339
340 static inline void
341 _stringshare_del(const char **str)
342 {
343    if (!*str)
344       return;
345
346    eina_stringshare_del(*str);
347    *str = NULL;
348 }
349
350 /**
351  * Shutdown connman system.
352  *
353  * When count drops to 0 resources will be released and no calls should be
354  * made anymore.
355  */
356 unsigned int
357 e_connman_system_shutdown(void)
358 {
359    if (init_count == 0)
360      {
361         ERR("connman system already shut down.");
362         return 0;
363      }
364
365    init_count--;
366    if (init_count > 0)
367       return init_count;
368
369    _stringshare_del(&e_connman_iface_manager);
370    _stringshare_del(&e_connman_iface_profile);
371    _stringshare_del(&e_connman_iface_service);
372    _stringshare_del(&e_connman_iface_connection);
373    _stringshare_del(&e_connman_iface_technology);
374
375    _stringshare_del(&e_connman_prop_ipv4);
376    _stringshare_del(&e_connman_prop_ipv4_configuration);
377    _stringshare_del(&e_connman_prop_ethernet);
378    _stringshare_del(&e_connman_prop_interface);
379    _stringshare_del(&e_connman_prop_speed);
380    _stringshare_del(&e_connman_prop_duplex);
381    _stringshare_del(&e_connman_prop_method);
382    _stringshare_del(&e_connman_prop_address);
383    _stringshare_del(&e_connman_prop_gateway);
384    _stringshare_del(&e_connman_prop_netmask);
385    _stringshare_del(&e_connman_prop_mtu);
386    _stringshare_del(&e_connman_prop_name);
387    _stringshare_del(&e_connman_prop_offline_mode);
388    _stringshare_del(&e_connman_prop_profiles);
389    _stringshare_del(&e_connman_prop_profile_active);
390    _stringshare_del(&e_connman_prop_services);
391    _stringshare_del(&e_connman_prop_technologies);
392    _stringshare_del(&e_connman_prop_state);
393    _stringshare_del(&e_connman_prop_strength);
394    _stringshare_del(&e_connman_prop_type);
395    _stringshare_del(&e_connman_prop_error);
396    _stringshare_del(&e_connman_prop_security);
397    _stringshare_del(&e_connman_prop_passphrase);
398    _stringshare_del(&e_connman_prop_passphrase_required);
399    _stringshare_del(&e_connman_prop_login_required);
400    _stringshare_del(&e_connman_prop_favorite);
401    _stringshare_del(&e_connman_prop_immutable);
402    _stringshare_del(&e_connman_prop_auto_connect);
403    _stringshare_del(&e_connman_prop_roaming);
404    _stringshare_del(&e_connman_prop_technology_default);
405    _stringshare_del(&e_connman_prop_technologies_available);
406    _stringshare_del(&e_connman_prop_technologies_enabled);
407    _stringshare_del(&e_connman_prop_technologies_connected);
408    _stringshare_del(&e_connman_prop_nameservers);
409    _stringshare_del(&e_connman_prop_nameservers_configuration);
410    _stringshare_del(&e_connman_prop_domains);
411    _stringshare_del(&e_connman_prop_domains_configuration);
412    _stringshare_del(&e_connman_prop_proxy);
413    _stringshare_del(&e_connman_prop_proxy_configuration);
414    _stringshare_del(&e_connman_prop_url);
415    _stringshare_del(&e_connman_prop_servers);
416    _stringshare_del(&e_connman_prop_excludes);
417
418    if (pending_get_name_owner)
419      {
420         dbus_pending_call_cancel(pending_get_name_owner);
421         pending_get_name_owner = NULL;
422      }
423
424    if (cb_name_owner_changed)
425      {
426         e_dbus_signal_handler_del(e_connman_conn, cb_name_owner_changed);
427         cb_name_owner_changed = NULL;
428      }
429
430    if (unique_name)
431       _e_connman_system_name_owner_exit();
432
433    e_connman_elements_shutdown();
434    eina_log_domain_unregister(_e_dbus_connman_log_dom);
435    e_connman_conn = NULL;
436
437    return init_count;
438 }
439