Files
flatpak/lib/flatpak-related-ref.c
Philip Withnall c4819af5a0 common: Support collection IDs for related refs and extensions
Add support for collection IDs to the code which finds and pulls
related refs and other extensions.

Currently, related refs must have the same collection ID as the parent
ref — this is the most likely scenario anyway. In future, it should be
possible to extend the code to support pulling related refs from other
collections.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
2017-08-18 14:23:03 +02:00

261 lines
7.7 KiB
C

/*
* Copyright © 2015 Red Hat, Inc
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Alexander Larsson <alexl@redhat.com>
*/
#include "config.h"
#include <string.h>
#include "flatpak-utils.h"
#include "flatpak-related-ref.h"
#include "flatpak-related-ref-private.h"
#include "flatpak-enum-types.h"
/**
* SECTION:flatpak-related-ref
* @Title: FlatpakRelatedRef
* @Short_description: Related application reference
*
* A FlatpakRelatedRef provides information about an ref that is related
* to another ref. For instance, the local extension ref of an app.
*
* Since: 0.6.7
*/
typedef struct _FlatpakRelatedRefPrivate FlatpakRelatedRefPrivate;
struct _FlatpakRelatedRefPrivate
{
char **subpaths;
gboolean download;
gboolean delete;
};
G_DEFINE_TYPE_WITH_PRIVATE (FlatpakRelatedRef, flatpak_related_ref, FLATPAK_TYPE_REF)
enum {
PROP_0,
PROP_SUBPATHS,
PROP_SHOULD_DOWNLOAD,
PROP_SHOULD_DELETE,
};
static void
flatpak_related_ref_finalize (GObject *object)
{
FlatpakRelatedRef *self = FLATPAK_RELATED_REF (object);
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
g_strfreev (priv->subpaths);
G_OBJECT_CLASS (flatpak_related_ref_parent_class)->finalize (object);
}
static void
flatpak_related_ref_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
FlatpakRelatedRef *self = FLATPAK_RELATED_REF (object);
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
switch (prop_id)
{
case PROP_SHOULD_DOWNLOAD:
priv->download = g_value_get_boolean (value);
break;
case PROP_SHOULD_DELETE:
priv->delete = g_value_get_boolean (value);
break;
case PROP_SUBPATHS:
g_clear_pointer (&priv->subpaths, g_strfreev);
priv->subpaths = g_strdupv (g_value_get_boxed (value));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
flatpak_related_ref_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
FlatpakRelatedRef *self = FLATPAK_RELATED_REF (object);
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
switch (prop_id)
{
case PROP_SHOULD_DOWNLOAD:
g_value_set_boolean (value, priv->download);
break;
case PROP_SHOULD_DELETE:
g_value_set_boolean (value, priv->delete);
break;
case PROP_SUBPATHS:
g_value_set_boxed (value, priv->subpaths);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
flatpak_related_ref_class_init (FlatpakRelatedRefClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->get_property = flatpak_related_ref_get_property;
object_class->set_property = flatpak_related_ref_set_property;
object_class->finalize = flatpak_related_ref_finalize;
g_object_class_install_property (object_class,
PROP_SHOULD_DOWNLOAD,
g_param_spec_boolean ("should-download",
"Should download",
"Whether to auto-download the ref with the main ref",
FALSE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class,
PROP_SHOULD_DELETE,
g_param_spec_boolean ("should-delete",
"Should delete",
"Whether to auto-delete the ref with the main ref",
FALSE,
G_PARAM_READWRITE));
g_object_class_install_property (object_class,
PROP_SUBPATHS,
g_param_spec_boxed ("subpaths",
"",
"",
G_TYPE_STRV,
G_PARAM_READWRITE));
}
static void
flatpak_related_ref_init (FlatpakRelatedRef *self)
{
}
/**
* flatpak_related_ref_get_download:
* @self: a #FlatpakRelatedRef
*
* Returns whether to auto-download the ref with the main ref.
*
* Returns: %TRUE if the ref should be downloaded with the main ref.
*
* Since: 0.6.7
*/
gboolean
flatpak_related_ref_should_download (FlatpakRelatedRef *self)
{
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
return priv->download;
}
/**
* flatpak_related_ref_should_delete:
* @self: a #FlatpakRelatedRef
*
* Returns whether to auto-delete the ref with the main ref.
*
* Returns: %TRUE if the ref should be deleted with the main ref.
*
* Since: 0.6.7
*/
gboolean
flatpak_related_ref_should_delete (FlatpakRelatedRef *self)
{
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
return priv->delete;
}
/**
* flatpak_related_ref_get_subpaths:
* @self: a #FlatpakRelatedRef
*
* Returns the subpaths that should be installed/updated for the ref.
* This returns %NULL if all files should be installed.
*
* Returns: (transfer none): A strv, or %NULL
*
* Since: 0.6.7
*/
const char * const *
flatpak_related_ref_get_subpaths (FlatpakRelatedRef *self)
{
FlatpakRelatedRefPrivate *priv = flatpak_related_ref_get_instance_private (self);
return (const char * const *) priv->subpaths;
}
FlatpakRelatedRef *
flatpak_related_ref_new (const char *collection_id,
const char *full_ref,
const char *commit,
char **subpaths,
gboolean download,
gboolean delete)
{
FlatpakRefKind kind = FLATPAK_REF_KIND_APP;
FlatpakRelatedRef *ref;
g_auto(GStrv) parts = NULL;
parts = g_strsplit (full_ref, "/", -1);
if (strcmp (parts[0], "app") != 0)
kind = FLATPAK_REF_KIND_RUNTIME;
/* Canonicalize the "no subpaths" case */
if (subpaths && *subpaths == NULL)
subpaths = NULL;
ref = g_object_new (FLATPAK_TYPE_RELATED_REF,
"kind", kind,
"name", parts[1],
"arch", parts[2],
"branch", parts[3],
"commit", commit,
"subpaths", subpaths,
"should-download", download,
"should-delete", delete,
#ifdef FLATPAK_ENABLE_P2P
"collection-id", collection_id,
#endif /* FLATPAK_ENABLE_P2P */
NULL);
return ref;
}