X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgdbusprivate.h;h=094891ed512da8a49f7cf7530283e943f41e6b7d;hb=2138deb07ebb7d7e541c0cd35b966e107d1bf800;hp=09ec56d623a8808b697a5b041fc5797d344339f6;hpb=366b3ffcde4f19cabf8685efdc1ccd20dcade0ca;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gdbusprivate.h b/gio/gdbusprivate.h index 09ec56d..094891e 100644 --- a/gio/gdbusprivate.h +++ b/gio/gdbusprivate.h @@ -13,20 +13,18 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Author: David Zeuthen */ +#ifndef __G_DBUS_PRIVATE_H__ +#define __G_DBUS_PRIVATE_H__ + #if !defined (GIO_COMPILATION) #error "gdbusprivate.h is a private header file." #endif -#ifndef __G_DBUS_PRIVATE_H__ -#define __G_DBUS_PRIVATE_H__ - #include G_BEGIN_DECLS @@ -35,12 +33,13 @@ G_BEGIN_DECLS typedef struct GDBusWorker GDBusWorker; -typedef void (*GDBusWorkerMessageReceivedCallback) (GDBusWorker *worker, - GDBusMessage *message, +typedef void (*GDBusWorkerMessageReceivedCallback) (GDBusMessage *message, gpointer user_data); -typedef void (*GDBusWorkerDisconnectedCallback) (GDBusWorker *worker, - gboolean remote_peer_vanished, +typedef GDBusMessage *(*GDBusWorkerMessageAboutToBeSentCallback) (GDBusMessage *message, + gpointer user_data); + +typedef void (*GDBusWorkerDisconnectedCallback) (gboolean remote_peer_vanished, GError *error, gpointer user_data); @@ -49,7 +48,9 @@ typedef void (*GDBusWorkerDisconnectedCallback) (GDBusWorker *worker, */ GDBusWorker *_g_dbus_worker_new (GIOStream *stream, GDBusCapabilityFlags capabilities, + gboolean initially_frozen, GDBusWorkerMessageReceivedCallback message_received_callback, + GDBusWorkerMessageAboutToBeSentCallback message_about_to_be_sent_callback, GDBusWorkerDisconnectedCallback disconnected_callback, gpointer user_data); @@ -62,19 +63,44 @@ void _g_dbus_worker_send_message (GDBusWorker *worker, /* can be called from any thread */ void _g_dbus_worker_stop (GDBusWorker *worker); +/* can be called from any thread */ +void _g_dbus_worker_unfreeze (GDBusWorker *worker); + +/* can be called from any thread (except the worker thread) */ +gboolean _g_dbus_worker_flush_sync (GDBusWorker *worker, + GCancellable *cancellable, + GError **error); + +/* can be called from any thread */ +void _g_dbus_worker_close (GDBusWorker *worker, + GCancellable *cancellable, + GSimpleAsyncResult *result); + /* ---------------------------------------------------------------------------------------------------- */ void _g_dbus_initialize (void); gboolean _g_dbus_debug_authentication (void); +gboolean _g_dbus_debug_transport (void); gboolean _g_dbus_debug_message (void); +gboolean _g_dbus_debug_payload (void); +gboolean _g_dbus_debug_call (void); +gboolean _g_dbus_debug_signal (void); +gboolean _g_dbus_debug_incoming (void); +gboolean _g_dbus_debug_return (void); +gboolean _g_dbus_debug_emission (void); +gboolean _g_dbus_debug_address (void); + +void _g_dbus_debug_print_lock (void); +void _g_dbus_debug_print_unlock (void); gboolean _g_dbus_address_parse_entry (const gchar *address_entry, gchar **out_transport_name, GHashTable **out_key_value_pairs, GError **error); -gchar * _g_dbus_compute_complete_signature (GDBusArgInfo **args, - gboolean include_parentheses); +GVariantType * _g_dbus_compute_complete_signature (GDBusArgInfo **args); + +gchar *_g_dbus_hexdump (const gchar *data, gsize len, guint indent); /* ---------------------------------------------------------------------------------------------------- */ @@ -82,6 +108,51 @@ gchar * _g_dbus_compute_complete_signature (GDBusArgInfo **args, gchar *_g_dbus_win32_get_user_sid (void); #endif +gchar *_g_dbus_get_machine_id (GError **error); + +gchar *_g_dbus_enum_to_string (GType enum_type, gint value); + +/* ---------------------------------------------------------------------------------------------------- */ + +GDBusMethodInvocation *_g_dbus_method_invocation_new (const gchar *sender, + const gchar *object_path, + const gchar *interface_name, + const gchar *method_name, + const GDBusMethodInfo *method_info, + const GDBusPropertyInfo *property_info, + GDBusConnection *connection, + GDBusMessage *message, + GVariant *parameters, + gpointer user_data); + +/* ---------------------------------------------------------------------------------------------------- */ + +gboolean _g_signal_accumulator_false_handled (GSignalInvocationHint *ihint, + GValue *return_accu, + const GValue *handler_return, + gpointer dummy); + +gboolean _g_dbus_object_skeleton_has_authorize_method_handlers (GDBusObjectSkeleton *object); + +void _g_dbus_object_proxy_add_interface (GDBusObjectProxy *proxy, + GDBusProxy *interface_proxy); +void _g_dbus_object_proxy_remove_interface (GDBusObjectProxy *proxy, + const gchar *interface_name); + +/* Implemented in gdbusconnection.c */ +GDBusConnection *_g_bus_get_singleton_if_exists (GBusType bus_type); + +void g_dbus_message_init_header_iter (GDBusMessage *message, + GHashTableIter *iter); + +GObject * +g_dbus_address_get_stream_internal (const gchar *address, + gboolean kdbus_okay, + gchar **out_uuid, + GCancellable *cancellable, + GError **error); + + G_END_DECLS #endif /* __G_DBUS_PRIVATE_H__ */