[gnome-builder] langserv-client: rename notification to send_notification



commit a55bdc308ec06fefef7cf0f9320f72e61470840b
Author: Christian Hergert <chergert redhat com>
Date:   Tue Nov 1 13:06:53 2016 -0700

    langserv-client: rename notification to send_notification
    
    Like the change in jsonrpc-glib, this is slightly more accurate naming and
    removes ambiguity in function vs signal naming.

 libide/langserv/ide-langserv-client.c |   90 ++++++++++++++++----------------
 libide/langserv/ide-langserv-client.h |   18 +++---
 2 files changed, 54 insertions(+), 54 deletions(-)
---
diff --git a/libide/langserv/ide-langserv-client.c b/libide/langserv/ide-langserv-client.c
index 29d1b31..b6c92c0 100644
--- a/libide/langserv/ide-langserv-client.c
+++ b/libide/langserv/ide-langserv-client.c
@@ -142,9 +142,9 @@ ide_langserv_client_buffer_saved (IdeLangservClient *self,
     "}"
   );
 
-  ide_langserv_client_notification_async (self, "textDocument/didSave",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self, "textDocument/didSave",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 
   IDE_EXIT;
 }
@@ -202,9 +202,9 @@ ide_langserv_client_buffer_insert_text (IdeLangservClient *self,
       "}",
     "]");
 
-  ide_langserv_client_notification_async (self, "textDocument/didChange",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self, "textDocument/didChange",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 }
 
 static void
@@ -261,9 +261,9 @@ ide_langserv_client_buffer_delete_range (IdeLangservClient *self,
       "}",
     "]");
 
-  ide_langserv_client_notification_async (self, "textDocument/didChange",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self, "textDocument/didChange",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 }
 
 static void
@@ -303,10 +303,10 @@ ide_langserv_client_buffer_loaded (IdeLangservClient *self,
     "}"
   );
 
-  ide_langserv_client_notification_async (self,
-                                          "textDocument/didOpen",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self,
+                                               "textDocument/didOpen",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 
   IDE_EXIT;
 }
@@ -336,10 +336,10 @@ ide_langserv_client_buffer_unloaded (IdeLangservClient *self,
     "}"
   );
 
-  ide_langserv_client_notification_async (self,
-                                          "textDocument/didClose",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self,
+                                               "textDocument/didClose",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 
   IDE_EXIT;
 }
@@ -403,10 +403,10 @@ ide_langserv_client_project_file_trashed (IdeLangservClient *self,
     "]"
   );
 
-  ide_langserv_client_notification_async (self,
-                                          "workspace/didChangeWatchedFiles",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self,
+                                               "workspace/didChangeWatchedFiles",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 
   ide_langserv_client_clear_diagnostics (self, uri);
 
@@ -446,10 +446,10 @@ ide_langserv_client_project_file_renamed (IdeLangservClient *self,
     "]"
   );
 
-  ide_langserv_client_notification_async (self,
-                                          "workspace/didChangeWatchedFiles",
-                                          g_steal_pointer (&params),
-                                          NULL, NULL, NULL);
+  ide_langserv_client_send_notification_async (self,
+                                               "workspace/didChangeWatchedFiles",
+                                               g_steal_pointer (&params),
+                                               NULL, NULL, NULL);
 
   ide_langserv_client_clear_diagnostics (self, src_uri);
 
@@ -611,10 +611,10 @@ ide_langserv_client_real_notification (IdeLangservClient *self,
 }
 
 static void
-ide_langserv_client_notification (IdeLangservClient *self,
-                                  const gchar       *method,
-                                  JsonNode          *params,
-                                  JsonrpcClient     *rpc_client)
+ide_langserv_client_send_notification (IdeLangservClient *self,
+                                       const gchar       *method,
+                                       JsonNode          *params,
+                                       JsonrpcClient     *rpc_client)
 {
   GQuark detail;
 
@@ -911,7 +911,7 @@ ide_langserv_client_start (IdeLangservClient *self)
 
   g_signal_connect_object (priv->rpc_client,
                            "notification",
-                           G_CALLBACK (ide_langserv_client_notification),
+                           G_CALLBACK (ide_langserv_client_send_notification),
                            self,
                            G_CONNECT_SWAPPED);
 
@@ -1082,9 +1082,9 @@ ide_langserv_client_call_finish (IdeLangservClient  *self,
 }
 
 static void
-ide_langserv_client_notification_cb (GObject      *object,
-                                     GAsyncResult *result,
-                                     gpointer      user_data)
+ide_langserv_client_send_notification_cb (GObject      *object,
+                                          GAsyncResult *result,
+                                          gpointer      user_data)
 {
   JsonrpcClient *client = (JsonrpcClient *)object;
   g_autoptr(GTask) task = user_data;
@@ -1101,7 +1101,7 @@ ide_langserv_client_notification_cb (GObject      *object,
 }
 
 /**
- * ide_langserv_client_notification_async:
+ * ide_langserv_client_send_notification_async:
  * @self: An #IdeLangservClient
  * @method: the method to notification
  * @params: (nullable) (transfer full): An #JsonNode or %NULL
@@ -1112,12 +1112,12 @@ ide_langserv_client_notification_cb (GObject      *object,
  * Asynchronously sends a notification to the Language Server.
  */
 void
-ide_langserv_client_notification_async (IdeLangservClient   *self,
-                                        const gchar         *method,
-                                        JsonNode            *params,
-                                        GCancellable        *cancellable,
-                                        GAsyncReadyCallback  notificationback,
-                                        gpointer             user_data)
+ide_langserv_client_send_notification_async (IdeLangservClient   *self,
+                                             const gchar         *method,
+                                             JsonNode            *params,
+                                             GCancellable        *cancellable,
+                                             GAsyncReadyCallback  notificationback,
+                                             gpointer             user_data)
 {
   IdeLangservClientPrivate *priv = ide_langserv_client_get_instance_private (self);
   g_autoptr(GTask) task = NULL;
@@ -1125,7 +1125,7 @@ ide_langserv_client_notification_async (IdeLangservClient   *self,
   IDE_ENTRY;
 
   task = g_task_new (self, cancellable, notificationback, user_data);
-  g_task_set_source_tag (task, ide_langserv_client_notification_async);
+  g_task_set_source_tag (task, ide_langserv_client_send_notification_async);
 
   if (priv->rpc_client == NULL)
     {
@@ -1140,16 +1140,16 @@ ide_langserv_client_notification_async (IdeLangservClient   *self,
                                           method,
                                           params,
                                           cancellable,
-                                          ide_langserv_client_notification_cb,
+                                          ide_langserv_client_send_notification_cb,
                                           g_steal_pointer (&task));
 
   IDE_EXIT;
 }
 
 gboolean
-ide_langserv_client_notification_finish (IdeLangservClient  *self,
-                                         GAsyncResult       *result,
-                                         GError            **error)
+ide_langserv_client_send_notification_finish (IdeLangservClient  *self,
+                                              GAsyncResult       *result,
+                                              GError            **error)
 {
   gboolean ret;
 
diff --git a/libide/langserv/ide-langserv-client.h b/libide/langserv/ide-langserv-client.h
index 6e6d11e..a57979e 100644
--- a/libide/langserv/ide-langserv-client.h
+++ b/libide/langserv/ide-langserv-client.h
@@ -68,15 +68,15 @@ gboolean           ide_langserv_client_call_finish            (IdeLangservClient
                                                                GAsyncResult         *result,
                                                                JsonNode            **return_value,
                                                                GError              **error);
-void               ide_langserv_client_notification_async     (IdeLangservClient    *self,
-                                                               const gchar          *method,
-                                                               JsonNode             *params,
-                                                               GCancellable         *cancellable,
-                                                               GAsyncReadyCallback   notificationback,
-                                                               gpointer              user_data);
-gboolean           ide_langserv_client_notification_finish    (IdeLangservClient    *self,
-                                                               GAsyncResult         *result,
-                                                               GError              **error);
+void               ide_langserv_client_send_notification_async  (IdeLangservClient    *self,
+                                                                 const gchar          *method,
+                                                                 JsonNode             *params,
+                                                                 GCancellable         *cancellable,
+                                                                 GAsyncReadyCallback   notificationback,
+                                                                 gpointer              user_data);
+gboolean           ide_langserv_client_send_notification_finish (IdeLangservClient    *self,
+                                                                 GAsyncResult         *result,
+                                                                 GError              **error);
 void               ide_langserv_client_get_diagnostics_async  (IdeLangservClient    *self,
                                                                GFile                *file,
                                                                GCancellable         *cancellable,


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