[gnome-builder/wip/chergert/lsp-plugin-loader] libide/lsp: implement rename provider dynamic GType registration



commit 1b1a02c2bae7e423e3111ec0c9567378f4ea1229
Author: Christian Hergert <chergert redhat com>
Date:   Thu Oct 13 18:36:43 2022 -0500

    libide/lsp: implement rename provider dynamic GType registration

 src/libide/lsp/ide-lsp-plugin-private.h         |   4 +
 src/libide/lsp/ide-lsp-plugin-rename-provider.c | 100 ++++++++++++++++++++++++
 src/libide/lsp/ide-lsp-plugin.c                 |  10 +--
 src/libide/lsp/meson.build                      |   1 +
 4 files changed, 106 insertions(+), 9 deletions(-)
---
diff --git a/src/libide/lsp/ide-lsp-plugin-private.h b/src/libide/lsp/ide-lsp-plugin-private.h
index 3d29a1f28..9b772b490 100644
--- a/src/libide/lsp/ide-lsp-plugin-private.h
+++ b/src/libide/lsp/ide-lsp-plugin-private.h
@@ -35,6 +35,7 @@ typedef struct _IdeLspPluginInfo
   GType service_type;
   GType completion_provider_type;
   GType diagnostic_provider_type;
+  GType rename_provider_type;
   GType symbol_resolver_type;
 } IdeLspPluginInfo;
 
@@ -50,6 +51,9 @@ GObject          *ide_lsp_plugin_create_completion_provider (guint             n
 GObject          *ide_lsp_plugin_create_diagnostic_provider (guint             n_parameters,
                                                              GParameter       *parameters,
                                                              IdeLspPluginInfo *info);
+GObject          *ide_lsp_plugin_create_rename_provider     (guint             n_parameters,
+                                                             GParameter       *parameters,
+                                                             IdeLspPluginInfo *info);
 GObject          *ide_lsp_plugin_create_symbol_resolver     (guint             n_parameters,
                                                              GParameter       *parameters,
                                                              IdeLspPluginInfo *info);
diff --git a/src/libide/lsp/ide-lsp-plugin-rename-provider.c b/src/libide/lsp/ide-lsp-plugin-rename-provider.c
new file mode 100644
index 000000000..c436db506
--- /dev/null
+++ b/src/libide/lsp/ide-lsp-plugin-rename-provider.c
@@ -0,0 +1,100 @@
+/* ide-lsp-plugin-rename-provider.c
+ *
+ * Copyright 2022 Christian Hergert <chergert redhat com>
+ *
+ * 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/>.
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+#define G_LOG_DOMAIN "ide-lsp-plugin-rename-provider"
+
+#include "config.h"
+
+#include <libpeas/peas.h>
+
+#include <libide-code.h>
+
+#include "ide-lsp-rename-provider.h"
+#include "ide-lsp-plugin-private.h"
+#include "ide-lsp-service.h"
+
+typedef struct _IdeLspPluginRenameProviderClass
+{
+  IdeLspRenameProviderClass  parent_class;
+  IdeLspPluginInfo              *info;
+} IdeLspPluginRenameProviderClass;
+
+static void
+ide_lsp_plugin_rename_provider_load (IdeRenameProvider *provider)
+{
+  IdeLspPluginRenameProviderClass *klass = (IdeLspPluginRenameProviderClass *)(((GTypeInstance 
*)provider)->g_class);
+  g_autoptr(IdeLspServiceClass) service_class = g_type_class_ref (klass->info->service_type);
+
+  ide_lsp_service_class_bind_client (service_class, IDE_OBJECT (provider));
+}
+
+static void
+ide_lsp_plugin_rename_provider_class_init (IdeLspPluginRenameProviderClass *klass,
+                                           IdeLspPluginInfo                *info)
+{
+  klass->info = info;
+}
+
+static void
+ide_lsp_plugin_rename_provider_iface_init (IdeRenameProviderInterface *iface)
+{
+  iface->load = ide_lsp_plugin_rename_provider_load;
+}
+
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
+GObject *
+ide_lsp_plugin_create_rename_provider (guint             n_parameters,
+                                       GParameter       *parameters,
+                                       IdeLspPluginInfo *info)
+{
+  ide_lsp_plugin_remove_plugin_info_param (&n_parameters, parameters);
+
+  if G_UNLIKELY (info->rename_provider_type == G_TYPE_INVALID)
+    {
+      g_autofree char *name = g_strconcat (info->module_name, "+RenameProvider", NULL);
+
+      info->rename_provider_type =
+        g_type_register_static (IDE_TYPE_LSP_RENAME_PROVIDER,
+                                name,
+                                &(GTypeInfo) {
+                                  sizeof (IdeLspPluginRenameProviderClass),
+                                  NULL,
+                                  NULL,
+                                  (GClassInitFunc)ide_lsp_plugin_rename_provider_class_init,
+                                  NULL,
+                                  ide_lsp_plugin_info_ref (info),
+                                  sizeof (IdeLspRenameProvider),
+                                  0,
+                                  NULL,
+                                  NULL,
+                                },
+                                G_TYPE_FLAG_FINAL);
+      g_type_add_interface_static (info->rename_provider_type,
+                                   IDE_TYPE_RENAME_PROVIDER,
+                                   &(GInterfaceInfo) {
+                                     (GInterfaceInitFunc)(void (*) 
(void))ide_lsp_plugin_rename_provider_iface_init,
+                                     NULL,
+                                     NULL,
+                                   });
+    }
+
+  return g_object_newv (info->rename_provider_type, n_parameters, parameters);
+}
+G_GNUC_END_IGNORE_DEPRECATIONS
diff --git a/src/libide/lsp/ide-lsp-plugin.c b/src/libide/lsp/ide-lsp-plugin.c
index e378412a1..7ff17fbde 100644
--- a/src/libide/lsp/ide-lsp-plugin.c
+++ b/src/libide/lsp/ide-lsp-plugin.c
@@ -222,14 +222,6 @@ ide_lsp_plugin_hover_factory (guint       n_parameters,
   return ide_lsp_plugin_factory (user_data, IDE_TYPE_LSP_HOVER_PROVIDER, n_parameters, parameters);
 }
 
-static GObject *
-ide_lsp_plugin_rename_factory (guint       n_parameters,
-                               GParameter *parameters,
-                               gpointer    user_data)
-{
-  return ide_lsp_plugin_factory (user_data, IDE_TYPE_LSP_RENAME_PROVIDER, n_parameters, parameters);
-}
-
 static GObject *
 ide_lsp_plugin_code_action_factory (guint       n_parameters,
                                     GParameter *parameters,
@@ -308,7 +300,7 @@ ide_lsp_plugin_register (PeasObjectModule     *object_module,
   if ((features & IDE_LSP_PLUGIN_FEATURES_RENAME) != 0)
     peas_object_module_register_extension_factory (object_module,
                                                    IDE_TYPE_RENAME_PROVIDER,
-                                                   ide_lsp_plugin_rename_factory,
+                                                   (PeasFactoryFunc)ide_lsp_plugin_create_rename_provider,
                                                    ide_lsp_plugin_info_ref (info),
                                                    (GDestroyNotify)ide_lsp_plugin_info_unref);
 
diff --git a/src/libide/lsp/meson.build b/src/libide/lsp/meson.build
index 6244b47bd..af9bc082b 100644
--- a/src/libide/lsp/meson.build
+++ b/src/libide/lsp/meson.build
@@ -58,6 +58,7 @@ libide_lsp_public_sources = [
   'ide-lsp-plugin.c',
   'ide-lsp-plugin-completion-provider.c',
   'ide-lsp-plugin-diagnostic-provider.c',
+  'ide-lsp-plugin-rename-provider.c',
   'ide-lsp-plugin-symbol-resolver.c',
   'ide-lsp-rename-provider.c',
   'ide-lsp-search-provider.c',


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]