Tizen Native API
3.0
|
Functions | |
Eldbus_Connection * | eldbus_connection_get (Eldbus_Connection_Type type) |
Eldbus_Connection * | eldbus_private_connection_get (Eldbus_Connection_Type type) |
Eldbus_Connection * | eldbus_address_connection_get (const char *address) |
Eldbus_Connection * | eldbus_private_address_connection_get (const char *address) |
Eldbus_Connection * | eldbus_connection_ref (Eldbus_Connection *conn) |
Increment connection reference count. | |
void | eldbus_connection_unref (Eldbus_Connection *conn) |
Decrement connection reference count. | |
void | eldbus_connection_free_cb_add (Eldbus_Connection *conn, Eldbus_Free_Cb cb, const void *data) |
Add a callback function to be called when connection is freed. | |
void | eldbus_connection_free_cb_del (Eldbus_Connection *conn, Eldbus_Free_Cb cb, const void *data) |
Remove callback registered in eldbus_connection_free_cb_add(). | |
void | eldbus_connection_data_set (Eldbus_Connection *conn, const char *key, const void *data) |
Set an attached data pointer to an object with a given string key. | |
void * | eldbus_connection_data_get (const Eldbus_Connection *conn, const char *key) |
Get data stored in connection. | |
void * | eldbus_connection_data_del (Eldbus_Connection *conn, const char *key) |
Del data stored in connection. | |
void | eldbus_connection_event_callback_add (Eldbus_Connection *conn, Eldbus_Connection_Event_Type type, Eldbus_Connection_Event_Cb cb, const void *cb_data) |
Add a callback function to be called when an event occurs of the type passed. | |
void | eldbus_connection_event_callback_del (Eldbus_Connection *conn, Eldbus_Connection_Event_Type type, Eldbus_Connection_Event_Cb cb, const void *cb_data) |
Remove callback registered in eldbus_connection_event_callback_add(). | |
Eldbus_Pending * | eldbus_connection_send (Eldbus_Connection *conn, Eldbus_Message *msg, Eldbus_Message_Cb cb, const void *cb_data, double timeout) |
Send a message. | |
const char * | eldbus_connection_unique_name_get (Eldbus_Connection *conn) |
Gets unique name assigned by the message bus. | |
Typedefs | |
typedef void(* | Eldbus_Connection_Event_Cb )(void *data, Eldbus_Connection *conn, void *event_info) |
Defines | |
#define | ELDBUS_TIMEOUT_INFINITE ((int) 0x7fffffff) |
Define Documentation
#define ELDBUS_TIMEOUT_INFINITE ((int) 0x7fffffff) |
Infinite timeout definition
Typedef Documentation
Callback called when we receive an event.
Enumeration Type Documentation
Function Documentation
Eldbus_Connection* eldbus_address_connection_get | ( | const char * | address | ) |
Establish a connection to bus and integrate it with the ecore main loop. If a connection of given type was already created before, its reference counter is incremented and the connection is returned.
- Parameters:
-
address the address which will be passed to dbus_connection_open()
- Returns:
- connection with bus
- Since :
- 3.0
void* eldbus_connection_data_del | ( | Eldbus_Connection * | conn, |
const char * | key | ||
) |
Del data stored in connection.
- Parameters:
-
conn connection where data is stored key that identifies data
- Returns:
- pointer to data if found otherwise NULL
- Since :
- 3.0
void* eldbus_connection_data_get | ( | const Eldbus_Connection * | conn, |
const char * | key | ||
) |
Get data stored in connection.
- Parameters:
-
conn connection where data is stored key key that identifies data
- Returns:
- pointer to data if found otherwise NULL
- Since :
- 3.0
void eldbus_connection_data_set | ( | Eldbus_Connection * | conn, |
const char * | key, | ||
const void * | data | ||
) |
Set an attached data pointer to an object with a given string key.
- Parameters:
-
conn The connection object to store data to key to identify data data data that will be stored
- Since :
- 3.0
void eldbus_connection_event_callback_add | ( | Eldbus_Connection * | conn, |
Eldbus_Connection_Event_Type | type, | ||
Eldbus_Connection_Event_Cb | cb, | ||
const void * | cb_data | ||
) |
Add a callback function to be called when an event occurs of the type passed.
- Since :
- 3.0
void eldbus_connection_event_callback_del | ( | Eldbus_Connection * | conn, |
Eldbus_Connection_Event_Type | type, | ||
Eldbus_Connection_Event_Cb | cb, | ||
const void * | cb_data | ||
) |
Remove callback registered in eldbus_connection_event_callback_add().
- Since :
- 3.0
void eldbus_connection_free_cb_add | ( | Eldbus_Connection * | conn, |
Eldbus_Free_Cb | cb, | ||
const void * | data | ||
) |
Add a callback function to be called when connection is freed.
- Parameters:
-
conn The connection object to add the callback to. cb callback to be called data data passed to callback
- Since :
- 3.0
void eldbus_connection_free_cb_del | ( | Eldbus_Connection * | conn, |
Eldbus_Free_Cb | cb, | ||
const void * | data | ||
) |
Remove callback registered in eldbus_connection_free_cb_add().
- Since :
- 3.0
Establish a connection to bus and integrate it with the ecore main loop. If a connection of given type was already created before, its reference counter is incremented and the connection is returned.
- Parameters:
-
type type of connection e.g ELDBUS_CONNECTION_TYPE_SESSION, ELDBUS_CONNECTION_TYPE_SYSTEM or ELDBUS_CONNECTION_TYPE_STARTER
- Returns:
- connection with bus
- Since :
- 3.0
Increment connection reference count.
- Parameters:
-
conn The given Eldbus_Connection object to reference.
- Returns:
- The Eldbus_Connection object given as parameter.
- Since :
- 3.0
Eldbus_Pending* eldbus_connection_send | ( | Eldbus_Connection * | conn, |
Eldbus_Message * | msg, | ||
Eldbus_Message_Cb | cb, | ||
const void * | cb_data, | ||
double | timeout | ||
) |
Send a message.
- Parameters:
-
conn the connection where the message will be sent msg message that will be sent cb if msg is a method call a callback should be passed to be executed when a response arrives cb_data data passed to callback timeout timeout in milliseconds, -1 to use default internal value or ELDBUS_TIMEOUT_INFINITE for no timeout
- Returns:
- A Eldbus_Pending struct.
- Since :
- 3.0
- Examples:
- server.c.
const char* eldbus_connection_unique_name_get | ( | Eldbus_Connection * | conn | ) |
Gets unique name assigned by the message bus.
- Parameters:
-
conn connection object to get unique name from.
- Returns:
- pointer to unique name string or NULL or error. Returned value remains valid until connection is free.
- Since :
- 3.0
void eldbus_connection_unref | ( | Eldbus_Connection * | conn | ) |
Decrement connection reference count.
If reference count reaches 0, the connection to bus will be dropped and all its children will be invalidated.
- Parameters:
-
conn The given Eldbus_Connection object to unreference.
- Since :
- 3.0
Eldbus_Connection* eldbus_private_address_connection_get | ( | const char * | address | ) |
Always create and establish a new connection to bus and integrate it with the ecore main loop. Differently from eldbus_connection_get(), this function guarantees to create a new connection to the D-Bus daemon and the connection is not shared by any means.
- Parameters:
-
address the address which will be passed to dbus_connection_open_private()
- Returns:
- connection with bus
- Since :
- 3.0
Always create and establish a new connection to bus and integrate it with the ecore main loop. Differently from eldbus_connection_get(), this function guarantees to create a new connection to the D-Bus daemon and the connection is not shared by any means.
- Parameters:
-
type type of connection e.g ELDBUS_CONNECTION_TYPE_SESSION, ELDBUS_CONNECTION_TYPE_SYSTEM or ELDBUS_CONNECTION_TYPE_STARTER
- Returns:
- connection with bus
- Since :
- 3.0