[gnome-builder/wip/code-assistance: 1/2] gcs: wip on code-assist
- From: Christian Hergert <chergert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-builder/wip/code-assistance: 1/2] gcs: wip on code-assist
- Date: Sat, 18 Oct 2014 20:32:58 +0000 (UTC)
commit ee93392080b6a7d50d689043ef730fc7a0a9c1e8
Author: Christian Hergert <christian hergert me>
Date: Fri Oct 17 15:09:29 2014 -0700
gcs: wip on code-assist
src/code-assistant/gb-source-code-assistant.c | 284 ++++++
src/code-assistant/gb-source-code-assistant.h | 56 ++
src/gca/gca-service.c | 1291 +++++++++++++++++++++++++
src/gca/gca-service.h | 209 ++++
src/gca/gca.xml | 16 +
src/gnome-builder.mk | 6 +
6 files changed, 1862 insertions(+), 0 deletions(-)
---
diff --git a/src/code-assistant/gb-source-code-assistant.c b/src/code-assistant/gb-source-code-assistant.c
new file mode 100644
index 0000000..58afb0a
--- /dev/null
+++ b/src/code-assistant/gb-source-code-assistant.c
@@ -0,0 +1,284 @@
+/* gb-source-code-assistant.c
+ *
+ * Copyright (C) 2014 Christian Hergert <christian hergert me>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <glib/gi18n.h>
+
+#include "gb-log.h"
+#include "gb-source-code-assistant.h"
+#include "gca-service.h"
+
+#define PARSE_TIMEOUT 500
+
+struct _GbSourceCodeAssistantPrivate
+{
+ GbSourceView *source_view;
+ GcaServiceProxy *proxy;
+ GCancellable *cancellable;
+ guint parse_timeout;
+ gulong changed_handler;
+};
+
+G_DEFINE_TYPE_WITH_PRIVATE (GbSourceCodeAssistant,
+ gb_source_code_assistant,
+ G_TYPE_OBJECT)
+
+enum {
+ PROP_0,
+ PROP_SOURCE_VIEW,
+ LAST_PROP
+};
+
+static GParamSpec *gParamSpecs [LAST_PROP];
+
+GbSourceCodeAssistant *
+gb_source_code_assistant_new (GbSourceView *source_view)
+{
+ return g_object_new (GB_TYPE_SOURCE_CODE_ASSISTANT,
+ "source-view", source_view,
+ NULL);
+}
+
+static GcaService *
+gb_source_code_assistant_get_proxy (GbSourceCodeAssistant *assistant)
+{
+ return NULL;
+}
+
+static void
+gb_source_code_assistant_parse_cb (GObject *source_object,
+ GAsyncResult *result,
+ gpointer user_data)
+{
+ GbSourceCodeAssistant *assistant = user_data;
+ GcaService *proxy = (GcaService *)source_object;
+ GError *error = NULL;
+ gchar *result_path = NULL;
+
+ ENTRY;
+
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+ g_return_if_fail (GCA_IS_SERVICE (proxy));
+
+ if (!gca_service_call_parse_finish (proxy, &result_path, result, &error))
+ {
+ g_message ("%s", error->message);
+ g_clear_error (&error);
+ }
+
+ g_print ("Fetch document info from path: %s\n", result_path);
+
+ g_free (result_path);
+ g_object_unref (proxy);
+
+ EXIT;
+}
+
+static gboolean
+gb_source_code_assistant_do_parse (gpointer data)
+{
+ GbSourceCodeAssistantPrivate *priv;
+ GbSourceCodeAssistant *assistant = data;
+ GcaService *proxy;
+ gchar *file_path = NULL;
+ gchar *data_path = NULL;
+
+ ENTRY;
+
+ g_return_val_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant), FALSE);
+
+ priv = assistant->priv;
+
+ priv->parse_timeout = 0;
+
+ proxy = gb_source_code_assistant_get_proxy (assistant);
+ if (!proxy)
+ GOTO (failure);
+
+ gca_service_call_parse (proxy,
+ file_path,
+ data_path,
+ NULL,
+ NULL,
+ priv->cancellable,
+ gb_source_code_assistant_parse_cb,
+ g_object_ref (assistant));
+
+failure:
+ RETURN (G_SOURCE_REMOVE);
+}
+static void
+gb_source_code_assistant_queue_parse (GbSourceCodeAssistant *assistant)
+{
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+
+ if (assistant->priv->parse_timeout)
+ g_source_remove (assistant->priv->parse_timeout);
+
+ assistant->priv->parse_timeout =
+ g_timeout_add (PARSE_TIMEOUT,
+ gb_source_code_assistant_do_parse,
+ assistant);
+}
+
+static void
+gb_source_code_assistant_on_buffer_changed (GtkTextBuffer *buffer,
+ GbSourceCodeAssistant *assistant)
+{
+ g_return_if_fail (GTK_IS_TEXT_BUFFER (buffer));
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+
+ gb_source_code_assistant_queue_parse (assistant);
+}
+
+static void
+gb_source_code_assistant_connect (GbSourceCodeAssistant *assistant)
+{
+ GbSourceCodeAssistantPrivate *priv;
+ GtkTextBuffer *buffer;
+
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+
+ priv = assistant->priv;
+
+ buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv->source_view));
+
+ priv->changed_handler =
+ g_signal_connect (buffer, "changed",
+ G_CALLBACK (gb_source_code_assistant_on_buffer_changed),
+ assistant);
+}
+
+static void
+gb_source_code_assistant_disconnect (GbSourceCodeAssistant *assistant)
+{
+ GbSourceCodeAssistantPrivate *priv;
+ GtkTextBuffer *buffer;
+
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+
+ priv = assistant->priv;
+
+ buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv->source_view));
+
+ if (priv->changed_handler)
+ {
+ g_signal_handler_disconnect (buffer, priv->changed_handler);
+ priv->changed_handler = 0;
+ }
+
+ if (priv->parse_timeout)
+ {
+ g_source_remove (priv->parse_timeout);
+ priv->parse_timeout = 0;
+ }
+}
+
+static void
+gb_source_code_assistant_set_source_view (GbSourceCodeAssistant *assistant,
+ GbSourceView *source_view)
+{
+ GbSourceCodeAssistantPrivate *priv;
+
+ g_return_if_fail (GB_IS_SOURCE_CODE_ASSISTANT (assistant));
+ g_return_if_fail (!source_view || GB_IS_SOURCE_VIEW (source_view));
+
+ priv = assistant->priv;
+
+ if (source_view != priv->source_view)
+ {
+ if (priv->source_view)
+ {
+ gb_source_code_assistant_disconnect (assistant);
+ g_object_remove_weak_pointer (G_OBJECT (priv->source_view),
+ (gpointer *)&priv->source_view);
+ priv->source_view = NULL;
+ }
+
+ if (source_view)
+ {
+ priv->source_view = source_view;
+ g_object_add_weak_pointer (G_OBJECT (priv->source_view),
+ (gpointer *)&priv->source_view);
+ gb_source_code_assistant_connect (assistant);
+ }
+ }
+}
+
+static void
+gb_source_code_assistant_dispose (GObject *object)
+{
+ GbSourceCodeAssistant *assistant = (GbSourceCodeAssistant *)object;
+
+ gb_source_code_assistant_set_source_view (assistant, NULL);
+ g_cancellable_cancel (assistant->priv->cancellable);
+}
+
+static void
+gb_source_code_assistant_finalize (GObject *object)
+{
+ GbSourceCodeAssistant *assistant = (GbSourceCodeAssistant *)object;
+
+ g_clear_object (&assistant->priv->cancellable);
+ g_clear_object (&assistant->priv->proxy);
+}
+
+static void
+gb_source_code_assistant_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ GbSourceCodeAssistant *self = GB_SOURCE_CODE_ASSISTANT (object);
+
+ switch (prop_id)
+ {
+ case PROP_SOURCE_VIEW:
+ gb_source_code_assistant_set_source_view (self,
+ g_value_get_object (value));
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+ }
+}
+
+static void
+gb_source_code_assistant_class_init (GbSourceCodeAssistantClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ object_class->dispose = gb_source_code_assistant_dispose;
+ object_class->finalize = gb_source_code_assistant_finalize;
+ object_class->set_property = gb_source_code_assistant_set_property;
+
+ gParamSpecs [PROP_SOURCE_VIEW] =
+ g_param_spec_object ("source-view",
+ _("Source View"),
+ _("The source view to attach to."),
+ GB_TYPE_SOURCE_VIEW,
+ (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
+ g_object_class_install_property (object_class, PROP_SOURCE_VIEW,
+ gParamSpecs [PROP_SOURCE_VIEW]);
+}
+
+static void
+gb_source_code_assistant_init (GbSourceCodeAssistant *self)
+{
+ self->priv = gb_source_code_assistant_get_instance_private (self);
+ self->priv->cancellable = g_cancellable_new ();
+}
diff --git a/src/code-assistant/gb-source-code-assistant.h b/src/code-assistant/gb-source-code-assistant.h
new file mode 100644
index 0000000..230cfa4
--- /dev/null
+++ b/src/code-assistant/gb-source-code-assistant.h
@@ -0,0 +1,56 @@
+/* gb-source-code-assistant.h
+ *
+ * Copyright (C) 2014 Christian Hergert <christian hergert me>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GB_SOURCE_CODE_ASSISTANT_H
+#define GB_SOURCE_CODE_ASSISTANT_H
+
+#include "gb-source-view.h"
+
+G_BEGIN_DECLS
+
+#define GB_TYPE_SOURCE_CODE_ASSISTANT (gb_source_code_assistant_get_type())
+#define GB_SOURCE_CODE_ASSISTANT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),
GB_TYPE_SOURCE_CODE_ASSISTANT, GbSourceCodeAssistant))
+#define GB_SOURCE_CODE_ASSISTANT_CONST(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj),
GB_TYPE_SOURCE_CODE_ASSISTANT, GbSourceCodeAssistant const))
+#define GB_SOURCE_CODE_ASSISTANT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass),
GB_TYPE_SOURCE_CODE_ASSISTANT, GbSourceCodeAssistantClass))
+#define GB_IS_SOURCE_CODE_ASSISTANT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj),
GB_TYPE_SOURCE_CODE_ASSISTANT))
+#define GB_IS_SOURCE_CODE_ASSISTANT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),
GB_TYPE_SOURCE_CODE_ASSISTANT))
+#define GB_SOURCE_CODE_ASSISTANT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),
GB_TYPE_SOURCE_CODE_ASSISTANT, GbSourceCodeAssistantClass))
+
+typedef struct _GbSourceCodeAssistant GbSourceCodeAssistant;
+typedef struct _GbSourceCodeAssistantClass GbSourceCodeAssistantClass;
+typedef struct _GbSourceCodeAssistantPrivate GbSourceCodeAssistantPrivate;
+
+struct _GbSourceCodeAssistant
+{
+ GObject parent;
+
+ /*< private >*/
+ GbSourceCodeAssistantPrivate *priv;
+};
+
+struct _GbSourceCodeAssistantClass
+{
+ GObjectClass parent;
+};
+
+GType gb_source_code_assistant_get_type (void);
+GbSourceCodeAssistant *gb_source_code_assistant_new (GbSourceView *source_view);
+
+G_END_DECLS
+
+#endif /* GB_SOURCE_CODE_ASSISTANT_H */
diff --git a/src/gca/gca-service.c b/src/gca/gca-service.c
new file mode 100644
index 0000000..680ec9a
--- /dev/null
+++ b/src/gca/gca-service.c
@@ -0,0 +1,1291 @@
+/*
+ * 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-service.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.Service
+ * ------------------------------------------------------------------------
+ */
+
+/**
+ * SECTION:GcaService
+ * @title: GcaService
+ * @short_description: Generated C code for the org.gnome.CodeAssist.v1.Service D-Bus interface
+ *
+ * This section contains code for working with the <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>
D-Bus interface in C.
+ */
+
+/* ---- Introspection data for org.gnome.CodeAssist.v1.Service ---- */
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_dispose_IN_ARG_path =
+{
+ {
+ -1,
+ (gchar *) "path",
+ (gchar *) "s",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo * const _gca_service_method_info_dispose_IN_ARG_pointers[] =
+{
+ &_gca_service_method_info_dispose_IN_ARG_path,
+ NULL
+};
+
+static const _ExtendedGDBusMethodInfo _gca_service_method_info_dispose =
+{
+ {
+ -1,
+ (gchar *) "Dispose",
+ (GDBusArgInfo **) &_gca_service_method_info_dispose_IN_ARG_pointers,
+ NULL,
+ NULL
+ },
+ "handle-dispose",
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_parse_IN_ARG_path =
+{
+ {
+ -1,
+ (gchar *) "path",
+ (gchar *) "s",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_parse_IN_ARG_data_path =
+{
+ {
+ -1,
+ (gchar *) "data_path",
+ (gchar *) "s",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_parse_IN_ARG_cursor =
+{
+ {
+ -1,
+ (gchar *) "cursor",
+ (gchar *) "(xx)",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_parse_IN_ARG_options =
+{
+ {
+ -1,
+ (gchar *) "options",
+ (gchar *) "a{sv}",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo * const _gca_service_method_info_parse_IN_ARG_pointers[] =
+{
+ &_gca_service_method_info_parse_IN_ARG_path,
+ &_gca_service_method_info_parse_IN_ARG_data_path,
+ &_gca_service_method_info_parse_IN_ARG_cursor,
+ &_gca_service_method_info_parse_IN_ARG_options,
+ NULL
+};
+
+static const _ExtendedGDBusArgInfo _gca_service_method_info_parse_OUT_ARG_unnamed_arg4 =
+{
+ {
+ -1,
+ (gchar *) "unnamed_arg4",
+ (gchar *) "o",
+ NULL
+ },
+ FALSE
+};
+
+static const _ExtendedGDBusArgInfo * const _gca_service_method_info_parse_OUT_ARG_pointers[] =
+{
+ &_gca_service_method_info_parse_OUT_ARG_unnamed_arg4,
+ NULL
+};
+
+static const _ExtendedGDBusMethodInfo _gca_service_method_info_parse =
+{
+ {
+ -1,
+ (gchar *) "Parse",
+ (GDBusArgInfo **) &_gca_service_method_info_parse_IN_ARG_pointers,
+ (GDBusArgInfo **) &_gca_service_method_info_parse_OUT_ARG_pointers,
+ NULL
+ },
+ "handle-parse",
+ FALSE
+};
+
+static const _ExtendedGDBusMethodInfo * const _gca_service_method_info_pointers[] =
+{
+ &_gca_service_method_info_dispose,
+ &_gca_service_method_info_parse,
+ NULL
+};
+
+static const _ExtendedGDBusInterfaceInfo _gca_service_interface_info =
+{
+ {
+ -1,
+ (gchar *) "org.gnome.CodeAssist.v1.Service",
+ (GDBusMethodInfo **) &_gca_service_method_info_pointers,
+ NULL,
+ NULL,
+ NULL
+ },
+ "service",
+};
+
+
+/**
+ * gca_service_interface_info:
+ *
+ * Gets a machine-readable description of the <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>
D-Bus interface.
+ *
+ * Returns: (transfer none): A #GDBusInterfaceInfo. Do not free.
+ */
+GDBusInterfaceInfo *
+gca_service_interface_info (void)
+{
+ return (GDBusInterfaceInfo *) &_gca_service_interface_info.parent_struct;
+}
+
+/**
+ * gca_service_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 #GcaService interface for a concrete class.
+ * The properties are overridden in the order they are defined.
+ *
+ * Returns: The last property id.
+ */
+guint
+gca_service_override_properties (GObjectClass *klass, guint property_id_begin)
+{
+ return property_id_begin - 1;
+}
+
+
+
+/**
+ * GcaService:
+ *
+ * Abstract interface type for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>.
+ */
+
+/**
+ * GcaServiceIface:
+ * @parent_iface: The parent interface.
+ * @handle_dispose: Handler for the #GcaService::handle-dispose signal.
+ * @handle_parse: Handler for the #GcaService::handle-parse signal.
+ *
+ * Virtual table for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>.
+ */
+
+typedef GcaServiceIface GcaServiceInterface;
+G_DEFINE_INTERFACE (GcaService, gca_service, G_TYPE_OBJECT);
+
+static void
+gca_service_default_init (GcaServiceIface *iface)
+{
+ /* GObject signals for incoming D-Bus method calls: */
+ /**
+ * GcaService::handle-dispose:
+ * @object: A #GcaService.
+ * @invocation: A #GDBusMethodInvocation.
+ * @arg_path: Argument passed by remote caller.
+ *
+ * Signal emitted when a remote caller is invoking the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Service.Dispose">Dispose()</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_service_complete_dispose() 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-dispose",
+ G_TYPE_FROM_INTERFACE (iface),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (GcaServiceIface, handle_dispose),
+ g_signal_accumulator_true_handled,
+ NULL,
+ g_cclosure_marshal_generic,
+ G_TYPE_BOOLEAN,
+ 2,
+ G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_STRING);
+
+ /**
+ * GcaService::handle-parse:
+ * @object: A #GcaService.
+ * @invocation: A #GDBusMethodInvocation.
+ * @arg_path: Argument passed by remote caller.
+ * @arg_data_path: Argument passed by remote caller.
+ * @arg_cursor: Argument passed by remote caller.
+ * @arg_options: Argument passed by remote caller.
+ *
+ * Signal emitted when a remote caller is invoking the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Service.Parse">Parse()</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_service_complete_parse() 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-parse",
+ G_TYPE_FROM_INTERFACE (iface),
+ G_SIGNAL_RUN_LAST,
+ G_STRUCT_OFFSET (GcaServiceIface, handle_parse),
+ g_signal_accumulator_true_handled,
+ NULL,
+ g_cclosure_marshal_generic,
+ G_TYPE_BOOLEAN,
+ 5,
+ G_TYPE_DBUS_METHOD_INVOCATION, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_VARIANT, G_TYPE_VARIANT);
+
+}
+
+/**
+ * gca_service_call_dispose:
+ * @proxy: A #GcaServiceProxy.
+ * @arg_path: 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-org-gnome-CodeAssist-v1-Service.Dispose">Dispose()</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_service_call_dispose_finish() to get the result of the operation.
+ *
+ * See gca_service_call_dispose_sync() for the synchronous, blocking version of this method.
+ */
+void
+gca_service_call_dispose (
+ GcaService *proxy,
+ const gchar *arg_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data)
+{
+ g_dbus_proxy_call (G_DBUS_PROXY (proxy),
+ "Dispose",
+ g_variant_new ("(s)",
+ arg_path),
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ cancellable,
+ callback,
+ user_data);
+}
+
+/**
+ * gca_service_call_dispose_finish:
+ * @proxy: A #GcaServiceProxy.
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gca_service_call_dispose().
+ * @error: Return location for error or %NULL.
+ *
+ * Finishes an operation started with gca_service_call_dispose().
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_service_call_dispose_finish (
+ GcaService *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;
+}
+
+/**
+ * gca_service_call_dispose_sync:
+ * @proxy: A #GcaServiceProxy.
+ * @arg_path: 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-org-gnome-CodeAssist-v1-Service.Dispose">Dispose()</link> D-Bus method on @proxy. The
calling thread is blocked until a reply is received.
+ *
+ * See gca_service_call_dispose() for the asynchronous version of this method.
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_service_call_dispose_sync (
+ GcaService *proxy,
+ const gchar *arg_path,
+ GCancellable *cancellable,
+ GError **error)
+{
+ GVariant *_ret;
+ _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy),
+ "Dispose",
+ g_variant_new ("(s)",
+ arg_path),
+ 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;
+}
+
+/**
+ * gca_service_call_parse:
+ * @proxy: A #GcaServiceProxy.
+ * @arg_path: Argument to pass with the method invocation.
+ * @arg_data_path: Argument to pass with the method invocation.
+ * @arg_cursor: Argument to pass with the method invocation.
+ * @arg_options: 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-org-gnome-CodeAssist-v1-Service.Parse">Parse()</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_service_call_parse_finish() to get the result of the operation.
+ *
+ * See gca_service_call_parse_sync() for the synchronous, blocking version of this method.
+ */
+void
+gca_service_call_parse (
+ GcaService *proxy,
+ const gchar *arg_path,
+ const gchar *arg_data_path,
+ GVariant *arg_cursor,
+ GVariant *arg_options,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data)
+{
+ g_dbus_proxy_call (G_DBUS_PROXY (proxy),
+ "Parse",
+ g_variant_new ("(ss@(xx)@a{sv})",
+ arg_path,
+ arg_data_path,
+ arg_cursor,
+ arg_options),
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ cancellable,
+ callback,
+ user_data);
+}
+
+/**
+ * gca_service_call_parse_finish:
+ * @proxy: A #GcaServiceProxy.
+ * @out_unnamed_arg4: (out): Return location for return parameter or %NULL to ignore.
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gca_service_call_parse().
+ * @error: Return location for error or %NULL.
+ *
+ * Finishes an operation started with gca_service_call_parse().
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_service_call_parse_finish (
+ GcaService *proxy,
+ gchar **out_unnamed_arg4,
+ 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,
+ "(o)",
+ out_unnamed_arg4);
+ g_variant_unref (_ret);
+_out:
+ return _ret != NULL;
+}
+
+/**
+ * gca_service_call_parse_sync:
+ * @proxy: A #GcaServiceProxy.
+ * @arg_path: Argument to pass with the method invocation.
+ * @arg_data_path: Argument to pass with the method invocation.
+ * @arg_cursor: Argument to pass with the method invocation.
+ * @arg_options: Argument to pass with the method invocation.
+ * @out_unnamed_arg4: (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-Service.Parse">Parse()</link> D-Bus method on @proxy. The
calling thread is blocked until a reply is received.
+ *
+ * See gca_service_call_parse() for the asynchronous version of this method.
+ *
+ * Returns: (skip): %TRUE if the call succeded, %FALSE if @error is set.
+ */
+gboolean
+gca_service_call_parse_sync (
+ GcaService *proxy,
+ const gchar *arg_path,
+ const gchar *arg_data_path,
+ GVariant *arg_cursor,
+ GVariant *arg_options,
+ gchar **out_unnamed_arg4,
+ GCancellable *cancellable,
+ GError **error)
+{
+ GVariant *_ret;
+ _ret = g_dbus_proxy_call_sync (G_DBUS_PROXY (proxy),
+ "Parse",
+ g_variant_new ("(ss@(xx)@a{sv})",
+ arg_path,
+ arg_data_path,
+ arg_cursor,
+ arg_options),
+ G_DBUS_CALL_FLAGS_NONE,
+ -1,
+ cancellable,
+ error);
+ if (_ret == NULL)
+ goto _out;
+ g_variant_get (_ret,
+ "(o)",
+ out_unnamed_arg4);
+ g_variant_unref (_ret);
+_out:
+ return _ret != NULL;
+}
+
+/**
+ * gca_service_complete_dispose:
+ * @object: A #GcaService.
+ * @invocation: (transfer full): A #GDBusMethodInvocation.
+ *
+ * Helper function used in service implementations to finish handling invocations of the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Service.Dispose">Dispose()</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_service_complete_dispose (
+ GcaService *object,
+ GDBusMethodInvocation *invocation)
+{
+ g_dbus_method_invocation_return_value (invocation,
+ g_variant_new ("()"));
+}
+
+/**
+ * gca_service_complete_parse:
+ * @object: A #GcaService.
+ * @invocation: (transfer full): A #GDBusMethodInvocation.
+ * @unnamed_arg4: Parameter to return.
+ *
+ * Helper function used in service implementations to finish handling invocations of the <link
linkend="gdbus-method-org-gnome-CodeAssist-v1-Service.Parse">Parse()</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_service_complete_parse (
+ GcaService *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *unnamed_arg4)
+{
+ g_dbus_method_invocation_return_value (invocation,
+ g_variant_new ("(o)",
+ unnamed_arg4));
+}
+
+/* ------------------------------------------------------------------------ */
+
+/**
+ * GcaServiceProxy:
+ *
+ * The #GcaServiceProxy structure contains only private data and should only be accessed using the provided
API.
+ */
+
+/**
+ * GcaServiceProxyClass:
+ * @parent_class: The parent class.
+ *
+ * Class structure for #GcaServiceProxy.
+ */
+
+struct _GcaServiceProxyPrivate
+{
+ GData *qdata;
+};
+
+static void gca_service_proxy_iface_init (GcaServiceIface *iface);
+
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+G_DEFINE_TYPE_WITH_CODE (GcaServiceProxy, gca_service_proxy, G_TYPE_DBUS_PROXY,
+ G_ADD_PRIVATE (GcaServiceProxy)
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_SERVICE, gca_service_proxy_iface_init));
+
+#else
+G_DEFINE_TYPE_WITH_CODE (GcaServiceProxy, gca_service_proxy, G_TYPE_DBUS_PROXY,
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_SERVICE, gca_service_proxy_iface_init));
+
+#endif
+static void
+gca_service_proxy_finalize (GObject *object)
+{
+ GcaServiceProxy *proxy = GCA_SERVICE_PROXY (object);
+ g_datalist_clear (&proxy->priv->qdata);
+ G_OBJECT_CLASS (gca_service_proxy_parent_class)->finalize (object);
+}
+
+static void
+gca_service_proxy_get_property (GObject *object,
+ guint prop_id,
+ GValue *value,
+ GParamSpec *pspec G_GNUC_UNUSED)
+{
+}
+
+static void
+gca_service_proxy_set_property (GObject *object,
+ guint prop_id,
+ const GValue *value,
+ GParamSpec *pspec G_GNUC_UNUSED)
+{
+}
+
+static void
+gca_service_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_service_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_SERVICE);
+ 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_SERVICE);
+ 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_service_proxy_g_properties_changed (GDBusProxy *_proxy,
+ GVariant *changed_properties,
+ const gchar *const *invalidated_properties)
+{
+ GcaServiceProxy *proxy = GCA_SERVICE_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_service_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_service_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_service_proxy_init (GcaServiceProxy *proxy)
+{
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+ proxy->priv = gca_service_proxy_get_instance_private (proxy);
+#else
+ proxy->priv = G_TYPE_INSTANCE_GET_PRIVATE (proxy, GCA_TYPE_SERVICE_PROXY, GcaServiceProxyPrivate);
+#endif
+
+ g_dbus_proxy_set_interface_info (G_DBUS_PROXY (proxy), gca_service_interface_info ());
+}
+
+static void
+gca_service_proxy_class_init (GcaServiceProxyClass *klass)
+{
+ GObjectClass *gobject_class;
+ GDBusProxyClass *proxy_class;
+
+ gobject_class = G_OBJECT_CLASS (klass);
+ gobject_class->finalize = gca_service_proxy_finalize;
+ gobject_class->get_property = gca_service_proxy_get_property;
+ gobject_class->set_property = gca_service_proxy_set_property;
+
+ proxy_class = G_DBUS_PROXY_CLASS (klass);
+ proxy_class->g_signal = gca_service_proxy_g_signal;
+ proxy_class->g_properties_changed = gca_service_proxy_g_properties_changed;
+
+#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38
+ g_type_class_add_private (klass, sizeof (GcaServiceProxyPrivate));
+#endif
+}
+
+static void
+gca_service_proxy_iface_init (GcaServiceIface *iface)
+{
+}
+
+/**
+ * gca_service_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-Service.top_of_page">org.gnome.CodeAssist.v1.Service</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_service_proxy_new_finish() to get the result of the operation.
+ *
+ * See gca_service_proxy_new_sync() for the synchronous, blocking version of this constructor.
+ */
+void
+gca_service_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_SERVICE_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.Service", NULL);
+}
+
+/**
+ * gca_service_proxy_new_finish:
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gca_service_proxy_new().
+ * @error: Return location for error or %NULL
+ *
+ * Finishes an operation started with gca_service_proxy_new().
+ *
+ * Returns: (transfer full) (type GcaServiceProxy): The constructed proxy object or %NULL if @error is set.
+ */
+GcaService *
+gca_service_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_SERVICE (ret);
+ else
+ return NULL;
+}
+
+/**
+ * gca_service_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-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>.
See g_dbus_proxy_new_sync() for more details.
+ *
+ * The calling thread is blocked until a reply is received.
+ *
+ * See gca_service_proxy_new() for the asynchronous version of this constructor.
+ *
+ * Returns: (transfer full) (type GcaServiceProxy): The constructed proxy object or %NULL if @error is set.
+ */
+GcaService *
+gca_service_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_SERVICE_PROXY, cancellable, error, "g-flags", flags, "g-name", name,
"g-connection", connection, "g-object-path", object_path, "g-interface-name",
"org.gnome.CodeAssist.v1.Service", NULL);
+ if (ret != NULL)
+ return GCA_SERVICE (ret);
+ else
+ return NULL;
+}
+
+
+/**
+ * gca_service_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_service_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_service_proxy_new_for_bus_finish() to get the result of the operation.
+ *
+ * See gca_service_proxy_new_for_bus_sync() for the synchronous, blocking version of this constructor.
+ */
+void
+gca_service_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_SERVICE_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.Service", NULL);
+}
+
+/**
+ * gca_service_proxy_new_for_bus_finish:
+ * @res: The #GAsyncResult obtained from the #GAsyncReadyCallback passed to gca_service_proxy_new_for_bus().
+ * @error: Return location for error or %NULL
+ *
+ * Finishes an operation started with gca_service_proxy_new_for_bus().
+ *
+ * Returns: (transfer full) (type GcaServiceProxy): The constructed proxy object or %NULL if @error is set.
+ */
+GcaService *
+gca_service_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_SERVICE (ret);
+ else
+ return NULL;
+}
+
+/**
+ * gca_service_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_service_proxy_new_sync() but takes a #GBusType instead of a #GDBusConnection.
+ *
+ * The calling thread is blocked until a reply is received.
+ *
+ * See gca_service_proxy_new_for_bus() for the asynchronous version of this constructor.
+ *
+ * Returns: (transfer full) (type GcaServiceProxy): The constructed proxy object or %NULL if @error is set.
+ */
+GcaService *
+gca_service_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_SERVICE_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.Service",
NULL);
+ if (ret != NULL)
+ return GCA_SERVICE (ret);
+ else
+ return NULL;
+}
+
+
+/* ------------------------------------------------------------------------ */
+
+/**
+ * GcaServiceSkeleton:
+ *
+ * The #GcaServiceSkeleton structure contains only private data and should only be accessed using the
provided API.
+ */
+
+/**
+ * GcaServiceSkeletonClass:
+ * @parent_class: The parent class.
+ *
+ * Class structure for #GcaServiceSkeleton.
+ */
+
+struct _GcaServiceSkeletonPrivate
+{
+ GValue *properties;
+ GList *changed_properties;
+ GSource *changed_properties_idle_source;
+ GMainContext *context;
+ GMutex lock;
+};
+
+static void
+_gca_service_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)
+{
+ GcaServiceSkeleton *skeleton = GCA_SERVICE_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_SERVICE);
+ 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_SERVICE);
+ 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_service_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)
+{
+ GcaServiceSkeleton *skeleton = GCA_SERVICE_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_service_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_service_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)
+{
+ GcaServiceSkeleton *skeleton = GCA_SERVICE_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_service_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_service_skeleton_vtable =
+{
+ _gca_service_skeleton_handle_method_call,
+ _gca_service_skeleton_handle_get_property,
+ _gca_service_skeleton_handle_set_property,
+ {NULL}
+};
+
+static GDBusInterfaceInfo *
+gca_service_skeleton_dbus_interface_get_info (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED)
+{
+ return gca_service_interface_info ();
+}
+
+static GDBusInterfaceVTable *
+gca_service_skeleton_dbus_interface_get_vtable (GDBusInterfaceSkeleton *skeleton G_GNUC_UNUSED)
+{
+ return (GDBusInterfaceVTable *) &_gca_service_skeleton_vtable;
+}
+
+static GVariant *
+gca_service_skeleton_dbus_interface_get_properties (GDBusInterfaceSkeleton *_skeleton)
+{
+ GcaServiceSkeleton *skeleton = GCA_SERVICE_SKELETON (_skeleton);
+
+ GVariantBuilder builder;
+ guint n;
+ g_variant_builder_init (&builder, G_VARIANT_TYPE ("a{sv}"));
+ if (_gca_service_interface_info.parent_struct.properties == NULL)
+ goto out;
+ for (n = 0; _gca_service_interface_info.parent_struct.properties[n] != NULL; n++)
+ {
+ GDBusPropertyInfo *info = _gca_service_interface_info.parent_struct.properties[n];
+ if (info->flags & G_DBUS_PROPERTY_INFO_FLAGS_READABLE)
+ {
+ GVariant *value;
+ value = _gca_service_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.Service", 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_service_skeleton_dbus_interface_flush (GDBusInterfaceSkeleton *_skeleton)
+{
+}
+
+static void gca_service_skeleton_iface_init (GcaServiceIface *iface);
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+G_DEFINE_TYPE_WITH_CODE (GcaServiceSkeleton, gca_service_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON,
+ G_ADD_PRIVATE (GcaServiceSkeleton)
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_SERVICE, gca_service_skeleton_iface_init));
+
+#else
+G_DEFINE_TYPE_WITH_CODE (GcaServiceSkeleton, gca_service_skeleton, G_TYPE_DBUS_INTERFACE_SKELETON,
+ G_IMPLEMENT_INTERFACE (GCA_TYPE_SERVICE, gca_service_skeleton_iface_init));
+
+#endif
+static void
+gca_service_skeleton_finalize (GObject *object)
+{
+ GcaServiceSkeleton *skeleton = GCA_SERVICE_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_service_skeleton_parent_class)->finalize (object);
+}
+
+static void
+gca_service_skeleton_init (GcaServiceSkeleton *skeleton)
+{
+#if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_38
+ skeleton->priv = gca_service_skeleton_get_instance_private (skeleton);
+#else
+ skeleton->priv = G_TYPE_INSTANCE_GET_PRIVATE (skeleton, GCA_TYPE_SERVICE_SKELETON,
GcaServiceSkeletonPrivate);
+#endif
+
+ g_mutex_init (&skeleton->priv->lock);
+ skeleton->priv->context = g_main_context_ref_thread_default ();
+}
+
+static void
+gca_service_skeleton_class_init (GcaServiceSkeletonClass *klass)
+{
+ GObjectClass *gobject_class;
+ GDBusInterfaceSkeletonClass *skeleton_class;
+
+ gobject_class = G_OBJECT_CLASS (klass);
+ gobject_class->finalize = gca_service_skeleton_finalize;
+
+ skeleton_class = G_DBUS_INTERFACE_SKELETON_CLASS (klass);
+ skeleton_class->get_info = gca_service_skeleton_dbus_interface_get_info;
+ skeleton_class->get_properties = gca_service_skeleton_dbus_interface_get_properties;
+ skeleton_class->flush = gca_service_skeleton_dbus_interface_flush;
+ skeleton_class->get_vtable = gca_service_skeleton_dbus_interface_get_vtable;
+
+#if GLIB_VERSION_MAX_ALLOWED < GLIB_VERSION_2_38
+ g_type_class_add_private (klass, sizeof (GcaServiceSkeletonPrivate));
+#endif
+}
+
+static void
+gca_service_skeleton_iface_init (GcaServiceIface *iface)
+{
+}
+
+/**
+ * gca_service_skeleton_new:
+ *
+ * Creates a skeleton object for the D-Bus interface <link
linkend="gdbus-interface-org-gnome-CodeAssist-v1-Service.top_of_page">org.gnome.CodeAssist.v1.Service</link>.
+ *
+ * Returns: (transfer full) (type GcaServiceSkeleton): The skeleton object.
+ */
+GcaService *
+gca_service_skeleton_new (void)
+{
+ return GCA_SERVICE (g_object_new (GCA_TYPE_SERVICE_SKELETON, NULL));
+}
+
diff --git a/src/gca/gca-service.h b/src/gca/gca-service.h
new file mode 100644
index 0000000..60c551f
--- /dev/null
+++ b/src/gca/gca-service.h
@@ -0,0 +1,209 @@
+/*
+ * 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_SERVICE_H__
+#define __GCA_SERVICE_H__
+
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+
+/* ------------------------------------------------------------------------ */
+/* Declarations for org.gnome.CodeAssist.v1.Service */
+
+#define GCA_TYPE_SERVICE (gca_service_get_type ())
+#define GCA_SERVICE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_SERVICE, GcaService))
+#define GCA_IS_SERVICE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_SERVICE))
+#define GCA_SERVICE_GET_IFACE(o) (G_TYPE_INSTANCE_GET_INTERFACE ((o), GCA_TYPE_SERVICE, GcaServiceIface))
+
+struct _GcaService;
+typedef struct _GcaService GcaService;
+typedef struct _GcaServiceIface GcaServiceIface;
+
+struct _GcaServiceIface
+{
+ GTypeInterface parent_iface;
+
+ gboolean (*handle_dispose) (
+ GcaService *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *arg_path);
+
+ gboolean (*handle_parse) (
+ GcaService *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *arg_path,
+ const gchar *arg_data_path,
+ GVariant *arg_cursor,
+ GVariant *arg_options);
+
+};
+
+GType gca_service_get_type (void) G_GNUC_CONST;
+
+GDBusInterfaceInfo *gca_service_interface_info (void);
+guint gca_service_override_properties (GObjectClass *klass, guint property_id_begin);
+
+
+/* D-Bus method call completion functions: */
+void gca_service_complete_dispose (
+ GcaService *object,
+ GDBusMethodInvocation *invocation);
+
+void gca_service_complete_parse (
+ GcaService *object,
+ GDBusMethodInvocation *invocation,
+ const gchar *unnamed_arg4);
+
+
+
+/* D-Bus method calls: */
+void gca_service_call_dispose (
+ GcaService *proxy,
+ const gchar *arg_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+gboolean gca_service_call_dispose_finish (
+ GcaService *proxy,
+ GAsyncResult *res,
+ GError **error);
+
+gboolean gca_service_call_dispose_sync (
+ GcaService *proxy,
+ const gchar *arg_path,
+ GCancellable *cancellable,
+ GError **error);
+
+void gca_service_call_parse (
+ GcaService *proxy,
+ const gchar *arg_path,
+ const gchar *arg_data_path,
+ GVariant *arg_cursor,
+ GVariant *arg_options,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+gboolean gca_service_call_parse_finish (
+ GcaService *proxy,
+ gchar **out_unnamed_arg4,
+ GAsyncResult *res,
+ GError **error);
+
+gboolean gca_service_call_parse_sync (
+ GcaService *proxy,
+ const gchar *arg_path,
+ const gchar *arg_data_path,
+ GVariant *arg_cursor,
+ GVariant *arg_options,
+ gchar **out_unnamed_arg4,
+ GCancellable *cancellable,
+ GError **error);
+
+
+
+/* ---- */
+
+#define GCA_TYPE_SERVICE_PROXY (gca_service_proxy_get_type ())
+#define GCA_SERVICE_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_SERVICE_PROXY, GcaServiceProxy))
+#define GCA_SERVICE_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GCA_TYPE_SERVICE_PROXY,
GcaServiceProxyClass))
+#define GCA_SERVICE_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GCA_TYPE_SERVICE_PROXY,
GcaServiceProxyClass))
+#define GCA_IS_SERVICE_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_SERVICE_PROXY))
+#define GCA_IS_SERVICE_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GCA_TYPE_SERVICE_PROXY))
+
+typedef struct _GcaServiceProxy GcaServiceProxy;
+typedef struct _GcaServiceProxyClass GcaServiceProxyClass;
+typedef struct _GcaServiceProxyPrivate GcaServiceProxyPrivate;
+
+struct _GcaServiceProxy
+{
+ /*< private >*/
+ GDBusProxy parent_instance;
+ GcaServiceProxyPrivate *priv;
+};
+
+struct _GcaServiceProxyClass
+{
+ GDBusProxyClass parent_class;
+};
+
+GType gca_service_proxy_get_type (void) G_GNUC_CONST;
+
+void gca_service_proxy_new (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+GcaService *gca_service_proxy_new_finish (
+ GAsyncResult *res,
+ GError **error);
+GcaService *gca_service_proxy_new_sync (
+ GDBusConnection *connection,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+void gca_service_proxy_new_for_bus (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+GcaService *gca_service_proxy_new_for_bus_finish (
+ GAsyncResult *res,
+ GError **error);
+GcaService *gca_service_proxy_new_for_bus_sync (
+ GBusType bus_type,
+ GDBusProxyFlags flags,
+ const gchar *name,
+ const gchar *object_path,
+ GCancellable *cancellable,
+ GError **error);
+
+
+/* ---- */
+
+#define GCA_TYPE_SERVICE_SKELETON (gca_service_skeleton_get_type ())
+#define GCA_SERVICE_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GCA_TYPE_SERVICE_SKELETON,
GcaServiceSkeleton))
+#define GCA_SERVICE_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GCA_TYPE_SERVICE_SKELETON,
GcaServiceSkeletonClass))
+#define GCA_SERVICE_SKELETON_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GCA_TYPE_SERVICE_SKELETON,
GcaServiceSkeletonClass))
+#define GCA_IS_SERVICE_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GCA_TYPE_SERVICE_SKELETON))
+#define GCA_IS_SERVICE_SKELETON_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GCA_TYPE_SERVICE_SKELETON))
+
+typedef struct _GcaServiceSkeleton GcaServiceSkeleton;
+typedef struct _GcaServiceSkeletonClass GcaServiceSkeletonClass;
+typedef struct _GcaServiceSkeletonPrivate GcaServiceSkeletonPrivate;
+
+struct _GcaServiceSkeleton
+{
+ /*< private >*/
+ GDBusInterfaceSkeleton parent_instance;
+ GcaServiceSkeletonPrivate *priv;
+};
+
+struct _GcaServiceSkeletonClass
+{
+ GDBusInterfaceSkeletonClass parent_class;
+};
+
+GType gca_service_skeleton_get_type (void) G_GNUC_CONST;
+
+GcaService *gca_service_skeleton_new (void);
+
+
+G_END_DECLS
+
+#endif /* __GCA_SERVICE_H__ */
diff --git a/src/gca/gca.xml b/src/gca/gca.xml
new file mode 100644
index 0000000..cd014ca
--- /dev/null
+++ b/src/gca/gca.xml
@@ -0,0 +1,16 @@
+<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
+ "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
+<node>
+ <interface name="org.gnome.CodeAssist.v1.Service">
+ <method name="Dispose">
+ <arg direction="in" type="s" name="path" />
+ </method>
+ <method name="Parse">
+ <arg direction="in" type="s" name="path" />
+ <arg direction="in" type="s" name="data_path" />
+ <arg direction="in" type="(xx)" name="cursor" />
+ <arg direction="in" type="a{sv}" name="options" />
+ <arg direction="out" type="o" />
+ </method>
+ </interface>
+</node>
diff --git a/src/gnome-builder.mk b/src/gnome-builder.mk
index d4fb945..166db51 100644
--- a/src/gnome-builder.mk
+++ b/src/gnome-builder.mk
@@ -15,6 +15,8 @@ libgnome_builder_la_SOURCES = \
src/auto-indent/gb-source-auto-indenter-c.h \
src/auto-indent/gb-source-auto-indenter-xml.c \
src/auto-indent/gb-source-auto-indenter-xml.h \
+ src/code-assistant/gb-source-code-assistant.c \
+ src/code-assistant/gb-source-code-assistant.h \
src/commands/gb-command.c \
src/commands/gb-command.h \
src/commands/gb-command-bar.c \
@@ -75,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-service.c \
+ src/gca/gca-service.h \
src/markdown/gs-markdown.c \
src/markdown/gs-markdown.h \
src/markdown/gb-markdown-preview.c \
@@ -177,9 +181,11 @@ libgnome_builder_la_CFLAGS = \
-I$(top_srcdir)/src/animation \
-I$(top_srcdir)/src/app \
-I$(top_srcdir)/src/auto-indent \
+ -I$(top_srcdir)/src/code-assistant \
-I$(top_srcdir)/src/commands \
-I$(top_srcdir)/src/devhelp \
-I$(top_srcdir)/src/editor \
+ -I$(top_srcdir)/src/gca \
-I$(top_srcdir)/src/gd \
-I$(top_srcdir)/src/gedit \
-I$(top_srcdir)/src/keybindings \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]