summary cache: Rename CachedSummary.remote to CachedSummary.name

This doesn't change the results but makes it more clear now that we don't
only use the remote name as the cache key.
This commit is contained in:
Alexander Larsson
2020-11-03 12:02:10 +01:00
committed by Alexander Larsson
parent 2486961014
commit a8fe3247e7

View File

@@ -194,7 +194,7 @@ typedef struct
{
GBytes *bytes;
GBytes *bytes_sig;
char *remote;
char *name;
char *url;
guint64 time;
} CachedSummary;
@@ -10827,7 +10827,7 @@ cached_summary_free (CachedSummary *summary)
g_bytes_unref (summary->bytes);
if (summary->bytes_sig)
g_bytes_unref (summary->bytes_sig);
g_free (summary->remote);
g_free (summary->name);
g_free (summary->url);
g_free (summary);
}
@@ -10835,7 +10835,7 @@ cached_summary_free (CachedSummary *summary)
static CachedSummary *
cached_summary_new (GBytes *bytes,
GBytes *bytes_sig,
const char *remote,
const char *name,
const char *url)
{
CachedSummary *summary = g_new0 (CachedSummary, 1);
@@ -10844,7 +10844,7 @@ cached_summary_new (GBytes *bytes,
if (bytes_sig)
summary->bytes_sig = g_bytes_ref (bytes_sig);
summary->url = g_strdup (url);
summary->remote = g_strdup (remote);
summary->name = g_strdup (name);
summary->time = g_get_monotonic_time ();
return summary;
}
@@ -10917,7 +10917,7 @@ flatpak_dir_cache_summary (FlatpakDir *self,
g_assert (self->summary_cache != NULL);
summary = cached_summary_new (bytes, bytes_sig, name, url);
g_hash_table_replace (self->summary_cache, summary->remote, summary);
g_hash_table_replace (self->summary_cache, summary->name, summary);
G_UNLOCK (cache);
}