more easy properties for network, fix typo with "Strength".
[framework/uifw/edbus.git] / src / lib / connman / e_connman_service.c
1 #include "e_connman_private.h"
2
3 E_Connman_Element *
4 e_connman_service_get(const char *path)
5 {
6    E_Connman_Element *service;
7
8    EINA_SAFETY_ON_NULL_RETURN_VAL(path, NULL);
9
10    service = e_connman_element_get(path);
11    if (!service)
12      return NULL;
13
14    if (!e_connman_element_is_service(service))
15      {
16         WRN("path '%s' is not a service!", path);
17         return NULL;
18      }
19
20    return service;
21 }
22
23 /**
24  * Connect this service.
25  *
26  * Connect this service. It will attempt to connect
27  * WiFi, WiMAX or Bluetooth services.
28  *
29  * For Ethernet devices this method can only be used
30  * if it has previously been disconnected. Otherwise
31  * the plugging of a cable will trigger connecting
32  * automatically. If no cable is plugged in this method
33  * will fail.
34  *
35  * @param service path to call method on server.
36  * @param cb function to call when server replies or some error happens.
37  * @param data data to give to cb when it is called.
38  *
39  * @return 1 on success, 0 otherwise.
40  */
41 bool
42 e_connman_service_connect(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
43 {
44    const char name[] = "Connect";
45
46    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
47    return e_connman_element_call_full
48      (service, name, NULL, &service->_pending.service_connect, cb, data);
49 }
50
51 /**
52  * Disconnect this service.
53  *
54  * Disconnect this service. If the service is not
55  * connected an error message will be generated.
56  *
57  * On Ethernet devices this will disconnect the IP
58  * details from the service. It will not magically
59  * unplug the cable. When no cable is plugged in this
60  * method will fail.
61  *
62  * This method can also be used to abort a previous
63  * connectiong attempt via the Connect method.
64  *
65  * @param service path to call method on server.
66  * @param cb function to call when server replies or some error happens.
67  * @param data data to give to cb when it is called.
68  *
69  * @return 1 on success, 0 otherwise.
70  */
71 bool
72 e_connman_service_disconnect(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
73 {
74    const char name[] = "Disconnect";
75
76    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
77    return e_connman_element_call_full
78      (service, name, NULL, &service->_pending.service_disconnect, cb, data);
79 }
80
81 /**
82  * Remove this service.
83  *
84  * A successfully connected service with Favorite=true
85  * can be removed this way. If it is connected, it will
86  * be automatically disconnected first.
87  *
88  * If the service requires a passphrase it will be
89  * cleared and forgotten when removing.
90  *
91  * This is similar to setting the Favorite property
92  * to false, but that is currently not supported.
93  *
94  * In the case a connection attempt failed and the
95  * service is in the State=failure, this method can
96  * also be used to reset the service.
97  *
98  * Calling this method on Ethernet devices will cause
99  * an error message. It is not possible to remove these
100  * kind of devices.
101  *
102  * @param service path to call method on server.
103  * @param cb function to call when server replies or some error happens.
104  * @param data data to give to cb when it is called.
105  *
106  * @return 1 on success, 0 otherwise.
107  */
108 bool
109 e_connman_service_remove(E_Connman_Element *service, E_DBus_Method_Return_Cb cb, const void *data)
110 {
111    const char name[] = "Remove";
112
113    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
114    return e_connman_element_call_full
115      (service, name, NULL, &service->_pending.service_remove, cb, data);
116 }
117
118 /**
119  * Clears the value of the specified property.
120  *
121  *
122  * @param service path to call method on server.
123  * @param property to be cleared.
124  * @param cb function to call when server replies or some error happens.
125  * @param data data to give to cb when it is called.
126  *
127  * @return 1 on success, 0 otherwise.
128  */
129 bool
130 e_connman_service_clear_property(E_Connman_Element *service, const char *property, E_DBus_Method_Return_Cb cb, const void *data)
131 {
132    const char name[] = "ClearProperty";
133
134    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
135    EINA_SAFETY_ON_NULL_RETURN_VAL(property, 0);
136    return e_connman_element_call_with_string
137      (service, name, property, NULL, &service->_pending.service_clear_property,
138       cb, data);
139 }
140
141 /**
142  * Move service before in favorites list.
143  *
144  * Call method MoveBefore(object service) at the given service on server.
145  *
146  * If a service has been used before, this allows a
147  * reorder of the favorite services.
148  *
149  * The target service object must be part of this
150  * profile. Moving between profiles is not supported.
151  *
152  * @param service path to call method on server.
153  * @param object_path object service.
154  * @param cb function to call when server replies or some error happens.
155  * @param data data to give to cb when it is called.
156  *
157  * @return 1 on success, 0 otherwise.
158  */
159 bool
160 e_connman_service_move_before(E_Connman_Element *service, const char *object_path, E_DBus_Method_Return_Cb cb, const void *data)
161 {
162    const char name[] = "MoveBefore";
163
164    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
165    EINA_SAFETY_ON_NULL_RETURN_VAL(object_path, 0);
166    return e_connman_element_call_with_path
167      (service, name, object_path, NULL,
168       &service->_pending.service_move_before, cb, data);
169 }
170
171 /**
172  * Move service after in favorites list.
173  *
174  * Call method MoveAfter(object service) at the given service on server.
175  *
176  * If a service has been used before, this allows a
177  * reorder of the favorite services.
178  *
179  * The target service object must be part of this
180  * profile. Moving between profiles is not supported.
181  *
182  * @param service path to call method on server.
183  * @param cb function to call when server replies or some error happens.
184  * @param data data to give to cb when it is called.
185  *
186  * @return 1 on success, 0 otherwise.
187  */
188 bool
189 e_connman_service_move_after(E_Connman_Element *service, const char *object_path, E_DBus_Method_Return_Cb cb, const void *data)
190 {
191    const char name[] = "MoveAfter";
192
193    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
194    EINA_SAFETY_ON_NULL_RETURN_VAL(object_path, 0);
195    return e_connman_element_call_with_path
196      (service, name, object_path, NULL,
197       &service->_pending.service_move_after, cb, data);
198 }
199
200 /**
201  * Get property "State" value.
202  *
203  * If this property isn't found then 0 is returned.
204  * If zero is returned, then this call failed and parameter-returned
205  * values shall be considered invalid.
206  *
207  * The service state information.
208  *
209  * Valid states are "idle", "failure", "association",
210  * "configuration" and "ready".
211  *
212  * @param service path to get property.
213  * @param state where to store the property value, must be a pointer
214  *        to string (const char **), it will not be allocated or
215  *        copied and references will be valid until element changes,
216  *        so copy it if you want to use it later.
217  *
218  * @return 1 on success, 0 otherwise.
219  */
220 bool
221 e_connman_service_state_get(const E_Connman_Element *service, const char **state)
222 {
223    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
224    EINA_SAFETY_ON_NULL_RETURN_VAL(state, 0);
225    return e_connman_element_property_get_stringshared
226      (service, e_connman_prop_state, NULL, state);
227 }
228
229 /**
230  * Get property "Error" value.
231  *
232  * If this property isn't found then 0 is returned.
233  * If zero is returned, then this call failed and parameter-returned
234  * values shall be considered invalid.
235  *
236  * The service error status details.
237  *
238  * When error occur during connection or disconnection
239  * the detailed information are represented in this
240  * property to help the user interface to present the
241  * user with alternate options.
242  *
243  * This property is only valid when the service is in
244  * the "failure" state. Otherwise it might be empty or
245  * not present at all.
246  *
247  * Current defined error code is "dhcp-failed".
248  *
249  * @param service path to get property.
250  * @param error where to store the property value, must be a pointer
251  *        to string (const char **), it will not be allocated or
252  *        copied and references will be valid until element changes,
253  *        so copy it if you want to use it later.
254  *
255  * @return 1 on success, 0 otherwise.
256  */
257 bool
258 e_connman_service_error_get(const E_Connman_Element *service, const char **error)
259 {
260    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
261    EINA_SAFETY_ON_NULL_RETURN_VAL(error, 0);
262    return e_connman_element_property_get_stringshared
263      (service, e_connman_prop_error, NULL, error);
264 }
265
266 /**
267  * Get property "Name" value.
268  *
269  * If this property isn't found then 0 is returned.
270  * If zero is returned, then this call failed and parameter-returned
271  * values shall be considered invalid.
272  *
273  * The service name (for example "Wireless" etc.)
274  *
275  * This name can be used for directly displaying it in
276  * the application. It has pure informational purpose.
277  *
278  * For Ethernet devices and hidden WiFi networks it is
279  * not guaranteed that this property is present.
280  *
281  * @param service path to get property.
282  * @param name where to store the property value, must be a pointer
283  *        to string (const char **), it will not be allocated or
284  *        copied and references will be valid until element changes,
285  *        so copy it if you want to use it later.
286  *
287  * @return 1 on success, 0 otherwise.
288  */
289 bool
290 e_connman_service_name_get(const E_Connman_Element *service, const char **name)
291 {
292    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
293    EINA_SAFETY_ON_NULL_RETURN_VAL(name, 0);
294    return e_connman_element_property_get_stringshared
295      (service, e_connman_prop_name, NULL, name);
296 }
297
298 /**
299  * Get property "Type" value.
300  *
301  * If this property isn't found then 0 is returned.
302  * If zero is returned, then this call failed and parameter-returned
303  * values shall be considered invalid.
304  *
305  * The service type (for example "ethernet", "wifi" etc.)
306  *
307  * This information should only be used to determine
308  * advanced properties or showing the correct icon
309  * to the user.
310  *
311  * @param service path to get property.
312  * @param type where to store the property value, must be a pointer
313  *        to string (const char **), it will not be allocated or
314  *        copied and references will be valid until element changes,
315  *        so copy it if you want to use it later.
316  *
317  * @return 1 on success, 0 otherwise.
318  */
319 bool
320 e_connman_service_type_get(const E_Connman_Element *service, const char **type)
321 {
322    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
323    EINA_SAFETY_ON_NULL_RETURN_VAL(type, 0);
324    return e_connman_element_property_get_stringshared
325      (service, e_connman_prop_type, NULL, type);
326 }
327
328 /**
329  * Get property "Mode" value.
330  *
331  * If this property isn't found then 0 is returned.
332  * If zero is returned, then this call failed and parameter-returned
333  * values shall be considered invalid.
334  *
335  * If the service type is WiFi or Cellular, then this
336  * property is present and contains the mode of the
337  * network.
338  *
339  * For WiFi services the possible values are "managed"
340  * and "adhoc". For Cellular services it describes the
341  * network technology. Possible values are "gprs", "edge"
342  * and "umts".
343  *
344  * This property might be only present for WiFi and
345  * Cellular services.
346  *
347  * @param service path to get property.
348  * @param mode where to store the property value, must be a pointer
349  *        to string (const char **), it will not be allocated or
350  *        copied and references will be valid until element changes,
351  *        so copy it if you want to use it later.
352  *
353  * @return 1 on success, 0 otherwise.
354  */
355 bool
356 e_connman_service_mode_get(const E_Connman_Element *service, const char **mode)
357 {
358    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
359    EINA_SAFETY_ON_NULL_RETURN_VAL(mode, 0);
360    return e_connman_element_property_get_stringshared
361      (service, e_connman_prop_mode, NULL, mode);
362 }
363
364 /**
365  * Get property "Security" value.
366  *
367  * If this property isn't found then 0 is returned.
368  * If zero is returned, then this call failed and parameter-returned
369  * values shall be considered invalid.
370  *
371  * If the service type is WiFi, then this property is
372  * present and contains the security method or key
373  * management setting.
374  *
375  * Possible values are "none", "wep", "wpa" and "rsn".
376  *
377  * This property might be only present for WiFi
378  * services.
379  *
380  * @param service path to get property.
381  * @param security where to store the property value, must be a pointer
382  *        to string (const char **), it will not be allocated or
383  *        copied and references will be valid until element changes,
384  *        so copy it if you want to use it later.
385  *
386  * @return 1 on success, 0 otherwise.
387  */
388 bool
389 e_connman_service_security_get(const E_Connman_Element *service, const char **security)
390 {
391    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
392    EINA_SAFETY_ON_NULL_RETURN_VAL(security, 0);
393    return e_connman_element_property_get_stringshared
394      (service, e_connman_prop_security, NULL, security);
395 }
396
397 /**
398  * Get property "Passphrase" value.
399  *
400  * If this property isn't found then 0 is returned.
401  * If zero is returned, then this call failed and parameter-returned
402  * values shall be considered invalid.
403  *
404  * If the service type is WiFi, then this property
405  * can be used to store a passphrase.
406  *
407  * No PropertyChanged signals will be send for this
408  * property. The PassphraseRequired property should
409  * be monitored instead.
410  *
411  * This property might also not always be included
412  * since it is protected by a different security policy.
413  *
414  * @param service path to get property.
415  * @param passphrase where to store the property value, must be a pointer
416  *        to string (const char **), it will not be allocated or
417  *        copied and references will be valid until element changes,
418  *        so copy it if you want to use it later.
419  *
420  * @return 1 on success, 0 otherwise.
421  * @see e_connman_service_passphrase_set()
422  */
423 bool
424 e_connman_service_passphrase_get(const E_Connman_Element *service, const char **passphrase)
425 {
426    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
427    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase, 0);
428    return e_connman_element_property_get_stringshared
429      (service, e_connman_prop_passphrase, NULL, passphrase);
430 }
431
432 /**
433  * Set property "Passphrase" value.
434  *
435  * If this property isn't found then 0 is returned.
436  * If zero is returned, then this call failed and parameter-returned
437  * values shall be considered invalid.
438  *
439  * If the service type is WiFi, then this property
440  * can be used to store a passphrase.
441  *
442  * No PropertyChanged signals will be send for this
443  * property. The PassphraseRequired property should
444  * be monitored instead.
445  *
446  * This property might also not always be included
447  * since it is protected by a different security policy.
448  *
449  * @param service path to get property.
450  * @param passphrase value to set.
451  * @param cb function to call when server replies or some error happens.
452  * @param data data to give to cb when it is called.
453  *
454  * @return 1 on success, 0 otherwise.
455  * @see e_connman_service_passphrase_get()
456  */
457 bool
458 e_connman_service_passphrase_set(E_Connman_Element *service, const char *passphrase, E_DBus_Method_Return_Cb cb, const void *data)
459 {
460    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
461    return e_connman_element_property_set_full
462      (service, e_connman_prop_passphrase, DBUS_TYPE_STRING,
463       passphrase, cb, data);
464 }
465
466 /**
467  * Get property "PassphraseRequired" value.
468  *
469  * If this property isn't found then 0 is returned.
470  * If zero is returned, then this call failed and parameter-returned
471  * values shall be considered invalid.
472  *
473  * If the service type is WiFi, then this property
474  * indicates if a passphrase is required.
475  *
476  * If a passphrase has been set already or if no
477  * passphrase is needed, then this property will
478  * be set to false.
479  *
480  * @param service path to get property.
481  * @param passphrase_required where to store the property value, must be a
482  *        pointer to boolean (bool *).
483  *
484  * @return 1 on success, 0 otherwise.
485  */
486 bool
487 e_connman_service_passphrase_required_get(const E_Connman_Element *service, bool *passphrase_required)
488 {
489    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
490    EINA_SAFETY_ON_NULL_RETURN_VAL(passphrase_required, 0);
491    return e_connman_element_property_get_stringshared
492      (service, e_connman_prop_passphrase_required, NULL, passphrase_required);
493 }
494
495 /**
496  * Get property "Strength" value.
497  *
498  * If this property isn't found then 0 is returned.
499  * If zero is returned, then this call failed and parameter-returned
500  * values shall be considered invalid.
501  *
502  * Indicates the signal strength of the service. This
503  * is a normalized value between 0 and 100.
504  *
505  * This property will not be present for Ethernet
506  * devices.
507  *
508  * @param service path to get property.
509  * @param strength where to store the property value, must be a pointer
510  *        to byte (unsigned char*).
511  *
512  * @return 1 on success, 0 otherwise.
513  */
514 bool
515 e_connman_service_strength_get(const E_Connman_Element *service, unsigned char *strength)
516 {
517    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
518    EINA_SAFETY_ON_NULL_RETURN_VAL(strength, 0);
519    return e_connman_element_property_get_stringshared
520      (service, e_connman_prop_strength, NULL, strength);
521 }
522
523 /**
524  * Get property "Favorite" value.
525  *
526  * If this property isn't found then 0 is returned.
527  * If zero is returned, then this call failed and parameter-returned
528  * values shall be considered invalid.
529  *
530  * Will be true if a cable is plugged in or the user
531  * selected and successfully connected to this service.
532  *
533  * This value is automatically changed and to revert
534  * it back to false the Remove() method needs to be
535  * used.
536  *
537  * @param service path to get property.
538  * @param favorite where to store the property value, must be a
539  *        pointer to boolean (bool *).
540  *
541  * @return 1 on success, 0 otherwise.
542  */
543 bool
544 e_connman_service_favorite_get(const E_Connman_Element *service, bool *favorite)
545 {
546    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
547    EINA_SAFETY_ON_NULL_RETURN_VAL(favorite, 0);
548    return e_connman_element_property_get_stringshared
549      (service, e_connman_prop_favorite, NULL, favorite);
550 }
551
552 /**
553  * Get property "Immutable" value.
554  *
555  * This value will be set to true if the service is configured
556  * externally via a configuration file.
557  *
558  * The only valid operation are e_connman_service_connect() and
559  * e_connman_service_disconnect(). The e_connman_service_remove()
560  * method will result in an error.
561
562  * @param service path to get property.
563  * @param immutable where to store the property value, must be a
564  *        pointer to bollean (bool *).
565  *
566  * @return 1 on success, 0 otherwise.
567  */
568 bool
569 e_connman_service_immutable_get(const E_Connman_Element *service, bool *immutable)
570 {
571    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
572    EINA_SAFETY_ON_NULL_RETURN_VAL(immutable, 0);
573    return e_connman_element_property_get_stringshared
574      (service, e_connman_prop_immutable, NULL, immutable);
575 }
576
577 /**
578  * Get property "AutoConnect" value.
579  *
580  * If this property isn't found then 0 is returned.
581  * If zero is returned, then this call failed and parameter-returned
582  * values shall be considered invalid.
583  *
584  * If set to true, this service will auto-connect
585  * when not other connection is available.
586  *
587  * For favorite services it is possible to change
588  * this value to prevent or permit automatic
589  * connection attempts.
590  *
591  * @param service path to get property.
592  * @param auto_connect where to store the property value, must be a
593  *        pointer to boolean (bool *).
594  *
595  * @return 1 on success, 0 otherwise.
596  * @see e_connman_service_auto_connect_set()
597  */
598 bool
599 e_connman_service_auto_connect_get(const E_Connman_Element *service, bool *auto_connect)
600 {
601    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
602    EINA_SAFETY_ON_NULL_RETURN_VAL(auto_connect, 0);
603    return e_connman_element_property_get_stringshared
604      (service, e_connman_prop_auto_connect, NULL, auto_connect);
605 }
606
607 /**
608  * Set property "AutoConnect" value.
609  *
610  * If this property isn't found then 0 is returned.
611  * If zero is returned, then this call failed and parameter-returned
612  * values shall be considered invalid.
613  *
614  * If set to true, this service will auto-connect
615  * when not other connection is available.
616  *
617  * For favorite services it is possible to change
618  * this value to prevent or permit automatic
619  * connection attempts.
620  *
621  * @param service path to get property.
622  * @param service_favorite where to store the property value, must be a
623  *        pointer to boolean (bool *).
624  *
625  * @return 1 on success, 0 otherwise.
626  * @see e_connman_service_auto_connect_get()
627  */
628 bool
629 e_connman_service_auto_connect_set(E_Connman_Element *service, bool auto_connect, E_DBus_Method_Return_Cb cb, const void *data)
630 {
631    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
632    return e_connman_element_property_set_full
633      (service, e_connman_prop_auto_connect, DBUS_TYPE_BOOLEAN, &auto_connect, cb, data);
634 }
635
636 /**
637  * Get property "SetupRequired" value.
638  *
639  * If this property isn't found then 0 is returned.
640  * If zero is returned, then this call failed and parameter-returned
641  * values shall be considered invalid.
642  *
643  * If the service is Cellular, then this property
644  * indicates that some extra setup steps are required.
645  *
646  * In most cases it is required to fill in the APN
647  * details.
648  *
649  * @param service path to get property.
650  * @param setup_required where to store the property value, must be a
651  *        pointer to boolean (bool *).
652  *
653  * @return 1 on success, 0 otherwise.
654  */
655 bool
656 e_connman_service_setup_required_get(const E_Connman_Element *service, bool *setup_required)
657 {
658    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
659    EINA_SAFETY_ON_NULL_RETURN_VAL(setup_required, 0);
660    return e_connman_element_property_get_stringshared
661      (service, e_connman_prop_setup_required, NULL, setup_required);
662 }
663
664 /**
665  * Get property "APN" value.
666  *
667  * If this property isn't found then 0 is returned.
668  * If zero is returned, then this call failed and parameter-returned
669  * values shall be considered invalid.
670  *
671  * If the service is Cellular, then this property
672  * contains the APN details.
673  *
674  * The APN is network provider specific and even
675  * sometimes data plan specific. Possible examples
676  * are "isp.cingular" or "internet.t-mobile".
677  *
678  * This property might also not always be included
679  * since it is protected by a different security policy.
680  *
681  * @param service path to get property.
682  * @param apn where to store the property value, must be a pointer
683  *        to string (const char **), it will not be allocated or
684  *        copied and references will be valid until element changes,
685  *        so copy it if you want to use it later.
686  *
687  * @return 1 on success, 0 otherwise.
688  * @see e_connman_service_apn_set()
689  */
690 bool
691 e_connman_service_apn_get(const E_Connman_Element *service, const char **apn)
692 {
693    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
694    EINA_SAFETY_ON_NULL_RETURN_VAL(apn, 0);
695    return e_connman_element_property_get_stringshared
696      (service, e_connman_prop_apn, NULL, apn);
697 }
698
699 /**
700  * Set property "APN" value.
701  *
702  * If this property isn't found then 0 is returned.
703  * If zero is returned, then this call failed and parameter-returned
704  * values shall be considered invalid.
705  *
706  * If the service is Cellular, then this property
707  * contains the APN details.
708  *
709  * The APN is network provider specific and even
710  * sometimes data plan specific. Possible examples
711  * are "isp.cingular" or "internet.t-mobile".
712  *
713  * This property might also not always be included
714  * since it is protected by a different security policy.
715  *
716  * @param service path to get property.
717  * @param passphrase value to set.
718  * @param cb function to call when server replies or some error happens.
719  * @param data data to give to cb when it is called.
720  *
721  * @return 1 on success, 0 otherwise.
722  * @see e_connman_service_apn_get()
723  */
724 bool
725 e_connman_service_apn_set(E_Connman_Element *service, const char *apn, E_DBus_Method_Return_Cb cb, const void *data)
726 {
727    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
728    return e_connman_element_property_set_full
729      (service, e_connman_prop_apn, DBUS_TYPE_STRING,
730       apn, cb, data);
731 }
732
733 /**
734  * Get property "MCC" value.
735  *
736  * If this property isn't found then 0 is returned.
737  * If zero is returned, then this call failed and parameter-returned
738  * values shall be considered invalid.
739  *
740  * If the service is Cellular, then this property
741  * contains the Mobile Country Code.
742  *
743  * @param service path to get property.
744  * @param mcc where to store the property value, must be a pointer
745  *        to string (const char **), it will not be allocated or
746  *        copied and references will be valid until element changes,
747  *        so copy it if you want to use it later.
748  *
749  * @return 1 on success, 0 otherwise.
750  */
751 bool
752 e_connman_service_mcc_get(const E_Connman_Element *service, const char **mcc)
753 {
754    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
755    EINA_SAFETY_ON_NULL_RETURN_VAL(mcc, 0);
756    return e_connman_element_property_get_stringshared
757      (service, e_connman_prop_mcc, NULL, mcc);
758 }
759
760 /**
761  * Get property "MNC" value.
762  *
763  * If this property isn't found then 0 is returned.
764  * If zero is returned, then this call failed and parameter-returned
765  * values shall be considered invalid.
766  *
767  * If the service is Cellular, then this property
768  * contains the Mobile Network Code.
769  *
770  * @param service path to get property.
771  * @param mnc where to store the property value, must be a pointer
772  *        to string (const char **), it will not be allocated or
773  *        copied and references will be valid until element changes,
774  *        so copy it if you want to use it later.
775  *
776  * @return 1 on success, 0 otherwise.
777  */
778 bool
779 e_connman_service_mnc_get(const E_Connman_Element *service, const char **mnc)
780 {
781    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
782    EINA_SAFETY_ON_NULL_RETURN_VAL(mnc, 0);
783    return e_connman_element_property_get_stringshared
784      (service, e_connman_prop_mnc, NULL, mnc);
785 }
786
787 /**
788  * Get property "Roaming" value.
789  *
790  * If this property isn't found then 0 is returned.
791  * If zero is returned, then this call failed and parameter-returned
792  * values shall be considered invalid.
793  *
794  * This property indicates if this service is roaming.
795  *
796  * In the case of Cellular services this normally
797  * indicates connections to a foreign provider when
798  * traveling abroad.
799  *
800  * @param service path to get property.
801  * @param roaming where to store the property value, must be a
802  *        pointer to boolean (bool *).
803  *
804  * @return 1 on success, 0 otherwise.
805  */
806 bool
807 e_connman_service_roaming_get(const E_Connman_Element *service, bool *roaming)
808 {
809    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
810    EINA_SAFETY_ON_NULL_RETURN_VAL(roaming, 0);
811    return e_connman_element_property_get_stringshared
812      (service, e_connman_prop_roaming, NULL, roaming);
813 }
814
815 /**
816  * Get property "IPv4.Method" value.
817  *
818  * If this property isn't found then 0 is returned.
819  * If zero is returned, then this call failed and parameter-returned
820  * values shall be considered invalid.
821  *
822  * The IPv4 configuration method. Possible values here
823  * are "dhcp" and "static".
824  *
825  * @param service path to get property.
826  * @param method where to store the property value, must be a pointer
827  *        to string (const char **), it will not be allocated or
828  *        copied and references will be valid until element changes,
829  *        so copy it if you want to use it later.
830  *
831  * @return 1 on success, 0 otherwise.
832  */
833 bool
834 e_connman_service_ipv4_method_get(const E_Connman_Element *service, const char **method)
835 {
836    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
837    EINA_SAFETY_ON_NULL_RETURN_VAL(method, 0);
838    return e_connman_element_property_get_stringshared
839      (service, e_connman_prop_ipv4_method, NULL, method);
840 }
841
842 /**
843  * Get property "IPv4.Address" value.
844  *
845  * If this property isn't found then 0 is returned.
846  * If zero is returned, then this call failed and parameter-returned
847  * values shall be considered invalid.
848  *
849  * The current configured IPv4 address.
850  *
851  * @param service path to get property.
852  * @param address where to store the property value, must be a pointer
853  *        to string (const char **), it will not be allocated or
854  *        copied and references will be valid until element changes,
855  *        so copy it if you want to use it later.
856  *
857  * @return 1 on success, 0 otherwise.
858  */
859 bool
860 e_connman_service_ipv4_address_get(const E_Connman_Element *service, const char **address)
861 {
862    EINA_SAFETY_ON_NULL_RETURN_VAL(service, 0);
863    EINA_SAFETY_ON_NULL_RETURN_VAL(address, 0);
864    return e_connman_element_property_get_stringshared
865      (service, e_connman_prop_ipv4_address, NULL, address);
866 }