Skip to content

Commit

Permalink
gs_plugin_add_sources: add caching support
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloyoyoista committed Dec 23, 2021
1 parent a496301 commit 742cd76
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/gs-plugin-apk/gs-plugin-apk.c
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,14 @@ gs_plugin_add_sources (GsPlugin *plugin,
description = g_strdup (g_variant_get_string (g_variant_get_child_value (value_tuple, 1), NULL));
url = g_strdup (g_variant_get_string (g_variant_get_child_value (value_tuple, 2), NULL));

app = gs_plugin_cache_lookup (plugin, url);
if (app)
{
gs_app_set_state (app, enabled ? GS_APP_STATE_INSTALLED : GS_APP_STATE_AVAILABLE);
gs_app_list_add (list, g_steal_pointer (&app));
continue;
}

g_debug ("Adding repository %s", url);

g_uri_split (url, G_URI_FLAGS_NONE, &url_scheme, NULL,
Expand Down Expand Up @@ -804,6 +812,7 @@ gs_plugin_add_sources (GsPlugin *plugin,
gs_app_set_url (app, AS_URL_KIND_HOMEPAGE, url);
gs_app_set_metadata (app, "apk::repo-url", url);
gs_app_set_management_plugin (app, "apk");
gs_plugin_cache_add (plugin, url, app);
gs_app_list_add (list, g_steal_pointer (&app));

g_strfreev (repo_parts);
Expand Down

0 comments on commit 742cd76

Please sign in to comment.