[gnome-software: 9/24] gs-plugin-job-list-apps: Add job class for listing apps




commit 8229493a19a2ae12bc72a1c348b49f77b84fea6d
Author: Philip Withnall <pwithnall endlessos org>
Date:   Fri Apr 8 16:58:01 2022 +0100

    gs-plugin-job-list-apps: Add job class for listing apps
    
    This replaces `GS_PLUGIN_ACTION_SEARCH_FILES` at the moment, and will
    eventually replace a number of other actions which query for apps in
    different ways.
    
    It’s a separate class so that type safety can be improved, and
    behaviour specific to listing apps can be implemented in the class
    without complicating `GsPluginLoader` further.
    
    Signed-off-by: Philip Withnall <pwithnall endlessos org>
    
    Helps: #1472

 doc/api/gnome-software-docs.xml |   1 +
 lib/gs-app-query.c              |   7 +-
 lib/gs-plugin-job-list-apps.c   | 467 +++++++++++++++++++++++++++++++++++++++-
 lib/gs-plugin-job-list-apps.h   |   6 +
 lib/gs-plugin-loader.c          |   4 +
 5 files changed, 471 insertions(+), 14 deletions(-)
---
diff --git a/doc/api/gnome-software-docs.xml b/doc/api/gnome-software-docs.xml
index 6ae6a7212..27c25f0d5 100644
--- a/doc/api/gnome-software-docs.xml
+++ b/doc/api/gnome-software-docs.xml
@@ -724,6 +724,7 @@ gs_plugin_adopt_app (GsPlugin *plugin, GsApp *app)
     <xi:include href="xml/gs-plugin.xml"/>
     <xi:include href="xml/gs-plugin-event.xml"/>
     <xi:include href="xml/gs-plugin-helpers.xml"/>
+    <xi:include href="xml/gs-plugin-job-list-apps.xml"/>
     <xi:include href="xml/gs-plugin-job-list-distro-upgrades.xml"/>
     <xi:include href="xml/gs-plugin-job-list-installed-apps.xml"/>
     <xi:include href="xml/gs-plugin-job-refine.xml"/>
diff --git a/lib/gs-app-query.c b/lib/gs-app-query.c
index aaef2990e..cb26bbb16 100644
--- a/lib/gs-app-query.c
+++ b/lib/gs-app-query.c
@@ -14,9 +14,10 @@
  *
  * #GsAppQuery is an object to represent a query for apps.
  *
- * It will typically be used with a #GsPluginJob which searches for matching
- * apps, but may have multiple consumers. #GsAppQuery only represents the query
- * and does not provide an implementation for executing that query.
+ * It will typically be used with #GsPluginJobListApps, which searches for
+ * matching apps, but it may have multiple consumers. #GsAppQuery only
+ * represents the query and does not provide an implementation for executing
+ * that query.
  *
  * It is immutable after construction, and hence threadsafe. It may be extended
  * in future by adding more query properties. The existing query properties are
diff --git a/lib/gs-plugin-job-list-apps.c b/lib/gs-plugin-job-list-apps.c
index 06eb447ec..d9276e938 100644
--- a/lib/gs-plugin-job-list-apps.c
+++ b/lib/gs-plugin-job-list-apps.c
@@ -8,12 +8,445 @@
  * SPDX-License-Identifier: GPL-2.0+
  */
 
+/**
+ * SECTION:gs-plugin-job-list-apps
+ * @short_description: A plugin job to list apps according to a search query
+ *
+ * #GsPluginJobListApps is a #GsPluginJob representing an operation to
+ * list apps which match a given query, from all #GsPlugins.
+ *
+ * The known properties on the set of apps returned by this operation can be
+ * controlled with the #GsAppQuery:refine-flags property of the query. All
+ * results will be refined using the given set of refine flags. See
+ * #GsPluginJobRefine.
+ *
+ * This class is a wrapper around #GsPluginClass.list_apps_async,
+ * calling it for all loaded plugins, with #GsPluginJobRefine used to refine
+ * them.
+ *
+ * Retrieve the resulting #GsAppList using
+ * gs_plugin_job_list_apps_get_result_list().
+ *
+ * See also: #GsPluginClass.list_apps_async
+ * Since: 43
+ */
+
+#include "config.h"
+
 #include <glib.h>
+#include <glib-object.h>
 
+#include "gs-app.h"
+#include "gs-app-list-private.h"
 #include "gs-app-query.h"
+#include "gs-enums.h"
 #include "gs-plugin-job.h"
 #include "gs-plugin-job-list-apps.h"
+#include "gs-plugin-job-private.h"
+#include "gs-plugin-job-refine.h"
+#include "gs-plugin-private.h"
 #include "gs-plugin-types.h"
+#include "gs-utils.h"
+
+struct _GsPluginJobListApps
+{
+       GsPluginJob parent;
+
+       /* Input arguments. */
+       GsAppQuery *query;  /* (owned) (nullable) */
+       GsPluginListAppsFlags flags;
+
+       /* In-progress data. */
+       GsAppList *merged_list;  /* (owned) (nullable) */
+       GError *saved_error;  /* (owned) (nullable) */
+       guint n_pending_ops;
+
+       /* Results. */
+       GsAppList *result_list;  /* (owned) (nullable) */
+};
+
+G_DEFINE_TYPE (GsPluginJobListApps, gs_plugin_job_list_apps, GS_TYPE_PLUGIN_JOB)
+
+typedef enum {
+       PROP_QUERY = 1,
+       PROP_FLAGS,
+} GsPluginJobListAppsProperty;
+
+static GParamSpec *props[PROP_FLAGS + 1] = { NULL, };
+
+static void
+gs_plugin_job_list_apps_dispose (GObject *object)
+{
+       GsPluginJobListApps *self = GS_PLUGIN_JOB_LIST_APPS (object);
+
+       g_assert (self->merged_list == NULL);
+       g_assert (self->saved_error == NULL);
+       g_assert (self->n_pending_ops == 0);
+
+       g_clear_object (&self->result_list);
+
+       G_OBJECT_CLASS (gs_plugin_job_list_apps_parent_class)->dispose (object);
+}
+
+static void
+gs_plugin_job_list_apps_get_property (GObject    *object,
+                                      guint       prop_id,
+                                      GValue     *value,
+                                      GParamSpec *pspec)
+{
+       GsPluginJobListApps *self = GS_PLUGIN_JOB_LIST_APPS (object);
+
+       switch ((GsPluginJobListAppsProperty) prop_id) {
+       case PROP_QUERY:
+               g_value_set_object (value, self->query);
+               break;
+       case PROP_FLAGS:
+               g_value_set_flags (value, self->flags);
+               break;
+       default:
+               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+               break;
+       }
+}
+
+static void
+gs_plugin_job_list_apps_set_property (GObject      *object,
+                                      guint         prop_id,
+                                      const GValue *value,
+                                      GParamSpec   *pspec)
+{
+       GsPluginJobListApps *self = GS_PLUGIN_JOB_LIST_APPS (object);
+
+       switch ((GsPluginJobListAppsProperty) prop_id) {
+       case PROP_QUERY:
+               /* Construct only. */
+               g_assert (self->query == NULL);
+               self->query = g_value_dup_object (value);
+               g_object_notify_by_pspec (object, props[prop_id]);
+               break;
+       case PROP_FLAGS:
+               /* Construct only. */
+               g_assert (self->flags == 0);
+               self->flags = g_value_get_flags (value);
+               g_object_notify_by_pspec (object, props[prop_id]);
+               break;
+       default:
+               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+               break;
+       }
+}
+
+static gboolean
+app_filter_qt_for_gtk_and_compatible (GsApp    *app,
+                                      gpointer  user_data)
+{
+       GsPluginLoader *plugin_loader = GS_PLUGIN_LOADER (user_data);
+
+       /* hide the QT versions in preference to the GTK ones */
+       if (g_strcmp0 (gs_app_get_id (app), "transmission-qt.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "nntpgrab_qt.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "gimagereader-qt4.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "gimagereader-qt5.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "nntpgrab_server_qt.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "hotot-qt.desktop") == 0) {
+               g_debug ("removing QT version of %s",
+                        gs_app_get_unique_id (app));
+               return FALSE;
+       }
+
+       /* hide the KDE version in preference to the GTK one */
+       if (g_strcmp0 (gs_app_get_id (app), "qalculate_kde.desktop") == 0) {
+               g_debug ("removing KDE version of %s",
+                        gs_app_get_unique_id (app));
+               return FALSE;
+       }
+
+       /* hide the KDE version in preference to the Qt one */
+       if (g_strcmp0 (gs_app_get_id (app), "kid3.desktop") == 0 ||
+           g_strcmp0 (gs_app_get_id (app), "kchmviewer.desktop") == 0) {
+               g_debug ("removing KDE version of %s",
+                        gs_app_get_unique_id (app));
+               return FALSE;
+       }
+
+       return gs_plugin_loader_app_is_compatible (plugin_loader, app);
+}
+
+static void plugin_list_apps_cb (GObject      *source_object,
+                                 GAsyncResult *result,
+                                 gpointer      user_data);
+static void finish_op (GTask  *task,
+                       GError *error);
+static void refine_cb (GObject      *source_object,
+                       GAsyncResult *result,
+                       gpointer      user_data);
+static void finish_task (GTask     *task,
+                         GsAppList *merged_list);
+
+static void
+gs_plugin_job_list_apps_run_async (GsPluginJob         *job,
+                                   GsPluginLoader      *plugin_loader,
+                                   GCancellable        *cancellable,
+                                   GAsyncReadyCallback  callback,
+                                   gpointer             user_data)
+{
+       GsPluginJobListApps *self = GS_PLUGIN_JOB_LIST_APPS (job);
+       g_autoptr(GTask) task = NULL;
+       GPtrArray *plugins;  /* (element-type GsPlugin) */
+       gboolean anything_ran = FALSE;
+
+       task = g_task_new (job, cancellable, callback, user_data);
+       g_task_set_source_tag (task, gs_plugin_job_list_apps_run_async);
+       g_task_set_task_data (task, g_object_ref (plugin_loader), (GDestroyNotify) g_object_unref);
+
+       /* run each plugin, keeping a counter of pending operations which is
+        * initialised to 1 until all the operations are started */
+       self->n_pending_ops = 1;
+       self->merged_list = gs_app_list_new ();
+       plugins = gs_plugin_loader_get_plugins (plugin_loader);
+
+       for (guint i = 0; i < plugins->len; i++) {
+               GsPlugin *plugin = g_ptr_array_index (plugins, i);
+               GsPluginClass *plugin_class = GS_PLUGIN_GET_CLASS (plugin);
+
+               if (!gs_plugin_get_enabled (plugin))
+                       continue;
+               if (plugin_class->list_apps_async == NULL)
+                       continue;
+
+               /* at least one plugin supports this vfunc */
+               anything_ran = TRUE;
+
+               /* run the plugin */
+               self->n_pending_ops++;
+               plugin_class->list_apps_async (plugin, self->query, self->flags, cancellable, 
plugin_list_apps_cb, g_object_ref (task));
+       }
+
+       if (!anything_ran)
+               g_debug ("no plugin could handle listing apps");
+
+       finish_op (task, NULL);
+}
+
+static void
+plugin_list_apps_cb (GObject      *source_object,
+                     GAsyncResult *result,
+                     gpointer      user_data)
+{
+       GsPlugin *plugin = GS_PLUGIN (source_object);
+       GsPluginClass *plugin_class = GS_PLUGIN_GET_CLASS (plugin);
+       g_autoptr(GTask) task = G_TASK (user_data);
+       GsPluginJobListApps *self = g_task_get_source_object (task);
+       g_autoptr(GsAppList) plugin_apps = NULL;
+       g_autoptr(GError) local_error = NULL;
+
+       plugin_apps = plugin_class->list_apps_finish (plugin, result, &local_error);
+       gs_plugin_status_update (plugin, NULL, GS_PLUGIN_STATUS_FINISHED);
+
+       if (plugin_apps != NULL)
+               gs_app_list_add_list (self->merged_list, plugin_apps);
+
+       /* Since #GsAppQuery supports a number of different query parameters,
+        * not all plugins will support all of them. Ignore errors related to
+        * that. */
+       if (g_error_matches (local_error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
+               g_clear_error (&local_error);
+
+       finish_op (task, g_steal_pointer (&local_error));
+}
+
+/* @error is (transfer full) if non-%NULL */
+static void
+finish_op (GTask  *task,
+           GError *error)
+{
+       GsPluginJobListApps *self = g_task_get_source_object (task);
+       GCancellable *cancellable = g_task_get_cancellable (task);
+       GsPluginLoader *plugin_loader = g_task_get_task_data (task);
+       g_autoptr(GsAppList) merged_list = NULL;
+       GsPluginRefineFlags refine_flags = GS_PLUGIN_REFINE_FLAGS_NONE;
+       g_autoptr(GError) error_owned = g_steal_pointer (&error);
+
+       if (error_owned != NULL && self->saved_error == NULL)
+               self->saved_error = g_steal_pointer (&error_owned);
+       else if (error_owned != NULL)
+               g_debug ("Additional error while listing apps: %s", error_owned->message);
+
+       g_assert (self->n_pending_ops > 0);
+       self->n_pending_ops--;
+
+       if (self->n_pending_ops > 0)
+               return;
+
+       /* Get the results of the parallel ops. */
+       merged_list = g_steal_pointer (&self->merged_list);
+
+       if (self->saved_error != NULL) {
+               g_task_return_error (task, g_steal_pointer (&self->saved_error));
+               return;
+       }
+
+       /* run refine() on each one if required */
+       if (self->query != NULL)
+               refine_flags = gs_app_query_get_refine_flags (self->query);
+
+       if (merged_list != NULL &&
+           gs_app_list_length (merged_list) > 0 &&
+           refine_flags != GS_PLUGIN_REFINE_FLAGS_NONE) {
+               g_autoptr(GsPluginJob) refine_job = NULL;
+
+               refine_job = gs_plugin_job_refine_new (merged_list,
+                                                      refine_flags |
+                                                      GS_PLUGIN_REFINE_FLAGS_DISABLE_FILTERING);
+               gs_plugin_loader_job_process_async (plugin_loader, refine_job,
+                                                   cancellable,
+                                                   refine_cb,
+                                                   g_object_ref (task));
+       } else {
+               g_debug ("No apps to refine");
+               finish_task (task, merged_list);
+       }
+}
+
+static void
+refine_cb (GObject      *source_object,
+           GAsyncResult *result,
+           gpointer      user_data)
+{
+       GsPluginLoader *plugin_loader = GS_PLUGIN_LOADER (source_object);
+       g_autoptr(GTask) task = G_TASK (user_data);
+       g_autoptr(GsAppList) new_list = NULL;
+       g_autoptr(GError) local_error = NULL;
+
+       new_list = gs_plugin_loader_job_process_finish (plugin_loader, result, &local_error);
+       if (new_list == NULL) {
+               gs_utils_error_convert_gio (&local_error);
+               g_task_return_error (task, g_steal_pointer (&local_error));
+               return;
+       }
+
+       finish_task (task, new_list);
+}
+
+static void
+finish_task (GTask     *task,
+             GsAppList *merged_list)
+{
+       GsPluginJobListApps *self = g_task_get_source_object (task);
+       GsPluginLoader *plugin_loader = g_task_get_task_data (task);
+       GsAppListFilterFlags dedupe_flags = GS_APP_LIST_FILTER_FLAG_NONE;
+       GsAppListSortFunc sort_func = NULL;
+       gpointer sort_func_data = NULL;
+       guint max_results = 0;
+       g_autofree gchar *job_debug = NULL;
+
+       /* Standard filtering.
+        *
+        * FIXME: It feels like this filter should be done in a different layer. */
+       gs_app_list_filter (merged_list, app_filter_qt_for_gtk_and_compatible, plugin_loader);
+
+       /* Filter duplicates with priority, taking into account the source name
+        * & version, so we combine available updates with the installed app */
+       if (self->query != NULL)
+               dedupe_flags = gs_app_query_get_dedupe_flags (self->query);
+
+       if (dedupe_flags != GS_APP_LIST_FILTER_FLAG_NONE)
+               gs_app_list_filter_duplicates (merged_list, dedupe_flags);
+
+       /* Sort the results. The refine may have added useful metadata. */
+       if (self->query != NULL)
+               sort_func = gs_app_query_get_sort_func (self->query, &sort_func_data);
+
+       if (sort_func != NULL) {
+               gs_app_list_sort (merged_list, sort_func, sort_func_data);
+       } else {
+               g_debug ("no ->sort_func() set, using random!");
+               gs_app_list_randomize (merged_list);
+       }
+
+       /* Truncate the results if needed. */
+       if (self->query != NULL)
+               max_results = gs_app_query_get_max_results (self->query);
+
+       if (max_results > 0 && gs_app_list_length (merged_list) > max_results) {
+               g_debug ("truncating results from %u to %u",
+                        gs_app_list_length (merged_list), max_results);
+               gs_app_list_truncate (merged_list, max_results);
+       }
+
+       /* show elapsed time */
+       job_debug = gs_plugin_job_to_string (GS_PLUGIN_JOB (self));
+       g_debug ("%s", job_debug);
+
+       /* Check the intermediate working values are all cleared. */
+       g_assert (self->merged_list == NULL);
+       g_assert (self->saved_error == NULL);
+       g_assert (self->n_pending_ops == 0);
+
+       /* success */
+       g_set_object (&self->result_list, merged_list);
+       g_task_return_boolean (task, TRUE);
+}
+
+static gboolean
+gs_plugin_job_list_apps_run_finish (GsPluginJob   *self,
+                                    GAsyncResult  *result,
+                                    GError       **error)
+{
+       return g_task_propagate_boolean (G_TASK (result), error);
+}
+
+static void
+gs_plugin_job_list_apps_class_init (GsPluginJobListAppsClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       GsPluginJobClass *job_class = GS_PLUGIN_JOB_CLASS (klass);
+
+       object_class->dispose = gs_plugin_job_list_apps_dispose;
+       object_class->get_property = gs_plugin_job_list_apps_get_property;
+       object_class->set_property = gs_plugin_job_list_apps_set_property;
+
+       job_class->run_async = gs_plugin_job_list_apps_run_async;
+       job_class->run_finish = gs_plugin_job_list_apps_run_finish;
+
+       /**
+        * GsPluginJobListApps:query: (nullable)
+        *
+        * A #GsAppQuery defining the query parameters.
+        *
+        * If this is %NULL, all apps will be returned.
+        *
+        * Since: 43
+        */
+       props[PROP_QUERY] =
+               g_param_spec_object ("query", "Query",
+                                    "A #GsAppQuery defining the query parameters.",
+                                    GS_TYPE_APP_QUERY,
+                                    G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
+                                    G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
+
+       /**
+        * GsPluginJobListApps:flags:
+        *
+        * Flags to specify how the operation should run.
+        *
+        * Since: 43
+        */
+       props[PROP_FLAGS] =
+               g_param_spec_flags ("flags", "Flags",
+                                   "Flags to specify how the operation should run.",
+                                   GS_TYPE_PLUGIN_LIST_APPS_FLAGS,
+                                   GS_PLUGIN_LIST_APPS_FLAGS_NONE,
+                                   G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
+                                   G_PARAM_STATIC_STRINGS | G_PARAM_EXPLICIT_NOTIFY);
+
+       g_object_class_install_properties (object_class, G_N_ELEMENTS (props), props);
+}
+
+static void
+gs_plugin_job_list_apps_init (GsPluginJobListApps *self)
+{
+}
 
 /**
  * gs_plugin_job_list_apps_new:
@@ -30,18 +463,30 @@ GsPluginJob *
 gs_plugin_job_list_apps_new (GsAppQuery            *query,
                              GsPluginListAppsFlags  flags)
 {
-       g_autofree gchar *search = NULL;
-       GsPluginRefineFlags refine_flags = GS_PLUGIN_REFINE_FLAGS_NONE;
-
        g_return_val_if_fail (query == NULL || GS_IS_APP_QUERY (query), NULL);
 
-       if (query != NULL && gs_app_query_get_provides_files (query) != NULL) {
-               search = g_strjoinv (" ", (gchar **) gs_app_query_get_provides_files (query));
-               refine_flags = gs_app_query_get_refine_flags (query);
-       }
+       return g_object_new (GS_TYPE_PLUGIN_JOB_LIST_APPS,
+                            "query", query,
+                            "flags", flags,
+                            NULL);
+}
+
+/**
+ * gs_plugin_job_list_apps_get_result_list:
+ * @self: a #GsPluginJobListApps
+ *
+ * Get the full list of apps matching the query.
+ *
+ * If this is called before the job is complete, %NULL will be returned.
+ *
+ * Returns: (transfer none) (nullable): the job results, or %NULL on error
+ *   or if called before the job has completed
+ * Since: 43
+ */
+GsAppList *
+gs_plugin_job_list_apps_get_result_list (GsPluginJobListApps *self)
+{
+       g_return_val_if_fail (GS_IS_PLUGIN_JOB_LIST_APPS (self), NULL);
 
-       return gs_plugin_job_newv (GS_PLUGIN_ACTION_SEARCH_FILES,
-                                  "search", search,
-                                  "refine-flags", refine_flags,
-                                  NULL);
+       return self->result_list;
 }
diff --git a/lib/gs-plugin-job-list-apps.h b/lib/gs-plugin-job-list-apps.h
index 23450c90c..e6aec4675 100644
--- a/lib/gs-plugin-job-list-apps.h
+++ b/lib/gs-plugin-job-list-apps.h
@@ -19,7 +19,13 @@
 
 G_BEGIN_DECLS
 
+#define GS_TYPE_PLUGIN_JOB_LIST_APPS (gs_plugin_job_list_apps_get_type ())
+
+G_DECLARE_FINAL_TYPE (GsPluginJobListApps, gs_plugin_job_list_apps, GS, PLUGIN_JOB_LIST_APPS, GsPluginJob)
+
 GsPluginJob    *gs_plugin_job_list_apps_new    (GsAppQuery            *query,
                                                 GsPluginListAppsFlags  flags);
 
+GsAppList      *gs_plugin_job_list_apps_get_result_list        (GsPluginJobListApps *self);
+
 G_END_DECLS
diff --git a/lib/gs-plugin-loader.c b/lib/gs-plugin-loader.c
index b8c274e7f..b088196f8 100644
--- a/lib/gs-plugin-loader.c
+++ b/lib/gs-plugin-loader.c
@@ -3884,6 +3884,10 @@ run_job_cb (GObject      *source_object,
                GsAppList *list = gs_plugin_job_list_installed_apps_get_result_list 
(GS_PLUGIN_JOB_LIST_INSTALLED_APPS (plugin_job));
                g_task_return_pointer (task, g_object_ref (list), (GDestroyNotify) g_object_unref);
                return;
+       } else if (GS_IS_PLUGIN_JOB_LIST_APPS (plugin_job)) {
+               GsAppList *list = gs_plugin_job_list_apps_get_result_list (GS_PLUGIN_JOB_LIST_APPS 
(plugin_job));
+               g_task_return_pointer (task, g_object_ref (list), (GDestroyNotify) g_object_unref);
+               return;
        } else if (GS_IS_PLUGIN_JOB_LIST_DISTRO_UPGRADES (plugin_job)) {
                GsAppList *list = gs_plugin_job_list_distro_upgrades_get_result_list 
(GS_PLUGIN_JOB_LIST_DISTRO_UPGRADES (plugin_job));
                g_task_return_pointer (task, g_object_ref (list), (GDestroyNotify) g_object_unref);


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