[gnome-software/1271-40-2-flatpaks-not-updated-despite-notification: 23/24] gs-plugin-loader: Make it easier to claim (not only) job errors




commit 97e687560a8e52a050dcc5bfc43c27352ab42c2b
Author: Milan Crha <mcrha redhat com>
Date:   Tue Jun 29 14:31:23 2021 +0200

    gs-plugin-loader: Make it easier to claim (not only) job errors
    
    Added functions to avoid code duplication with respect of reporting
    not only job errors and use it.

 lib/gs-plugin-loader.c | 160 ++++++++++++++++++++++++++++++++++---------------
 lib/gs-plugin-loader.h |  10 ++++
 src/gs-page.c          |  19 ++----
 3 files changed, 127 insertions(+), 62 deletions(-)
---
diff --git a/lib/gs-plugin-loader.c b/lib/gs-plugin-loader.c
index 056171e40..505543a64 100644
--- a/lib/gs-plugin-loader.c
+++ b/lib/gs-plugin-loader.c
@@ -332,38 +332,126 @@ gs_plugin_loader_add_event (GsPluginLoader *plugin_loader, GsPluginEvent *event)
        g_idle_add (gs_plugin_loader_notify_idle_cb, plugin_loader);
 }
 
-static GsPluginEvent *
-gs_plugin_job_to_failed_event (GsPluginJob *plugin_job, const GError *error)
+/**
+ * gs_plugin_loader_claim_error:
+ * @plugin_loader: a #GsPluginLoader
+ * @plugin: (nullable): a #GsPlugin to get an application from, or %NULL
+ * @action: a #GsPluginAction associated with the @error
+ * @app: (nullable): a #GsApp for the event, or %NULL
+ * @interactive: whether to set interactive flag
+ * @error: a #GError to claim
+ *
+ * Convert the @error into a plugin event and add it to the queue.
+ *
+ * The @plugin is used only if the @error contains a reference
+ * to a concrete application, in which case any cached application
+ * overrides the passed in @app.
+ *
+ * The 'cancelled' errors are automatically ignored.
+ *
+ * Since: 41
+ **/
+void
+gs_plugin_loader_claim_error (GsPluginLoader *plugin_loader,
+                             GsPlugin *plugin,
+                             GsPluginAction action,
+                             GsApp *app,
+                             gboolean interactive,
+                             const GError *error)
 {
-       GsPluginEvent *event;
        g_autoptr(GError) error_copy = NULL;
+       g_autofree gchar *app_id = NULL;
+       g_autofree gchar *origin_id = NULL;
+       g_autoptr(GsPluginEvent) event = NULL;
+
+       g_return_if_fail (GS_IS_PLUGIN_LOADER (plugin_loader));
+       g_return_if_fail (error != NULL);
+
+       if (g_error_matches (error, GS_PLUGIN_ERROR, GS_PLUGIN_ERROR_CANCELLED) ||
+           g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED))
+               return;
+
+       /* find and strip any unique IDs from the error message */
+       error_copy = g_error_copy (error);
 
-       g_return_val_if_fail (error != NULL, NULL);
+       for (guint i = 0; i < 2; i++) {
+               if (app_id == NULL)
+                       app_id = gs_utils_error_strip_app_id (error_copy);
+               if (origin_id == NULL)
+                       origin_id = gs_utils_error_strip_origin_id (error_copy);
+       }
 
        /* invalid */
-       if (error->domain != GS_PLUGIN_ERROR) {
+       if (error_copy->domain != GS_PLUGIN_ERROR) {
                g_warning ("not GsPlugin error %s:%i: %s",
-                          g_quark_to_string (error->domain),
-                          error->code,
-                          error->message);
-               g_set_error_literal (&error_copy,
-                                    GS_PLUGIN_ERROR,
-                                    GS_PLUGIN_ERROR_FAILED,
-                                    error->message);
-       } else {
-               error_copy = g_error_copy (error);
+                          g_quark_to_string (error_copy->domain),
+                          error_copy->code,
+                          error_copy->message);
+               error_copy->domain = GS_PLUGIN_ERROR;
+               error_copy->code = GS_PLUGIN_ERROR_FAILED;
        }
 
-       /* create plugin event */
+       /* create event which is handled by the GsShell */
        event = gs_plugin_event_new ();
        gs_plugin_event_set_error (event, error_copy);
-       gs_plugin_event_set_action (event, gs_plugin_job_get_action (plugin_job));
-       if (gs_plugin_job_get_app (plugin_job) != NULL)
-               gs_plugin_event_set_app (event, gs_plugin_job_get_app (plugin_job));
-       if (gs_plugin_job_get_interactive (plugin_job))
+       gs_plugin_event_set_action (event, action);
+       if (app != NULL)
+               gs_plugin_event_set_app (event, app);
+       if (interactive)
                gs_plugin_event_add_flag (event, GS_PLUGIN_EVENT_FLAG_INTERACTIVE);
        gs_plugin_event_add_flag (event, GS_PLUGIN_EVENT_FLAG_WARNING);
-       return event;
+
+       /* set the app and origin IDs if we managed to scrape them from the error above */
+       if (plugin != NULL && as_utils_data_id_valid (app_id)) {
+               g_autoptr(GsApp) cached_app = gs_plugin_cache_lookup (plugin, app_id);
+               if (cached_app != NULL) {
+                       g_debug ("found app %s in error", app_id);
+                       gs_plugin_event_set_app (event, cached_app);
+               } else {
+                       g_debug ("no unique ID found for app %s", app_id);
+               }
+       }
+       if (plugin != NULL && as_utils_data_id_valid (origin_id)) {
+               g_autoptr(GsApp) origin = gs_plugin_cache_lookup (plugin, origin_id);
+               if (origin != NULL) {
+                       g_debug ("found origin %s in error", origin_id);
+                       gs_plugin_event_set_origin (event, origin);
+               } else {
+                       g_debug ("no unique ID found for origin %s", origin_id);
+               }
+       }
+
+       /* add event to the queue */
+       gs_plugin_loader_add_event (plugin_loader, event);
+}
+
+/**
+ * gs_plugin_loader_claim_job_error:
+ * @plugin_loader: a #GsPluginLoader
+ * @plugin: (nullable): a #GsPlugin to get an application from, or %NULL
+ * @job: a #GsPluginJob for the @error
+ * @error: a #GError to claim
+ *
+ * The same as gs_plugin_loader_claim_error(), only reads the information
+ * from the @job.
+ *
+ * Since: 41
+ **/
+void
+gs_plugin_loader_claim_job_error (GsPluginLoader *plugin_loader,
+                                 GsPlugin *plugin,
+                                 GsPluginJob *job,
+                                 const GError *error)
+{
+       g_return_if_fail (GS_IS_PLUGIN_LOADER (plugin_loader));
+       g_return_if_fail (GS_IS_PLUGIN_JOB (job));
+       g_return_if_fail (error != NULL);
+
+       gs_plugin_loader_claim_error (plugin_loader, plugin,
+               gs_plugin_job_get_action (job),
+               gs_plugin_job_get_app (job),
+               gs_plugin_job_get_interactive (job),
+               error);
 }
 
 static gboolean
@@ -428,31 +516,8 @@ gs_plugin_error_handle_failure (GsPluginLoaderHelper *helper,
                return FALSE;
        }
 
-       /* create event which is handled by the GsShell */
-       event = gs_plugin_job_to_failed_event (helper->plugin_job, error_local_copy);
-
-       /* set the app and origin IDs if we managed to scrape them from the error above */
-       if (as_utils_data_id_valid (app_id)) {
-               g_autoptr(GsApp) app = gs_plugin_cache_lookup (plugin, app_id);
-               if (app != NULL) {
-                       g_debug ("found app %s in error", origin_id);
-                       gs_plugin_event_set_app (event, app);
-               } else {
-                       g_debug ("no unique ID found for app %s", app_id);
-               }
-       }
-       if (as_utils_data_id_valid (origin_id)) {
-               g_autoptr(GsApp) origin = gs_plugin_cache_lookup (plugin, origin_id);
-               if (origin != NULL) {
-                       g_debug ("found origin %s in error", origin_id);
-                       gs_plugin_event_set_origin (event, origin);
-               } else {
-                       g_debug ("no unique ID found for origin %s", origin_id);
-               }
-       }
+       gs_plugin_loader_claim_job_error (helper->plugin_loader, plugin, helper->plugin_job, error_local);
 
-       /* add event to queue */
-       gs_plugin_loader_add_event (helper->plugin_loader, event);
        return TRUE;
 }
 
@@ -3473,11 +3538,8 @@ gs_plugin_loader_process_thread_cb (GTask *task,
                                     GS_PLUGIN_ERROR,
                                     GS_PLUGIN_ERROR_NOT_SUPPORTED,
                                     "no application was created for %s", str);
-                       if (!gs_plugin_job_get_propagate_error (helper->plugin_job)) {
-                               g_autoptr(GsPluginEvent) event = NULL;
-                               event = gs_plugin_job_to_failed_event (helper->plugin_job, error_local);
-                               gs_plugin_loader_add_event (plugin_loader, event);
-                       }
+                       if (!gs_plugin_job_get_propagate_error (helper->plugin_job))
+                               gs_plugin_loader_claim_job_error (plugin_loader, NULL, helper->plugin_job, 
error_local);
                        g_task_return_error (task, g_steal_pointer (&error_local));
                        return;
                }
diff --git a/lib/gs-plugin-loader.h b/lib/gs-plugin-loader.h
index 8949d1709..960795598 100644
--- a/lib/gs-plugin-loader.h
+++ b/lib/gs-plugin-loader.h
@@ -85,5 +85,15 @@ void            gs_plugin_loader_set_max_parallel_ops  (GsPluginLoader *plugin_l
                                                         guint           max_ops);
 
 GsCategoryManager *gs_plugin_loader_get_category_manager (GsPluginLoader *plugin_loader);
+void            gs_plugin_loader_claim_error           (GsPluginLoader *plugin_loader,
+                                                        GsPlugin *plugin,
+                                                        GsPluginAction action,
+                                                        GsApp *app,
+                                                        gboolean interactive,
+                                                        const GError *error);
+void            gs_plugin_loader_claim_job_error       (GsPluginLoader *plugin_loader,
+                                                        GsPlugin *plugin,
+                                                        GsPluginJob *job,
+                                                        const GError *error);
 
 G_END_DECLS
diff --git a/src/gs-page.c b/src/gs-page.c
index a09f04cc0..8792852f9 100644
--- a/src/gs-page.c
+++ b/src/gs-page.c
@@ -146,19 +146,12 @@ gs_page_app_installed_cb (GObject *source,
        }
        if (!ret) {
                if (helper->propagate_error) {
-                       g_autoptr(GsPluginEvent) event = NULL;
-
-                       /* create event which is handled by the GsShell */
-                       event = gs_plugin_event_new ();
-                       gs_plugin_event_set_error (event, error);
-                       gs_plugin_event_set_action (event, helper->action);
-                       gs_plugin_event_set_app (event, helper->app);
-                       if (helper->interaction == GS_SHELL_INTERACTION_FULL)
-                               gs_plugin_event_add_flag (event, GS_PLUGIN_EVENT_FLAG_INTERACTIVE);
-                       gs_plugin_event_add_flag (event, GS_PLUGIN_EVENT_FLAG_WARNING);
-
-                       /* add event to queue */
-                       gs_plugin_loader_add_event (plugin_loader, event);
+                       gs_plugin_loader_claim_error (plugin_loader,
+                                                     NULL,
+                                                     helper->action,
+                                                     helper->app,
+                                                     helper->interaction == GS_SHELL_INTERACTION_FULL,
+                                                     error);
                } else {
                        g_warning ("failed to install %s: %s", gs_app_get_id (helper->app), error->message);
                }


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