[gnome-builder/wip/code-assistance: 4/6] code-assist: plumb through Diagnostics RPC
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/code-assistance: 4/6] code-assist: plumb through Diagnostics RPC
- Date: Mon, 20 Oct 2014 23:05:27 +0000 (UTC)
commit 5ecbe825a07963db763db7eb50317855a86dfcd2
Author: Christian Hergert <christian hergert me>
Date: Sat Oct 18 15:36:30 2014 -0700
code-assist: plumb through Diagnostics RPC
src/editor/gb-editor-code-assistant.c | 176 ++++++
src/editor/gb-editor-tab-private.h | 3 +
src/gca/gca-diagnostics.c | 1039 +++++++++++++++++++++++++++++++++
src/gca/gca-diagnostics.h | 170 ++++++
src/gca/gca-diagnostics.xml | 9 +
src/gca/{gca.xml => gca-service.xml} | 0
src/gnome-builder.mk | 2 +
7 files changed, 1399 insertions(+), 0 deletions(-)
---
diff --git a/src/editor/gb-editor-code-assistant.c b/src/editor/gb-editor-code-assistant.c
index 71e03f4..f4adb8d 100644
--- a/src/editor/gb-editor-code-assistant.c
+++ b/src/editor/gb-editor-code-assistant.c
@@ -18,18 +18,171 @@
#define G_LOG_DOMAIN "code-assistant"
+#include <glib/gstdio.h>
+
#include "gb-editor-code-assistant.h"
#include "gb-editor-tab-private.h"
#include "gb-log.h"
+#include "gca-diagnostics.h"
#include "gca-service.h"
+#define PARSE_TIMEOUT_MSEC 250
+
+static void
+gb_editor_code_assistant_diag_cb (GObject *source_object,
+ GAsyncResult *result,
+ gpointer user_data)
+{
+ GbEditorTab *tab = user_data;
+ GcaDiagnostics *diag = (GcaDiagnostics *)source_object;
+ GVariant *diags = NULL;
+ GError *error = NULL;
+
+ if (!gca_diagnostics_call_diagnostics_finish (diag, &diags, result, &error))
+ {
+ g_warning ("%s", error->message);
+ g_clear_error (&error);
+ GOTO (cleanup);
+ }
+
+ {
+ gchar *str = g_variant_print (diags, TRUE);
+ g_print (">> %s\n", str);
+ g_free (str);
+ }
+
+cleanup:
+ g_clear_pointer (&diags, g_variant_unref);
+ g_object_unref (tab);
+}
+
+static void
+gb_editor_code_assistant_parse_cb (GObject *source_object,
+ GAsyncResult *result,
+ gpointer user_data)
+{
+ GbEditorTab *tab = user_data;
+ GcaService *service = (GcaService *)source_object;
+ GcaDiagnostics *diag_proxy = NULL;
+ GtkSourceLanguage *language;
+ const gchar *lang_id;
+ GError *error = NULL;
+ gchar *document_path = NULL;
+ gchar *name = NULL;
+
+ ENTRY;
+
+ g_return_if_fail (GCA_IS_SERVICE (service));
+ g_return_if_fail (GB_IS_EDITOR_TAB (tab));
+
+ if (!gca_service_call_parse_finish (service, &document_path, result, &error))
+ {
+ g_warning ("%s", error->message);
+ g_clear_error (&error);
+ GOTO (cleanup);
+ }
+
+ language =
+ gtk_source_buffer_get_language (GTK_SOURCE_BUFFER (tab->priv->document));
+ if (!language)
+ GOTO (cleanup);
+
+ lang_id = gtk_source_language_get_id (language);
+ name = g_strdup_printf ("org.gnome.CodeAssist.v1.%s", lang_id);
+
+ diag_proxy =
+ gca_diagnostics_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION,
+ G_DBUS_PROXY_FLAGS_NONE,
+ name, document_path,
+ NULL, &error);
+ if (!diag_proxy)
+ {
+ g_warning ("%s", error->message);
+ g_clear_error (&error);
+ GOTO (cleanup);
+ }
+
+ gca_diagnostics_call_diagnostics (diag_proxy, NULL,
+ gb_editor_code_assistant_diag_cb,
+ g_object_ref (tab));
+
+cleanup:
+ g_clear_object (&diag_proxy);
+ g_free (name);
+ g_free (document_path);
+ g_object_unref (tab);
+
+ EXIT;
+}
+
+static gboolean
+gb_editor_code_assistant_parse (gpointer user_data)
+{
+ GbEditorTabPrivate *priv;
+ GbEditorTab *tab = user_data;
+ GtkTextIter begin;
+ GtkTextIter end;
+ GVariant *cursor;
+ GVariant *options;
+ GFile *location;
+ gchar *data_path = g_get_current_dir (); /* TODO: Get from Git */
+ gchar *path;
+ gchar *text;
+
+ g_return_val_if_fail (GB_IS_EDITOR_TAB (tab), G_SOURCE_REMOVE);
+
+ priv = tab->priv;
+
+ priv->gca_parse_timeout = 0;
+
+ gtk_text_buffer_get_bounds (GTK_TEXT_BUFFER (priv->document), &begin, &end);
+ text = gtk_text_buffer_get_text (GTK_TEXT_BUFFER (priv->document), &begin,
+ &end, TRUE);
+ g_file_set_contents (priv->gca_tmpfile, text, -1, NULL);
+
+ location = gtk_source_file_get_location (priv->file);
+ path = g_file_get_path (location);
+
+ cursor = g_variant_new ("(xx)",
+ G_GINT64_CONSTANT (0),
+ G_GINT64_CONSTANT (0));
+ options = g_variant_new ("a{sv}", 0);
+
+ g_print ("PATH: %s\n", path);
+
+ gca_service_call_parse (priv->gca_service,
+ path,
+ priv->gca_tmpfile,
+ cursor,
+ options,
+ NULL,
+ gb_editor_code_assistant_parse_cb,
+ g_object_ref (tab));
+
+ g_free (data_path);
+ g_free (path);
+ g_free (text);
+
+ return G_SOURCE_REMOVE;
+}
+
static void
gb_editor_code_assistant_buffer_changed (GbEditorDocument *document,
GbEditorTab *tab)
{
+ GbEditorTabPrivate *priv;
+
g_return_if_fail (GB_IS_EDITOR_TAB (tab));
g_return_if_fail (GB_IS_EDITOR_DOCUMENT (document));
+ priv = tab->priv;
+
+ if (priv->gca_parse_timeout)
+ g_source_remove (priv->gca_parse_timeout);
+
+ priv->gca_parse_timeout = g_timeout_add (PARSE_TIMEOUT_MSEC,
+ gb_editor_code_assistant_parse,
+ tab);
}
/**
@@ -79,6 +232,10 @@ gb_editor_code_assistant_init (GbEditorTab *tab)
EXIT;
}
+ priv->gca_tmpfd =
+ g_file_open_tmp ("builder-code-assist.XXXXXX",
+ &priv->gca_tmpfile, NULL);
+
priv->gca_buffer_changed_handler =
g_signal_connect (priv->document, "changed",
G_CALLBACK (gb_editor_code_assistant_buffer_changed),
@@ -105,5 +262,24 @@ gb_editor_code_assistant_destroy (GbEditorTab *tab)
priv->gca_buffer_changed_handler = 0;
}
+ if (priv->gca_parse_timeout)
+ {
+ g_source_remove (priv->gca_parse_timeout);
+ priv->gca_parse_timeout = 0;
+ }
+
+ if (priv->gca_tmpfile)
+ {
+ g_unlink (priv->gca_tmpfile);
+ g_clear_pointer (&priv->gca_tmpfile, g_free);
+ }
+
+ if (priv->gca_tmpfd != -1)
+ {
+ close (priv->gca_tmpfd);
+ priv->gca_tmpfd = -1;
+ }
+
+
EXIT;
}
diff --git a/src/editor/gb-editor-tab-private.h b/src/editor/gb-editor-tab-private.h
index 65ce8fa..a332c5b 100644
--- a/src/editor/gb-editor-tab-private.h
+++ b/src/editor/gb-editor-tab-private.h
@@ -105,7 +105,10 @@ struct _GbEditorTabPrivate
* Code Assistance.
*/
GcaService *gca_service;
+ gchar *gca_tmpfile;
+ gint gca_tmpfd;
gulong gca_buffer_changed_handler;
+ guint gca_parse_timeout;
/*
* Animation for save progress.
diff --git a/src/gca/gca-diagnostics.c b/src/gca/gca-diagnostics.c
new file mode 100644
index 0000000..e1219ef
--- /dev/null
+++ b/src/gca/gca-diagnostics.c
@@ -0,0 +1,1039 @@
+/*
+ * Generated by gdbus-codegen 2.42.0. 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 "gca-diagnostics.h"
+
+#include <string.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:
+ {
+ /* Avoid -Wfloat-equal warnings by doing a direct bit compare */
+ gdouble da = g_value_get_double (a);
+ gdouble db = g_value_get_double (b);
+ ret = memcmp (&da, &db, sizeof (gdouble)) == 0;
+ }
+ 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 org.gnome.CodeAssist.v1.Diagnostics
+ * ------------------------------------------------------------------------
+ */
+
+/**
+ * SECTION:GcaDiagnostics
+ * @title: GcaDiagnostics
+ * @short_description: Generated C code for the org.gnome.CodeAssist.v1.Diagnostics D-Bus interface
+ *
+ * This section contains code for working with the <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>
D-Bus interface in C.
+ */
+
+/* ---- Introspection data for org.gnome.CodeAssist.v1.Diagnostics ---- */
+
+static const _ExtendedGDBusArgInfo _gca_diagnostics_method_info_diagnostics_OUT_ARG_unnamed_arg0 =
+{
+ {
+ -1,
+ (gchar *) "unnamed_arg0",
+ (gchar *) "a(ua((x(xx)(xx))s)a(x(xx)(xx))s)",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo * const _gca_diagnostics_method_info_diagnostics_OUT_ARG_pointers[] =
+{
+ &_gca_diagnostics_method_info_diagnostics_OUT_ARG_unnamed_arg0,
+ NULL
+};
+
+static const _ExtendedGDBusMethodInfo _gca_diagnostics_method_info_diagnostics =
+{
+ {
+ -1,
+ (gchar *) "Diagnostics",
+ NULL,
+ (GDBusArgInfo **) &_gca_diagnostics_method_info_diagnostics_OUT_ARG_pointers,
+ NULL
+ },
+ "handle-diagnostics",
+ FALSE
+};
+
+static const _ExtendedGDBusMethodInfo * const _gca_diagnostics_method_info_pointers[] =
+{
+ &_gca_diagnostics_method_info_diagnostics,
+ NULL
+};
+
+static const _ExtendedGDBusInterfaceInfo _gca_diagnostics_interface_info =
+{
+ {
+ -1,
+ (gchar *) "org.gnome.CodeAssist.v1.Diagnostics",
+ (GDBusMethodInfo **) &_gca_diagnostics_method_info_pointers,
+ NULL,
+ NULL,
+ NULL
+ },
+ "diagnostics",
+};
+
+
+/**
+ * gca_diagnostics_interface_info:
+ *
+ * Gets a machine-readable description of the <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>
D-Bus interface.
+ *
+ * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free.
+ */
+GDBusInterfaceInfo *
+gca_diagnostics_interface_info (void)
+{
+ return (GDBusInterfaceInfo *) &_gca_diagnostics_interface_info.parent_struct;
+}
+
+/**
+ * gca_diagnostics_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 #GcaDiagnostics interface for a concrete class.
+ * The properties are overridden in the order they are defined.
+ *
+ * Returns: The last property id.
+ */
+guint
+gca_diagnostics_override_properties (GObjectClass *klass, guint property_id_begin)
+{
+ return property_id_begin - 1;
+}
+
+
+
+/**
+ * GcaDiagnostics:
+ *
+ * Abstract interface type for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>.
+ */
+
+/**
+ * GcaDiagnosticsIface:
+ * @parent_iface: The parent interface.
+ * @handle_diagnostics: Handler for the #GcaDiagnostics::handle-diagnostics signal.
+ *
+ * Virtual table for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>.
+ */
+
+typedef GcaDiagnosticsIface GcaDiagnosticsInterface;
+G_DEFINE_INTERFACE (GcaDiagnostics, gca_diagnostics, G_TYPE_OBJECT);
+
+static void
+gca_diagnostics_default_init (GcaDiagnosticsIface *iface)
+{
+ /* GObject signals for incoming D-Bus method calls: */
+ /**
+ * GcaDiagnostics::handle-diagnostics:
+ * @object: A #GcaDiagnostics.
+ * @invocation: A #GDBusMethodInvocation.
+ *
+ * Signal emitted when a remote caller is invoking the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Diagnostics.Diagnostics">Diagnostics()</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 gca_diagnostics_complete_diagnostics() 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-diagnostics",
+ G_TYPE_FROM_INTERFACE (iface),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (GcaDiagnosticsIface, handle_diagnostics),
+ g_signal_accumulator_true_handled,
+ NULL,
+ g_cclosure_marshal_generic,
+ G_TYPE_BOOLEAN,
+ 1,
+ G_TYPE_DBUS_METHOD_INVOCATION);
+
+}
+
+/**
+ * gca_diagnostics_call_diagnostics:
+ * @proxy: A #GcaDiagnosticsProxy.
+ * @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-org-gnome-CodeAssist-v1-Diagnostics.Diagnostics">Diagnostics()</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 gca_diagnostics_call_diagnostics_finish() to get the result of the operation.
+ *
+ * See gca_diagnostics_call_diagnostics_sync() for the synchronous, blocking version of this method.
+ */
+void
+gca_diagnostics_call_diagnostics (
+ GcaDiagnostics *proxy,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data)
+{
+ g_dbus_proxy_call (G_DBUS_PROXY (proxy),
+ "Diagnostics",
+ g_variant_new ("()"),
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ cancellable,
+ callback,
+ user_data);
+}
+
+/**
+ * gca_diagnostics_call_diagnostics_finish:
+ * @proxy: A #GcaDiagnosticsProxy.
+ * @out_unnamed_arg0: (out): Return location for return parameter or %NULL to ignore.
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to
gca_diagnostics_call_diagnostics().
+ * @error: Return location for error or %NULL.
+ *
+ * Finishes an operation started with gca_diagnostics_call_diagnostics().
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_diagnostics_call_diagnostics_finish (
+ GcaDiagnostics *proxy,
+ GVariant **out_unnamed_arg0,
+ 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(ua((x(xx)(xx))s)a(x(xx)(xx))s))",
+ out_unnamed_arg0);
+ g_variant_unref (_ret);
+_out:
+ return _ret != NULL;
+}
+
+/**
+ * gca_diagnostics_call_diagnostics_sync:
+ * @proxy: A #GcaDiagnosticsProxy.
+ * @out_unnamed_arg0: (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-org-gnome-CodeAssist-v1-Diagnostics.Diagnostics">Diagnostics()</link> D-Bus method on
@proxy. The calling thread is blocked until a reply is received.
+ *
+ * See gca_diagnostics_call_diagnostics() for the asynchronous version of this method.
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_diagnostics_call_diagnostics_sync (
+ GcaDiagnostics *proxy,
+ GVariant **out_unnamed_arg0,
+ GCancellable *cancellable,
+ GError **error)
+{
+ GVariant *_ret;
+ _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy),
+ "Diagnostics",
+ g_variant_new ("()"),
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ cancellable,
+ error);
+ if (_ret == NULL)
+ goto _out;
+ g_variant_get (_ret,
+ "(@a(ua((x(xx)(xx))s)a(x(xx)(xx))s))",
+ out_unnamed_arg0);
+ g_variant_unref (_ret);
+_out:
+ return _ret != NULL;
+}
+
+/**
+ * gca_diagnostics_complete_diagnostics:
+ * @object: A #GcaDiagnostics.
+ * @invocation: (transfer full): A #GDBusMethodInvocation.
+ * @unnamed_arg0: Parameter to return.
+ *
+ * Helper function used in service implementations to finish handling invocations of the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Diagnostics.Diagnostics">Diagnostics()</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
+gca_diagnostics_complete_diagnostics (
+ GcaDiagnostics *object,
+ GDBusMethodInvocation *invocation,
+ GVariant *unnamed_arg0)
+{
+ g_dbus_method_invocation_return_value (invocation,
+ g_variant_new ("(@a(ua((x(xx)(xx))s)a(x(xx)(xx))s))",
+ unnamed_arg0));
+}
+
+/* ------------------------------------------------------------------------ */
+
+/**
+ * GcaDiagnosticsProxy:
+ *
+ * The #GcaDiagnosticsProxy structure contains only private data and should only be accessed using the
provided API.
+ */
+
+/**
+ * GcaDiagnosticsProxyClass:
+ * @parent_class: The parent class.
+ *
+ * Class structure for #GcaDiagnosticsProxy.
+ */
+
+struct _GcaDiagnosticsProxyPrivate
+{
+ GData *qdata;
+};
+
+static void gca_diagnostics_proxy_iface_init (GcaDiagnosticsIface *iface);
+
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+G_DEFINE_TYPE_WITH_CODE (GcaDiagnosticsProxy, gca_diagnostics_proxy, G_TYPE_DBUS_PROXY,
+ G_ADD_PRIVATE (GcaDiagnosticsProxy)
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_DIAGNOSTICS, gca_diagnostics_proxy_iface_init));
+
+#else
+G_DEFINE_TYPE_WITH_CODE (GcaDiagnosticsProxy, gca_diagnostics_proxy, G_TYPE_DBUS_PROXY,
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_DIAGNOSTICS, gca_diagnostics_proxy_iface_init));
+
+#endif
+static void
+gca_diagnostics_proxy_finalize (GObject *object)
+{
+ GcaDiagnosticsProxy *proxy = GCA_DIAGNOSTICS_PROXY (object);
+ g_datalist_clear (&proxy->priv->qdata);
+ G_OBJECT_CLASS (gca_diagnostics_proxy_parent_class)->finalize (object);
+}
+
+static void
+gca_diagnostics_proxy_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec G_GNUC_UNUSED)
+{
+}
+
+static void
+gca_diagnostics_proxy_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec G_GNUC_UNUSED)
+{
+}
+
+static void
+gca_diagnostics_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 *)
&_gca_diagnostics_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], GCA_TYPE_DIAGNOSTICS);
+ 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, GCA_TYPE_DIAGNOSTICS);
+ 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
+gca_diagnostics_proxy_g_properties_changed (GDBusProxy *_proxy,
+ GVariant *changed_properties,
+ const gchar *const *invalidated_properties)
+{
+ GcaDiagnosticsProxy *proxy = GCA_DIAGNOSTICS_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 *)
&_gca_diagnostics_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 *)
&_gca_diagnostics_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
+gca_diagnostics_proxy_init (GcaDiagnosticsProxy *proxy)
+{
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+ proxy->priv = gca_diagnostics_proxy_get_instance_private (proxy);
+#else
+ proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, GCA_TYPE_DIAGNOSTICS_PROXY, GcaDiagnosticsProxyPrivate);
+#endif
+
+ g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), gca_diagnostics_interface_info ());
+}
+
+static void
+gca_diagnostics_proxy_class_init (GcaDiagnosticsProxyClass *klass)
+{
+ GObjectClass *gobject_class;
+ GDBusProxyClass *proxy_class;
+
+ gobject_class = G_OBJECT_CLASS (klass);
+ gobject_class->finalize = gca_diagnostics_proxy_finalize;
+ gobject_class->get_property = gca_diagnostics_proxy_get_property;
+ gobject_class->set_property = gca_diagnostics_proxy_set_property;
+
+ proxy_class = G_DBUS_PROXY_CLASS (klass);
+ proxy_class->g_signal = gca_diagnostics_proxy_g_signal;
+ proxy_class->g_properties_changed = gca_diagnostics_proxy_g_properties_changed;
+
+#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38
+ g_type_class_add_private (klass, sizeof (GcaDiagnosticsProxyPrivate));
+#endif
+}
+
+static void
+gca_diagnostics_proxy_iface_init (GcaDiagnosticsIface *iface)
+{
+}
+
+/**
+ * gca_diagnostics_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-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</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 gca_diagnostics_proxy_new_finish() to get the result of the operation.
+ *
+ * See gca_diagnostics_proxy_new_sync() for the synchronous, blocking version of this constructor.
+ */
+void
+gca_diagnostics_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 (GCA_TYPE_DIAGNOSTICS_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.gnome.CodeAssist.v1.Diagnostics", NULL);
+}
+
+/**
+ * gca_diagnostics_proxy_new_finish:
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gca_diagnostics_proxy_new().
+ * @error: Return location for error or %NULL
+ *
+ * Finishes an operation started with gca_diagnostics_proxy_new().
+ *
+ * Returns: (transfer full) (type GcaDiagnosticsProxy): The constructed proxy object or %NULL if @error is
set.
+ */
+GcaDiagnostics *
+gca_diagnostics_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 GCA_DIAGNOSTICS (ret);
+ else
+ return NULL;
+}
+
+/**
+ * gca_diagnostics_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-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>.
See g_dbus_proxy_new_sync() for more details.
+ *
+ * The calling thread is blocked until a reply is received.
+ *
+ * See gca_diagnostics_proxy_new() for the asynchronous version of this constructor.
+ *
+ * Returns: (transfer full) (type GcaDiagnosticsProxy): The constructed proxy object or %NULL if @error is
set.
+ */
+GcaDiagnostics *
+gca_diagnostics_proxy_new_sync (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error)
+{
+ GInitable *ret;
+ ret = g_initable_new (GCA_TYPE_DIAGNOSTICS_PROXY, cancellable, error, "g-flags", flags, "g-name", name,
"g-connection", connection, "g-object-path", object_path, "g-interface-name",
"org.gnome.CodeAssist.v1.Diagnostics", NULL);
+ if (ret != NULL)
+ return GCA_DIAGNOSTICS (ret);
+ else
+ return NULL;
+}
+
+
+/**
+ * gca_diagnostics_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 gca_diagnostics_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 gca_diagnostics_proxy_new_for_bus_finish() to get the result of the operation.
+ *
+ * See gca_diagnostics_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor.
+ */
+void
+gca_diagnostics_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 (GCA_TYPE_DIAGNOSTICS_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.gnome.CodeAssist.v1.Diagnostics", NULL);
+}
+
+/**
+ * gca_diagnostics_proxy_new_for_bus_finish:
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to
gca_diagnostics_proxy_new_for_bus().
+ * @error: Return location for error or %NULL
+ *
+ * Finishes an operation started with gca_diagnostics_proxy_new_for_bus().
+ *
+ * Returns: (transfer full) (type GcaDiagnosticsProxy): The constructed proxy object or %NULL if @error is
set.
+ */
+GcaDiagnostics *
+gca_diagnostics_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 GCA_DIAGNOSTICS (ret);
+ else
+ return NULL;
+}
+
+/**
+ * gca_diagnostics_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 gca_diagnostics_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection.
+ *
+ * The calling thread is blocked until a reply is received.
+ *
+ * See gca_diagnostics_proxy_new_for_bus() for the asynchronous version of this constructor.
+ *
+ * Returns: (transfer full) (type GcaDiagnosticsProxy): The constructed proxy object or %NULL if @error is
set.
+ */
+GcaDiagnostics *
+gca_diagnostics_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 (GCA_TYPE_DIAGNOSTICS_PROXY, cancellable, error, "g-flags", flags, "g-name", name,
"g-bus-type", bus_type, "g-object-path", object_path, "g-interface-name",
"org.gnome.CodeAssist.v1.Diagnostics", NULL);
+ if (ret != NULL)
+ return GCA_DIAGNOSTICS (ret);
+ else
+ return NULL;
+}
+
+
+/* ------------------------------------------------------------------------ */
+
+/**
+ * GcaDiagnosticsSkeleton:
+ *
+ * The #GcaDiagnosticsSkeleton structure contains only private data and should only be accessed using the
provided API.
+ */
+
+/**
+ * GcaDiagnosticsSkeletonClass:
+ * @parent_class: The parent class.
+ *
+ * Class structure for #GcaDiagnosticsSkeleton.
+ */
+
+struct _GcaDiagnosticsSkeletonPrivate
+{
+ GValue *properties;
+ GList *changed_properties;
+ GSource *changed_properties_idle_source;
+ GMainContext *context;
+ GMutex lock;
+};
+
+static void
+_gca_diagnostics_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)
+{
+ GcaDiagnosticsSkeleton *skeleton = GCA_DIAGNOSTICS_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], GCA_TYPE_DIAGNOSTICS);
+ 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, GCA_TYPE_DIAGNOSTICS);
+ 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 *
+_gca_diagnostics_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)
+{
+ GcaDiagnosticsSkeleton *skeleton = GCA_DIAGNOSTICS_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 *)
&_gca_diagnostics_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
+_gca_diagnostics_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)
+{
+ GcaDiagnosticsSkeleton *skeleton = GCA_DIAGNOSTICS_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 *)
&_gca_diagnostics_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 _gca_diagnostics_skeleton_vtable =
+{
+ _gca_diagnostics_skeleton_handle_method_call,
+ _gca_diagnostics_skeleton_handle_get_property,
+ _gca_diagnostics_skeleton_handle_set_property,
+ {NULL}
+};
+
+static GDBusInterfaceInfo *
+gca_diagnostics_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED)
+{
+ return gca_diagnostics_interface_info ();
+}
+
+static GDBusInterfaceVTable *
+gca_diagnostics_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED)
+{
+ return (GDBusInterfaceVTable *) &_gca_diagnostics_skeleton_vtable;
+}
+
+static GVariant *
+gca_diagnostics_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton)
+{
+ GcaDiagnosticsSkeleton *skeleton = GCA_DIAGNOSTICS_SKELETON (_skeleton);
+
+ GVariantBuilder builder;
+ guint n;
+ g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}"));
+ if (_gca_diagnostics_interface_info.parent_struct.properties == NULL)
+ goto out;
+ for (n = 0; _gca_diagnostics_interface_info.parent_struct.properties[n] != NULL; n++)
+ {
+ GDBusPropertyInfo *info = _gca_diagnostics_interface_info.parent_struct.properties[n];
+ if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE)
+ {
+ GVariant *value;
+ value = _gca_diagnostics_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.gnome.CodeAssist.v1.Diagnostics", 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
+gca_diagnostics_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton)
+{
+}
+
+static void gca_diagnostics_skeleton_iface_init (GcaDiagnosticsIface *iface);
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+G_DEFINE_TYPE_WITH_CODE (GcaDiagnosticsSkeleton, gca_diagnostics_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON,
+ G_ADD_PRIVATE (GcaDiagnosticsSkeleton)
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_DIAGNOSTICS, gca_diagnostics_skeleton_iface_init));
+
+#else
+G_DEFINE_TYPE_WITH_CODE (GcaDiagnosticsSkeleton, gca_diagnostics_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON,
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_DIAGNOSTICS, gca_diagnostics_skeleton_iface_init));
+
+#endif
+static void
+gca_diagnostics_skeleton_finalize (GObject *object)
+{
+ GcaDiagnosticsSkeleton *skeleton = GCA_DIAGNOSTICS_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 (gca_diagnostics_skeleton_parent_class)->finalize (object);
+}
+
+static void
+gca_diagnostics_skeleton_init (GcaDiagnosticsSkeleton *skeleton)
+{
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+ skeleton->priv = gca_diagnostics_skeleton_get_instance_private (skeleton);
+#else
+ skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, GCA_TYPE_DIAGNOSTICS_SKELETON,
GcaDiagnosticsSkeletonPrivate);
+#endif
+
+ g_mutex_init (&skeleton->priv->lock);
+ skeleton->priv->context = g_main_context_ref_thread_default ();
+}
+
+static void
+gca_diagnostics_skeleton_class_init (GcaDiagnosticsSkeletonClass *klass)
+{
+ GObjectClass *gobject_class;
+ GDBusInterfaceSkeletonClass *skeleton_class;
+
+ gobject_class = G_OBJECT_CLASS (klass);
+ gobject_class->finalize = gca_diagnostics_skeleton_finalize;
+
+ skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass);
+ skeleton_class->get_info = gca_diagnostics_skeleton_dbus_interface_get_info;
+ skeleton_class->get_properties = gca_diagnostics_skeleton_dbus_interface_get_properties;
+ skeleton_class->flush = gca_diagnostics_skeleton_dbus_interface_flush;
+ skeleton_class->get_vtable = gca_diagnostics_skeleton_dbus_interface_get_vtable;
+
+#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38
+ g_type_class_add_private (klass, sizeof (GcaDiagnosticsSkeletonPrivate));
+#endif
+}
+
+static void
+gca_diagnostics_skeleton_iface_init (GcaDiagnosticsIface *iface)
+{
+}
+
+/**
+ * gca_diagnostics_skeleton_new:
+ *
+ * Creates a skeleton object for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Diagnostics.top_of_page">org.gnome.CodeAssist.v1.Diagnostics</link>.
+ *
+ * Returns: (transfer full) (type GcaDiagnosticsSkeleton): The skeleton object.
+ */
+GcaDiagnostics *
+gca_diagnostics_skeleton_new (void)
+{
+ return GCA_DIAGNOSTICS (g_object_new (GCA_TYPE_DIAGNOSTICS_SKELETON, NULL));
+}
+
diff --git a/src/gca/gca-diagnostics.h b/src/gca/gca-diagnostics.h
new file mode 100644
index 0000000..fe4ee65
--- /dev/null
+++ b/src/gca/gca-diagnostics.h
@@ -0,0 +1,170 @@
+/*
+ * Generated by gdbus-codegen 2.42.0. DO NOT EDIT.
+ *
+ * The license of this code is the same as for the source it was derived from.
+ */
+
+#ifndef __GCA_DIAGNOSTICS_H__
+#define __GCA_DIAGNOSTICS_H__
+
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+
+/* ------------------------------------------------------------------------ */
+/* Declarations for org.gnome.CodeAssist.v1.Diagnostics */
+
+#define GCA_TYPE_DIAGNOSTICS (gca_diagnostics_get_type ())
+#define GCA_DIAGNOSTICS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_DIAGNOSTICS, GcaDiagnostics))
+#define GCA_IS_DIAGNOSTICS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_DIAGNOSTICS))
+#define GCA_DIAGNOSTICS_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), GCA_TYPE_DIAGNOSTICS,
GcaDiagnosticsIface))
+
+struct _GcaDiagnostics;
+typedef struct _GcaDiagnostics GcaDiagnostics;
+typedef struct _GcaDiagnosticsIface GcaDiagnosticsIface;
+
+struct _GcaDiagnosticsIface
+{
+ GTypeInterface parent_iface;
+
+ gboolean (*handle_diagnostics) (
+ GcaDiagnostics *object,
+ GDBusMethodInvocation *invocation);
+
+};
+
+GType gca_diagnostics_get_type (void) G_GNUC_CONST;
+
+GDBusInterfaceInfo *gca_diagnostics_interface_info (void);
+guint gca_diagnostics_override_properties (GObjectClass *klass, guint property_id_begin);
+
+
+/* D-Bus method call completion functions: */
+void gca_diagnostics_complete_diagnostics (
+ GcaDiagnostics *object,
+ GDBusMethodInvocation *invocation,
+ GVariant *unnamed_arg0);
+
+
+
+/* D-Bus method calls: */
+void gca_diagnostics_call_diagnostics (
+ GcaDiagnostics *proxy,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+gboolean gca_diagnostics_call_diagnostics_finish (
+ GcaDiagnostics *proxy,
+ GVariant **out_unnamed_arg0,
+ GAsyncResult *res,
+ GError **error);
+
+gboolean gca_diagnostics_call_diagnostics_sync (
+ GcaDiagnostics *proxy,
+ GVariant **out_unnamed_arg0,
+ GCancellable *cancellable,
+ GError **error);
+
+
+
+/* ---- */
+
+#define GCA_TYPE_DIAGNOSTICS_PROXY (gca_diagnostics_proxy_get_type ())
+#define GCA_DIAGNOSTICS_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_DIAGNOSTICS_PROXY,
GcaDiagnosticsProxy))
+#define GCA_DIAGNOSTICS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GCA_TYPE_DIAGNOSTICS_PROXY,
GcaDiagnosticsProxyClass))
+#define GCA_DIAGNOSTICS_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GCA_TYPE_DIAGNOSTICS_PROXY,
GcaDiagnosticsProxyClass))
+#define GCA_IS_DIAGNOSTICS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_DIAGNOSTICS_PROXY))
+#define GCA_IS_DIAGNOSTICS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GCA_TYPE_DIAGNOSTICS_PROXY))
+
+typedef struct _GcaDiagnosticsProxy GcaDiagnosticsProxy;
+typedef struct _GcaDiagnosticsProxyClass GcaDiagnosticsProxyClass;
+typedef struct _GcaDiagnosticsProxyPrivate GcaDiagnosticsProxyPrivate;
+
+struct _GcaDiagnosticsProxy
+{
+ /*< private >*/
+ GDBusProxy parent_instance;
+ GcaDiagnosticsProxyPrivate *priv;
+};
+
+struct _GcaDiagnosticsProxyClass
+{
+ GDBusProxyClass parent_class;
+};
+
+GType gca_diagnostics_proxy_get_type (void) G_GNUC_CONST;
+
+void gca_diagnostics_proxy_new (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+GcaDiagnostics *gca_diagnostics_proxy_new_finish (
+ GAsyncResult *res,
+ GError **error);
+GcaDiagnostics *gca_diagnostics_proxy_new_sync (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+void gca_diagnostics_proxy_new_for_bus (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+GcaDiagnostics *gca_diagnostics_proxy_new_for_bus_finish (
+ GAsyncResult *res,
+ GError **error);
+GcaDiagnostics *gca_diagnostics_proxy_new_for_bus_sync (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+
+/* ---- */
+
+#define GCA_TYPE_DIAGNOSTICS_SKELETON (gca_diagnostics_skeleton_get_type ())
+#define GCA_DIAGNOSTICS_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_DIAGNOSTICS_SKELETON,
GcaDiagnosticsSkeleton))
+#define GCA_DIAGNOSTICS_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GCA_TYPE_DIAGNOSTICS_SKELETON,
GcaDiagnosticsSkeletonClass))
+#define GCA_DIAGNOSTICS_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),
GCA_TYPE_DIAGNOSTICS_SKELETON, GcaDiagnosticsSkeletonClass))
+#define GCA_IS_DIAGNOSTICS_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_DIAGNOSTICS_SKELETON))
+#define GCA_IS_DIAGNOSTICS_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GCA_TYPE_DIAGNOSTICS_SKELETON))
+
+typedef struct _GcaDiagnosticsSkeleton GcaDiagnosticsSkeleton;
+typedef struct _GcaDiagnosticsSkeletonClass GcaDiagnosticsSkeletonClass;
+typedef struct _GcaDiagnosticsSkeletonPrivate GcaDiagnosticsSkeletonPrivate;
+
+struct _GcaDiagnosticsSkeleton
+{
+ /*< private >*/
+ GDBusInterfaceSkeleton parent_instance;
+ GcaDiagnosticsSkeletonPrivate *priv;
+};
+
+struct _GcaDiagnosticsSkeletonClass
+{
+ GDBusInterfaceSkeletonClass parent_class;
+};
+
+GType gca_diagnostics_skeleton_get_type (void) G_GNUC_CONST;
+
+GcaDiagnostics *gca_diagnostics_skeleton_new (void);
+
+
+G_END_DECLS
+
+#endif /* __GCA_DIAGNOSTICS_H__ */
diff --git a/src/gca/gca-diagnostics.xml b/src/gca/gca-diagnostics.xml
new file mode 100644
index 0000000..b02a335
--- /dev/null
+++ b/src/gca/gca-diagnostics.xml
@@ -0,0 +1,9 @@
+<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
+ "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
+<node name="/org/gnome/CodeAssist/v1/c/document">
+ <interface name="org.gnome.CodeAssist.v1.Diagnostics">
+ <method name="Diagnostics">
+ <arg direction="out" type="a(ua((x(xx)(xx))s)a(x(xx)(xx))s)" />
+ </method>
+ </interface>
+</node>
diff --git a/src/gca/gca.xml b/src/gca/gca-service.xml
similarity index 100%
rename from src/gca/gca.xml
rename to src/gca/gca-service.xml
diff --git a/src/gnome-builder.mk b/src/gnome-builder.mk
index 32dde7c..756a0e6 100644
--- a/src/gnome-builder.mk
+++ b/src/gnome-builder.mk
@@ -77,6 +77,8 @@ libgnome_builder_la_SOURCES = \
src/editor/gb-source-style-scheme-button.h \
src/editor/gb-source-style-scheme-widget.c \
src/editor/gb-source-style-scheme-widget.h \
+ src/gca/gca-diagnostics.c \
+ src/gca/gca-diagnostics.h \
src/gca/gca-service.c \
src/gca/gca-service.h \
src/markdown/gs-markdown.c \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]