[gnome-software: 3/20] appstream: Port gs_plugin_add_search() vfunc to GsPluginJobListApps
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-software: 3/20] appstream: Port gs_plugin_add_search() vfunc to GsPluginJobListApps
- Date: Mon, 11 Jul 2022 08:41:48 +0000 (UTC)
commit f0965d7cd0f18a5c7e7f75f871dbb1b2eb570571
Author: Philip Withnall <pwithnall endlessos org>
Date: Fri Jul 1 16:34:05 2022 +0100
appstream: Port gs_plugin_add_search() vfunc to GsPluginJobListApps
Signed-off-by: Philip Withnall <pwithnall endlessos org>
Helps: #1472
plugins/core/gs-plugin-appstream.c | 33 ++++++++++-----------------------
1 file changed, 10 insertions(+), 23 deletions(-)
---
diff --git a/plugins/core/gs-plugin-appstream.c b/plugins/core/gs-plugin-appstream.c
index 7755a177b..b0d057a25 100644
--- a/plugins/core/gs-plugin-appstream.c
+++ b/plugins/core/gs-plugin-appstream.c
@@ -1335,28 +1335,6 @@ refine_wildcard (GsPluginAppstream *self,
return TRUE;
}
-gboolean
-gs_plugin_add_search (GsPlugin *plugin,
- gchar **values,
- GsAppList *list,
- GCancellable *cancellable,
- GError **error)
-{
- GsPluginAppstream *self = GS_PLUGIN_APPSTREAM (plugin);
- g_autoptr(GRWLockReaderLocker) locker = NULL;
-
- if (!gs_plugin_appstream_check_silo (self, cancellable, error))
- return FALSE;
-
- locker = g_rw_lock_reader_locker_new (&self->silo_lock);
- return gs_appstream_search (plugin,
- self->silo,
- (const gchar * const *) values,
- list,
- cancellable,
- error);
-}
-
gboolean
gs_plugin_add_categories (GsPlugin *plugin,
GPtrArray *list,
@@ -1419,6 +1397,7 @@ list_apps_thread_cb (GTask *task,
guint64 age_secs = 0;
const gchar * const *deployment_featured = NULL;
const gchar * const *developers = NULL;
+ const gchar * const *keywords = NULL;
g_autoptr(GError) local_error = NULL;
assert_in_worker (self);
@@ -1431,6 +1410,7 @@ list_apps_thread_cb (GTask *task,
is_installed = gs_app_query_get_is_installed (data->query);
deployment_featured = gs_app_query_get_deployment_featured (data->query);
developers = gs_app_query_get_developers (data->query);
+ keywords = gs_app_query_get_keywords (data->query);
}
if (released_since != NULL) {
g_autoptr(GDateTime) now = g_date_time_new_now_utc ();
@@ -1445,7 +1425,8 @@ list_apps_thread_cb (GTask *task,
category == NULL &&
is_installed == GS_APP_QUERY_TRISTATE_UNSET &&
deployment_featured == NULL &&
- developers == NULL) ||
+ developers == NULL &&
+ keywords == NULL) ||
is_curated == GS_APP_QUERY_TRISTATE_FALSE ||
is_featured == GS_APP_QUERY_TRISTATE_FALSE ||
is_installed == GS_APP_QUERY_TRISTATE_FALSE ||
@@ -1507,6 +1488,12 @@ list_apps_thread_cb (GTask *task,
return;
}
+ if (keywords != NULL &&
+ !gs_appstream_search (GS_PLUGIN (self), self->silo, keywords, list, cancellable, &local_error)) {
+ g_task_return_error (task, g_steal_pointer (&local_error));
+ return;
+ }
+
g_task_return_pointer (task, g_steal_pointer (&list), g_object_unref);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]