ooh edbus didn thave runtime version check! fix fix fix! and... 1.0.0
[framework/uifw/edbus.git] / src / lib / dbus / E_DBus.h
1 #ifndef E_DBUS_H
2 #define E_DBUS_H
3
4 #define DBUS_API_SUBJECT_TO_CHANGE
5
6 #ifdef _WIN32
7 # ifdef interface
8 #  undef interface
9 # endif
10 #endif
11
12 #ifdef _WIN32
13 # ifdef interface
14 #  undef interface
15 # endif
16 # define DBUS_API_SUBJECT_TO_CHANGE
17 #endif
18
19 #include <dbus/dbus.h>
20 #include <Eina.h>
21
22 #ifdef EAPI
23 # undef EAPI
24 #endif
25
26 #ifdef _WIN32
27 # ifdef EFL_EDBUS_BUILD
28 #  ifdef DLL_EXPORT
29 #   define EAPI __declspec(dllexport)
30 #  else
31 #   define EAPI
32 #  endif /* ! DLL_EXPORT */
33 # else
34 #  define EAPI __declspec(dllimport)
35 # endif /* ! EFL_EDBUS_BUILD */
36 #else
37 # ifdef __GNUC__
38 #  if __GNUC__ >= 4
39 #   define EAPI __attribute__ ((visibility("default")))
40 #  else
41 #   define EAPI
42 #  endif
43 # else
44 #  define EAPI
45 # endif
46 #endif
47
48 /**
49  * @mainpage EDbus
50  *
51  * @section edbus_intro_sec Introduction
52  *
53  * EDbus is a wrapper around the
54  * <a href="http://www.freedesktop.org/wiki/Software/dbus">dbus</a>
55  * library, which is a message bus system. It also implement a set of
56  * specifications using dbus as interprocess comunication.
57  *
58  * @section edbus_modules_sec Modules
59  *
60  * @li @ref EDbus_Group Wrapper around the dbus library, which
61  * implementent an inter-process communication (IPC) system for
62  * software applications to communicate with one another.
63  * @li @ref EBluez_Group Implementation of the <a
64  * href="http://www.bluez.org/">BlueZ</a> specifications, for wireless
65  * communications with Bleutooth devices.
66  * @li @ref EConnman_Group Implementation of the <a
67  * href="http://connman.net/">connman</a> specifications, which
68  * manages internet connections within embedded devices running the
69  * Linux operating system.
70  * @li @ref EHal_Group Implementation of the <a
71  * href="http://www.freedesktop.org/wiki/Software/hal">HAL</a>
72  * specifications, which is a (software) layer between the hardware
73  * devices of a computer and the softwares that run on that
74  * computer (Hardware Abstraction Layer). HAL is deprecated, in favor
75  * of DeviceKit.
76  * @li @ref ENotify_Group To de described. 
77  * @li @ref EOfono_Group Implementation of the <a
78  * href="http://ofono.org/">ofono</a> specifications, which is an
79  * interface for mobile telephony applications.
80  * @li @ref EUkit_Group Implementation of the <a
81  * href="http://freedesktop.org/wiki/Software/DeviceKit">DeviceKit</a>
82  * specifications, which is, like HAL, an Hardware Abstraction
83  * Layer. DeviceKit is a replacement of the deprecated HAL system. It
84  * has two submodules: UDisks, which manipulate storage devices, and
85  * UPower, which manage power devices.
86  */
87
88 /**
89  * @defgroup EDbus_Group EDbus
90  *
91  * @{
92  */
93
94 #define E_DBUS_FDO_BUS "org.freedesktop.DBus"
95 #define E_DBUS_FDO_PATH "/org/freedesktop/DBus"
96 #define E_DBUS_FDO_INTERFACE E_DBUS_FDO_BUS
97 #define E_DBUS_FDO_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties"
98
99 #ifdef __cplusplus
100 extern "C" {
101 #endif
102    
103 #define E_DBUS_VERSION_MAJOR 1
104 #define E_DBUS_VERSION_MINOR 0
105    
106    typedef struct _E_DBus_Version
107      {
108         int major;
109         int minor;
110         int micro;
111         int revision;
112      } E_DBus_Version;
113    
114    EAPI extern E_DBus_Version *e_dbus_version;
115    
116    EAPI extern int E_DBUS_DOMAIN_GLOBAL;
117    EAPI extern int E_DBUS_EVENT_SIGNAL;
118
119    typedef struct E_DBus_Connection E_DBus_Connection;
120    typedef struct E_DBus_Object E_DBus_Object;
121    typedef struct E_DBus_Interface E_DBus_Interface;
122    typedef struct E_DBus_Signal_Handler E_DBus_Signal_Handler;
123
124    typedef DBusMessage *(* E_DBus_Method_Cb)(E_DBus_Object *obj, DBusMessage *message);
125    typedef void (*E_DBus_Method_Return_Cb) (void *data, DBusMessage *msg, DBusError *error);
126    typedef void (*E_DBus_Signal_Cb) (void *data, DBusMessage *msg);
127
128    typedef void (*E_DBus_Object_Property_Get_Cb) (E_DBus_Object *obj, const char *property, int *type, void **value);
129    typedef int  (*E_DBus_Object_Property_Set_Cb) (E_DBus_Object *obj, const char *property, int type, void *value);
130
131 /**
132  * A callback function for a DBus call
133  * @param user_data the data passed in to the method call
134  * @param event_data a struct containing the return data.
135  */
136    typedef void (*E_DBus_Callback_Func) (void *user_data, void *method_return, DBusError *error);
137    typedef void *(*E_DBus_Unmarshal_Func) (DBusMessage *msg, DBusError *err);
138    typedef void (*E_DBus_Free_Func) (void *data);
139
140    typedef struct E_DBus_Callback E_DBus_Callback;
141
142
143    EAPI int e_dbus_init(void);
144    EAPI int e_dbus_shutdown(void);
145
146 /* setting up the connection */
147
148    EAPI E_DBus_Connection *e_dbus_bus_get(DBusBusType type);
149
150    EAPI void e_dbus_connection_ref(E_DBus_Connection *conn);
151
152    EAPI E_DBus_Connection *e_dbus_connection_setup(DBusConnection *conn);
153    EAPI void e_dbus_connection_close(E_DBus_Connection *conn);
154
155 /* receiving method calls */
156    EAPI E_DBus_Interface *e_dbus_interface_new(const char *interface);
157    EAPI void e_dbus_interface_ref(E_DBus_Interface *iface);
158    EAPI void e_dbus_interface_unref(E_DBus_Interface *iface);
159    EAPI void e_dbus_object_interface_attach(E_DBus_Object *obj, E_DBus_Interface *iface);
160    EAPI void e_dbus_object_interface_detach(E_DBus_Object *obj, E_DBus_Interface *iface);
161    EAPI int e_dbus_interface_method_add(E_DBus_Interface *iface, const char *member, const char *signature, const char *reply_signature, E_DBus_Method_Cb func);
162
163    EAPI int e_dbus_interface_signal_add(E_DBus_Interface *iface, const char *name, const char *signature);
164
165    EAPI E_DBus_Object *e_dbus_object_add(E_DBus_Connection *conn, const char *object_path, void *data);
166    EAPI void e_dbus_object_free(E_DBus_Object *obj);
167    EAPI void *e_dbus_object_data_get(E_DBus_Object *obj);
168    EAPI E_DBus_Connection *e_dbus_object_conn_get(E_DBus_Object *obj);
169    EAPI const char *e_dbus_object_path_get(E_DBus_Object *obj);
170    EAPI const Eina_List *e_dbus_object_interfaces_get(E_DBus_Object *obj);
171
172    EAPI void e_dbus_object_property_get_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Get_Cb func);
173    EAPI void e_dbus_object_property_set_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Set_Cb func);
174
175
176 /* sending method calls */
177
178
179    EAPI DBusPendingCall *e_dbus_message_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Method_Return_Cb cb_return, int timeout, void *data);
180
181    EAPI DBusPendingCall *e_dbus_method_call_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Callback_Func cb_func, E_DBus_Free_Func free_func, int timeout, void *data);
182
183
184 /* signal receiving */
185
186    EAPI E_DBus_Signal_Handler *e_dbus_signal_handler_add(E_DBus_Connection *conn, const char *sender, const char *path, const char *interface, const char *member, E_DBus_Signal_Cb cb_signal, void *data);
187    EAPI void e_dbus_signal_handler_del(E_DBus_Connection *conn, E_DBus_Signal_Handler *sh);
188
189 /* standard dbus method calls */
190
191    EAPI DBusPendingCall *e_dbus_request_name(E_DBus_Connection *conn, const char *name,
192                                              unsigned int flags,
193                                              E_DBus_Method_Return_Cb cb_return,
194                                              const void *data);
195    EAPI DBusPendingCall *e_dbus_release_name(E_DBus_Connection *conn, const char *name,
196                                              E_DBus_Method_Return_Cb cb_return,
197                                              const void *data);
198
199    EAPI DBusPendingCall *e_dbus_get_name_owner(E_DBus_Connection *conn, const char *name,
200                                                E_DBus_Method_Return_Cb cb_return,
201                                                const void *data);
202    EAPI DBusPendingCall *e_dbus_list_names(E_DBus_Connection *conn,
203                                            E_DBus_Method_Return_Cb cb_return,
204                                            const void *data);
205    EAPI DBusPendingCall *e_dbus_list_activatable_names(E_DBus_Connection *conn,
206                                                        E_DBus_Method_Return_Cb cb_return,
207                                                        const void *data);
208    EAPI DBusPendingCall *e_dbus_name_has_owner(E_DBus_Connection *conn, const char *name,
209                                                E_DBus_Method_Return_Cb cb_return,
210                                                const void *data);
211    EAPI DBusPendingCall *e_dbus_start_service_by_name(E_DBus_Connection *conn, const char *name, unsigned int flags,
212                                                       E_DBus_Method_Return_Cb cb_return,
213                                                       const void *data);
214
215 /* standard methods calls on objects */
216    EAPI DBusPendingCall *e_dbus_introspect(E_DBus_Connection *conn, const char *bus,
217        const char *object_path, E_DBus_Method_Return_Cb cb_return, const void *data);
218    EAPI DBusPendingCall *e_dbus_peer_ping(E_DBus_Connection *conn, const char *destination,
219                                           const char *path, E_DBus_Method_Return_Cb cb_return,
220                                           const void *data);
221    EAPI DBusPendingCall *e_dbus_peer_get_machine_id(E_DBus_Connection *conn,
222                                                     const char *destination, const char *path,
223                                                     E_DBus_Method_Return_Cb cb_return,
224                                                     const void *data);
225    EAPI DBusPendingCall *e_dbus_properties_get_all(E_DBus_Connection *conn, const char *destination,
226                                                    const char *path, const char *interface,
227                                                    E_DBus_Method_Return_Cb cb_return,
228                                                    const void *data);
229    EAPI DBusPendingCall *e_dbus_properties_get(E_DBus_Connection *conn, const char *destination,
230                                                const char *path, const char *interface,
231                                                const char *property,
232                                                E_DBus_Method_Return_Cb cb_return,
233                                                const void *data);
234    EAPI DBusPendingCall *e_dbus_properties_set(E_DBus_Connection *conn, const char *destination,
235                                                const char *path, const char *interface,
236                                                const char *property, int value_type,
237                                                const void *value, E_DBus_Method_Return_Cb cb_return,
238                                                const void *data);
239
240
241    EAPI E_DBus_Callback *e_dbus_callback_new(E_DBus_Callback_Func cb_func, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Free_Func free_func, void *user_data);
242
243    EAPI void e_dbus_callback_free(E_DBus_Callback *callback);
244    EAPI void e_dbus_callback_call(E_DBus_Callback *cb, void *data, DBusError *error);
245    EAPI void *e_dbus_callback_unmarshal(E_DBus_Callback *cb, DBusMessage *msg, DBusError *err);
246    EAPI void e_dbus_callback_return_free(E_DBus_Callback *callback, void *data);
247
248 #ifdef __cplusplus
249 }
250 #endif
251
252 /**
253  * @}
254  */
255
256 #endif