summaryrefslogtreecommitdiff
path: root/lib/xdg-app-installed-ref.h
blob: 3fdf069806ec4759272818ef0d4feaf115af82b4 (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
/*
 * 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 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>
 */

#if !defined (__XDG_APP_H_INSIDE__) && !defined (XDG_APP_COMPILATION)
#error "Only <xdg-app.h> can be included directly."
#endif

#ifndef __XDG_APP_INSTALLED_REF_H__
#define __XDG_APP_INSTALLED_REF_H__

typedef struct _XdgAppInstalledRef XdgAppInstalledRef;

#include <gio/gio.h>
#include <xdg-app-ref.h>

#define XDG_APP_TYPE_INSTALLED_REF xdg_app_installed_ref_get_type()
#define XDG_APP_INSTALLED_REF(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), XDG_APP_TYPE_INSTALLED_REF, XdgAppInstalledRef))
#define XDG_APP_IS_INSTALLED_REF(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), XDG_APP_TYPE_INSTALLED_REF))

XDG_APP_EXTERN GType xdg_app_installed_ref_get_type (void);

struct _XdgAppInstalledRef {
  XdgAppRef parent;
};

typedef struct {
  XdgAppRefClass parent_class;
} XdgAppInstalledRefClass;

#ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC
G_DEFINE_AUTOPTR_CLEANUP_FUNC(XdgAppInstalledRef, g_object_unref)
#endif

XDG_APP_EXTERN const char  *xdg_app_installed_ref_get_origin         (XdgAppInstalledRef  *self);
XDG_APP_EXTERN const char **xdg_app_installed_ref_get_subpaths       (XdgAppInstalledRef  *self);
XDG_APP_EXTERN guint64      xdg_app_installed_ref_get_installed_size (XdgAppInstalledRef  *self);
XDG_APP_EXTERN const char  *xdg_app_installed_ref_get_deploy_dir     (XdgAppInstalledRef  *self);
XDG_APP_EXTERN const char  *xdg_app_installed_ref_get_latest_commit  (XdgAppInstalledRef  *self);
XDG_APP_EXTERN gboolean     xdg_app_installed_ref_get_is_current     (XdgAppInstalledRef  *self);
XDG_APP_EXTERN GBytes      *xdg_app_installed_ref_load_metadata      (XdgAppInstalledRef  *self,
                                                                     GCancellable        *cancellable,
                                                                     GError             **error);

#endif /* __XDG_APP_INSTALLED_REF_H__ */