X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=blobdiff_plain;f=src%2Finterfaces%2Fhostnamed%2Fhostnamed-gen.c;h=480ff72de154e4e61d16c228d19e073d655059d4;hp=20c1d42391805bd641a7774f3cfab294394ce813;hb=b63d30e3b9cceb0a33045bec2050f5d2598fe583;hpb=3d53b5010764d142493dd2052096065a19dea124 diff --git a/src/interfaces/hostnamed/hostnamed-gen.c b/src/interfaces/hostnamed/hostnamed-gen.c index 20c1d42..480ff72 100644 --- a/src/interfaces/hostnamed/hostnamed-gen.c +++ b/src/interfaces/hostnamed/hostnamed-gen.c @@ -148,3398 +148,6 @@ _g_value_equal (const GValue *a, const GValue *b) return ret; } -/* ------------------------------------------------------------------------ - * Code for interface org.freedesktop.DBus.Peer - * ------------------------------------------------------------------------ - */ - -/** - * SECTION:DBusPeer - * @title: DBusPeer - * @short_description: Generated C code for the org.freedesktop.DBus.Peer D-Bus interface - * - * This section contains code for working with the org.freedesktop.DBus.Peer D-Bus interface in C. - */ - -/* ---- Introspection data for org.freedesktop.DBus.Peer ---- */ - -static const _ExtendedGDBusMethodInfo _dbus_peer_method_info_ping = -{ - { - -1, - (gchar *) "Ping", - NULL, - NULL, - NULL - }, - "handle-ping", - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_peer_method_info_get_machine_id_OUT_ARG_machine_uuid = -{ - { - -1, - (gchar *) "machine_uuid", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_peer_method_info_get_machine_id_OUT_ARG_pointers[] = -{ - &_dbus_peer_method_info_get_machine_id_OUT_ARG_machine_uuid, - NULL -}; - -static const _ExtendedGDBusMethodInfo _dbus_peer_method_info_get_machine_id = -{ - { - -1, - (gchar *) "GetMachineId", - NULL, - (GDBusArgInfo **) &_dbus_peer_method_info_get_machine_id_OUT_ARG_pointers, - NULL - }, - "handle-get-machine-id", - FALSE -}; - -static const _ExtendedGDBusMethodInfo * const _dbus_peer_method_info_pointers[] = -{ - &_dbus_peer_method_info_ping, - &_dbus_peer_method_info_get_machine_id, - NULL -}; - -static const _ExtendedGDBusInterfaceInfo _dbus_peer_interface_info = -{ - { - -1, - (gchar *) "org.freedesktop.DBus.Peer", - (GDBusMethodInfo **) &_dbus_peer_method_info_pointers, - NULL, - NULL, - NULL - }, - "dbus-peer", -}; - - -/** - * dbus_peer_interface_info: - * - * Gets a machine-readable description of the org.freedesktop.DBus.Peer D-Bus interface. - * - * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free. - */ -GDBusInterfaceInfo * -dbus_peer_interface_info (void) -{ - return (GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct; -} - -/** - * dbus_peer_override_properties: - * @klass: The class structure for a #GObject-derived class. - * @property_id_begin: The property id to assign to the first overridden property. - * - * Overrides all #GObject properties in the #DBusPeer interface for a concrete class. - * The properties are overridden in the order they are defined. - * - * Returns: The last property id. - */ -guint -dbus_peer_override_properties (GObjectClass *klass, guint property_id_begin) -{ - return property_id_begin - 1; -} - - - -/** - * DBusPeer: - * - * Abstract interface type for the D-Bus interface org.freedesktop.DBus.Peer. - */ - -/** - * DBusPeerIface: - * @parent_iface: The parent interface. - * @handle_get_machine_id: Handler for the #DBusPeer::handle-get-machine-id signal. - * @handle_ping: Handler for the #DBusPeer::handle-ping signal. - * - * Virtual table for the D-Bus interface org.freedesktop.DBus.Peer. - */ - -typedef DBusPeerIface DBusPeerInterface; -G_DEFINE_INTERFACE (DBusPeer, dbus_peer, G_TYPE_OBJECT); - -static void -dbus_peer_default_init (DBusPeerIface *iface) -{ - /* GObject signals for incoming D-Bus method calls: */ - /** - * DBusPeer::handle-ping: - * @object: A #DBusPeer. - * @invocation: A #GDBusMethodInvocation. - * - * Signal emitted when a remote caller is invoking the Ping() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_peer_complete_ping() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-ping", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPeerIface, handle_ping), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 1, - G_TYPE_DBUS_METHOD_INVOCATION); - - /** - * DBusPeer::handle-get-machine-id: - * @object: A #DBusPeer. - * @invocation: A #GDBusMethodInvocation. - * - * Signal emitted when a remote caller is invoking the GetMachineId() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_peer_complete_get_machine_id() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-get-machine-id", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPeerIface, handle_get_machine_id), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 1, - G_TYPE_DBUS_METHOD_INVOCATION); - -} - -/** - * dbus_peer_call_ping: - * @proxy: A #DBusPeerProxy. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the Ping() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_peer_call_ping_finish() to get the result of the operation. - * - * See dbus_peer_call_ping_sync() for the synchronous, blocking version of this method. - */ -void -dbus_peer_call_ping ( - DBusPeer *proxy, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "Ping", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_peer_call_ping_finish: - * @proxy: A #DBusPeerProxy. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_peer_call_ping(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_peer_call_ping(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_peer_call_ping_finish ( - DBusPeer *proxy, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "()"); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_peer_call_ping_sync: - * @proxy: A #DBusPeerProxy. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the Ping() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_peer_call_ping() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_peer_call_ping_sync ( - DBusPeer *proxy, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "Ping", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "()"); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_peer_call_get_machine_id: - * @proxy: A #DBusPeerProxy. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the GetMachineId() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_peer_call_get_machine_id_finish() to get the result of the operation. - * - * See dbus_peer_call_get_machine_id_sync() for the synchronous, blocking version of this method. - */ -void -dbus_peer_call_get_machine_id ( - DBusPeer *proxy, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "GetMachineId", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_peer_call_get_machine_id_finish: - * @proxy: A #DBusPeerProxy. - * @out_machine_uuid: (out): Return location for return parameter or %NULL to ignore. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_peer_call_get_machine_id(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_peer_call_get_machine_id(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_peer_call_get_machine_id_finish ( - DBusPeer *proxy, - gchar **out_machine_uuid, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(s)", - out_machine_uuid); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_peer_call_get_machine_id_sync: - * @proxy: A #DBusPeerProxy. - * @out_machine_uuid: (out): Return location for return parameter or %NULL to ignore. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the GetMachineId() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_peer_call_get_machine_id() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_peer_call_get_machine_id_sync ( - DBusPeer *proxy, - gchar **out_machine_uuid, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "GetMachineId", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(s)", - out_machine_uuid); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_peer_complete_ping: - * @object: A #DBusPeer. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * - * Helper function used in service implementations to finish handling invocations of the Ping() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_peer_complete_ping ( - DBusPeer *object, - GDBusMethodInvocation *invocation) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("()")); -} - -/** - * dbus_peer_complete_get_machine_id: - * @object: A #DBusPeer. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * @machine_uuid: Parameter to return. - * - * Helper function used in service implementations to finish handling invocations of the GetMachineId() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_peer_complete_get_machine_id ( - DBusPeer *object, - GDBusMethodInvocation *invocation, - const gchar *machine_uuid) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("(s)", - machine_uuid)); -} - -/* ------------------------------------------------------------------------ */ - -/** - * DBusPeerProxy: - * - * The #DBusPeerProxy structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusPeerProxyClass: - * @parent_class: The parent class. - * - * Class structure for #DBusPeerProxy. - */ - -struct _DBusPeerProxyPrivate -{ - GData *qdata; -}; - -static void dbus_peer_proxy_iface_init (DBusPeerIface *iface); - -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusPeerProxy, dbus_peer_proxy, G_TYPE_DBUS_PROXY, - G_ADD_PRIVATE (DBusPeerProxy) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PEER, dbus_peer_proxy_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusPeerProxy, dbus_peer_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PEER, dbus_peer_proxy_iface_init)); - -#endif -static void -dbus_peer_proxy_finalize (GObject *object) -{ - DBusPeerProxy *proxy = DBUS_PEER_PROXY (object); - g_datalist_clear (&proxy->priv->qdata); - G_OBJECT_CLASS (dbus_peer_proxy_parent_class)->finalize (object); -} - -static void -dbus_peer_proxy_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_peer_proxy_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_peer_proxy_g_signal (GDBusProxy *proxy, - const gchar *sender_name G_GNUC_UNUSED, - const gchar *signal_name, - GVariant *parameters) -{ - _ExtendedGDBusSignalInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint n; - guint signal_id; - info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct, signal_name); - if (info == NULL) - return; - num_params = g_variant_n_children (parameters); - paramv = g_new0 (GValue, num_params + 1); - g_value_init (¶mv[0], TYPE_DBUS_PEER); - g_value_set_object (¶mv[0], proxy); - g_variant_iter_init (&iter, parameters); - n = 1; - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.args[n - 1]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_PEER); - g_signal_emitv (paramv, signal_id, 0, NULL); - for (n = 0; n < num_params + 1; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static void -dbus_peer_proxy_g_properties_changed (GDBusProxy *_proxy, - GVariant *changed_properties, - const gchar *const *invalidated_properties) -{ - DBusPeerProxy *proxy = DBUS_PEER_PROXY (_proxy); - guint n; - const gchar *key; - GVariantIter *iter; - _ExtendedGDBusPropertyInfo *info; - g_variant_get (changed_properties, "a{sv}", &iter); - while (g_variant_iter_next (iter, "{&sv}", &key, NULL)) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct, key); - g_datalist_remove_data (&proxy->priv->qdata, key); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } - g_variant_iter_free (iter); - for (n = 0; invalidated_properties[n] != NULL; n++) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct, invalidated_properties[n]); - g_datalist_remove_data (&proxy->priv->qdata, invalidated_properties[n]); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } -} - -static void -dbus_peer_proxy_init (DBusPeerProxy *proxy) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - proxy->priv = dbus_peer_proxy_get_instance_private (proxy); -#else - proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, TYPE_DBUS_PEER_PROXY, DBusPeerProxyPrivate); -#endif - - g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), dbus_peer_interface_info ()); -} - -static void -dbus_peer_proxy_class_init (DBusPeerProxyClass *klass) -{ - GObjectClass *gobject_class; - GDBusProxyClass *proxy_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_peer_proxy_finalize; - gobject_class->get_property = dbus_peer_proxy_get_property; - gobject_class->set_property = dbus_peer_proxy_set_property; - - proxy_class = G_DBUS_PROXY_CLASS (klass); - proxy_class->g_signal = dbus_peer_proxy_g_signal; - proxy_class->g_properties_changed = dbus_peer_proxy_g_properties_changed; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusPeerProxyPrivate)); -#endif -} - -static void -dbus_peer_proxy_iface_init (DBusPeerIface *iface) -{ -} - -/** - * dbus_peer_proxy_new: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Asynchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Peer. See g_dbus_proxy_new() for more details. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_peer_proxy_new_finish() to get the result of the operation. - * - * See dbus_peer_proxy_new_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_peer_proxy_new ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_PEER_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Peer", NULL); -} - -/** - * dbus_peer_proxy_new_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_peer_proxy_new(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_peer_proxy_new(). - * - * Returns: (transfer full) (type DBusPeerProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusPeer * -dbus_peer_proxy_new_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_PEER (ret); - else - return NULL; -} - -/** - * dbus_peer_proxy_new_sync: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Synchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Peer. See g_dbus_proxy_new_sync() for more details. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_peer_proxy_new() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusPeerProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusPeer * -dbus_peer_proxy_new_sync ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_PEER_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Peer", NULL); - if (ret != NULL) - return DBUS_PEER (ret); - else - return NULL; -} - - -/** - * dbus_peer_proxy_new_for_bus: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Like dbus_peer_proxy_new() but takes a #GBusType instead of a #GDBusConnection. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_peer_proxy_new_for_bus_finish() to get the result of the operation. - * - * See dbus_peer_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_peer_proxy_new_for_bus ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_PEER_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Peer", NULL); -} - -/** - * dbus_peer_proxy_new_for_bus_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_peer_proxy_new_for_bus(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_peer_proxy_new_for_bus(). - * - * Returns: (transfer full) (type DBusPeerProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusPeer * -dbus_peer_proxy_new_for_bus_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_PEER (ret); - else - return NULL; -} - -/** - * dbus_peer_proxy_new_for_bus_sync: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Like dbus_peer_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_peer_proxy_new_for_bus() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusPeerProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusPeer * -dbus_peer_proxy_new_for_bus_sync ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_PEER_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Peer", NULL); - if (ret != NULL) - return DBUS_PEER (ret); - else - return NULL; -} - - -/* ------------------------------------------------------------------------ */ - -/** - * DBusPeerSkeleton: - * - * The #DBusPeerSkeleton structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusPeerSkeletonClass: - * @parent_class: The parent class. - * - * Class structure for #DBusPeerSkeleton. - */ - -struct _DBusPeerSkeletonPrivate -{ - GValue *properties; - GList *changed_properties; - GSource *changed_properties_idle_source; - GMainContext *context; - GMutex lock; -}; - -static void -_dbus_peer_skeleton_handle_method_call ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - GDBusMethodInvocation *invocation, - gpointer user_data) -{ - DBusPeerSkeleton *skeleton = DBUS_PEER_SKELETON (user_data); - _ExtendedGDBusMethodInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint num_extra; - guint n; - guint signal_id; - GValue return_value = G_VALUE_INIT; - info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); - g_assert (info != NULL); - num_params = g_variant_n_children (parameters); - num_extra = info->pass_fdlist ? 3 : 2; paramv = g_new0 (GValue, num_params + num_extra); - n = 0; - g_value_init (¶mv[n], TYPE_DBUS_PEER); - g_value_set_object (¶mv[n++], skeleton); - g_value_init (¶mv[n], G_TYPE_DBUS_METHOD_INVOCATION); - g_value_set_object (¶mv[n++], invocation); - if (info->pass_fdlist) - { -#ifdef G_OS_UNIX - g_value_init (¶mv[n], G_TYPE_UNIX_FD_LIST); - g_value_set_object (¶mv[n++], g_dbus_message_get_unix_fd_list (g_dbus_method_invocation_get_message (invocation))); -#else - g_assert_not_reached (); -#endif - } - g_variant_iter_init (&iter, parameters); - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.in_args[n - num_extra]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_PEER); - g_value_init (&return_value, G_TYPE_BOOLEAN); - g_signal_emitv (paramv, signal_id, 0, &return_value); - if (!g_value_get_boolean (&return_value)) - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Method %s is not implemented on interface %s", method_name, interface_name); - g_value_unset (&return_value); - for (n = 0; n < num_params + num_extra; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static GVariant * -_dbus_peer_skeleton_handle_get_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GError **error, - gpointer user_data) -{ - DBusPeerSkeleton *skeleton = DBUS_PEER_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - GVariant *ret; - ret = NULL; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - g_value_init (&value, pspec->value_type); - g_object_get_property (G_OBJECT (skeleton), info->hyphen_name, &value); - ret = g_dbus_gvalue_to_gvariant (&value, G_VARIANT_TYPE (info->parent_struct.signature)); - g_value_unset (&value); - } - return ret; -} - -static gboolean -_dbus_peer_skeleton_handle_set_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GVariant *variant, - GError **error, - gpointer user_data) -{ - DBusPeerSkeleton *skeleton = DBUS_PEER_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - gboolean ret; - ret = FALSE; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_peer_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - if (info->use_gvariant) - g_value_set_variant (&value, variant); - else - g_dbus_gvariant_to_gvalue (variant, &value); - g_object_set_property (G_OBJECT (skeleton), info->hyphen_name, &value); - g_value_unset (&value); - ret = TRUE; - } - return ret; -} - -static const GDBusInterfaceVTable _dbus_peer_skeleton_vtable = -{ - _dbus_peer_skeleton_handle_method_call, - _dbus_peer_skeleton_handle_get_property, - _dbus_peer_skeleton_handle_set_property, - {NULL} -}; - -static GDBusInterfaceInfo * -dbus_peer_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return dbus_peer_interface_info (); -} - -static GDBusInterfaceVTable * -dbus_peer_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return (GDBusInterfaceVTable *) &_dbus_peer_skeleton_vtable; -} - -static GVariant * -dbus_peer_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton) -{ - DBusPeerSkeleton *skeleton = DBUS_PEER_SKELETON (_skeleton); - - GVariantBuilder builder; - guint n; - g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}")); - if (_dbus_peer_interface_info.parent_struct.properties == NULL) - goto out; - for (n = 0; _dbus_peer_interface_info.parent_struct.properties[n] != NULL; n++) - { - GDBusPropertyInfo *info = _dbus_peer_interface_info.parent_struct.properties[n]; - if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE) - { - GVariant *value; - value = _dbus_peer_skeleton_handle_get_property (g_dbus_interface_skeleton_get_connection (G_DBUS_INTERFACE_SKELETON (skeleton)), NULL, g_dbus_interface_skeleton_get_object_path (G_DBUS_INTERFACE_SKELETON (skeleton)), "org.freedesktop.DBus.Peer", info->name, NULL, skeleton); - if (value != NULL) - { - g_variant_take_ref (value); - g_variant_builder_add (&builder, "{sv}", info->name, value); - g_variant_unref (value); - } - } - } -out: - return g_variant_builder_end (&builder); -} - -static void -dbus_peer_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton) -{ -} - -static void dbus_peer_skeleton_iface_init (DBusPeerIface *iface); -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusPeerSkeleton, dbus_peer_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_ADD_PRIVATE (DBusPeerSkeleton) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PEER, dbus_peer_skeleton_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusPeerSkeleton, dbus_peer_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PEER, dbus_peer_skeleton_iface_init)); - -#endif -static void -dbus_peer_skeleton_finalize (GObject *object) -{ - DBusPeerSkeleton *skeleton = DBUS_PEER_SKELETON (object); - g_list_free_full (skeleton->priv->changed_properties, (GDestroyNotify) _changed_property_free); - if (skeleton->priv->changed_properties_idle_source != NULL) - g_source_destroy (skeleton->priv->changed_properties_idle_source); - g_main_context_unref (skeleton->priv->context); - g_mutex_clear (&skeleton->priv->lock); - G_OBJECT_CLASS (dbus_peer_skeleton_parent_class)->finalize (object); -} - -static void -dbus_peer_skeleton_init (DBusPeerSkeleton *skeleton) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - skeleton->priv = dbus_peer_skeleton_get_instance_private (skeleton); -#else - skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, TYPE_DBUS_PEER_SKELETON, DBusPeerSkeletonPrivate); -#endif - - g_mutex_init (&skeleton->priv->lock); - skeleton->priv->context = g_main_context_ref_thread_default (); -} - -static void -dbus_peer_skeleton_class_init (DBusPeerSkeletonClass *klass) -{ - GObjectClass *gobject_class; - GDBusInterfaceSkeletonClass *skeleton_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_peer_skeleton_finalize; - - skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass); - skeleton_class->get_info = dbus_peer_skeleton_dbus_interface_get_info; - skeleton_class->get_properties = dbus_peer_skeleton_dbus_interface_get_properties; - skeleton_class->flush = dbus_peer_skeleton_dbus_interface_flush; - skeleton_class->get_vtable = dbus_peer_skeleton_dbus_interface_get_vtable; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusPeerSkeletonPrivate)); -#endif -} - -static void -dbus_peer_skeleton_iface_init (DBusPeerIface *iface) -{ -} - -/** - * dbus_peer_skeleton_new: - * - * Creates a skeleton object for the D-Bus interface org.freedesktop.DBus.Peer. - * - * Returns: (transfer full) (type DBusPeerSkeleton): The skeleton object. - */ -DBusPeer * -dbus_peer_skeleton_new (void) -{ - return DBUS_PEER (g_object_new (TYPE_DBUS_PEER_SKELETON, NULL)); -} - -/* ------------------------------------------------------------------------ - * Code for interface org.freedesktop.DBus.Introspectable - * ------------------------------------------------------------------------ - */ - -/** - * SECTION:DBusIntrospectable - * @title: DBusIntrospectable - * @short_description: Generated C code for the org.freedesktop.DBus.Introspectable D-Bus interface - * - * This section contains code for working with the org.freedesktop.DBus.Introspectable D-Bus interface in C. - */ - -/* ---- Introspection data for org.freedesktop.DBus.Introspectable ---- */ - -static const _ExtendedGDBusArgInfo _dbus_introspectable_method_info_introspect_OUT_ARG_data = -{ - { - -1, - (gchar *) "data", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_introspectable_method_info_introspect_OUT_ARG_pointers[] = -{ - &_dbus_introspectable_method_info_introspect_OUT_ARG_data, - NULL -}; - -static const _ExtendedGDBusMethodInfo _dbus_introspectable_method_info_introspect = -{ - { - -1, - (gchar *) "Introspect", - NULL, - (GDBusArgInfo **) &_dbus_introspectable_method_info_introspect_OUT_ARG_pointers, - NULL - }, - "handle-introspect", - FALSE -}; - -static const _ExtendedGDBusMethodInfo * const _dbus_introspectable_method_info_pointers[] = -{ - &_dbus_introspectable_method_info_introspect, - NULL -}; - -static const _ExtendedGDBusInterfaceInfo _dbus_introspectable_interface_info = -{ - { - -1, - (gchar *) "org.freedesktop.DBus.Introspectable", - (GDBusMethodInfo **) &_dbus_introspectable_method_info_pointers, - NULL, - NULL, - NULL - }, - "dbus-introspectable", -}; - - -/** - * dbus_introspectable_interface_info: - * - * Gets a machine-readable description of the org.freedesktop.DBus.Introspectable D-Bus interface. - * - * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free. - */ -GDBusInterfaceInfo * -dbus_introspectable_interface_info (void) -{ - return (GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct; -} - -/** - * dbus_introspectable_override_properties: - * @klass: The class structure for a #GObject-derived class. - * @property_id_begin: The property id to assign to the first overridden property. - * - * Overrides all #GObject properties in the #DBusIntrospectable interface for a concrete class. - * The properties are overridden in the order they are defined. - * - * Returns: The last property id. - */ -guint -dbus_introspectable_override_properties (GObjectClass *klass, guint property_id_begin) -{ - return property_id_begin - 1; -} - - - -/** - * DBusIntrospectable: - * - * Abstract interface type for the D-Bus interface org.freedesktop.DBus.Introspectable. - */ - -/** - * DBusIntrospectableIface: - * @parent_iface: The parent interface. - * @handle_introspect: Handler for the #DBusIntrospectable::handle-introspect signal. - * - * Virtual table for the D-Bus interface org.freedesktop.DBus.Introspectable. - */ - -typedef DBusIntrospectableIface DBusIntrospectableInterface; -G_DEFINE_INTERFACE (DBusIntrospectable, dbus_introspectable, G_TYPE_OBJECT); - -static void -dbus_introspectable_default_init (DBusIntrospectableIface *iface) -{ - /* GObject signals for incoming D-Bus method calls: */ - /** - * DBusIntrospectable::handle-introspect: - * @object: A #DBusIntrospectable. - * @invocation: A #GDBusMethodInvocation. - * - * Signal emitted when a remote caller is invoking the Introspect() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_introspectable_complete_introspect() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-introspect", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusIntrospectableIface, handle_introspect), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 1, - G_TYPE_DBUS_METHOD_INVOCATION); - -} - -/** - * dbus_introspectable_call_introspect: - * @proxy: A #DBusIntrospectableProxy. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the Introspect() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_introspectable_call_introspect_finish() to get the result of the operation. - * - * See dbus_introspectable_call_introspect_sync() for the synchronous, blocking version of this method. - */ -void -dbus_introspectable_call_introspect ( - DBusIntrospectable *proxy, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "Introspect", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_introspectable_call_introspect_finish: - * @proxy: A #DBusIntrospectableProxy. - * @out_data: (out): Return location for return parameter or %NULL to ignore. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_introspectable_call_introspect(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_introspectable_call_introspect(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_introspectable_call_introspect_finish ( - DBusIntrospectable *proxy, - gchar **out_data, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(s)", - out_data); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_introspectable_call_introspect_sync: - * @proxy: A #DBusIntrospectableProxy. - * @out_data: (out): Return location for return parameter or %NULL to ignore. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the Introspect() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_introspectable_call_introspect() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_introspectable_call_introspect_sync ( - DBusIntrospectable *proxy, - gchar **out_data, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "Introspect", - g_variant_new ("()"), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(s)", - out_data); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_introspectable_complete_introspect: - * @object: A #DBusIntrospectable. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * @data: Parameter to return. - * - * Helper function used in service implementations to finish handling invocations of the Introspect() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_introspectable_complete_introspect ( - DBusIntrospectable *object, - GDBusMethodInvocation *invocation, - const gchar *data) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("(s)", - data)); -} - -/* ------------------------------------------------------------------------ */ - -/** - * DBusIntrospectableProxy: - * - * The #DBusIntrospectableProxy structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusIntrospectableProxyClass: - * @parent_class: The parent class. - * - * Class structure for #DBusIntrospectableProxy. - */ - -struct _DBusIntrospectableProxyPrivate -{ - GData *qdata; -}; - -static void dbus_introspectable_proxy_iface_init (DBusIntrospectableIface *iface); - -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusIntrospectableProxy, dbus_introspectable_proxy, G_TYPE_DBUS_PROXY, - G_ADD_PRIVATE (DBusIntrospectableProxy) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_INTROSPECTABLE, dbus_introspectable_proxy_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusIntrospectableProxy, dbus_introspectable_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_INTROSPECTABLE, dbus_introspectable_proxy_iface_init)); - -#endif -static void -dbus_introspectable_proxy_finalize (GObject *object) -{ - DBusIntrospectableProxy *proxy = DBUS_INTROSPECTABLE_PROXY (object); - g_datalist_clear (&proxy->priv->qdata); - G_OBJECT_CLASS (dbus_introspectable_proxy_parent_class)->finalize (object); -} - -static void -dbus_introspectable_proxy_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_introspectable_proxy_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_introspectable_proxy_g_signal (GDBusProxy *proxy, - const gchar *sender_name G_GNUC_UNUSED, - const gchar *signal_name, - GVariant *parameters) -{ - _ExtendedGDBusSignalInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint n; - guint signal_id; - info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct, signal_name); - if (info == NULL) - return; - num_params = g_variant_n_children (parameters); - paramv = g_new0 (GValue, num_params + 1); - g_value_init (¶mv[0], TYPE_DBUS_INTROSPECTABLE); - g_value_set_object (¶mv[0], proxy); - g_variant_iter_init (&iter, parameters); - n = 1; - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.args[n - 1]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_INTROSPECTABLE); - g_signal_emitv (paramv, signal_id, 0, NULL); - for (n = 0; n < num_params + 1; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static void -dbus_introspectable_proxy_g_properties_changed (GDBusProxy *_proxy, - GVariant *changed_properties, - const gchar *const *invalidated_properties) -{ - DBusIntrospectableProxy *proxy = DBUS_INTROSPECTABLE_PROXY (_proxy); - guint n; - const gchar *key; - GVariantIter *iter; - _ExtendedGDBusPropertyInfo *info; - g_variant_get (changed_properties, "a{sv}", &iter); - while (g_variant_iter_next (iter, "{&sv}", &key, NULL)) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct, key); - g_datalist_remove_data (&proxy->priv->qdata, key); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } - g_variant_iter_free (iter); - for (n = 0; invalidated_properties[n] != NULL; n++) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct, invalidated_properties[n]); - g_datalist_remove_data (&proxy->priv->qdata, invalidated_properties[n]); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } -} - -static void -dbus_introspectable_proxy_init (DBusIntrospectableProxy *proxy) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - proxy->priv = dbus_introspectable_proxy_get_instance_private (proxy); -#else - proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, TYPE_DBUS_INTROSPECTABLE_PROXY, DBusIntrospectableProxyPrivate); -#endif - - g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), dbus_introspectable_interface_info ()); -} - -static void -dbus_introspectable_proxy_class_init (DBusIntrospectableProxyClass *klass) -{ - GObjectClass *gobject_class; - GDBusProxyClass *proxy_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_introspectable_proxy_finalize; - gobject_class->get_property = dbus_introspectable_proxy_get_property; - gobject_class->set_property = dbus_introspectable_proxy_set_property; - - proxy_class = G_DBUS_PROXY_CLASS (klass); - proxy_class->g_signal = dbus_introspectable_proxy_g_signal; - proxy_class->g_properties_changed = dbus_introspectable_proxy_g_properties_changed; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusIntrospectableProxyPrivate)); -#endif -} - -static void -dbus_introspectable_proxy_iface_init (DBusIntrospectableIface *iface) -{ -} - -/** - * dbus_introspectable_proxy_new: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Asynchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Introspectable. See g_dbus_proxy_new() for more details. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_introspectable_proxy_new_finish() to get the result of the operation. - * - * See dbus_introspectable_proxy_new_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_introspectable_proxy_new ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_INTROSPECTABLE_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Introspectable", NULL); -} - -/** - * dbus_introspectable_proxy_new_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_introspectable_proxy_new(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_introspectable_proxy_new(). - * - * Returns: (transfer full) (type DBusIntrospectableProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusIntrospectable * -dbus_introspectable_proxy_new_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_INTROSPECTABLE (ret); - else - return NULL; -} - -/** - * dbus_introspectable_proxy_new_sync: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Synchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Introspectable. See g_dbus_proxy_new_sync() for more details. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_introspectable_proxy_new() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusIntrospectableProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusIntrospectable * -dbus_introspectable_proxy_new_sync ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_INTROSPECTABLE_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Introspectable", NULL); - if (ret != NULL) - return DBUS_INTROSPECTABLE (ret); - else - return NULL; -} - - -/** - * dbus_introspectable_proxy_new_for_bus: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Like dbus_introspectable_proxy_new() but takes a #GBusType instead of a #GDBusConnection. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_introspectable_proxy_new_for_bus_finish() to get the result of the operation. - * - * See dbus_introspectable_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_introspectable_proxy_new_for_bus ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_INTROSPECTABLE_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Introspectable", NULL); -} - -/** - * dbus_introspectable_proxy_new_for_bus_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_introspectable_proxy_new_for_bus(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_introspectable_proxy_new_for_bus(). - * - * Returns: (transfer full) (type DBusIntrospectableProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusIntrospectable * -dbus_introspectable_proxy_new_for_bus_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_INTROSPECTABLE (ret); - else - return NULL; -} - -/** - * dbus_introspectable_proxy_new_for_bus_sync: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Like dbus_introspectable_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_introspectable_proxy_new_for_bus() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusIntrospectableProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusIntrospectable * -dbus_introspectable_proxy_new_for_bus_sync ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_INTROSPECTABLE_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Introspectable", NULL); - if (ret != NULL) - return DBUS_INTROSPECTABLE (ret); - else - return NULL; -} - - -/* ------------------------------------------------------------------------ */ - -/** - * DBusIntrospectableSkeleton: - * - * The #DBusIntrospectableSkeleton structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusIntrospectableSkeletonClass: - * @parent_class: The parent class. - * - * Class structure for #DBusIntrospectableSkeleton. - */ - -struct _DBusIntrospectableSkeletonPrivate -{ - GValue *properties; - GList *changed_properties; - GSource *changed_properties_idle_source; - GMainContext *context; - GMutex lock; -}; - -static void -_dbus_introspectable_skeleton_handle_method_call ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - GDBusMethodInvocation *invocation, - gpointer user_data) -{ - DBusIntrospectableSkeleton *skeleton = DBUS_INTROSPECTABLE_SKELETON (user_data); - _ExtendedGDBusMethodInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint num_extra; - guint n; - guint signal_id; - GValue return_value = G_VALUE_INIT; - info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); - g_assert (info != NULL); - num_params = g_variant_n_children (parameters); - num_extra = info->pass_fdlist ? 3 : 2; paramv = g_new0 (GValue, num_params + num_extra); - n = 0; - g_value_init (¶mv[n], TYPE_DBUS_INTROSPECTABLE); - g_value_set_object (¶mv[n++], skeleton); - g_value_init (¶mv[n], G_TYPE_DBUS_METHOD_INVOCATION); - g_value_set_object (¶mv[n++], invocation); - if (info->pass_fdlist) - { -#ifdef G_OS_UNIX - g_value_init (¶mv[n], G_TYPE_UNIX_FD_LIST); - g_value_set_object (¶mv[n++], g_dbus_message_get_unix_fd_list (g_dbus_method_invocation_get_message (invocation))); -#else - g_assert_not_reached (); -#endif - } - g_variant_iter_init (&iter, parameters); - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.in_args[n - num_extra]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_INTROSPECTABLE); - g_value_init (&return_value, G_TYPE_BOOLEAN); - g_signal_emitv (paramv, signal_id, 0, &return_value); - if (!g_value_get_boolean (&return_value)) - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Method %s is not implemented on interface %s", method_name, interface_name); - g_value_unset (&return_value); - for (n = 0; n < num_params + num_extra; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static GVariant * -_dbus_introspectable_skeleton_handle_get_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GError **error, - gpointer user_data) -{ - DBusIntrospectableSkeleton *skeleton = DBUS_INTROSPECTABLE_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - GVariant *ret; - ret = NULL; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - g_value_init (&value, pspec->value_type); - g_object_get_property (G_OBJECT (skeleton), info->hyphen_name, &value); - ret = g_dbus_gvalue_to_gvariant (&value, G_VARIANT_TYPE (info->parent_struct.signature)); - g_value_unset (&value); - } - return ret; -} - -static gboolean -_dbus_introspectable_skeleton_handle_set_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GVariant *variant, - GError **error, - gpointer user_data) -{ - DBusIntrospectableSkeleton *skeleton = DBUS_INTROSPECTABLE_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - gboolean ret; - ret = FALSE; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_introspectable_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - if (info->use_gvariant) - g_value_set_variant (&value, variant); - else - g_dbus_gvariant_to_gvalue (variant, &value); - g_object_set_property (G_OBJECT (skeleton), info->hyphen_name, &value); - g_value_unset (&value); - ret = TRUE; - } - return ret; -} - -static const GDBusInterfaceVTable _dbus_introspectable_skeleton_vtable = -{ - _dbus_introspectable_skeleton_handle_method_call, - _dbus_introspectable_skeleton_handle_get_property, - _dbus_introspectable_skeleton_handle_set_property, - {NULL} -}; - -static GDBusInterfaceInfo * -dbus_introspectable_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return dbus_introspectable_interface_info (); -} - -static GDBusInterfaceVTable * -dbus_introspectable_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return (GDBusInterfaceVTable *) &_dbus_introspectable_skeleton_vtable; -} - -static GVariant * -dbus_introspectable_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton) -{ - DBusIntrospectableSkeleton *skeleton = DBUS_INTROSPECTABLE_SKELETON (_skeleton); - - GVariantBuilder builder; - guint n; - g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}")); - if (_dbus_introspectable_interface_info.parent_struct.properties == NULL) - goto out; - for (n = 0; _dbus_introspectable_interface_info.parent_struct.properties[n] != NULL; n++) - { - GDBusPropertyInfo *info = _dbus_introspectable_interface_info.parent_struct.properties[n]; - if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE) - { - GVariant *value; - value = _dbus_introspectable_skeleton_handle_get_property (g_dbus_interface_skeleton_get_connection (G_DBUS_INTERFACE_SKELETON (skeleton)), NULL, g_dbus_interface_skeleton_get_object_path (G_DBUS_INTERFACE_SKELETON (skeleton)), "org.freedesktop.DBus.Introspectable", info->name, NULL, skeleton); - if (value != NULL) - { - g_variant_take_ref (value); - g_variant_builder_add (&builder, "{sv}", info->name, value); - g_variant_unref (value); - } - } - } -out: - return g_variant_builder_end (&builder); -} - -static void -dbus_introspectable_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton) -{ -} - -static void dbus_introspectable_skeleton_iface_init (DBusIntrospectableIface *iface); -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusIntrospectableSkeleton, dbus_introspectable_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_ADD_PRIVATE (DBusIntrospectableSkeleton) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_INTROSPECTABLE, dbus_introspectable_skeleton_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusIntrospectableSkeleton, dbus_introspectable_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_INTROSPECTABLE, dbus_introspectable_skeleton_iface_init)); - -#endif -static void -dbus_introspectable_skeleton_finalize (GObject *object) -{ - DBusIntrospectableSkeleton *skeleton = DBUS_INTROSPECTABLE_SKELETON (object); - g_list_free_full (skeleton->priv->changed_properties, (GDestroyNotify) _changed_property_free); - if (skeleton->priv->changed_properties_idle_source != NULL) - g_source_destroy (skeleton->priv->changed_properties_idle_source); - g_main_context_unref (skeleton->priv->context); - g_mutex_clear (&skeleton->priv->lock); - G_OBJECT_CLASS (dbus_introspectable_skeleton_parent_class)->finalize (object); -} - -static void -dbus_introspectable_skeleton_init (DBusIntrospectableSkeleton *skeleton) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - skeleton->priv = dbus_introspectable_skeleton_get_instance_private (skeleton); -#else - skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, TYPE_DBUS_INTROSPECTABLE_SKELETON, DBusIntrospectableSkeletonPrivate); -#endif - - g_mutex_init (&skeleton->priv->lock); - skeleton->priv->context = g_main_context_ref_thread_default (); -} - -static void -dbus_introspectable_skeleton_class_init (DBusIntrospectableSkeletonClass *klass) -{ - GObjectClass *gobject_class; - GDBusInterfaceSkeletonClass *skeleton_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_introspectable_skeleton_finalize; - - skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass); - skeleton_class->get_info = dbus_introspectable_skeleton_dbus_interface_get_info; - skeleton_class->get_properties = dbus_introspectable_skeleton_dbus_interface_get_properties; - skeleton_class->flush = dbus_introspectable_skeleton_dbus_interface_flush; - skeleton_class->get_vtable = dbus_introspectable_skeleton_dbus_interface_get_vtable; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusIntrospectableSkeletonPrivate)); -#endif -} - -static void -dbus_introspectable_skeleton_iface_init (DBusIntrospectableIface *iface) -{ -} - -/** - * dbus_introspectable_skeleton_new: - * - * Creates a skeleton object for the D-Bus interface org.freedesktop.DBus.Introspectable. - * - * Returns: (transfer full) (type DBusIntrospectableSkeleton): The skeleton object. - */ -DBusIntrospectable * -dbus_introspectable_skeleton_new (void) -{ - return DBUS_INTROSPECTABLE (g_object_new (TYPE_DBUS_INTROSPECTABLE_SKELETON, NULL)); -} - -/* ------------------------------------------------------------------------ - * Code for interface org.freedesktop.DBus.Properties - * ------------------------------------------------------------------------ - */ - -/** - * SECTION:DBusProperties - * @title: DBusProperties - * @short_description: Generated C code for the org.freedesktop.DBus.Properties D-Bus interface - * - * This section contains code for working with the org.freedesktop.DBus.Properties D-Bus interface in C. - */ - -/* ---- Introspection data for org.freedesktop.DBus.Properties ---- */ - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_get_IN_ARG_interface = -{ - { - -1, - (gchar *) "interface", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_get_IN_ARG_property = -{ - { - -1, - (gchar *) "property", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_method_info_get_IN_ARG_pointers[] = -{ - &_dbus_properties_method_info_get_IN_ARG_interface, - &_dbus_properties_method_info_get_IN_ARG_property, - NULL -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_get_OUT_ARG_value = -{ - { - -1, - (gchar *) "value", - (gchar *) "v", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_method_info_get_OUT_ARG_pointers[] = -{ - &_dbus_properties_method_info_get_OUT_ARG_value, - NULL -}; - -static const _ExtendedGDBusMethodInfo _dbus_properties_method_info_get = -{ - { - -1, - (gchar *) "Get", - (GDBusArgInfo **) &_dbus_properties_method_info_get_IN_ARG_pointers, - (GDBusArgInfo **) &_dbus_properties_method_info_get_OUT_ARG_pointers, - NULL - }, - "handle-get", - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_get_all_IN_ARG_interface = -{ - { - -1, - (gchar *) "interface", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_method_info_get_all_IN_ARG_pointers[] = -{ - &_dbus_properties_method_info_get_all_IN_ARG_interface, - NULL -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_get_all_OUT_ARG_properties = -{ - { - -1, - (gchar *) "properties", - (gchar *) "a{sv}", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_method_info_get_all_OUT_ARG_pointers[] = -{ - &_dbus_properties_method_info_get_all_OUT_ARG_properties, - NULL -}; - -static const _ExtendedGDBusMethodInfo _dbus_properties_method_info_get_all = -{ - { - -1, - (gchar *) "GetAll", - (GDBusArgInfo **) &_dbus_properties_method_info_get_all_IN_ARG_pointers, - (GDBusArgInfo **) &_dbus_properties_method_info_get_all_OUT_ARG_pointers, - NULL - }, - "handle-get-all", - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_set_IN_ARG_interface = -{ - { - -1, - (gchar *) "interface", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_set_IN_ARG_property = -{ - { - -1, - (gchar *) "property", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_method_info_set_IN_ARG_value = -{ - { - -1, - (gchar *) "value", - (gchar *) "v", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_method_info_set_IN_ARG_pointers[] = -{ - &_dbus_properties_method_info_set_IN_ARG_interface, - &_dbus_properties_method_info_set_IN_ARG_property, - &_dbus_properties_method_info_set_IN_ARG_value, - NULL -}; - -static const _ExtendedGDBusMethodInfo _dbus_properties_method_info_set = -{ - { - -1, - (gchar *) "Set", - (GDBusArgInfo **) &_dbus_properties_method_info_set_IN_ARG_pointers, - NULL, - NULL - }, - "handle-set", - FALSE -}; - -static const _ExtendedGDBusMethodInfo * const _dbus_properties_method_info_pointers[] = -{ - &_dbus_properties_method_info_get, - &_dbus_properties_method_info_get_all, - &_dbus_properties_method_info_set, - NULL -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_signal_info_properties_changed_ARG_interface = -{ - { - -1, - (gchar *) "interface", - (gchar *) "s", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_signal_info_properties_changed_ARG_changed_properties = -{ - { - -1, - (gchar *) "changed_properties", - (gchar *) "a{sv}", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo _dbus_properties_signal_info_properties_changed_ARG_invalidated_properties = -{ - { - -1, - (gchar *) "invalidated_properties", - (gchar *) "as", - NULL - }, - FALSE -}; - -static const _ExtendedGDBusArgInfo * const _dbus_properties_signal_info_properties_changed_ARG_pointers[] = -{ - &_dbus_properties_signal_info_properties_changed_ARG_interface, - &_dbus_properties_signal_info_properties_changed_ARG_changed_properties, - &_dbus_properties_signal_info_properties_changed_ARG_invalidated_properties, - NULL -}; - -static const _ExtendedGDBusSignalInfo _dbus_properties_signal_info_properties_changed = -{ - { - -1, - (gchar *) "PropertiesChanged", - (GDBusArgInfo **) &_dbus_properties_signal_info_properties_changed_ARG_pointers, - NULL - }, - "properties-changed" -}; - -static const _ExtendedGDBusSignalInfo * const _dbus_properties_signal_info_pointers[] = -{ - &_dbus_properties_signal_info_properties_changed, - NULL -}; - -static const _ExtendedGDBusInterfaceInfo _dbus_properties_interface_info = -{ - { - -1, - (gchar *) "org.freedesktop.DBus.Properties", - (GDBusMethodInfo **) &_dbus_properties_method_info_pointers, - (GDBusSignalInfo **) &_dbus_properties_signal_info_pointers, - NULL, - NULL - }, - "dbus-properties", -}; - - -/** - * dbus_properties_interface_info: - * - * Gets a machine-readable description of the org.freedesktop.DBus.Properties D-Bus interface. - * - * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free. - */ -GDBusInterfaceInfo * -dbus_properties_interface_info (void) -{ - return (GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct; -} - -/** - * dbus_properties_override_properties: - * @klass: The class structure for a #GObject-derived class. - * @property_id_begin: The property id to assign to the first overridden property. - * - * Overrides all #GObject properties in the #DBusProperties interface for a concrete class. - * The properties are overridden in the order they are defined. - * - * Returns: The last property id. - */ -guint -dbus_properties_override_properties (GObjectClass *klass, guint property_id_begin) -{ - return property_id_begin - 1; -} - - - -/** - * DBusProperties: - * - * Abstract interface type for the D-Bus interface org.freedesktop.DBus.Properties. - */ - -/** - * DBusPropertiesIface: - * @parent_iface: The parent interface. - * @handle_get: Handler for the #DBusProperties::handle-get signal. - * @handle_get_all: Handler for the #DBusProperties::handle-get-all signal. - * @handle_set: Handler for the #DBusProperties::handle-set signal. - * @properties_changed: Handler for the #DBusProperties::properties-changed signal. - * - * Virtual table for the D-Bus interface org.freedesktop.DBus.Properties. - */ - -typedef DBusPropertiesIface DBusPropertiesInterface; -G_DEFINE_INTERFACE (DBusProperties, dbus_properties, G_TYPE_OBJECT); - -static void -dbus_properties_default_init (DBusPropertiesIface *iface) -{ - /* GObject signals for incoming D-Bus method calls: */ - /** - * DBusProperties::handle-get: - * @object: A #DBusProperties. - * @invocation: A #GDBusMethodInvocation. - * @arg_interface: Argument passed by remote caller. - * @arg_property: Argument passed by remote caller. - * - * Signal emitted when a remote caller is invoking the Get() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_properties_complete_get() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-get", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPropertiesIface, handle_get), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 3, - G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_STRING, G_TYPE_STRING); - - /** - * DBusProperties::handle-get-all: - * @object: A #DBusProperties. - * @invocation: A #GDBusMethodInvocation. - * @arg_interface: Argument passed by remote caller. - * - * Signal emitted when a remote caller is invoking the GetAll() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_properties_complete_get_all() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-get-all", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPropertiesIface, handle_get_all), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 2, - G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_STRING); - - /** - * DBusProperties::handle-set: - * @object: A #DBusProperties. - * @invocation: A #GDBusMethodInvocation. - * @arg_interface: Argument passed by remote caller. - * @arg_property: Argument passed by remote caller. - * @arg_value: Argument passed by remote caller. - * - * Signal emitted when a remote caller is invoking the Set() D-Bus method. - * - * If a signal handler returns %TRUE, it means the signal handler will handle the invocation (e.g. take a reference to @invocation and eventually call dbus_properties_complete_set() or e.g. g_dbus_method_invocation_return_error() on it) and no order signal handlers will run. If no signal handler handles the invocation, the %G_DBUS_ERROR_UNKNOWN_METHOD error is returned. - * - * Returns: %TRUE if the invocation was handled, %FALSE to let other signal handlers run. - */ - g_signal_new ("handle-set", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPropertiesIface, handle_set), - g_signal_accumulator_true_handled, - NULL, - g_cclosure_marshal_generic, - G_TYPE_BOOLEAN, - 4, - G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_VARIANT); - - /* GObject signals for received D-Bus signals: */ - /** - * DBusProperties::properties-changed: - * @object: A #DBusProperties. - * @arg_interface: Argument. - * @arg_changed_properties: Argument. - * @arg_invalidated_properties: Argument. - * - * On the client-side, this signal is emitted whenever the D-Bus signal "PropertiesChanged" is received. - * - * On the service-side, this signal can be used with e.g. g_signal_emit_by_name() to make the object emit the D-Bus signal. - */ - g_signal_new ("properties-changed", - G_TYPE_FROM_INTERFACE (iface), - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (DBusPropertiesIface, properties_changed), - NULL, - NULL, - g_cclosure_marshal_generic, - G_TYPE_NONE, - 3, G_TYPE_STRING, G_TYPE_VARIANT, G_TYPE_STRV); - -} - -/** - * dbus_properties_emit_properties_changed: - * @object: A #DBusProperties. - * @arg_interface: Argument to pass with the signal. - * @arg_changed_properties: Argument to pass with the signal. - * @arg_invalidated_properties: Argument to pass with the signal. - * - * Emits the "PropertiesChanged" D-Bus signal. - */ -void -dbus_properties_emit_properties_changed ( - DBusProperties *object, - const gchar *arg_interface, - GVariant *arg_changed_properties, - const gchar *const *arg_invalidated_properties) -{ - g_signal_emit_by_name (object, "properties-changed", arg_interface, arg_changed_properties, arg_invalidated_properties); -} - -/** - * dbus_properties_call_get: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @arg_property: Argument to pass with the method invocation. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the Get() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_properties_call_get_finish() to get the result of the operation. - * - * See dbus_properties_call_get_sync() for the synchronous, blocking version of this method. - */ -void -dbus_properties_call_get ( - DBusProperties *proxy, - const gchar *arg_interface, - const gchar *arg_property, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "Get", - g_variant_new ("(ss)", - arg_interface, - arg_property), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_properties_call_get_finish: - * @proxy: A #DBusPropertiesProxy. - * @out_value: (out): Return location for return parameter or %NULL to ignore. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_properties_call_get(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_properties_call_get(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_get_finish ( - DBusProperties *proxy, - GVariant **out_value, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(@v)", - out_value); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_call_get_sync: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @arg_property: Argument to pass with the method invocation. - * @out_value: (out): Return location for return parameter or %NULL to ignore. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the Get() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_properties_call_get() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_get_sync ( - DBusProperties *proxy, - const gchar *arg_interface, - const gchar *arg_property, - GVariant **out_value, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "Get", - g_variant_new ("(ss)", - arg_interface, - arg_property), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(@v)", - out_value); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_call_get_all: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the GetAll() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_properties_call_get_all_finish() to get the result of the operation. - * - * See dbus_properties_call_get_all_sync() for the synchronous, blocking version of this method. - */ -void -dbus_properties_call_get_all ( - DBusProperties *proxy, - const gchar *arg_interface, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "GetAll", - g_variant_new ("(s)", - arg_interface), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_properties_call_get_all_finish: - * @proxy: A #DBusPropertiesProxy. - * @out_properties: (out): Return location for return parameter or %NULL to ignore. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_properties_call_get_all(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_properties_call_get_all(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_get_all_finish ( - DBusProperties *proxy, - GVariant **out_properties, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(@a{sv})", - out_properties); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_call_get_all_sync: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @out_properties: (out): Return location for return parameter or %NULL to ignore. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the GetAll() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_properties_call_get_all() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_get_all_sync ( - DBusProperties *proxy, - const gchar *arg_interface, - GVariant **out_properties, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "GetAll", - g_variant_new ("(s)", - arg_interface), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "(@a{sv})", - out_properties); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_call_set: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @arg_property: Argument to pass with the method invocation. - * @arg_value: Argument to pass with the method invocation. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied or %NULL. - * @user_data: User data to pass to @callback. - * - * Asynchronously invokes the Set() D-Bus method on @proxy. - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_properties_call_set_finish() to get the result of the operation. - * - * See dbus_properties_call_set_sync() for the synchronous, blocking version of this method. - */ -void -dbus_properties_call_set ( - DBusProperties *proxy, - const gchar *arg_interface, - const gchar *arg_property, - GVariant *arg_value, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_dbus_proxy_call (G_DBUS_PROXY (proxy), - "Set", - g_variant_new ("(ss@v)", - arg_interface, - arg_property, - arg_value), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - callback, - user_data); -} - -/** - * dbus_properties_call_set_finish: - * @proxy: A #DBusPropertiesProxy. - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_properties_call_set(). - * @error: Return location for error or %NULL. - * - * Finishes an operation started with dbus_properties_call_set(). - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_set_finish ( - DBusProperties *proxy, - GAsyncResult *res, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_finish (G_DBUS_PROXY (proxy), res, error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "()"); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_call_set_sync: - * @proxy: A #DBusPropertiesProxy. - * @arg_interface: Argument to pass with the method invocation. - * @arg_property: Argument to pass with the method invocation. - * @arg_value: Argument to pass with the method invocation. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL. - * - * Synchronously invokes the Set() D-Bus method on @proxy. The calling thread is blocked until a reply is received. - * - * See dbus_properties_call_set() for the asynchronous version of this method. - * - * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. - */ -gboolean -dbus_properties_call_set_sync ( - DBusProperties *proxy, - const gchar *arg_interface, - const gchar *arg_property, - GVariant *arg_value, - GCancellable *cancellable, - GError **error) -{ - GVariant *_ret; - _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), - "Set", - g_variant_new ("(ss@v)", - arg_interface, - arg_property, - arg_value), - G_DBUS_CALL_FLAGS_NONE, - -1, - cancellable, - error); - if (_ret == NULL) - goto _out; - g_variant_get (_ret, - "()"); - g_variant_unref (_ret); -_out: - return _ret != NULL; -} - -/** - * dbus_properties_complete_get: - * @object: A #DBusProperties. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * @value: Parameter to return. - * - * Helper function used in service implementations to finish handling invocations of the Get() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_properties_complete_get ( - DBusProperties *object, - GDBusMethodInvocation *invocation, - GVariant *value) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("(@v)", - value)); -} - -/** - * dbus_properties_complete_get_all: - * @object: A #DBusProperties. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * @properties: Parameter to return. - * - * Helper function used in service implementations to finish handling invocations of the GetAll() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_properties_complete_get_all ( - DBusProperties *object, - GDBusMethodInvocation *invocation, - GVariant *properties) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("(@a{sv})", - properties)); -} - -/** - * dbus_properties_complete_set: - * @object: A #DBusProperties. - * @invocation: (transfer full): A #GDBusMethodInvocation. - * - * Helper function used in service implementations to finish handling invocations of the Set() D-Bus method. If you instead want to finish handling an invocation by returning an error, use g_dbus_method_invocation_return_error() or similar. - * - * This method will free @invocation, you cannot use it afterwards. - */ -void -dbus_properties_complete_set ( - DBusProperties *object, - GDBusMethodInvocation *invocation) -{ - g_dbus_method_invocation_return_value (invocation, - g_variant_new ("()")); -} - -/* ------------------------------------------------------------------------ */ - -/** - * DBusPropertiesProxy: - * - * The #DBusPropertiesProxy structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusPropertiesProxyClass: - * @parent_class: The parent class. - * - * Class structure for #DBusPropertiesProxy. - */ - -struct _DBusPropertiesProxyPrivate -{ - GData *qdata; -}; - -static void dbus_properties_proxy_iface_init (DBusPropertiesIface *iface); - -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusPropertiesProxy, dbus_properties_proxy, G_TYPE_DBUS_PROXY, - G_ADD_PRIVATE (DBusPropertiesProxy) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PROPERTIES, dbus_properties_proxy_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusPropertiesProxy, dbus_properties_proxy, G_TYPE_DBUS_PROXY, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PROPERTIES, dbus_properties_proxy_iface_init)); - -#endif -static void -dbus_properties_proxy_finalize (GObject *object) -{ - DBusPropertiesProxy *proxy = DBUS_PROPERTIES_PROXY (object); - g_datalist_clear (&proxy->priv->qdata); - G_OBJECT_CLASS (dbus_properties_proxy_parent_class)->finalize (object); -} - -static void -dbus_properties_proxy_get_property (GObject *object, - guint prop_id, - GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_properties_proxy_set_property (GObject *object, - guint prop_id, - const GValue *value, - GParamSpec *pspec G_GNUC_UNUSED) -{ -} - -static void -dbus_properties_proxy_g_signal (GDBusProxy *proxy, - const gchar *sender_name G_GNUC_UNUSED, - const gchar *signal_name, - GVariant *parameters) -{ - _ExtendedGDBusSignalInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint n; - guint signal_id; - info = (_ExtendedGDBusSignalInfo *) g_dbus_interface_info_lookup_signal ((GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct, signal_name); - if (info == NULL) - return; - num_params = g_variant_n_children (parameters); - paramv = g_new0 (GValue, num_params + 1); - g_value_init (¶mv[0], TYPE_DBUS_PROPERTIES); - g_value_set_object (¶mv[0], proxy); - g_variant_iter_init (&iter, parameters); - n = 1; - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.args[n - 1]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_PROPERTIES); - g_signal_emitv (paramv, signal_id, 0, NULL); - for (n = 0; n < num_params + 1; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static void -dbus_properties_proxy_g_properties_changed (GDBusProxy *_proxy, - GVariant *changed_properties, - const gchar *const *invalidated_properties) -{ - DBusPropertiesProxy *proxy = DBUS_PROPERTIES_PROXY (_proxy); - guint n; - const gchar *key; - GVariantIter *iter; - _ExtendedGDBusPropertyInfo *info; - g_variant_get (changed_properties, "a{sv}", &iter); - while (g_variant_iter_next (iter, "{&sv}", &key, NULL)) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct, key); - g_datalist_remove_data (&proxy->priv->qdata, key); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } - g_variant_iter_free (iter); - for (n = 0; invalidated_properties[n] != NULL; n++) - { - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct, invalidated_properties[n]); - g_datalist_remove_data (&proxy->priv->qdata, invalidated_properties[n]); - if (info != NULL) - g_object_notify (G_OBJECT (proxy), info->hyphen_name); - } -} - -static void -dbus_properties_proxy_init (DBusPropertiesProxy *proxy) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - proxy->priv = dbus_properties_proxy_get_instance_private (proxy); -#else - proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, TYPE_DBUS_PROPERTIES_PROXY, DBusPropertiesProxyPrivate); -#endif - - g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), dbus_properties_interface_info ()); -} - -static void -dbus_properties_proxy_class_init (DBusPropertiesProxyClass *klass) -{ - GObjectClass *gobject_class; - GDBusProxyClass *proxy_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_properties_proxy_finalize; - gobject_class->get_property = dbus_properties_proxy_get_property; - gobject_class->set_property = dbus_properties_proxy_set_property; - - proxy_class = G_DBUS_PROXY_CLASS (klass); - proxy_class->g_signal = dbus_properties_proxy_g_signal; - proxy_class->g_properties_changed = dbus_properties_proxy_g_properties_changed; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusPropertiesProxyPrivate)); -#endif -} - -static void -dbus_properties_proxy_iface_init (DBusPropertiesIface *iface) -{ -} - -/** - * dbus_properties_proxy_new: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Asynchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Properties. See g_dbus_proxy_new() for more details. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_properties_proxy_new_finish() to get the result of the operation. - * - * See dbus_properties_proxy_new_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_properties_proxy_new ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_PROPERTIES_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Properties", NULL); -} - -/** - * dbus_properties_proxy_new_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_properties_proxy_new(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_properties_proxy_new(). - * - * Returns: (transfer full) (type DBusPropertiesProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusProperties * -dbus_properties_proxy_new_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_PROPERTIES (ret); - else - return NULL; -} - -/** - * dbus_properties_proxy_new_sync: - * @connection: A #GDBusConnection. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: (allow-none): A bus name (well-known or unique) or %NULL if @connection is not a message bus connection. - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Synchronously creates a proxy for the D-Bus interface org.freedesktop.DBus.Properties. See g_dbus_proxy_new_sync() for more details. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_properties_proxy_new() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusPropertiesProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusProperties * -dbus_properties_proxy_new_sync ( - GDBusConnection *connection, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_PROPERTIES_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Properties", NULL); - if (ret != NULL) - return DBUS_PROPERTIES (ret); - else - return NULL; -} - - -/** - * dbus_properties_proxy_new_for_bus: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @callback: A #GAsyncReadyCallback to call when the request is satisfied. - * @user_data: User data to pass to @callback. - * - * Like dbus_properties_proxy_new() but takes a #GBusType instead of a #GDBusConnection. - * - * When the operation is finished, @callback will be invoked in the thread-default main loop of the thread you are calling this method from. - * You can then call dbus_properties_proxy_new_for_bus_finish() to get the result of the operation. - * - * See dbus_properties_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor. - */ -void -dbus_properties_proxy_new_for_bus ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GAsyncReadyCallback callback, - gpointer user_data) -{ - g_async_initable_new_async (TYPE_DBUS_PROPERTIES_PROXY, G_PRIORITY_DEFAULT, cancellable, callback, user_data, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Properties", NULL); -} - -/** - * dbus_properties_proxy_new_for_bus_finish: - * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to dbus_properties_proxy_new_for_bus(). - * @error: Return location for error or %NULL - * - * Finishes an operation started with dbus_properties_proxy_new_for_bus(). - * - * Returns: (transfer full) (type DBusPropertiesProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusProperties * -dbus_properties_proxy_new_for_bus_finish ( - GAsyncResult *res, - GError **error) -{ - GObject *ret; - GObject *source_object; - source_object = g_async_result_get_source_object (res); - ret = g_async_initable_new_finish (G_ASYNC_INITABLE (source_object), res, error); - g_object_unref (source_object); - if (ret != NULL) - return DBUS_PROPERTIES (ret); - else - return NULL; -} - -/** - * dbus_properties_proxy_new_for_bus_sync: - * @bus_type: A #GBusType. - * @flags: Flags from the #GDBusProxyFlags enumeration. - * @name: A bus name (well-known or unique). - * @object_path: An object path. - * @cancellable: (allow-none): A #GCancellable or %NULL. - * @error: Return location for error or %NULL - * - * Like dbus_properties_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection. - * - * The calling thread is blocked until a reply is received. - * - * See dbus_properties_proxy_new_for_bus() for the asynchronous version of this constructor. - * - * Returns: (transfer full) (type DBusPropertiesProxy): The constructed proxy object or %NULL if @error is set. - */ -DBusProperties * -dbus_properties_proxy_new_for_bus_sync ( - GBusType bus_type, - GDBusProxyFlags flags, - const gchar *name, - const gchar *object_path, - GCancellable *cancellable, - GError **error) -{ - GInitable *ret; - ret = g_initable_new (TYPE_DBUS_PROPERTIES_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "org.freedesktop.DBus.Properties", NULL); - if (ret != NULL) - return DBUS_PROPERTIES (ret); - else - return NULL; -} - - -/* ------------------------------------------------------------------------ */ - -/** - * DBusPropertiesSkeleton: - * - * The #DBusPropertiesSkeleton structure contains only private data and should only be accessed using the provided API. - */ - -/** - * DBusPropertiesSkeletonClass: - * @parent_class: The parent class. - * - * Class structure for #DBusPropertiesSkeleton. - */ - -struct _DBusPropertiesSkeletonPrivate -{ - GValue *properties; - GList *changed_properties; - GSource *changed_properties_idle_source; - GMainContext *context; - GMutex lock; -}; - -static void -_dbus_properties_skeleton_handle_method_call ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name, - const gchar *method_name, - GVariant *parameters, - GDBusMethodInvocation *invocation, - gpointer user_data) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (user_data); - _ExtendedGDBusMethodInfo *info; - GVariantIter iter; - GVariant *child; - GValue *paramv; - guint num_params; - guint num_extra; - guint n; - guint signal_id; - GValue return_value = G_VALUE_INIT; - info = (_ExtendedGDBusMethodInfo *) g_dbus_method_invocation_get_method_info (invocation); - g_assert (info != NULL); - num_params = g_variant_n_children (parameters); - num_extra = info->pass_fdlist ? 3 : 2; paramv = g_new0 (GValue, num_params + num_extra); - n = 0; - g_value_init (¶mv[n], TYPE_DBUS_PROPERTIES); - g_value_set_object (¶mv[n++], skeleton); - g_value_init (¶mv[n], G_TYPE_DBUS_METHOD_INVOCATION); - g_value_set_object (¶mv[n++], invocation); - if (info->pass_fdlist) - { -#ifdef G_OS_UNIX - g_value_init (¶mv[n], G_TYPE_UNIX_FD_LIST); - g_value_set_object (¶mv[n++], g_dbus_message_get_unix_fd_list (g_dbus_method_invocation_get_message (invocation))); -#else - g_assert_not_reached (); -#endif - } - g_variant_iter_init (&iter, parameters); - while ((child = g_variant_iter_next_value (&iter)) != NULL) - { - _ExtendedGDBusArgInfo *arg_info = (_ExtendedGDBusArgInfo *) info->parent_struct.in_args[n - num_extra]; - if (arg_info->use_gvariant) - { - g_value_init (¶mv[n], G_TYPE_VARIANT); - g_value_set_variant (¶mv[n], child); - n++; - } - else - g_dbus_gvariant_to_gvalue (child, ¶mv[n++]); - g_variant_unref (child); - } - signal_id = g_signal_lookup (info->signal_name, TYPE_DBUS_PROPERTIES); - g_value_init (&return_value, G_TYPE_BOOLEAN); - g_signal_emitv (paramv, signal_id, 0, &return_value); - if (!g_value_get_boolean (&return_value)) - g_dbus_method_invocation_return_error (invocation, G_DBUS_ERROR, G_DBUS_ERROR_UNKNOWN_METHOD, "Method %s is not implemented on interface %s", method_name, interface_name); - g_value_unset (&return_value); - for (n = 0; n < num_params + num_extra; n++) - g_value_unset (¶mv[n]); - g_free (paramv); -} - -static GVariant * -_dbus_properties_skeleton_handle_get_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GError **error, - gpointer user_data) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - GVariant *ret; - ret = NULL; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - g_value_init (&value, pspec->value_type); - g_object_get_property (G_OBJECT (skeleton), info->hyphen_name, &value); - ret = g_dbus_gvalue_to_gvariant (&value, G_VARIANT_TYPE (info->parent_struct.signature)); - g_value_unset (&value); - } - return ret; -} - -static gboolean -_dbus_properties_skeleton_handle_set_property ( - GDBusConnection *connection G_GNUC_UNUSED, - const gchar *sender G_GNUC_UNUSED, - const gchar *object_path G_GNUC_UNUSED, - const gchar *interface_name G_GNUC_UNUSED, - const gchar *property_name, - GVariant *variant, - GError **error, - gpointer user_data) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (user_data); - GValue value = G_VALUE_INIT; - GParamSpec *pspec; - _ExtendedGDBusPropertyInfo *info; - gboolean ret; - ret = FALSE; - info = (_ExtendedGDBusPropertyInfo *) g_dbus_interface_info_lookup_property ((GDBusInterfaceInfo *) &_dbus_properties_interface_info.parent_struct, property_name); - g_assert (info != NULL); - pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (skeleton), info->hyphen_name); - if (pspec == NULL) - { - g_set_error (error, G_DBUS_ERROR, G_DBUS_ERROR_INVALID_ARGS, "No property with name %s", property_name); - } - else - { - if (info->use_gvariant) - g_value_set_variant (&value, variant); - else - g_dbus_gvariant_to_gvalue (variant, &value); - g_object_set_property (G_OBJECT (skeleton), info->hyphen_name, &value); - g_value_unset (&value); - ret = TRUE; - } - return ret; -} - -static const GDBusInterfaceVTable _dbus_properties_skeleton_vtable = -{ - _dbus_properties_skeleton_handle_method_call, - _dbus_properties_skeleton_handle_get_property, - _dbus_properties_skeleton_handle_set_property, - {NULL} -}; - -static GDBusInterfaceInfo * -dbus_properties_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return dbus_properties_interface_info (); -} - -static GDBusInterfaceVTable * -dbus_properties_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED) -{ - return (GDBusInterfaceVTable *) &_dbus_properties_skeleton_vtable; -} - -static GVariant * -dbus_properties_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (_skeleton); - - GVariantBuilder builder; - guint n; - g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}")); - if (_dbus_properties_interface_info.parent_struct.properties == NULL) - goto out; - for (n = 0; _dbus_properties_interface_info.parent_struct.properties[n] != NULL; n++) - { - GDBusPropertyInfo *info = _dbus_properties_interface_info.parent_struct.properties[n]; - if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE) - { - GVariant *value; - value = _dbus_properties_skeleton_handle_get_property (g_dbus_interface_skeleton_get_connection (G_DBUS_INTERFACE_SKELETON (skeleton)), NULL, g_dbus_interface_skeleton_get_object_path (G_DBUS_INTERFACE_SKELETON (skeleton)), "org.freedesktop.DBus.Properties", info->name, NULL, skeleton); - if (value != NULL) - { - g_variant_take_ref (value); - g_variant_builder_add (&builder, "{sv}", info->name, value); - g_variant_unref (value); - } - } - } -out: - return g_variant_builder_end (&builder); -} - -static void -dbus_properties_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton) -{ -} - -static void -_dbus_properties_on_signal_properties_changed ( - DBusProperties *object, - const gchar *arg_interface, - GVariant *arg_changed_properties, - const gchar *const *arg_invalidated_properties) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (object); - - GList *connections, *l; - GVariant *signal_variant; - connections = g_dbus_interface_skeleton_get_connections (G_DBUS_INTERFACE_SKELETON (skeleton)); - - signal_variant = g_variant_ref_sink (g_variant_new ("(s@a{sv}^as)", - arg_interface, - arg_changed_properties, - arg_invalidated_properties)); - for (l = connections; l != NULL; l = l->next) - { - GDBusConnection *connection = l->data; - g_dbus_connection_emit_signal (connection, - NULL, g_dbus_interface_skeleton_get_object_path (G_DBUS_INTERFACE_SKELETON (skeleton)), "org.freedesktop.DBus.Properties", "PropertiesChanged", - signal_variant, NULL); - } - g_variant_unref (signal_variant); - g_list_free_full (connections, g_object_unref); -} - -static void dbus_properties_skeleton_iface_init (DBusPropertiesIface *iface); -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 -G_DEFINE_TYPE_WITH_CODE (DBusPropertiesSkeleton, dbus_properties_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_ADD_PRIVATE (DBusPropertiesSkeleton) - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PROPERTIES, dbus_properties_skeleton_iface_init)); - -#else -G_DEFINE_TYPE_WITH_CODE (DBusPropertiesSkeleton, dbus_properties_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, - G_IMPLEMENT_INTERFACE (TYPE_DBUS_PROPERTIES, dbus_properties_skeleton_iface_init)); - -#endif -static void -dbus_properties_skeleton_finalize (GObject *object) -{ - DBusPropertiesSkeleton *skeleton = DBUS_PROPERTIES_SKELETON (object); - g_list_free_full (skeleton->priv->changed_properties, (GDestroyNotify) _changed_property_free); - if (skeleton->priv->changed_properties_idle_source != NULL) - g_source_destroy (skeleton->priv->changed_properties_idle_source); - g_main_context_unref (skeleton->priv->context); - g_mutex_clear (&skeleton->priv->lock); - G_OBJECT_CLASS (dbus_properties_skeleton_parent_class)->finalize (object); -} - -static void -dbus_properties_skeleton_init (DBusPropertiesSkeleton *skeleton) -{ -#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38 - skeleton->priv = dbus_properties_skeleton_get_instance_private (skeleton); -#else - skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, TYPE_DBUS_PROPERTIES_SKELETON, DBusPropertiesSkeletonPrivate); -#endif - - g_mutex_init (&skeleton->priv->lock); - skeleton->priv->context = g_main_context_ref_thread_default (); -} - -static void -dbus_properties_skeleton_class_init (DBusPropertiesSkeletonClass *klass) -{ - GObjectClass *gobject_class; - GDBusInterfaceSkeletonClass *skeleton_class; - - gobject_class = G_OBJECT_CLASS (klass); - gobject_class->finalize = dbus_properties_skeleton_finalize; - - skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass); - skeleton_class->get_info = dbus_properties_skeleton_dbus_interface_get_info; - skeleton_class->get_properties = dbus_properties_skeleton_dbus_interface_get_properties; - skeleton_class->flush = dbus_properties_skeleton_dbus_interface_flush; - skeleton_class->get_vtable = dbus_properties_skeleton_dbus_interface_get_vtable; - -#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38 - g_type_class_add_private (klass, sizeof (DBusPropertiesSkeletonPrivate)); -#endif -} - -static void -dbus_properties_skeleton_iface_init (DBusPropertiesIface *iface) -{ - iface->properties_changed = _dbus_properties_on_signal_properties_changed; -} - -/** - * dbus_properties_skeleton_new: - * - * Creates a skeleton object for the D-Bus interface org.freedesktop.DBus.Properties. - * - * Returns: (transfer full) (type DBusPropertiesSkeleton): The skeleton object. - */ -DBusProperties * -dbus_properties_skeleton_new (void) -{ - return DBUS_PROPERTIES (g_object_new (TYPE_DBUS_PROPERTIES_SKELETON, NULL)); -} - /* ------------------------------------------------------------------------ * Code for interface org.freedesktop.hostname1 * ------------------------------------------------------------------------