summaryrefslogtreecommitdiff
path: root/src/libostree/ostree-ref.h
blob: 384b8480fa34ba7ad1ece5dae91482c65ad1755e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/*
 * Copyright © 2017 Endless Mobile, Inc.
 *
 * SPDX-License-Identifier: LGPL-2.0+
 *
 * This library 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 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 <https://www.gnu.org/licenses/>.
 *
 * Authors:
 *  - Philip Withnall <withnall@endlessm.com>
 */

#pragma once

#include <gio/gio.h>
#include <glib.h>
#include <glib-object.h>

#include "ostree-types.h"

G_BEGIN_DECLS

/**
 * OstreeCollectionRef:
 * @collection_id: (nullable): collection ID which provided the ref, or %NULL if there
 *    is no associated collection
 * @ref_name: ref name
 *
 * A structure which globally uniquely identifies a ref as the tuple
 * (@collection_id, @ref_name). For backwards compatibility, @collection_id may be %NULL,
 * indicating a ref name which is not globally unique.
 *
 * Since: 2018.6
 */
typedef struct
{
  gchar *collection_id;  /* (nullable) */
  gchar *ref_name;  /* (not nullable) */
} OstreeCollectionRef;

_OSTREE_PUBLIC
GType ostree_collection_ref_get_type (void);

_OSTREE_PUBLIC
OstreeCollectionRef *ostree_collection_ref_new (const gchar *collection_id,
                                                const gchar *ref_name);
_OSTREE_PUBLIC
OstreeCollectionRef *ostree_collection_ref_dup (const OstreeCollectionRef *ref);
_OSTREE_PUBLIC
void ostree_collection_ref_free (OstreeCollectionRef *ref);

_OSTREE_PUBLIC
guint ostree_collection_ref_hash (gconstpointer ref);
_OSTREE_PUBLIC
gboolean ostree_collection_ref_equal (gconstpointer ref1,
                                      gconstpointer ref2);

_OSTREE_PUBLIC
OstreeCollectionRef **ostree_collection_ref_dupv (const OstreeCollectionRef * const *refs);
_OSTREE_PUBLIC
void ostree_collection_ref_freev (OstreeCollectionRef **refs);

/**
 * OstreeCollectionRefv:
 *
 * A %NULL-terminated array of #OstreeCollectionRef instances, designed to
 * be used with g_auto():
 *
 * |[<!-- language="C" -->
 * g_auto(OstreeCollectionRefv) refs = NULL;
 * ]|
 *
 * Since: 2018.6
 */
typedef OstreeCollectionRef** OstreeCollectionRefv;

G_END_DECLS