diff options
Diffstat (limited to 'src/daemon/dbus/gsignond-dbus-remote-plugin-gen.c')
-rw-r--r-- | src/daemon/dbus/gsignond-dbus-remote-plugin-gen.c | 2522 |
1 files changed, 2522 insertions, 0 deletions
diff --git a/src/daemon/dbus/gsignond-dbus-remote-plugin-gen.c b/src/daemon/dbus/gsignond-dbus-remote-plugin-gen.c new file mode 100644 index 0000000..b8cb666 --- /dev/null +++ b/src/daemon/dbus/gsignond-dbus-remote-plugin-gen.c @@ -0,0 +1,2522 @@ +/* + * Generated by gdbus-codegen 2.32.3. DO NOT EDIT. + * + * The license of this code is the same as for the source it was derived from. + */ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include "gsignond-dbus-remote-plugin-gen.h" + +#ifdef G_OS_UNIX +# include <gio/gunixfdlist.h> +#endif + +typedef struct +{ + GDBusArgInfo parent_struct; + gboolean use_gvariant; +} _ExtendedGDBusArgInfo; + +typedef struct +{ + GDBusMethodInfo parent_struct; + const gchar *signal_name; + gboolean pass_fdlist; +} _ExtendedGDBusMethodInfo; + +typedef struct +{ + GDBusSignalInfo parent_struct; + const gchar *signal_name; +} _ExtendedGDBusSignalInfo; + +typedef struct +{ + GDBusPropertyInfo parent_struct; + const gchar *hyphen_name; + gboolean use_gvariant; +} _ExtendedGDBusPropertyInfo; + +typedef struct +{ + GDBusInterfaceInfo parent_struct; + const gchar *hyphen_name; +} _ExtendedGDBusInterfaceInfo; + +typedef struct +{ + const _ExtendedGDBusPropertyInfo *info; + guint prop_id; + GValue orig_value; /* the value before the change */ +} ChangedProperty; + +static void +_changed_property_free (ChangedProperty *data) +{ + g_value_unset (&data->orig_value); + g_free (data); +} + +static gboolean +_g_strv_equal0 (gchar **a, gchar **b) +{ + gboolean ret = FALSE; + guint n; + if (a == NULL && b == NULL) + { + ret = TRUE; + goto out; + } + if (a == NULL || b == NULL) + goto out; + if (g_strv_length (a) != g_strv_length (b)) + goto out; + for (n = 0; a[n] != NULL; n++) + if (g_strcmp0 (a[n], b[n]) != 0) + goto out; + ret = TRUE; +out: + return ret; +} + +static gboolean +_g_variant_equal0 (GVariant *a, GVariant *b) +{ + gboolean ret = FALSE; + if (a == NULL && b == NULL) + { + ret = TRUE; + goto out; + } + if (a == NULL || b == NULL) + goto out; + ret = g_variant_equal (a, b); +out: + return ret; +} + +G_GNUC_UNUSED static gboolean +_g_value_equal (const GValue *a, const GValue *b) +{ + gboolean ret = FALSE; + g_assert (G_VALUE_TYPE (a) == G_VALUE_TYPE (b)); + switch (G_VALUE_TYPE (a)) + { + case G_TYPE_BOOLEAN: + ret = (g_value_get_boolean (a) == g_value_get_boolean (b)); + break; + case G_TYPE_UCHAR: + ret = (g_value_get_uchar (a) == g_value_get_uchar (b)); + break; + case G_TYPE_INT: + ret = (g_value_get_int (a) == g_value_get_int (b)); + break; + case G_TYPE_UINT: + ret = (g_value_get_uint (a) == g_value_get_uint (b)); + break; + case G_TYPE_INT64: + ret = (g_value_get_int64 (a) == g_value_get_int64 (b)); + break; + case G_TYPE_UINT64: + ret = (g_value_get_uint64 (a) == g_value_get_uint64 (b)); + break; + case G_TYPE_DOUBLE: + ret = (g_value_get_double (a) == g_value_get_double (b)); + break; + case G_TYPE_STRING: + ret = (g_strcmp0 (g_value_get_string (a), g_value_get_string (b)) == 0); + break; + case G_TYPE_VARIANT: + ret = _g_variant_equal0 (g_value_get_variant (a), g_value_get_variant (b)); + break; + default: + if (G_VALUE_TYPE (a) == G_TYPE_STRV) + ret = _g_strv_equal0 (g_value_get_boxed (a), g_value_get_boxed (b)); + else + g_critical ("_g_value_equal() does not handle type %s", g_type_name (G_VALUE_TYPE (a))); + break; + } + return ret; +} + +/* ------------------------------------------------------------------------ + * Code for interface com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin + * ------------------------------------------------------------------------ + */ + +/** + * SECTION:GSignondDbusRemotePlugin + * @title: GSignondDbusRemotePlugin + * @short_description: Generated C code for the com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin D-Bus interface + * + * This section contains code for working with the <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link> D-Bus interface in C. + */ + +/* ---- Introspection data for com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin ---- */ + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_cancel = +{ + { + -1, + "cancel", + NULL, + NULL, + NULL + }, + "handle-cancel", + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_sessionData = +{ + { + -1, + "sessionData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_mechanism = +{ + { + -1, + "mechanism", + "s", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_sessionData, + &_gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_mechanism, + NULL +}; + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_request_initial = +{ + { + -1, + "requestInitial", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_method_info_request_initial_IN_ARG_pointers, + NULL, + NULL + }, + "handle-request-initial", + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_request_IN_ARG_sessionData = +{ + { + -1, + "sessionData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_method_info_request_IN_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_request_IN_ARG_sessionData, + NULL +}; + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_request = +{ + { + -1, + "request", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_method_info_request_IN_ARG_pointers, + NULL, + NULL + }, + "handle-request", + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_user_action_finished_IN_ARG_uiData = +{ + { + -1, + "uiData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_method_info_user_action_finished_IN_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_user_action_finished_IN_ARG_uiData, + NULL +}; + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_user_action_finished = +{ + { + -1, + "userActionFinished", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_method_info_user_action_finished_IN_ARG_pointers, + NULL, + NULL + }, + "handle-user-action-finished", + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_refresh_IN_ARG_uiData = +{ + { + -1, + "uiData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_method_info_refresh_IN_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_refresh_IN_ARG_uiData, + NULL +}; + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_refresh = +{ + { + -1, + "refresh", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_method_info_refresh_IN_ARG_pointers, + NULL, + NULL + }, + "handle-refresh", + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_type = +{ + { + -1, + "type", + "s", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_mechanisms = +{ + { + -1, + "mechanisms", + "as", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_type, + &_gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_mechanisms, + NULL +}; + +static const _ExtendedGDBusMethodInfo _gsignond_dbus_remote_plugin_method_info_get_info = +{ + { + -1, + "getInfo", + NULL, + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_method_info_get_info_OUT_ARG_pointers, + NULL + }, + "handle-get-info", + FALSE +}; + +static const _ExtendedGDBusMethodInfo * const _gsignond_dbus_remote_plugin_method_info_pointers[] = +{ + &_gsignond_dbus_remote_plugin_method_info_cancel, + &_gsignond_dbus_remote_plugin_method_info_request_initial, + &_gsignond_dbus_remote_plugin_method_info_request, + &_gsignond_dbus_remote_plugin_method_info_user_action_finished, + &_gsignond_dbus_remote_plugin_method_info_refresh, + &_gsignond_dbus_remote_plugin_method_info_get_info, + NULL +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_response_ARG_sessionData = +{ + { + -1, + "sessionData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_response_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_response_ARG_sessionData, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_response = +{ + { + -1, + "response", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_response_ARG_pointers, + NULL + }, + "response" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_response_final_ARG_sessionData = +{ + { + -1, + "sessionData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_response_final_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_response_final_ARG_sessionData, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_response_final = +{ + { + -1, + "responseFinal", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_response_final_ARG_pointers, + NULL + }, + "response-final" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_store_ARG_sessionData = +{ + { + -1, + "sessionData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_store_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_store_ARG_sessionData, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_store = +{ + { + -1, + "store", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_store_ARG_pointers, + NULL + }, + "store" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_error_ARG_error = +{ + { + -1, + "error", + "(uis)", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_error_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_error_ARG_error, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_error = +{ + { + -1, + "error", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_error_ARG_pointers, + NULL + }, + "error" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_user_action_required_ARG_uiData = +{ + { + -1, + "uiData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_user_action_required_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_user_action_required_ARG_uiData, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_user_action_required = +{ + { + -1, + "userActionRequired", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_user_action_required_ARG_pointers, + NULL + }, + "user-action-required" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_refreshed_ARG_uiData = +{ + { + -1, + "uiData", + "a{sv}", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_refreshed_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_refreshed_ARG_uiData, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_refreshed = +{ + { + -1, + "refreshed", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_refreshed_ARG_pointers, + NULL + }, + "refreshed" +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_state = +{ + { + -1, + "state", + "i", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo _gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_message = +{ + { + -1, + "message", + "s", + NULL + }, + FALSE +}; + +static const _ExtendedGDBusArgInfo * const _gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_state, + &_gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_message, + NULL +}; + +static const _ExtendedGDBusSignalInfo _gsignond_dbus_remote_plugin_signal_info_status_changed = +{ + { + -1, + "statusChanged", + (GDBusArgInfo **) &_gsignond_dbus_remote_plugin_signal_info_status_changed_ARG_pointers, + NULL + }, + "status-changed" +}; + +static const _ExtendedGDBusSignalInfo * const _gsignond_dbus_remote_plugin_signal_info_pointers[] = +{ + &_gsignond_dbus_remote_plugin_signal_info_response, + &_gsignond_dbus_remote_plugin_signal_info_response_final, + &_gsignond_dbus_remote_plugin_signal_info_store, + &_gsignond_dbus_remote_plugin_signal_info_error, + &_gsignond_dbus_remote_plugin_signal_info_user_action_required, + &_gsignond_dbus_remote_plugin_signal_info_refreshed, + &_gsignond_dbus_remote_plugin_signal_info_status_changed, + NULL +}; + +static const _ExtendedGDBusInterfaceInfo _gsignond_dbus_remote_plugin_interface_info = +{ + { + -1, + "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", + (GDBusMethodInfo **) &_gsignond_dbus_remote_plugin_method_info_pointers, + (GDBusSignalInfo **) &_gsignond_dbus_remote_plugin_signal_info_pointers, + NULL, + NULL + }, + "remote-plugin", +}; + + +/** + * gsignond_dbus_remote_plugin_interface_info: + * + * Gets a machine-readable description of the <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link> D-Bus interface. + * + * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free. + */ +GDBusInterfaceInfo * +gsignond_dbus_remote_plugin_interface_info (void) +{ + return (GDBusInterfaceInfo *) &_gsignond_dbus_remote_plugin_interface_info; +} + +/** + * gsignond_dbus_remote_plugin_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 #GSignondDbusRemotePlugin interface for a concrete class. + * The properties are overridden in the order they are defined. + * + * Returns: The last property id. + */ +guint +gsignond_dbus_remote_plugin_override_properties (GObjectClass *klass, guint property_id_begin) +{ + return property_id_begin - 1; +} + + + +/** + * GSignondDbusRemotePlugin: + * + * Abstract interface type for the D-Bus interface <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link>. + */ + +/** + * GSignondDbusRemotePluginIface: + * @parent_iface: The parent interface. + * @handle_cancel: Handler for the #GSignondDbusRemotePlugin::handle-cancel signal. + * @handle_get_info: Handler for the #GSignondDbusRemotePlugin::handle-get-info signal. + * @handle_refresh: Handler for the #GSignondDbusRemotePlugin::handle-refresh signal. + * @handle_request: Handler for the #GSignondDbusRemotePlugin::handle-request signal. + * @handle_request_initial: Handler for the #GSignondDbusRemotePlugin::handle-request-initial signal. + * @handle_user_action_finished: Handler for the #GSignondDbusRemotePlugin::handle-user-action-finished signal. + * @error: Handler for the #GSignondDbusRemotePlugin::error signal. + * @refreshed: Handler for the #GSignondDbusRemotePlugin::refreshed signal. + * @response: Handler for the #GSignondDbusRemotePlugin::response signal. + * @response_final: Handler for the #GSignondDbusRemotePlugin::response-final signal. + * @status_changed: Handler for the #GSignondDbusRemotePlugin::status-changed signal. + * @store: Handler for the #GSignondDbusRemotePlugin::store signal. + * @user_action_required: Handler for the #GSignondDbusRemotePlugin::user-action-required signal. + * + * Virtual table for the D-Bus interface <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link>. + */ + +static void +gsignond_dbus_remote_plugin_default_init (GSignondDbusRemotePluginIface *iface) +{ + /* GObject signals for incoming D-Bus method calls: */ + /** + * GSignondDbusRemotePlugin::handle-cancel: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.cancel">cancel()</link> 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 gsignond_dbus_remote_plugin_complete_cancel() 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-cancel", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_cancel), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 1, + G_TYPE_DBUS_METHOD_INVOCATION); + + /** + * GSignondDbusRemotePlugin::handle-request-initial: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * @arg_sessionData: Argument passed by remote caller. + * @arg_mechanism: Argument passed by remote caller. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.requestInitial">requestInitial()</link> 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 gsignond_dbus_remote_plugin_complete_request_initial() 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-request-initial", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_request_initial), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 3, + G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_VARIANT, G_TYPE_STRING); + + /** + * GSignondDbusRemotePlugin::handle-request: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * @arg_sessionData: Argument passed by remote caller. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.request">request()</link> 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 gsignond_dbus_remote_plugin_complete_request() 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-request", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_request), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 2, + G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::handle-user-action-finished: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * @arg_uiData: Argument passed by remote caller. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionFinished">userActionFinished()</link> 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 gsignond_dbus_remote_plugin_complete_user_action_finished() 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-user-action-finished", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_user_action_finished), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 2, + G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::handle-refresh: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * @arg_uiData: Argument passed by remote caller. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refresh">refresh()</link> 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 gsignond_dbus_remote_plugin_complete_refresh() 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-refresh", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_refresh), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 2, + G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::handle-get-info: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: A #GDBusMethodInvocation. + * + * Signal emitted when a remote caller is invoking the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.getInfo">getInfo()</link> 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 gsignond_dbus_remote_plugin_complete_get_info() 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-info", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, handle_get_info), + g_signal_accumulator_true_handled, + NULL, + g_cclosure_marshal_generic, + G_TYPE_BOOLEAN, + 1, + G_TYPE_DBUS_METHOD_INVOCATION); + + /* GObject signals for received D-Bus signals: */ + /** + * GSignondDbusRemotePlugin::response: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.response">"response"</link> 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 ("response", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, response), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::response-final: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.responseFinal">"responseFinal"</link> 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 ("response-final", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, response_final), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::store: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.store">"store"</link> 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 ("store", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, store), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::error: + * @object: A #GSignondDbusRemotePlugin. + * @arg_error: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.error">"error"</link> 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 ("error", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, error), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::user-action-required: + * @object: A #GSignondDbusRemotePlugin. + * @arg_uiData: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionRequired">"userActionRequired"</link> 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 ("user-action-required", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, user_action_required), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::refreshed: + * @object: A #GSignondDbusRemotePlugin. + * @arg_uiData: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refreshed">"refreshed"</link> 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 ("refreshed", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, refreshed), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 1, G_TYPE_VARIANT); + + /** + * GSignondDbusRemotePlugin::status-changed: + * @object: A #GSignondDbusRemotePlugin. + * @arg_state: Argument. + * @arg_message: Argument. + * + * On the client-side, this signal is emitted whenever the D-Bus signal <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.statusChanged">"statusChanged"</link> 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 ("status-changed", + G_TYPE_FROM_INTERFACE (iface), + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (GSignondDbusRemotePluginIface, status_changed), + NULL, + NULL, + g_cclosure_marshal_generic, + G_TYPE_NONE, + 2, G_TYPE_INT, G_TYPE_STRING); + +} + +typedef GSignondDbusRemotePluginIface GSignondDbusRemotePluginInterface; +G_DEFINE_INTERFACE (GSignondDbusRemotePlugin, gsignond_dbus_remote_plugin, G_TYPE_OBJECT); + +/** + * gsignond_dbus_remote_plugin_emit_response: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.response">"response"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_response ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + g_signal_emit_by_name (object, "response", arg_sessionData); +} + +/** + * gsignond_dbus_remote_plugin_emit_response_final: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.responseFinal">"responseFinal"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_response_final ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + g_signal_emit_by_name (object, "response-final", arg_sessionData); +} + +/** + * gsignond_dbus_remote_plugin_emit_store: + * @object: A #GSignondDbusRemotePlugin. + * @arg_sessionData: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.store">"store"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_store ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + g_signal_emit_by_name (object, "store", arg_sessionData); +} + +/** + * gsignond_dbus_remote_plugin_emit_error: + * @object: A #GSignondDbusRemotePlugin. + * @arg_error: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.error">"error"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_error ( + GSignondDbusRemotePlugin *object, + GVariant *arg_error) +{ + g_signal_emit_by_name (object, "error", arg_error); +} + +/** + * gsignond_dbus_remote_plugin_emit_user_action_required: + * @object: A #GSignondDbusRemotePlugin. + * @arg_uiData: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionRequired">"userActionRequired"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_user_action_required ( + GSignondDbusRemotePlugin *object, + GVariant *arg_uiData) +{ + g_signal_emit_by_name (object, "user-action-required", arg_uiData); +} + +/** + * gsignond_dbus_remote_plugin_emit_refreshed: + * @object: A #GSignondDbusRemotePlugin. + * @arg_uiData: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refreshed">"refreshed"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_refreshed ( + GSignondDbusRemotePlugin *object, + GVariant *arg_uiData) +{ + g_signal_emit_by_name (object, "refreshed", arg_uiData); +} + +/** + * gsignond_dbus_remote_plugin_emit_status_changed: + * @object: A #GSignondDbusRemotePlugin. + * @arg_state: Argument to pass with the signal. + * @arg_message: Argument to pass with the signal. + * + * Emits the <link linkend="gdbus-signal-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.statusChanged">"statusChanged"</link> D-Bus signal. + */ +void +gsignond_dbus_remote_plugin_emit_status_changed ( + GSignondDbusRemotePlugin *object, + gint arg_state, + const gchar *arg_message) +{ + g_signal_emit_by_name (object, "status-changed", arg_state, arg_message); +} + +/** + * gsignond_dbus_remote_plugin_call_cancel: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.cancel">cancel()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_cancel_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_cancel_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_cancel ( + GSignondDbusRemotePlugin *proxy, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "cancel", + g_variant_new ("()"), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_cancel_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_cancel(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_cancel(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_cancel_finish ( + GSignondDbusRemotePlugin *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; +} + +/** + * gsignond_dbus_remote_plugin_call_cancel_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @cancellable: (allow-none): A #GCancellable or %NULL. + * @error: Return location for error or %NULL. + * + * Synchronously invokes the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.cancel">cancel()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_cancel() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_cancel_sync ( + GSignondDbusRemotePlugin *proxy, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "cancel", + 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; +} + +/** + * gsignond_dbus_remote_plugin_call_request_initial: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_sessionData: Argument to pass with the method invocation. + * @arg_mechanism: 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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.requestInitial">requestInitial()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_request_initial_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_request_initial_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_request_initial ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_sessionData, + const gchar *arg_mechanism, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "requestInitial", + g_variant_new ("(@a{sv}s)", + arg_sessionData, + arg_mechanism), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_request_initial_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_request_initial(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_request_initial(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_request_initial_finish ( + GSignondDbusRemotePlugin *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; +} + +/** + * gsignond_dbus_remote_plugin_call_request_initial_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_sessionData: Argument to pass with the method invocation. + * @arg_mechanism: Argument to pass with the method invocation. + * @cancellable: (allow-none): A #GCancellable or %NULL. + * @error: Return location for error or %NULL. + * + * Synchronously invokes the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.requestInitial">requestInitial()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_request_initial() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_request_initial_sync ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_sessionData, + const gchar *arg_mechanism, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "requestInitial", + g_variant_new ("(@a{sv}s)", + arg_sessionData, + arg_mechanism), + 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; +} + +/** + * gsignond_dbus_remote_plugin_call_request: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_sessionData: 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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.request">request()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_request_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_request_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_request ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_sessionData, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "request", + g_variant_new ("(@a{sv})", + arg_sessionData), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_request_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_request(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_request(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_request_finish ( + GSignondDbusRemotePlugin *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; +} + +/** + * gsignond_dbus_remote_plugin_call_request_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_sessionData: Argument to pass with the method invocation. + * @cancellable: (allow-none): A #GCancellable or %NULL. + * @error: Return location for error or %NULL. + * + * Synchronously invokes the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.request">request()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_request() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_request_sync ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_sessionData, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "request", + g_variant_new ("(@a{sv})", + arg_sessionData), + 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; +} + +/** + * gsignond_dbus_remote_plugin_call_user_action_finished: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_uiData: 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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionFinished">userActionFinished()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_user_action_finished_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_user_action_finished_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_user_action_finished ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_uiData, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "userActionFinished", + g_variant_new ("(@a{sv})", + arg_uiData), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_user_action_finished_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_user_action_finished(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_user_action_finished(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_user_action_finished_finish ( + GSignondDbusRemotePlugin *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; +} + +/** + * gsignond_dbus_remote_plugin_call_user_action_finished_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_uiData: Argument to pass with the method invocation. + * @cancellable: (allow-none): A #GCancellable or %NULL. + * @error: Return location for error or %NULL. + * + * Synchronously invokes the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionFinished">userActionFinished()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_user_action_finished() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_user_action_finished_sync ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_uiData, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "userActionFinished", + g_variant_new ("(@a{sv})", + arg_uiData), + 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; +} + +/** + * gsignond_dbus_remote_plugin_call_refresh: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_uiData: 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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refresh">refresh()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_refresh_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_refresh_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_refresh ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_uiData, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "refresh", + g_variant_new ("(@a{sv})", + arg_uiData), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_refresh_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_refresh(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_refresh(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_refresh_finish ( + GSignondDbusRemotePlugin *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; +} + +/** + * gsignond_dbus_remote_plugin_call_refresh_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @arg_uiData: Argument to pass with the method invocation. + * @cancellable: (allow-none): A #GCancellable or %NULL. + * @error: Return location for error or %NULL. + * + * Synchronously invokes the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refresh">refresh()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_refresh() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_refresh_sync ( + GSignondDbusRemotePlugin *proxy, + GVariant *arg_uiData, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "refresh", + g_variant_new ("(@a{sv})", + arg_uiData), + 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; +} + +/** + * gsignond_dbus_remote_plugin_call_get_info: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.getInfo">getInfo()</link> D-Bus method on @proxy. + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_call_get_info_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_call_get_info_sync() for the synchronous, blocking version of this method. + */ +void +gsignond_dbus_remote_plugin_call_get_info ( + GSignondDbusRemotePlugin *proxy, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data) +{ + g_dbus_proxy_call (G_DBUS_PROXY (proxy), + "getInfo", + g_variant_new ("()"), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + callback, + user_data); +} + +/** + * gsignond_dbus_remote_plugin_call_get_info_finish: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @out_type: (out): Return location for return parameter or %NULL to ignore. + * @out_mechanisms: (out): Return location for return parameter or %NULL to ignore. + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_call_get_info(). + * @error: Return location for error or %NULL. + * + * Finishes an operation started with gsignond_dbus_remote_plugin_call_get_info(). + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_get_info_finish ( + GSignondDbusRemotePlugin *proxy, + gchar **out_type, + gchar ***out_mechanisms, + 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^as)", + out_type, + out_mechanisms); + g_variant_unref (_ret); +_out: + return _ret != NULL; +} + +/** + * gsignond_dbus_remote_plugin_call_get_info_sync: + * @proxy: A #GSignondDbusRemotePluginProxy. + * @out_type: (out): Return location for return parameter or %NULL to ignore. + * @out_mechanisms: (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 <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.getInfo">getInfo()</link> D-Bus method on @proxy. The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_call_get_info() for the asynchronous version of this method. + * + * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set. + */ +gboolean +gsignond_dbus_remote_plugin_call_get_info_sync ( + GSignondDbusRemotePlugin *proxy, + gchar **out_type, + gchar ***out_mechanisms, + GCancellable *cancellable, + GError **error) +{ + GVariant *_ret; + _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy), + "getInfo", + g_variant_new ("()"), + G_DBUS_CALL_FLAGS_NONE, + -1, + cancellable, + error); + if (_ret == NULL) + goto _out; + g_variant_get (_ret, + "(s^as)", + out_type, + out_mechanisms); + g_variant_unref (_ret); +_out: + return _ret != NULL; +} + +/** + * gsignond_dbus_remote_plugin_complete_cancel: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.cancel">cancel()</link> 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 +gsignond_dbus_remote_plugin_complete_cancel ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("()")); +} + +/** + * gsignond_dbus_remote_plugin_complete_request_initial: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.requestInitial">requestInitial()</link> 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 +gsignond_dbus_remote_plugin_complete_request_initial ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("()")); +} + +/** + * gsignond_dbus_remote_plugin_complete_request: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.request">request()</link> 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 +gsignond_dbus_remote_plugin_complete_request ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("()")); +} + +/** + * gsignond_dbus_remote_plugin_complete_user_action_finished: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.userActionFinished">userActionFinished()</link> 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 +gsignond_dbus_remote_plugin_complete_user_action_finished ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("()")); +} + +/** + * gsignond_dbus_remote_plugin_complete_refresh: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.refresh">refresh()</link> 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 +gsignond_dbus_remote_plugin_complete_refresh ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("()")); +} + +/** + * gsignond_dbus_remote_plugin_complete_get_info: + * @object: A #GSignondDbusRemotePlugin. + * @invocation: (transfer full): A #GDBusMethodInvocation. + * @type: Parameter to return. + * @mechanisms: Parameter to return. + * + * Helper function used in service implementations to finish handling invocations of the <link linkend="gdbus-method-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.getInfo">getInfo()</link> 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 +gsignond_dbus_remote_plugin_complete_get_info ( + GSignondDbusRemotePlugin *object, + GDBusMethodInvocation *invocation, + const gchar *type, + const gchar *const *mechanisms) +{ + g_dbus_method_invocation_return_value (invocation, + g_variant_new ("(s^as)", + type, + mechanisms)); +} + +/* ------------------------------------------------------------------------ */ + +/** + * GSignondDbusRemotePluginProxy: + * + * The #GSignondDbusRemotePluginProxy structure contains only private data and should only be accessed using the provided API. + */ + +/** + * GSignondDbusRemotePluginProxyClass: + * @parent_class: The parent class. + * + * Class structure for #GSignondDbusRemotePluginProxy. + */ + +struct _GSignondDbusRemotePluginProxyPrivate +{ + GData *qdata; +}; + +static void gsignond_dbus_remote_plugin_proxy_iface_init (GSignondDbusRemotePluginIface *iface); + +G_DEFINE_TYPE_WITH_CODE (GSignondDbusRemotePluginProxy, gsignond_dbus_remote_plugin_proxy, G_TYPE_DBUS_PROXY, + G_IMPLEMENT_INTERFACE (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN, gsignond_dbus_remote_plugin_proxy_iface_init)); + +static void +gsignond_dbus_remote_plugin_proxy_finalize (GObject *object) +{ + GSignondDbusRemotePluginProxy *proxy = GSIGNOND_DBUS_REMOTE_PLUGIN_PROXY (object); + g_datalist_clear (&proxy->priv->qdata); + G_OBJECT_CLASS (gsignond_dbus_remote_plugin_proxy_parent_class)->finalize (object); +} + +static void +gsignond_dbus_remote_plugin_proxy_get_property (GObject *object, + guint prop_id, + GValue *value, + GParamSpec *pspec) +{ +} + +static void +gsignond_dbus_remote_plugin_proxy_set_property (GObject *object, + guint prop_id, + const GValue *value, + GParamSpec *pspec) +{ +} + +static void +gsignond_dbus_remote_plugin_proxy_g_signal (GDBusProxy *proxy, + const gchar *sender_name, + 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 *) &_gsignond_dbus_remote_plugin_interface_info, 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], GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN); + 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, GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN); + 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 +gsignond_dbus_remote_plugin_proxy_g_properties_changed (GDBusProxy *_proxy, + GVariant *changed_properties, + const gchar *const *invalidated_properties) +{ + GSignondDbusRemotePluginProxy *proxy = GSIGNOND_DBUS_REMOTE_PLUGIN_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 *) &_gsignond_dbus_remote_plugin_interface_info, 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 *) &_gsignond_dbus_remote_plugin_interface_info, 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 +gsignond_dbus_remote_plugin_proxy_init (GSignondDbusRemotePluginProxy *proxy) +{ + proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_PROXY, GSignondDbusRemotePluginProxyPrivate); + g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), gsignond_dbus_remote_plugin_interface_info ()); +} + +static void +gsignond_dbus_remote_plugin_proxy_class_init (GSignondDbusRemotePluginProxyClass *klass) +{ + GObjectClass *gobject_class; + GDBusProxyClass *proxy_class; + + g_type_class_add_private (klass, sizeof (GSignondDbusRemotePluginProxyPrivate)); + + gobject_class = G_OBJECT_CLASS (klass); + gobject_class->finalize = gsignond_dbus_remote_plugin_proxy_finalize; + gobject_class->get_property = gsignond_dbus_remote_plugin_proxy_get_property; + gobject_class->set_property = gsignond_dbus_remote_plugin_proxy_set_property; + + proxy_class = G_DBUS_PROXY_CLASS (klass); + proxy_class->g_signal = gsignond_dbus_remote_plugin_proxy_g_signal; + proxy_class->g_properties_changed = gsignond_dbus_remote_plugin_proxy_g_properties_changed; + +} + +static void +gsignond_dbus_remote_plugin_proxy_iface_init (GSignondDbusRemotePluginIface *iface) +{ +} + +/** + * gsignond_dbus_remote_plugin_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 <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link>. See g_dbus_proxy_new() for more details. + * + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_proxy_new_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_proxy_new_sync() for the synchronous, blocking version of this constructor. + */ +void +gsignond_dbus_remote_plugin_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 (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_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", "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", NULL); +} + +/** + * gsignond_dbus_remote_plugin_proxy_new_finish: + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_proxy_new(). + * @error: Return location for error or %NULL + * + * Finishes an operation started with gsignond_dbus_remote_plugin_proxy_new(). + * + * Returns: (transfer full) (type GSignondDbusRemotePluginProxy): The constructed proxy object or %NULL if @error is set. + */ +GSignondDbusRemotePlugin * +gsignond_dbus_remote_plugin_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 GSIGNOND_DBUS_REMOTE_PLUGIN (ret); + else + return NULL; +} + +/** + * gsignond_dbus_remote_plugin_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 <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link>. See g_dbus_proxy_new_sync() for more details. + * + * The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_proxy_new() for the asynchronous version of this constructor. + * + * Returns: (transfer full) (type GSignondDbusRemotePluginProxy): The constructed proxy object or %NULL if @error is set. + */ +GSignondDbusRemotePlugin * +gsignond_dbus_remote_plugin_proxy_new_sync ( + GDBusConnection *connection, + GDBusProxyFlags flags, + const gchar *name, + const gchar *object_path, + GCancellable *cancellable, + GError **error) +{ + GInitable *ret; + ret = g_initable_new (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-connection", connection, "g-object-path", object_path, "g-interface-name", "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", NULL); + if (ret != NULL) + return GSIGNOND_DBUS_REMOTE_PLUGIN (ret); + else + return NULL; +} + + +/** + * gsignond_dbus_remote_plugin_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 gsignond_dbus_remote_plugin_proxy_new() but takes a #GBusType instead of a #GDBusConnection. + * + * When the operation is finished, @callback will be invoked in the <link linkend="g-main-context-push-thread-default">thread-default main loop</link> of the thread you are calling this method from. + * You can then call gsignond_dbus_remote_plugin_proxy_new_for_bus_finish() to get the result of the operation. + * + * See gsignond_dbus_remote_plugin_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor. + */ +void +gsignond_dbus_remote_plugin_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 (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_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", "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", NULL); +} + +/** + * gsignond_dbus_remote_plugin_proxy_new_for_bus_finish: + * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gsignond_dbus_remote_plugin_proxy_new_for_bus(). + * @error: Return location for error or %NULL + * + * Finishes an operation started with gsignond_dbus_remote_plugin_proxy_new_for_bus(). + * + * Returns: (transfer full) (type GSignondDbusRemotePluginProxy): The constructed proxy object or %NULL if @error is set. + */ +GSignondDbusRemotePlugin * +gsignond_dbus_remote_plugin_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 GSIGNOND_DBUS_REMOTE_PLUGIN (ret); + else + return NULL; +} + +/** + * gsignond_dbus_remote_plugin_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 gsignond_dbus_remote_plugin_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection. + * + * The calling thread is blocked until a reply is received. + * + * See gsignond_dbus_remote_plugin_proxy_new_for_bus() for the asynchronous version of this constructor. + * + * Returns: (transfer full) (type GSignondDbusRemotePluginProxy): The constructed proxy object or %NULL if @error is set. + */ +GSignondDbusRemotePlugin * +gsignond_dbus_remote_plugin_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 (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_PROXY, cancellable, error, "g-flags", flags, "g-name", name, "g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name", "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", NULL); + if (ret != NULL) + return GSIGNOND_DBUS_REMOTE_PLUGIN (ret); + else + return NULL; +} + + +/* ------------------------------------------------------------------------ */ + +/** + * GSignondDbusRemotePluginSkeleton: + * + * The #GSignondDbusRemotePluginSkeleton structure contains only private data and should only be accessed using the provided API. + */ + +/** + * GSignondDbusRemotePluginSkeletonClass: + * @parent_class: The parent class. + * + * Class structure for #GSignondDbusRemotePluginSkeleton. + */ + +struct _GSignondDbusRemotePluginSkeletonPrivate +{ + GValue *properties; + GList *changed_properties; + GSource *changed_properties_idle_source; + GMainContext *context; + GMutex lock; +}; + +static void +_gsignond_dbus_remote_plugin_skeleton_handle_method_call ( + GDBusConnection *connection, + const gchar *sender, + const gchar *object_path, + const gchar *interface_name, + const gchar *method_name, + GVariant *parameters, + GDBusMethodInvocation *invocation, + gpointer user_data) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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], GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN); + 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, GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN); + 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 * +_gsignond_dbus_remote_plugin_skeleton_handle_get_property ( + GDBusConnection *connection, + const gchar *sender, + const gchar *object_path, + const gchar *interface_name, + const gchar *property_name, + GError **error, + gpointer user_data) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 *) &_gsignond_dbus_remote_plugin_interface_info, 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 +_gsignond_dbus_remote_plugin_skeleton_handle_set_property ( + GDBusConnection *connection, + const gchar *sender, + const gchar *object_path, + const gchar *interface_name, + const gchar *property_name, + GVariant *variant, + GError **error, + gpointer user_data) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 *) &_gsignond_dbus_remote_plugin_interface_info, 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 _gsignond_dbus_remote_plugin_skeleton_vtable = +{ + _gsignond_dbus_remote_plugin_skeleton_handle_method_call, + _gsignond_dbus_remote_plugin_skeleton_handle_get_property, + _gsignond_dbus_remote_plugin_skeleton_handle_set_property +}; + +static GDBusInterfaceInfo * +gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton) +{ + return gsignond_dbus_remote_plugin_interface_info (); +} + +static GDBusInterfaceVTable * +gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton) +{ + return (GDBusInterfaceVTable *) &_gsignond_dbus_remote_plugin_skeleton_vtable; +} + +static GVariant * +gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_SKELETON (_skeleton); + + GVariantBuilder builder; + guint n; + g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}")); + if (_gsignond_dbus_remote_plugin_interface_info.parent_struct.properties == NULL) + goto out; + for (n = 0; _gsignond_dbus_remote_plugin_interface_info.parent_struct.properties[n] != NULL; n++) + { + GDBusPropertyInfo *info = _gsignond_dbus_remote_plugin_interface_info.parent_struct.properties[n]; + if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE) + { + GVariant *value; + value = _gsignond_dbus_remote_plugin_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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", 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 +gsignond_dbus_remote_plugin_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton) +{ +} + +static void +_gsignond_dbus_remote_plugin_on_signal_response ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@a{sv})", + arg_sessionData)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "response", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_response_final ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@a{sv})", + arg_sessionData)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "responseFinal", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_store ( + GSignondDbusRemotePlugin *object, + GVariant *arg_sessionData) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@a{sv})", + arg_sessionData)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "store", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_error ( + GSignondDbusRemotePlugin *object, + GVariant *arg_error) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@(uis))", + arg_error)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "error", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_user_action_required ( + GSignondDbusRemotePlugin *object, + GVariant *arg_uiData) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@a{sv})", + arg_uiData)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "userActionRequired", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_refreshed ( + GSignondDbusRemotePlugin *object, + GVariant *arg_uiData) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(@a{sv})", + arg_uiData)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "refreshed", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void +_gsignond_dbus_remote_plugin_on_signal_status_changed ( + GSignondDbusRemotePlugin *object, + gint arg_state, + const gchar *arg_message) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 ("(is)", + arg_state, + arg_message)); + 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)), "com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin", "statusChanged", + signal_variant, NULL); + } + g_variant_unref (signal_variant); + g_list_free_full (connections, g_object_unref); +} + +static void gsignond_dbus_remote_plugin_skeleton_iface_init (GSignondDbusRemotePluginIface *iface); +G_DEFINE_TYPE_WITH_CODE (GSignondDbusRemotePluginSkeleton, gsignond_dbus_remote_plugin_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON, + G_IMPLEMENT_INTERFACE (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN, gsignond_dbus_remote_plugin_skeleton_iface_init)); + +static void +gsignond_dbus_remote_plugin_skeleton_finalize (GObject *object) +{ + GSignondDbusRemotePluginSkeleton *skeleton = GSIGNOND_DBUS_REMOTE_PLUGIN_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 (gsignond_dbus_remote_plugin_skeleton_parent_class)->finalize (object); +} + +static void +gsignond_dbus_remote_plugin_skeleton_init (GSignondDbusRemotePluginSkeleton *skeleton) +{ + skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_SKELETON, GSignondDbusRemotePluginSkeletonPrivate); + g_mutex_init (&skeleton->priv->lock); + skeleton->priv->context = g_main_context_ref_thread_default (); +} + +static void +gsignond_dbus_remote_plugin_skeleton_class_init (GSignondDbusRemotePluginSkeletonClass *klass) +{ + GObjectClass *gobject_class; + GDBusInterfaceSkeletonClass *skeleton_class; + + g_type_class_add_private (klass, sizeof (GSignondDbusRemotePluginSkeletonPrivate)); + + gobject_class = G_OBJECT_CLASS (klass); + gobject_class->finalize = gsignond_dbus_remote_plugin_skeleton_finalize; + + skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass); + skeleton_class->get_info = gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_info; + skeleton_class->get_properties = gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_properties; + skeleton_class->flush = gsignond_dbus_remote_plugin_skeleton_dbus_interface_flush; + skeleton_class->get_vtable = gsignond_dbus_remote_plugin_skeleton_dbus_interface_get_vtable; +} + +static void +gsignond_dbus_remote_plugin_skeleton_iface_init (GSignondDbusRemotePluginIface *iface) +{ + iface->response = _gsignond_dbus_remote_plugin_on_signal_response; + iface->response_final = _gsignond_dbus_remote_plugin_on_signal_response_final; + iface->store = _gsignond_dbus_remote_plugin_on_signal_store; + iface->error = _gsignond_dbus_remote_plugin_on_signal_error; + iface->user_action_required = _gsignond_dbus_remote_plugin_on_signal_user_action_required; + iface->refreshed = _gsignond_dbus_remote_plugin_on_signal_refreshed; + iface->status_changed = _gsignond_dbus_remote_plugin_on_signal_status_changed; +} + +/** + * gsignond_dbus_remote_plugin_skeleton_new: + * + * Creates a skeleton object for the D-Bus interface <link linkend="gdbus-interface-com-google-code-AccountsSSO-gSingleSignOn-RemotePlugin.top_of_page">com.google.code.AccountsSSO.gSingleSignOn.RemotePlugin</link>. + * + * Returns: (transfer full) (type GSignondDbusRemotePluginSkeleton): The skeleton object. + */ +GSignondDbusRemotePlugin * +gsignond_dbus_remote_plugin_skeleton_new (void) +{ + return GSIGNOND_DBUS_REMOTE_PLUGIN (g_object_new (GSIGNOND_DBUS_TYPE_REMOTE_PLUGIN_SKELETON, NULL)); +} + |