/* * 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 . * * Authors: * Alexander Larsson */ #if !defined(__FLATPAK_H_INSIDE__) && !defined(FLATPAK_COMPILATION) #error "Only can be included directly." #endif #ifndef __FLATPAK_INSTALLATION_H__ #define __FLATPAK_INSTALLATION_H__ typedef struct _FlatpakInstallation FlatpakInstallation; #include #include #include #define FLATPAK_TYPE_INSTALLATION flatpak_installation_get_type () #define FLATPAK_INSTALLATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), FLATPAK_TYPE_INSTALLATION, FlatpakInstallation)) #define FLATPAK_IS_INSTALLATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), FLATPAK_TYPE_INSTALLATION)) FLATPAK_EXTERN GType flatpak_installation_get_type (void); struct _FlatpakInstallation { GObject parent; }; typedef struct { GObjectClass parent_class; } FlatpakInstallationClass; /** * FlatpakUpdateFlags: * @FLATPAK_UPDATE_FLAGS_NONE: Fetch remote builds and install the latest one (default) * @FLATPAK_UPDATE_FLAGS_NO_DEPLOY: Don't install any new builds that might be fetched * @FLATPAK_UPDATE_FLAGS_NO_PULL: Don't try to fetch new builds from the remote repo * * Flags to alter the behavior of flatpak_installation_update(). */ typedef enum { FLATPAK_UPDATE_FLAGS_NONE = 0, FLATPAK_UPDATE_FLAGS_NO_DEPLOY = (1 << 0), FLATPAK_UPDATE_FLAGS_NO_PULL = (1 << 1), } FlatpakUpdateFlags; #ifdef G_DEFINE_AUTOPTR_CLEANUP_FUNC G_DEFINE_AUTOPTR_CLEANUP_FUNC (FlatpakInstallation, g_object_unref) #endif FLATPAK_EXTERN const char *flatpak_get_default_arch (void); FLATPAK_EXTERN FlatpakInstallation *flatpak_installation_new_system (GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstallation *flatpak_installation_new_user (GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstallation *flatpak_installation_new_for_path (GFile *path, gboolean user, GCancellable *cancellable, GError **error); /** * FlatpakProgressCallback: * @status: A status string, suitable for display * @progress: percentage of completion * @estimating: whether @progress is just an estimate * @user_data: User data passed to the caller * * The progress callback is called repeatedly during long-running operations * such as installations or updates, and can be used to update progress information * in a user interface. * * The callback occurs in the thread-default context of the caller. */ typedef void (*FlatpakProgressCallback)(const char *status, guint progress, gboolean estimating, gpointer user_data); FLATPAK_EXTERN gboolean flatpak_installation_drop_caches (FlatpakInstallation *self, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_get_is_user (FlatpakInstallation *self); FLATPAK_EXTERN GFile *flatpak_installation_get_path (FlatpakInstallation *self); FLATPAK_EXTERN gboolean flatpak_installation_launch (FlatpakInstallation *self, const char *name, const char *arch, const char *branch, const char *commit, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GFileMonitor *flatpak_installation_create_monitor (FlatpakInstallation *self, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GPtrArray *flatpak_installation_list_installed_refs (FlatpakInstallation *self, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GPtrArray *flatpak_installation_list_installed_refs_by_kind (FlatpakInstallation *self, FlatpakRefKind kind, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GPtrArray *flatpak_installation_list_installed_refs_for_update (FlatpakInstallation *self, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstalledRef * flatpak_installation_get_installed_ref (FlatpakInstallation *self, FlatpakRefKind kind, const char *name, const char *arch, const char *branch, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstalledRef * flatpak_installation_get_current_installed_app (FlatpakInstallation *self, const char *name, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GPtrArray *flatpak_installation_list_remotes (FlatpakInstallation *self, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakRemote *flatpak_installation_get_remote_by_name (FlatpakInstallation *self, const gchar *name, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_modify_remote (FlatpakInstallation *self, FlatpakRemote *remote, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_remove_remote (FlatpakInstallation *self, const char *name, GCancellable *cancellable, GError **error); FLATPAK_EXTERN char * flatpak_installation_load_app_overrides (FlatpakInstallation *self, const char *app_id, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstalledRef * flatpak_installation_install (FlatpakInstallation *self, const char *remote_name, FlatpakRefKind kind, const char *name, const char *arch, const char *branch, FlatpakProgressCallback progress, gpointer progress_data, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstalledRef * flatpak_installation_update (FlatpakInstallation *self, FlatpakUpdateFlags flags, FlatpakRefKind kind, const char *name, const char *arch, const char *branch, FlatpakProgressCallback progress, gpointer progress_data, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakInstalledRef * flatpak_installation_install_bundle (FlatpakInstallation *self, GFile *file, FlatpakProgressCallback progress, gpointer progress_data, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_uninstall (FlatpakInstallation *self, FlatpakRefKind kind, const char *name, const char *arch, const char *branch, FlatpakProgressCallback progress, gpointer progress_data, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_fetch_remote_size_sync (FlatpakInstallation *self, const char *remote_name, FlatpakRef *ref, guint64 *download_size, guint64 *installed_size, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GBytes * flatpak_installation_fetch_remote_metadata_sync (FlatpakInstallation *self, const char *remote_name, FlatpakRef *ref, GCancellable *cancellable, GError **error); FLATPAK_EXTERN GPtrArray * flatpak_installation_list_remote_refs_sync (FlatpakInstallation *self, const char *remote_name, GCancellable *cancellable, GError **error); FLATPAK_EXTERN FlatpakRemoteRef *flatpak_installation_fetch_remote_ref_sync (FlatpakInstallation *self, const char *remote_name, FlatpakRefKind kind, const char *name, const char *arch, const char *branch, GCancellable *cancellable, GError **error); FLATPAK_EXTERN gboolean flatpak_installation_update_appstream_sync (FlatpakInstallation *self, const char *remote_name, const char *arch, gboolean *out_changed, GCancellable *cancellable, GError **error); #endif /* __FLATPAK_INSTALLATION_H__ */