libflatpak API Reference¶
Table of Contents
- Flatpak
- FlatpakInstallation — Installation information
- FlatpakRemote — Remote repository
- FlatpakTransactionOperation — Operation in a transaction
- FlatpakTransactionProgress — Progress of an operation
- FlatpakTransaction — Transaction information
- FlatpakRef — Application reference
- FlatpakInstalledRef — Installed application reference
- FlatpakRelatedRef — Related application reference
- FlatpakRemoteRef — Remote application reference
- FlatpakBundleRef — Application bundle reference
- FlatpakInstance — Information about a running sandbox
- Error codes
- Version information
- Object Hierarchy
- API Index
- Annotation Glossary
Table of Contents
- FlatpakInstallation — Installation information
- FlatpakRemote — Remote repository
- FlatpakTransactionOperation — Operation in a transaction
- FlatpakTransactionProgress — Progress of an operation
- FlatpakTransaction — Transaction information
- FlatpakRef — Application reference
- FlatpakInstalledRef — Installed application reference
- FlatpakRelatedRef — Related application reference
- FlatpakRemoteRef — Remote application reference
- FlatpakBundleRef — Application bundle reference
- FlatpakInstance — Information about a running sandbox
- Error codes
- Version information
Name
FlatpakInstallation — Installation information
Functions
Description
FlatpakInstallation is the toplevel object that software installers should use to operate on an flatpak applications.
An FlatpakInstallation object provides information about an installation location for flatpak applications. Typical installation locations are either system-wide (in $prefix/var/lib/flatpak) or per-user (in ~/.local/share/flatpak).
FlatpakInstallation can list configured remotes as well as installed application and runtime references (in short: refs), and it can add, remove and modify remotes.
FlatpakInstallation can also run, install, update and uninstall applications and runtimes, but FlatpakTransaction is a better, high-level API for these tasks.
To get a list of all configured installations, use flatpak_get_system_installations()
,
together with flatpak_installation_new_user()
.
The FlatpakInstallation API is threadsafe in the sense that it is safe to run two operations at the same time, in different threads (or processes).
Functions
flatpak_installation_new_system ()
FlatpakInstallation * flatpak_installation_new_system (GCancellable *cancellable
,GError **error
);
Creates a new FlatpakInstallation for the default system-wide installation.
flatpak_installation_new_system_with_id ()
FlatpakInstallation * flatpak_installation_new_system_with_id (const char *id
,GCancellable *cancellable
,GError **error
);
Creates a new FlatpakInstallation for the system-wide installation id
.
Parameters
id | the ID of the system-wide installation. | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 0.8
flatpak_installation_new_user ()
FlatpakInstallation * flatpak_installation_new_user (GCancellable *cancellable
,GError **error
);
Creates a new FlatpakInstallation for the per-user installation.
flatpak_installation_new_for_path ()
FlatpakInstallation * flatpak_installation_new_for_path (GFile *path
,gboolean user
,GCancellable *cancellable
,GError **error
);
Creates a new FlatpakInstallation for the installation at the given path
.
Parameters
path | a GFile | |
user | whether this is a user-specific location | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_get_is_user ()
gboolean
flatpak_installation_get_is_user (FlatpakInstallation *self
);
Returns whether the installation is for a user-specific location.
flatpak_installation_get_path ()
GFile *
flatpak_installation_get_path (FlatpakInstallation *self
);
Returns the installation location for self
.
flatpak_installation_create_monitor ()
GFileMonitor * flatpak_installation_create_monitor (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Gets monitor object for the installation. The returned file monitor will emit the “changed” signal whenever an application or runtime was installed, uninstalled or updated.
flatpak_installation_install ()
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
);
Install a new application or runtime.
Note that this function was originally written to always return a FlatpakInstalledRef. Since 0.9.13, passing FLATPAK_INSTALL_FLAGS_NO_DEPLOY will only pull refs into the local flatpak repository without deploying them, however this function will be unable to provide information on the installed ref, so FLATPAK_ERROR_ONLY_PULLED will be set and the caller must respond accordingly.
Parameters
self | ||
remote_name | name of the remote to use | |
kind | what this ref contains (an FlatpakRefKind) | |
name | name of the app/runtime to fetch | |
arch | which architecture to fetch (default: current architecture). | [nullable] |
branch | which branch to fetch (default: 'master'). | [nullable] |
progress | progress callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_install_full ()
FlatpakInstalledRef * flatpak_installation_install_full (FlatpakInstallation *self
,FlatpakInstallFlags flags
,const char *remote_name
,FlatpakRefKind kind
,const char *name
,const char *arch
,const char *branch
,const char * const *subpaths
,FlatpakProgressCallback progress
,gpointer progress_data
,GCancellable *cancellable
,GError **error
);
Install a new application or runtime.
Note that this function was originally written to always return a FlatpakInstalledRef. Since 0.9.13, passing FLATPAK_INSTALL_FLAGS_NO_DEPLOY will only pull refs into the local flatpak repository without deploying them, however this function will be unable to provide information on the installed ref, so FLATPAK_ERROR_ONLY_PULLED will be set and the caller must respond accordingly.
Parameters
self | ||
flags | set of FlatpakInstallFlags flag | |
remote_name | name of the remote to use | |
kind | what this ref contains (an FlatpakRefKind) | |
name | name of the app/runtime to fetch | |
arch | which architecture to fetch (default: current architecture). | [nullable] |
branch | which branch to fetch (default: 'master'). | [nullable] |
subpaths | A list of subpaths to fetch, or | [nullable][array zero-terminated=1] |
progress | progress callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_update ()
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
);
Update an application or runtime.
If the specified package is not installed, then FLATPAK_ERROR_NOT_INSTALLED
will be thrown.
If no updates could be found on the remote end and the package is
already up to date, then FLATPAK_ERROR_ALREADY_INSTALLED
will be thrown.
Parameters
self | ||
flags | set of FlatpakUpdateFlags flag | |
kind | whether this is an app or runtime | |
name | name of the app or runtime to update | |
arch | architecture of the app or runtime to update (default: current architecture). | [nullable] |
branch | name of the branch of the app or runtime to update (default: master). | [nullable] |
progress | the callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_update_full ()
FlatpakInstalledRef * flatpak_installation_update_full (FlatpakInstallation *self
,FlatpakUpdateFlags flags
,FlatpakRefKind kind
,const char *name
,const char *arch
,const char *branch
,const char * const *subpaths
,FlatpakProgressCallback progress
,gpointer progress_data
,GCancellable *cancellable
,GError **error
);
Update an application or runtime.
If the specified package is not installed, then FLATPAK_ERROR_NOT_INSTALLED
will be thrown.
If no updates could be found on the remote end and the package is
already up to date, then FLATPAK_ERROR_ALREADY_INSTALLED
will be thrown.
Parameters
self | ||
flags | set of FlatpakUpdateFlags flag | |
kind | whether this is an app or runtime | |
name | name of the app or runtime to update | |
arch | architecture of the app or runtime to update (default: current architecture). | [nullable] |
branch | name of the branch of the app or runtime to update (default: master). | [nullable] |
subpaths | A list of subpaths to fetch, or | [nullable][array zero-terminated=1] |
progress | the callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_uninstall ()
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
);
Uninstall an application or runtime.
Parameters
self | ||
kind | what this ref contains (an FlatpakRefKind) | |
name | name of the app or runtime to uninstall | |
arch | architecture of the app or runtime to uninstall; if
| [nullable] |
branch | name of the branch of the app or runtime to uninstall;
if | [nullable] |
progress | the callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_uninstall_full ()
gboolean flatpak_installation_uninstall_full (FlatpakInstallation *self
,FlatpakUninstallFlags flags
,FlatpakRefKind kind
,const char *name
,const char *arch
,const char *branch
,FlatpakProgressCallback progress
,gpointer progress_data
,GCancellable *cancellable
,GError **error
);
Uninstall an application or runtime.
Parameters
self | ||
flags | set of FlatpakUninstallFlags flags | |
kind | what this ref contains (an FlatpakRefKind) | |
name | name of the app or runtime to uninstall | |
arch | architecture of the app or runtime to uninstall; if
| [nullable] |
branch | name of the branch of the app or runtime to uninstall;
if | [nullable] |
progress | the callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 0.11.8
flatpak_installation_launch ()
gboolean flatpak_installation_launch (FlatpakInstallation *self
,const char *name
,const char *arch
,const char *branch
,const char *commit
,GCancellable *cancellable
,GError **error
);
Launch an installed application.
You can use flatpak_installation_get_installed_ref()
or
flatpak_installation_get_current_installed_app()
to find out what builds
are available, in order to get a value for commit
.
Parameters
self | ||
name | name of the app to launch | |
arch | which architecture to launch (default: current architecture). | [nullable] |
branch | which branch of the application (default: "master"). | [nullable] |
commit | the commit of | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_launch_full ()
gboolean flatpak_installation_launch_full (FlatpakInstallation *self
,FlatpakLaunchFlags flags
,const char *name
,const char *arch
,const char *branch
,const char *commit
,FlatpakInstance **instance_out
,GCancellable *cancellable
,GError **error
);
Launch an installed application.
You can use flatpak_installation_get_installed_ref()
or
flatpak_installation_get_current_installed_app()
to find out what builds
are available, in order to get a value for commit
.
Compared to flatpak_installation_launch()
, this function returns a FlatpakInstance
that can be used to get information about the running instance. You can also use
it to wait for the instance to be done with g_child_watch_add()
if you pass the
FLATPAK_LAUNCH_FLAGS_DO_NOT_REAP flag.
Parameters
self | ||
flags | set of FlatpakLaunchFlags | |
name | name of the app to launch | |
arch | which architecture to launch (default: current architecture). | [nullable] |
branch | which branch of the application (default: "master"). | [nullable] |
commit | the commit of | [nullable] |
instance_out | return location for a FlatpakInstance. | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 1.1
flatpak_installation_get_current_installed_app ()
FlatpakInstalledRef * flatpak_installation_get_current_installed_app (FlatpakInstallation *self
,const char *name
,GCancellable *cancellable
,GError **error
);
Get the last build of reference name
that was installed with
flatpak_installation_install()
, or NULL
if the reference has
never been installed locally.
Parameters
self | ||
name | the name of the app | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_get_display_name ()
const char *
flatpak_installation_get_display_name (FlatpakInstallation *self
);
Returns the display name of the installation for self
.
Note that this function may return NULL
if the installation
does not have a display name.
Since: 0.8
flatpak_installation_get_id ()
const char *
flatpak_installation_get_id (FlatpakInstallation *self
);
Returns the ID of the installation for self
.
The ID for the default system installation is "default". The ID for the user installation is "user".
Since: 0.8
flatpak_installation_get_installed_ref ()
FlatpakInstalledRef * flatpak_installation_get_installed_ref (FlatpakInstallation *self
,FlatpakRefKind kind
,const char *name
,const char *arch
,const char *branch
,GCancellable *cancellable
,GError **error
);
Returns information about an installed ref, such as the available builds, its size, location, etc.
Parameters
self | ||
kind | whether this is an app or runtime | |
name | name of the app/runtime to fetch | |
arch | which architecture to fetch (default: current architecture). | [nullable] |
branch | which branch to fetch (default: "master"). | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_get_min_free_space_bytes ()
gboolean flatpak_installation_get_min_free_space_bytes (FlatpakInstallation *self
,guint64 *out_bytes
,GError **error
);
Returns the min-free-space config value from the OSTree repository of this installation.
Applications can use this value, together with information about the available disk space and the size of pending updates or installs, to estimate whether a pull operation will fail due to running out of disk space.
Since: 1.1
flatpak_installation_get_priority ()
gint
flatpak_installation_get_priority (FlatpakInstallation *self
);
Returns the numeric priority of the installation for self
.
Since: 0.8
flatpak_installation_get_storage_type ()
FlatpakStorageType
flatpak_installation_get_storage_type (FlatpakInstallation *self
);
Returns the type of storage of the installation for self
.
Since: 0.8
flatpak_installation_list_installed_refs ()
GPtrArray * flatpak_installation_list_installed_refs (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Lists the installed references.
Returns
a GPtrArray of FlatpakInstalledRef instances.
[transfer container][element-type FlatpakInstalledRef]
flatpak_installation_list_installed_refs_by_kind ()
GPtrArray * flatpak_installation_list_installed_refs_by_kind (FlatpakInstallation *self
,FlatpakRefKind kind
,GCancellable *cancellable
,GError **error
);
Lists the installed references of a specific kind.
Parameters
self | ||
kind | the kind of installation | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Returns
a GPtrArray of FlatpakInstalledRef instances.
[transfer container][element-type FlatpakInstalledRef]
flatpak_installation_list_installed_refs_for_update ()
GPtrArray * flatpak_installation_list_installed_refs_for_update (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Lists the installed references that has a remote update that is not locally available. However, even though an app is not returned by this it can have local updates available that has not been deployed. Look at commit vs latest_commit on installed apps for this.
This also checks if any of FlatpakInstalledRef has a missing FlatpakRelatedRef
(which has should-download
set to TRUE
) or runtime. If so, it adds the
ref to the returning GPtrArray to pull in the FlatpakRelatedRef or runtime
again via an update operation in FlatpakTransaction.
Returns
a GPtrArray of
FlatpakInstalledRef instances, or NULL
on error.
[transfer container][element-type FlatpakInstalledRef]
flatpak_installation_list_installed_related_refs_sync ()
GPtrArray * flatpak_installation_list_installed_related_refs_sync (FlatpakInstallation *self
,const char *remote_name
,const char *ref
,GCancellable *cancellable
,GError **error
);
Lists all the locally installed refs from remote_name
that are
related to ref
. These are things that are interesting to install,
update, or uninstall together with ref
. For instance, locale data
or debug information.
This function is similar to flatpak_installation_list_remote_related_refs_sync, but instead of looking at what is available on the remote, it only looks at the locally installed refs. This is useful for instance when you're looking for related refs to uninstall, or when you're planning to use FLATPAK_UPDATE_FLAGS_NO_PULL to install previously pulled refs.
Parameters
self | ||
remote_name | the name of the remote | |
ref | the ref | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Returns
a GPtrArray of FlatpakRelatedRef instances.
[transfer container][element-type FlatpakRelatedRef]
Since: 0.6.7
flatpak_installation_list_remote_refs_sync ()
GPtrArray * flatpak_installation_list_remote_refs_sync (FlatpakInstallation *self
,const char *remote_or_uri
,GCancellable *cancellable
,GError **error
);
Lists all the applications and runtimes in a remote.
Parameters
self | ||
remote_or_uri | the name or URI of the remote | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Returns
a GPtrArray of FlatpakRemoteRef instances.
[transfer container][element-type FlatpakRemoteRef]
flatpak_installation_list_remotes_by_type ()
GPtrArray * flatpak_installation_list_remotes_by_type (FlatpakInstallation *self
,const FlatpakRemoteType types[]
,gsize num_types
,GCancellable *cancellable
,GError **error
);
Lists only the remotes whose type is included in the types
argument.
Parameters
self | ||
types | an array of FlatpakRemoteType. | [array length=num_types] |
num_types | the number of types provided in | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_list_remote_related_refs_sync ()
GPtrArray * flatpak_installation_list_remote_related_refs_sync (FlatpakInstallation *self
,const char *remote_name
,const char *ref
,GCancellable *cancellable
,GError **error
);
Lists all the available refs on remote_name
that are related to
ref
, and the subpaths to use. These are things that are
interesting to install, update, or uninstall together with
ref
. For instance, locale data or debug information.
The returned list contains all available related refs, but not
everyone should always be installed. For example,
flatpak_related_ref_should_download()
returns TRUE if the
reference should be installed/updated with the app, and
flatpak_related_ref_should_delete()
returns TRUE if it
should be uninstalled with the main ref.
The commit property of each FlatpakRelatedRef is not guaranteed to be
non-NULL
.
Parameters
self | ||
remote_name | the name of the remote | |
ref | the ref | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Returns
a GPtrArray of FlatpakRelatedRef instances.
[transfer container][element-type FlatpakRelatedRef]
Since: 0.6.7
flatpak_installation_list_remotes ()
GPtrArray * flatpak_installation_list_remotes (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Lists the static remotes, in priority (highest first) order. For same priority, an earlier added remote comes before a later added one.
flatpak_installation_get_remote_by_name ()
FlatpakRemote * flatpak_installation_get_remote_by_name (FlatpakInstallation *self
,const gchar *name
,GCancellable *cancellable
,GError **error
);
Looks up a remote by name.
Parameters
self | ||
name | a remote name | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_fetch_remote_metadata_sync ()
GBytes * flatpak_installation_fetch_remote_metadata_sync (FlatpakInstallation *self
,const char *remote_name
,FlatpakRef *ref
,GCancellable *cancellable
,GError **error
);
Obtains the metadata file from a commit.
NOTE: Since 0.11.4 this information is accessible in FlatpakRemoteRef, so this function is not very useful anymore.
Parameters
self | ||
remote_name | the name of the remote | |
ref | the ref | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_fetch_remote_ref_sync ()
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
);
Gets the current remote branch of a ref in the remote.
Parameters
self | ||
remote_name | the name of the remote | |
kind | what this ref contains (an FlatpakRefKind) | |
name | name of the app/runtime to fetch | |
arch | which architecture to fetch (default: current architecture). | [nullable] |
branch | which branch to fetch (default: 'master'). | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_fetch_remote_size_sync ()
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
);
Gets information about the maximum amount of data that needs to be transferred to pull the ref from a remote repository, and about the amount of local disk space that is required to check out this commit.
Note that if there are locally available data that are in the ref, which is common for instance if you're doing an update then the real download size may be smaller than what is returned here.
NOTE: Since 0.11.4 this information is accessible in FlatpakRemoteRef, so this function is not very useful anymore.
Parameters
self | ||
remote_name | the name of the remote | |
ref | the ref | |
download_size | return location for the (maximum) download size. | [out] |
installed_size | return location for the installed size. | [out] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_load_app_overrides ()
char * flatpak_installation_load_app_overrides (FlatpakInstallation *self
,const char *app_id
,GCancellable *cancellable
,GError **error
);
Loads the metadata overrides file for an application.
Parameters
self | ||
app_id | an application id | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_update_appstream_sync ()
gboolean flatpak_installation_update_appstream_sync (FlatpakInstallation *self
,const char *remote_name
,const char *arch
,gboolean *out_changed
,GCancellable *cancellable
,GError **error
);
Updates the local copy of appstream for remote_name
for the specified arch
.
If you need progress feedback, use flatpak_installation_update_appstream_full_sync()
.
Parameters
self | ||
remote_name | the name of the remote | |
arch | Architecture to update, or | [nullable] |
out_changed | Set to | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_install_bundle ()
FlatpakInstalledRef * flatpak_installation_install_bundle (FlatpakInstallation *self
,GFile *file
,FlatpakProgressCallback progress
,gpointer progress_data
,GCancellable *cancellable
,GError **error
);
Install an application or runtime from an flatpak bundle file. See flatpak-build-bundle(1) for how to create bundles.
Parameters
self | ||
file | a GFile that is an flatpak bundle | |
progress | progress callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_install_ref_file ()
FlatpakRemoteRef * flatpak_installation_install_ref_file (FlatpakInstallation *self
,GBytes *ref_file_data
,GCancellable *cancellable
,GError **error
);
Creates a remote based on the passed in .flatpakref file contents
in ref_file_data
and returns the FlatpakRemoteRef that can be used
to install it.
Note, the FlatpakRemoteRef will not have the commit field set, or other details, to
avoid unnecessary roundtrips. If you need that you have to resolve it
explicitly with flatpak_installation_fetch_remote_ref_sync()
.
Parameters
self | ||
ref_file_data | The ref file contents | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 0.6.10
flatpak_installation_drop_caches ()
gboolean flatpak_installation_drop_caches (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Drops all internal (in-memory) caches. For instance, this may be needed to pick up new or changed remotes configured outside this installation instance.
flatpak_installation_add_remote ()
gboolean flatpak_installation_add_remote (FlatpakInstallation *self
,FlatpakRemote *remote
,gboolean if_needed
,GCancellable *cancellable
,GError **error
);
Adds a new remote
object to the set of remotes. This is similar
to flatpak_installation_modify_remote()
for non-existing remote
names. However, if the named remote already exists then instead of
modifying it it fails with FLATPAK_ERROR_ALREADY_INSTALLED
, or if
if_needed
is true it silently succeeds without doing anything.
As an exception to the last, if the local config has a filter defined,
but the new remote unsets the filter (for example, it comes from an
unfiltered .flatpakref via flatpak_remote_new_from_file()
) the the local
remote filter gets reset. This is to allow the setup where there is a
default setup of a filtered remote, yet you can still use the standard
flatpakref file to get the full contents without getting two remotes.
Parameters
self | ||
remote | the new FlatpakRemote | |
if_needed | if | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 1.3.4
flatpak_installation_modify_remote ()
gboolean flatpak_installation_modify_remote (FlatpakInstallation *self
,FlatpakRemote *remote
,GCancellable *cancellable
,GError **error
);
Saves changes in the remote
object.
Parameters
self | ||
remote | the modified FlatpakRemote | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_remove_remote ()
gboolean flatpak_installation_remove_remote (FlatpakInstallation *self
,const char *name
,GCancellable *cancellable
,GError **error
);
Removes the remote with the given name from the installation.
Parameters
self | ||
name | the name of the remote to remove | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_update_remote_sync ()
gboolean flatpak_installation_update_remote_sync (FlatpakInstallation *self
,const char *name
,GCancellable *cancellable
,GError **error
);
Updates the local configuration of a remote repository by fetching the related information from the summary file in the remote OSTree repository and committing the changes to the local installation.
Parameters
self | ||
name | the name of the remote to update | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 0.6.13
flatpak_installation_cleanup_local_refs_sync ()
gboolean flatpak_installation_cleanup_local_refs_sync (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Remove all OSTree refs from the local flatpak repository which are not
in a deployed state. The next time the underlying OSTree repo is pruned,
objects which were attached to that ref will be removed. This is useful if
you pulled a flatpak refs using flatpak_installation_install_full()
and
specified FLATPAK_INSTALL_FLAGS_NO_DEPLOY
but then decided not to
deploy the refs later on and want to remove the local refs to prevent them
from taking up disk space. Note that this will not remove the objects
referred to by ref
from the underlying OSTree repo, you should use
flatpak_installation_prune_local_repo()
to do that.
Since: 0.10.0
flatpak_installation_get_config ()
char * flatpak_installation_get_config (FlatpakInstallation *self
,const char *key
,GCancellable *cancellable
,GError **error
);
Get a global configuration option for the installation, see
flatpak_installation_set_config_sync()
for supported keys.
Parameters
self | ||
key | the name of the key to get | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Returns
The (newly allocated) value, or NULL
on error (G_KEY_FILE_ERROR_KEY_NOT_FOUND
error if key is not set)
flatpak_installation_get_default_languages ()
char ** flatpak_installation_get_default_languages (FlatpakInstallation *self
,GError **error
);
Get the default languages used by the installation to decide which subpaths to install of locale extensions. This list may also be used by frontends like GNOME Software to decide which language-specific apps to display. An empty array means that all languages should be installed.
Returns
A possibly empty array of locale strings, or NULL
on error.
[array zero-terminated=1][element-type utf8][transfer full]
Since: 1.5.0
flatpak_installation_prune_local_repo ()
gboolean flatpak_installation_prune_local_repo (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Remove all orphaned OSTree objects from the underlying OSTree repo in
self
.
Since: 0.10.0
flatpak_installation_remove_local_ref_sync ()
gboolean flatpak_installation_remove_local_ref_sync (FlatpakInstallation *self
,const char *remote_name
,const char *ref
,GCancellable *cancellable
,GError **error
);
Remove the OSTree ref given by remote_name
:ref
from the local flatpak
repository. The next time the underlying OSTree repo is pruned, objects
which were attached to that ref will be removed. This is useful if you
pulled a flatpak ref using flatpak_installation_install_full()
and
specified FLATPAK_INSTALL_FLAGS_NO_DEPLOY
but then decided not to
deploy the ref later on and want to remove the local ref to prevent it
from taking up disk space. Note that this will not remove the objects
referred to by ref
from the underlying OSTree repo, you should use
flatpak_installation_prune_local_repo()
to do that.
Parameters
self | ||
remote_name | the name of the remote | |
ref | the ref | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
Since: 0.10.0
flatpak_installation_set_config_sync ()
gboolean flatpak_installation_set_config_sync (FlatpakInstallation *self
,const char *key
,const char *value
,GCancellable *cancellable
,GError **error
);
Set a global configuration option for the installation, currently the only supported key is "languages", which is a comman-separated list of langue codes like "sv;en;pl", or "" to mean all languages.
Parameters
self | ||
key | the name of the key to set | |
value | the new value, or | |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_update_appstream_full_sync ()
gboolean flatpak_installation_update_appstream_full_sync (FlatpakInstallation *self
,const char *remote_name
,const char *arch
,FlatpakProgressCallback progress
,gpointer progress_data
,gboolean *out_changed
,GCancellable *cancellable
,GError **error
);
Updates the local copy of appstream for remote_name
for the specified arch
.
Parameters
self | ||
remote_name | the name of the remote | |
arch | Architecture to update, or | [nullable] |
progress | progress callback. | [scope call][nullable] |
progress_data | user data passed to | [closure progress][nullable] |
out_changed | Set to | [nullable] |
cancellable | a GCancellable. | [nullable] |
error | return location for a GError |
flatpak_installation_run_triggers ()
gboolean flatpak_installation_run_triggers (FlatpakInstallation *self
,GCancellable *cancellable
,GError **error
);
Run the trigger commands to update the files exported by the apps in
self
. Should be used after one or more app install, upgrade or
uninstall operations with the FLATPAK_INSTALL_FLAGS_NO_TRIGGERS
,
FLATPAK_UPDATE_FLAGS_NO_TRIGGERS
or FLATPAK_UNINSTALL_FLAGS_NO_TRIGGERS
flags set.
Since: 1.0.3
flatpak_get_default_arch ()
const char *
flatpak_get_default_arch (void
);
Returns the canonical name for the arch of the current machine.
flatpak_get_supported_arches ()
const char *const *
flatpak_get_supported_arches (void
);
Returns the canonical names for the arches that are supported (i.e. can run) on the current machine, in order of priority (default is first).
flatpak_get_system_installations ()
GPtrArray * flatpak_get_system_installations (GCancellable *cancellable
,GError **error
);
Lists the system installations according to the current configuration and current availability (e.g. doesn't return a configured installation if not reachable).
Returns
a GPtrArray of FlatpakInstallation instances.
[transfer container][element-type FlatpakInstallation]
Since: 0.8
FlatpakProgressCallback ()
void (*FlatpakProgressCallback) (const char *status
,guint progress
,gboolean estimating
,gpointer user_data
);
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.
Types and Values
enum FlatpakUpdateFlags
Flags to alter the behavior of flatpak_installation_update()
.
Members
Fetch remote builds and install the latest one (default) | ||
Don't install any new builds that might be fetched | ||
Don't try to fetch new builds from the remote repo | ||
Don't use static deltas when pulling | ||
Don't prune the local OSTree repository after updating (Since: 0.11.8) | ||
Don't call triggers after updating. If used,
the caller must later call |
enum FlatpakInstallFlags
Flags to alter the behavior of flatpak_installation_install_full()
.
Members
Default | ||
Don't use static deltas when pulling | ||
Don't install any new builds that might be fetched | ||
Don't try to fetch new builds from the remote repo | ||
Don't call triggers after installing. If used,
the caller must later call |
enum FlatpakUninstallFlags
Flags to alter the behavior of flatpak_installation_uninstall_full()
.
Members
Default | ||
Don't prune the local OSTree repository after uninstalling | ||
Don't call triggers after uninstalling. If used,
the caller must later call |
Since: 0.11.8
enum FlatpakLaunchFlags
Flags to alter the behavior of flatpak_installation_launch_full()
.
Members
Default | ||
Do not reap the child. Use this if you want to wait
for the child with |
enum FlatpakStorageType
Flags to alter the behavior of flatpak_installation_install_full()
.
Since: 0.6.15
Name
FlatpakRemote — Remote repository
Functions
Description
A FlatpakRemote object provides information about a remote repository (or short: remote) that has been configured.
At its most basic level, a remote has a name and the URL for the repository. In addition, they provide some additional information that can be useful when presenting repositories in a UI, such as a title, a priority or a "don't enumerate" flags.
To obtain FlatpakRemote objects for the configured remotes
on a system, use flatpak_installation_list_remotes()
or
flatpak_installation_get_remote_by_name()
.
Functions
flatpak_remote_new ()
FlatpakRemote *
flatpak_remote_new (const char *name
);
Returns a new remote object which can be used to configure a new remote.
Note: This is a local configuration object, you must commit changes
using flatpak_installation_modify_remote()
or flatpak_installation_add_remote()
for the changes to take
effect.
flatpak_remote_new_from_file ()
FlatpakRemote * flatpak_remote_new_from_file (const char *name
,GBytes *data
,GError **error
);
Returns a new pre-filled remote object which can be used to configure a new remote. The fields in the remote are filled in according to the values in the passed in flatpakrepo file.
Note: This is a local configuration object, you must commit changes
using flatpak_installation_modify_remote()
or flatpak_installation_add_remote()
for the changes to take
effect.
Since: 1.3.4
flatpak_remote_get_name ()
const char *
flatpak_remote_get_name (FlatpakRemote *self
);
Returns the name of the remote repository.
flatpak_remote_get_appstream_dir ()
GFile * flatpak_remote_get_appstream_dir (FlatpakRemote *self
,const char *arch
);
Returns the directory where this remote will store locally cached
appstream information for the specified arch
.
flatpak_remote_get_appstream_timestamp ()
GFile * flatpak_remote_get_appstream_timestamp (FlatpakRemote *self
,const char *arch
);
Returns the timestamp file that will be updated whenever the appstream information
has been updated (or tried to update) for the specified arch
.
flatpak_remote_get_collection_id ()
char *
flatpak_remote_get_collection_id (FlatpakRemote *self
);
Returns the repository collection ID of this remote, if set.
flatpak_remote_set_collection_id ()
void flatpak_remote_set_collection_id (FlatpakRemote *self
,const char *collection_id
);
Sets the repository collection ID of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_default_branch ()
char *
flatpak_remote_get_default_branch (FlatpakRemote *self
);
Returns the default branch configured for the remote.
Since: 0.6.12
flatpak_remote_set_default_branch ()
void flatpak_remote_set_default_branch (FlatpakRemote *self
,const char *default_branch
);
Sets the default branch configured for this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 0.6.12
flatpak_remote_get_gpg_verify ()
gboolean
flatpak_remote_get_gpg_verify (FlatpakRemote *self
);
Returns whether GPG verification is enabled for the remote.
flatpak_remote_set_gpg_verify ()
void flatpak_remote_set_gpg_verify (FlatpakRemote *self
,gboolean gpg_verify
);
Sets the gpg_verify config of this remote. See flatpak_remote_get_gpg_verify()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_set_gpg_key ()
void flatpak_remote_set_gpg_key (FlatpakRemote *self
,GBytes *gpg_key
);
Sets the trusted gpg key for this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_nodeps ()
gboolean
flatpak_remote_get_nodeps (FlatpakRemote *self
);
Returns whether this remote should be used to find dependencies.
flatpak_remote_set_nodeps ()
void flatpak_remote_set_nodeps (FlatpakRemote *self
,gboolean nodeps
);
Sets the nodeps config of this remote. See flatpak_remote_get_nodeps()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_noenumerate ()
gboolean
flatpak_remote_get_noenumerate (FlatpakRemote *self
);
Returns whether this remote should be used to list applications.
flatpak_remote_set_noenumerate ()
void flatpak_remote_set_noenumerate (FlatpakRemote *self
,gboolean noenumerate
);
Sets the noenumeration config of this remote. See flatpak_remote_get_noenumerate()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_prio ()
int
flatpak_remote_get_prio (FlatpakRemote *self
);
Returns the priority for the remote.
flatpak_remote_set_prio ()
void flatpak_remote_set_prio (FlatpakRemote *self
,int prio
);
Sets the prio config of this remote. See flatpak_remote_get_prio()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_remote_type ()
FlatpakRemoteType
flatpak_remote_get_remote_type (FlatpakRemote *self
);
Get the value of “type”.
Since: 0.9.8
flatpak_remote_get_title ()
char *
flatpak_remote_get_title (FlatpakRemote *self
);
Returns the title of the remote.
flatpak_remote_set_title ()
void flatpak_remote_set_title (FlatpakRemote *self
,const char *title
);
Sets the repository title of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_comment ()
char *
flatpak_remote_get_comment (FlatpakRemote *self
);
Returns the comment of the remote.
Since: 1.4
flatpak_remote_set_comment ()
void flatpak_remote_set_comment (FlatpakRemote *self
,const char *comment
);
Sets the comment of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 1.4
flatpak_remote_get_description ()
char *
flatpak_remote_get_description (FlatpakRemote *self
);
Returns the description of the remote.
Since: 1.4
flatpak_remote_set_description ()
void flatpak_remote_set_description (FlatpakRemote *self
,const char *description
);
Sets the description of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 1.4
flatpak_remote_get_homepage ()
char *
flatpak_remote_get_homepage (FlatpakRemote *self
);
Returns the homepage url of the remote.
Since: 1.4
flatpak_remote_set_homepage ()
void flatpak_remote_set_homepage (FlatpakRemote *self
,const char *homepage
);
Sets the homepage of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 1.4
flatpak_remote_get_icon ()
char *
flatpak_remote_get_icon (FlatpakRemote *self
);
Returns the icon url of the remote.
Since: 1.4
flatpak_remote_set_icon ()
void flatpak_remote_set_icon (FlatpakRemote *self
,const char *icon
);
Sets the homepage of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Since: 1.4
flatpak_remote_get_url ()
char *
flatpak_remote_get_url (FlatpakRemote *self
);
Returns the repository URL of this remote.
flatpak_remote_set_url ()
void flatpak_remote_set_url (FlatpakRemote *self
,const char *url
);
Sets the repository URL of this remote.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
flatpak_remote_get_disabled ()
gboolean
flatpak_remote_get_disabled (FlatpakRemote *self
);
Returns whether this remote is disabled.
flatpak_remote_set_disabled ()
void flatpak_remote_set_disabled (FlatpakRemote *self
,gboolean disabled
);
Sets the disabled config of this remote. See flatpak_remote_get_disabled()
.
Note: This is a local modification of this object, you must commit changes
using flatpak_installation_modify_remote()
for the changes to take
effect.
Property Details
The “name”
property
“name” gchar *
Name of the remote, as used in configuration files and when interfacing
with OSTree. This is typically human readable, but could be generated, and
must conform to ostree_validate_remote_name()
. It should typically not be
presented in the UI.
Owner: FlatpakRemote
Flags: Read / Write
Default value: NULL
The “type”
property
“type” FlatpakRemoteType
The type of the remote: whether it comes from static configuration files
(FLATPAK_REMOTE_TYPE_STATIC
) or has been dynamically found from the local
network or a mounted USB drive (FLATPAK_REMOTE_TYPE_LAN
,
FLATPAK_REMOTE_TYPE_USB
). Dynamic remotes may be added and removed over
time.
Owner: FlatpakRemote
Flags: Read / Write / Construct Only
Default value: FLATPAK_REMOTE_TYPE_STATIC
Since: 0.9.8
Name
FlatpakTransactionOperation — Operation in a transaction
Functions
Description
FlatpakTransactionOperation is an object that represents a single operation in a transaction. You receive a FlatpakTransactionOperation object with the “new-operation” signal.
Functions
flatpak_transaction_operation_get_bundle_path ()
GFile *
flatpak_transaction_operation_get_bundle_path
(FlatpakTransactionOperation *self
);
Gets the path to the bundle.
flatpak_transaction_operation_get_commit ()
const char *
flatpak_transaction_operation_get_commit
(FlatpakTransactionOperation *self
);
Gets the commit ID for the operation.
This information is available when the transaction is resolved, i.e. when “ready” is emitted.
flatpak_transaction_operation_get_operation_type ()
FlatpakTransactionOperationType
flatpak_transaction_operation_get_operation_type
(FlatpakTransactionOperation *self
);
Gets the type of the operation.
flatpak_transaction_operation_get_ref ()
const char *
flatpak_transaction_operation_get_ref (FlatpakTransactionOperation *self
);
Gets the ref that the operation applies to.
flatpak_transaction_operation_get_remote ()
const char *
flatpak_transaction_operation_get_remote
(FlatpakTransactionOperation *self
);
Gets the remote that the operation applies to.
flatpak_transaction_operation_get_metadata ()
GKeyFile *
flatpak_transaction_operation_get_metadata
(FlatpakTransactionOperation *self
);
Gets the metadata that will be applicable when the operation is done.
This can be compared to the current metadata returned
by flatpak_transaction_operation_get_old_metadata()
to find new required permissions and similar changes.
This information is available when the transaction is resolved, i.e. when “ready” is emitted.
flatpak_transaction_operation_get_old_metadata ()
GKeyFile *
flatpak_transaction_operation_get_old_metadata
(FlatpakTransactionOperation *self
);
Gets the metadata current metadata for the ref that self
works on.
Also see flatpak_transaction_operation_get_metadata()
.
This information is available when the transaction is resolved, i.e. when “ready” is emitted.
flatpak_transaction_operation_type_to_string ()
const char *
flatpak_transaction_operation_type_to_string
(FlatpakTransactionOperationType kind
);
Converts the operation type to a string.
Name
FlatpakTransactionProgress — Progress of an operation
Description
FlatpakTransactionProgress is an object that represents the progress of a single operation in a transaction. You obtain a FlatpakTransactionProgress with the “new-operation” signal.
Functions
flatpak_transaction_progress_get_is_estimating ()
gboolean
flatpak_transaction_progress_get_is_estimating
(FlatpakTransactionProgress *self
);
Gets whether the progress is currently estimating
flatpak_transaction_progress_get_progress ()
int
flatpak_transaction_progress_get_progress
(FlatpakTransactionProgress *self
);
Gets the current progress.
flatpak_transaction_progress_get_status ()
char *
flatpak_transaction_progress_get_status
(FlatpakTransactionProgress *self
);
Gets the current status string
flatpak_transaction_progress_set_update_frequency ()
void flatpak_transaction_progress_set_update_frequency (FlatpakTransactionProgress *self
,guint update_frequency
);
Sets how often progress should be updated.
Signal Details
The “changed”
signal
void user_function (FlatpakTransactionProgress *object, gpointer user_data)
Emitted when some detail of the progress object changes, you can call the various methods to get the current status.
Flags: Run Last
Name
FlatpakTransaction — Transaction information
Functions
Description
FlatpakTransaction is an object representing an install/update/uninstall
transaction. You create an object like this using flatpak_transaction_new_for_installation()
and then you add all the operations (installs, updates, etc) you wish to do. Then
you start the transaction with flatpak_transaction_run()
which will resolve all kinds
of dependencies and report progress and status while downloading and installing these.
The dependency resolution that is the first step of executing a transaction can
be influenced by flatpak_transaction_set_disable_dependencies()
,
flatpak_transaction_set_disable_related()
, flatpak_transaction_add_dependency_source()
and flatpak_transaction_add_default_dependency_sources()
.
The underlying operations that get orchestrated by a FlatpakTransaction are: pulling
new data from remote repositories, deploying newer applications or runtimes and pruning
old deployments. Which of these operations are carried out can be controlled with
flatpak_transaction_set_no_pull()
, flatpak_transaction_set_no_deploy()
and
flatpak_transaction_set_disable_prune()
.
A transaction is a blocking operation, and all signals are emitted in the same thread. This means you should either handle the signals directly (say, by doing blocking console interaction, or by just returning without interaction), or run the operation in a separate thread and do your own forwarding to the GUI thread.
Despite the name, a FlatpakTransaction is more like a batch operation than a transaction in the database sense. Individual operations are carried out sequentially, and are atomic. They become visible to the system as they are completed. When an error occurs, already completed operations are not rolled back.
For each operation that is executed during a transaction, you first get a “new-operation” signal, followed by either a “operation-done” or “operation-error”.
The FlatpakTransaction API is threadsafe in the sense that it is safe to run two transactions at the same time, in different threads (or processes).
Note: Transactions (or any other install/update operation) to a system installation rely on the ability to create files that are readable by other users. Some users set a umask that prohibits this. Unfortunately there is no good way to work around this in a threadsafe, local way, so such setups will break by default. The flatpak commandline app works around this by calling umask(022) in the early setup, and it is recommended that other apps using libflatpak do this too.
Functions
flatpak_transaction_new_for_installation ()
FlatpakTransaction * flatpak_transaction_new_for_installation (FlatpakInstallation *installation
,GCancellable *cancellable
,GError **error
);
Creates a new FlatpakTransaction object that can be used to do installation
and updates of multiple refs, as well as their dependencies, in a single
operation. Set the options you want on the transaction and add the
refs you want to install/update, then start the transaction with
flatpak_transaction_run()
.
flatpak_transaction_add_install ()
gboolean flatpak_transaction_add_install (FlatpakTransaction *self
,const char *remote
,const char *ref
,const char **subpaths
,GError **error
);
Adds installing the given ref to this transaction.
The remote
can either be a configured remote of the installation,
or a file:// uri pointing at a local repository to install from,
in which case an origin remote is created.
flatpak_transaction_add_install_bundle ()
gboolean flatpak_transaction_add_install_bundle (FlatpakTransaction *self
,GFile *file
,GBytes *gpg_data
,GError **error
);
Adds installing the given bundle to this transaction.
flatpak_transaction_add_install_flatpakref ()
gboolean flatpak_transaction_add_install_flatpakref (FlatpakTransaction *self
,GBytes *flatpakref_data
,GError **error
);
Adds installing the given flatpakref to this transaction.
flatpak_transaction_add_update ()
gboolean flatpak_transaction_add_update (FlatpakTransaction *self
,const char *ref
,const char **subpaths
,const char *commit
,GError **error
);
Adds updating the given ref to this transaction.
flatpak_transaction_add_uninstall ()
gboolean flatpak_transaction_add_uninstall (FlatpakTransaction *self
,const char *ref
,GError **error
);
Adds uninstalling the given ref to this transaction.
flatpak_transaction_add_default_dependency_sources ()
void
flatpak_transaction_add_default_dependency_sources
(FlatpakTransaction *self
);
Similar to flatpak_transaction_add_dependency_source()
, but adds
all the default installations, which means all the defined system-wide
(but not per-user) installations.
flatpak_transaction_add_dependency_source ()
void flatpak_transaction_add_dependency_source (FlatpakTransaction *self
,FlatpakInstallation *installation
);
Adds an extra installation as a source for application dependencies. This means that applications can be installed in this transaction relying on runtimes from this additional installation (whereas it would normally install required runtimes that are not installed in the installation the transaction works on).
Also see flatpak_transaction_add_default_dependency_sources()
.
flatpak_transaction_run ()
gboolean flatpak_transaction_run (FlatpakTransaction *transaction
,GCancellable *cancellable
,GError **error
);
Executes the transaction.
During the course of the execution, various signals will get emitted. The FlatpakTransaction::choose-remote-for-ref and “add-new-remote” signals may get emitted while resolving operations. “ready” is emitted when the transaction has been fully resolved, and “new-operation” and “operation-done” are emitted while the operations are carried out. If an error occurs at any point during the execution, “operation-error” is emitted.
Note that this call blocks until the transaction is done.
flatpak_transaction_get_current_operation ()
FlatpakTransactionOperation *
flatpak_transaction_get_current_operation
(FlatpakTransaction *self
);
Gets the current operation.
flatpak_transaction_get_installation ()
FlatpakInstallation *
flatpak_transaction_get_installation (FlatpakTransaction *self
);
Gets the installation this transaction was created for.
flatpak_transaction_get_operations ()
GList *
flatpak_transaction_get_operations (FlatpakTransaction *self
);
Gets the list of operations.
flatpak_transaction_is_empty ()
gboolean
flatpak_transaction_is_empty (FlatpakTransaction *self
);
Returns whether the transaction contains any operations.
flatpak_transaction_set_disable_dependencies ()
void flatpak_transaction_set_disable_dependencies (FlatpakTransaction *self
,gboolean disable_dependencies
);
Sets whether the transaction should ignore runtime dependencies when resolving operations for applications.
flatpak_transaction_set_disable_prune ()
void flatpak_transaction_set_disable_prune (FlatpakTransaction *self
,gboolean disable_prune
);
Sets whether the transaction should avoid pruning the local OSTree repository after updating.
flatpak_transaction_set_disable_related ()
void flatpak_transaction_set_disable_related (FlatpakTransaction *self
,gboolean disable_related
);
Sets whether the transaction should avoid adding related refs when resolving operations. Related refs are extensions that are suggested by apps, such as locales.
flatpak_transaction_set_disable_static_deltas ()
void flatpak_transaction_set_disable_static_deltas (FlatpakTransaction *self
,gboolean disable_static_deltas
);
Sets whether the transaction should avoid using static deltas when pulling.
flatpak_transaction_set_no_deploy ()
void flatpak_transaction_set_no_deploy (FlatpakTransaction *self
,gboolean no_deploy
);
Sets whether the transaction should download updates, but not deploy them.
flatpak_transaction_get_no_deploy ()
gboolean
flatpak_transaction_get_no_deploy (FlatpakTransaction *self
);
Gets whether the transaction is only downloading updates, and not deploying them.
Since: 1.5.1
flatpak_transaction_set_no_pull ()
void flatpak_transaction_set_no_pull (FlatpakTransaction *self
,gboolean no_pull
);
Sets whether the transaction should operate only on locally available data.
flatpak_transaction_get_no_pull ()
gboolean
flatpak_transaction_get_no_pull (FlatpakTransaction *self
);
Gets whether the transaction should operate only on locally available data.
Since: 1.5.1
flatpak_transaction_set_reinstall ()
void flatpak_transaction_set_reinstall (FlatpakTransaction *self
,gboolean reinstall
);
Sets whether the transaction should uninstall first if a ref is already installed.
flatpak_transaction_set_force_uninstall ()
void flatpak_transaction_set_force_uninstall (FlatpakTransaction *self
,gboolean force_uninstall
);
Sets whether the transaction should uninstall files even if they're used by a running application.
flatpak_transaction_set_default_arch ()
void flatpak_transaction_set_default_arch (FlatpakTransaction *self
,const char *arch
);
Sets the architecture to default to where it is unspecified.
Types and Values
enum FlatpakTransactionOperationType
The type of a FlatpakTransactionOperation.
Property Details
The “installation”
property
“installation” FlatpakInstallation *
The installation that the transaction operates on.
Owner: FlatpakTransaction
Flags: Read / Write / Construct Only
Signal Details
The “add-new-remote”
signal
gboolean user_function (FlatpakTransaction *object, gint reason, gchar *from_id, gchar *suggested_remote_name, gchar *url, gpointer user_data)
The ::add-new-remote signal gets emitted if, as part of the transaction,
it is required or recommended that a new remote is added, for the reason
described in reason
.
Parameters
object | ||
reason | A FlatpakTransactionRemoteReason for this suggestion. | [type FlatpakTransactionRemoteReason] |
from_id | The id of the app/runtime | |
suggested_remote_name | The suggested remote name | |
url | The repo url | |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “choose-remote-for-ref”
signal
gint user_function (FlatpakTransaction *object, gchar *for_ref, gchar *runtime_ref, GStrv remotes, gpointer user_data)
The ::choose-remote-for-ref signal gets emitted when a remote needs to be selected during the execution of the transaction.
Parameters
object | ||
for_ref | The ref we are installing | |
runtime_ref | The ref we are looking for | |
remotes | the remotes that has the ref, sorted in prio order | |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “end-of-lifed”
signal
void user_function (FlatpakTransaction *object, gchar *ref, gchar *reason, gchar *rebase, gpointer user_data)
The ::end-of-lifed signal gets emitted when a ref is found to be marked as end-of-life during the execution of the transaction.
Parameters
Flags: Run Last
The “end-of-lifed-with-rebase”
signal
gboolean user_function (FlatpakTransaction *object, gchar *remote, gchar *ref, gchar *reason, gchar *rebased_to_ref, GStrv previous_ids, gpointer user_data)
The ::end-of-lifed-with-rebase signal gets emitted when a ref is found to be marked as end-of-life before the transaction begins. Unlike “end-of-lifed”, this signal allows for the transaction to be modified in order to e.g. install the rebased ref.
Parameters
object | ||
remote | The remote for the ref we are processing | |
ref | The ref we are processing | |
reason | The eol reason, or | |
rebased_to_ref | The new name, if rebased, or | |
previous_ids | The previous names for the rebased ref (if any), including the one from | |
user_data | user data set when the signal handler was connected. |
Returns
TRUE
if the operation on this end-of-lifed ref should
be skipped, FALSE
if it should remain.
Flags: Run Last
The “new-operation”
signal
void user_function (FlatpakTransaction *object, FlatpakTransactionOperation *operation, FlatpakTransactionProgress *progress, gpointer user_data)
The ::new-operation signal gets emitted during the execution of the transaction when a new operation is beginning.
Parameters
object | ||
operation | The new FlatpakTransactionOperation | |
progress | A FlatpakTransactionProgress for | |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “operation-done”
signal
void user_function (FlatpakTransaction *object, FlatpakTransactionOperation *operation, gchar *commit, gint result, gpointer user_data)
The ::operation-done signal gets emitted during the execution of the transaction when an operation is finished.
Parameters
object | ||
operation | The FlatpakTransactionOperation which finished | |
commit | The commit | |
result | A FlatpakTransactionResult giving details about the result. | [type FlatpakTransactionResult] |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “operation-error”
signal
gboolean user_function (FlatpakTransaction *object, FlatpakTransactionOperation *operation, GError *error, gint details, gpointer user_data)
The ::operation-error signal gets emitted when an error occurs during the execution of the transaction.
Parameters
object | ||
operation | The FlatpakTransactionOperation which failed | |
error | A GError | |
details | A FlatpakTransactionErrorDetails with details about the error. | [type FlatpakTransactionErrorDetails] |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “ready”
signal
gboolean user_function (FlatpakTransaction *object, gpointer user_data)
The ::ready signal is emitted when all the refs involved in the operation
have been resolved to commits. At this point flatpak_transaction_get_operations()
will return all the operations that will be executed as part of the
transaction.
Flags: Run Last
The “webflow-done”
signal
void user_function (FlatpakTransaction *object, gint id, gpointer user_data)
The ::webflow-done signal gets emitted when the authentication finished the webflow, independent of the reason and results. If you for were showing a web-browser window it can now be closed.
Parameters
object | ||
id | The id of the operation | |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
The “webflow-start”
signal
gboolean user_function (FlatpakTransaction *object, gchar *remote, gchar *url, gint id, gpointer user_data)
The ::webflow-start signal gets emitted when some kind of user authentication is needed during the operation. If the caller handles this it should show the url in a webbrowser and return TRUE. This will eventually cause the webbrowser to finish the authentication operation and operation will continue, as signaled by the webflow-done being emitted.
If the client does not support webflow then return FALSE from this signal (or don't implement it). This will abort the authentication and likely result in the transaction failing (unless the authentication was somehow optional).
During the time between webflow-start and webflow-done the client can call flatpak_transaction_abort_webflow()
to manually abort the authentication. This is useful if the user aborted the authentication
operation some way, like e.g. closing the browser window.
Parameters
object | ||
remote | The remote we're authenticating with | |
url | The url to show | |
id | The id of the operation, can be used to cancel it | |
user_data | user data set when the signal handler was connected. |
Flags: Run Last
Name
FlatpakRef — Application reference
Functions
char * | flatpak_ref_format_ref () |
const char * | flatpak_ref_get_arch () |
const char * | flatpak_ref_get_branch () |
const char * | flatpak_ref_get_collection_id () |
const char * | flatpak_ref_get_commit () |
FlatpakRefKind | flatpak_ref_get_kind () |
const char * | flatpak_ref_get_name () |
FlatpakRef * | flatpak_ref_parse () |
Object Hierarchy
GObject ╰── FlatpakRef ├── FlatpakBundleRef ├── FlatpakInstalledRef ├── FlatpakRelatedRef ╰── FlatpakRemoteRef
Description
Currently Flatpak manages two types of binary artifacts: applications, and runtimes. Applications contain a program that desktop users can run, while runtimes contain only libraries and data. An FlatpakRef object (or short: ref) can refer to either of these.
Both applications and runtimes are identified by a 4-tuple of strings: kind,
name, arch and branch, e.g. app/org.gnome.evince/x86_64/master. The functions
flatpak_ref_parse()
and flatpak_ref_format_ref()
can be used to convert
FlatpakRef objects into this string representation and back.
FlatpakRef objects are immutable and can be passed freely between threads.
To uniquely identify a particular version of an application or runtime, you need a commit.
The subclasses FlatpakInstalledRef and FlatpakRemoteRef provide more information for artifacts that are locally installed or available from a remote repository.
Functions
flatpak_ref_format_ref ()
char *
flatpak_ref_format_ref (FlatpakRef *self
);
Convert an FlatpakRef object into a string representation that
can be parsed by flatpak_ref_parse()
.
flatpak_ref_get_arch ()
const char *
flatpak_ref_get_arch (FlatpakRef *self
);
Gets the arch or the ref.
flatpak_ref_get_branch ()
const char *
flatpak_ref_get_branch (FlatpakRef *self
);
Gets the branch of the ref.
flatpak_ref_get_collection_id ()
const char *
flatpak_ref_get_collection_id (FlatpakRef *self
);
Gets the collection ID of the ref.
flatpak_ref_get_commit ()
const char *
flatpak_ref_get_commit (FlatpakRef *self
);
Gets the commit of the ref.
flatpak_ref_get_kind ()
FlatpakRefKind
flatpak_ref_get_kind (FlatpakRef *self
);
Gets the kind of artifact that this ref refers to.
flatpak_ref_get_name ()
const char *
flatpak_ref_get_name (FlatpakRef *self
);
Gets the name of the ref.
flatpak_ref_parse ()
FlatpakRef * flatpak_ref_parse (const char *ref
,GError **error
);
Tries to parse a full ref name and return a FlatpakRef (without a commit set) or fail if the ref is invalid somehow.
Parameters
ref | A string ref name, such as "app/org.test.App/x86_64/master" | |
error | return location for a GError |
Property Details
The “arch”
property
“arch” gchar *
The architecture of the application or runtime.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: NULL
The “branch”
property
“branch” gchar *
The branch of the application or runtime.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: NULL
The “collection-id”
property
“collection-id” gchar *
The collection ID.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: NULL
The “commit”
property
“commit” gchar *
The commit.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: NULL
The “kind”
property
“kind” FlatpakRefKind
The kind of artifact.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: FLATPAK_REF_KIND_APP
The “name”
property
“name” gchar *
The name of the application or runtime.
Owner: FlatpakRef
Flags: Read / Write / Construct Only
Default value: NULL
Name
FlatpakInstalledRef — Installed application reference
Functions
const char * | flatpak_installed_ref_get_deploy_dir () |
guint64 | flatpak_installed_ref_get_installed_size () |
gboolean | flatpak_installed_ref_get_is_current () |
const char * | flatpak_installed_ref_get_latest_commit () |
const char * | flatpak_installed_ref_get_origin () |
GBytes * | flatpak_installed_ref_load_appdata () |
GBytes * | flatpak_installed_ref_load_metadata () |
const char * | flatpak_installed_ref_get_appdata_license () |
const char * | flatpak_installed_ref_get_appdata_name () |
const char * | flatpak_installed_ref_get_appdata_summary () |
const char * | flatpak_installed_ref_get_appdata_version () |
const char * const * | flatpak_installed_ref_get_subpaths () |
const char * | flatpak_installed_ref_get_eol () |
const char * | flatpak_installed_ref_get_eol_rebase () |
Properties
GHashTable * | appdata-content-rating | Read / Write / Construct Only |
gchar * | appdata-content-rating-type | Read / Write / Construct Only |
gchar * | appdata-license | Read / Write / Construct Only |
gchar * | appdata-name | Read / Write / Construct Only |
gchar * | appdata-summary | Read / Write / Construct Only |
gchar * | appdata-version | Read / Write / Construct Only |
gchar * | deploy-dir | Read / Write |
gchar * | end-of-life | Read / Write / Construct Only |
gchar * | end-of-life-rebase | Read / Write / Construct Only |
guint64 | installed-size | Read / Write |
gboolean | is-current | Read / Write |
gchar * | latest-commit | Read / Write |
gchar * | origin | Read / Write |
GStrv | subpaths | Read / Write |
Description
A FlatpakInstalledRef provides information about an installed application or runtime (in short: ref), such as the available builds, its size, location, etc.
Functions
flatpak_installed_ref_get_deploy_dir ()
const char *
flatpak_installed_ref_get_deploy_dir (FlatpakInstalledRef *self
);
Gets the deploy dir of the ref.
flatpak_installed_ref_get_installed_size ()
guint64
flatpak_installed_ref_get_installed_size
(FlatpakInstalledRef *self
);
Returns the installed size of the ref.
flatpak_installed_ref_get_is_current ()
gboolean
flatpak_installed_ref_get_is_current (FlatpakInstalledRef *self
);
Returns whether the ref is current.
flatpak_installed_ref_get_latest_commit ()
const char *
flatpak_installed_ref_get_latest_commit
(FlatpakInstalledRef *self
);
Gets the latest commit of the ref.
flatpak_installed_ref_get_origin ()
const char *
flatpak_installed_ref_get_origin (FlatpakInstalledRef *self
);
Gets the origin of the ref.
flatpak_installed_ref_load_appdata ()
GBytes * flatpak_installed_ref_load_appdata (FlatpakInstalledRef *self
,GCancellable *cancellable
,GError **error
);
Loads the compressed xml appdata for this ref (if it exists).
Returns
a GBytes containing the compressed appdata file,
or NULL
if an error occurred.
[transfer full]
Since: 1.1.2
flatpak_installed_ref_load_metadata ()
GBytes * flatpak_installed_ref_load_metadata (FlatpakInstalledRef *self
,GCancellable *cancellable
,GError **error
);
Loads the metadata file for this ref.
flatpak_installed_ref_get_appdata_license ()
const char *
flatpak_installed_ref_get_appdata_license
(FlatpakInstalledRef *self
);
Returns the license field from the appdata.
Since: 1.1.2
flatpak_installed_ref_get_appdata_name ()
const char *
flatpak_installed_ref_get_appdata_name
(FlatpakInstalledRef *self
);
Returns the name field from the appdata.
The returned string is localized.
Since: 1.1.2
flatpak_installed_ref_get_appdata_summary ()
const char *
flatpak_installed_ref_get_appdata_summary
(FlatpakInstalledRef *self
);
Returns the summary field from the appdata.
The returned string is localized.
Since: 1.1.2
flatpak_installed_ref_get_appdata_version ()
const char *
flatpak_installed_ref_get_appdata_version
(FlatpakInstalledRef *self
);
Returns the default version field from the appdata.
Since: 1.1.2
flatpak_installed_ref_get_subpaths ()
const char * const *
flatpak_installed_ref_get_subpaths (FlatpakInstalledRef *self
);
Returns the subpaths that are installed, or NULL
if all files installed.
flatpak_installed_ref_get_eol ()
const char *
flatpak_installed_ref_get_eol (FlatpakInstalledRef *self
);
Returns the end-of-life reason string, or NULL
if the
ref is not end-of-lifed.
flatpak_installed_ref_get_eol_rebase ()
const char *
flatpak_installed_ref_get_eol_rebase (FlatpakInstalledRef *self
);
Returns the end-of-life rebased ref, or NULL
if the
ref is not end-of-lifed.
Property Details
The “appdata-content-rating”
property
“appdata-content-rating” GHashTable *
The content rating data from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
The “appdata-content-rating-type”
property
“appdata-content-rating-type” gchar *
The type of the content rating data from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “appdata-license”
property
“appdata-license” gchar *
The license from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “appdata-name”
property
“appdata-name” gchar *
The localized name field from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “appdata-summary”
property
“appdata-summary” gchar *
The localized summary field from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “appdata-version”
property
“appdata-version” gchar *
The default version field from the appdata.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “deploy-dir”
property
“deploy-dir” gchar *
Where the application is installed.
Owner: FlatpakInstalledRef
Flags: Read / Write
Default value: NULL
The “end-of-life”
property
“end-of-life” gchar *
The reason for the ref to be end of life.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “end-of-life-rebase”
property
“end-of-life-rebase” gchar *
The new ref for the end-of-lifed ref.
Owner: FlatpakInstalledRef
Flags: Read / Write / Construct Only
Default value: NULL
The “installed-size”
property
“installed-size” guint64
The installed size of the application.
Owner: FlatpakInstalledRef
Flags: Read / Write
Default value: 0
The “is-current”
property
“is-current” gboolean
Whether the application is current.
Owner: FlatpakInstalledRef
Flags: Read / Write
Default value: FALSE
The “latest-commit”
property
“latest-commit” gchar *
The latest commit.
Owner: FlatpakInstalledRef
Flags: Read / Write
Default value: NULL
The “origin”
property
“origin” gchar *
The origin.
Owner: FlatpakInstalledRef
Flags: Read / Write
Default value: NULL
The “subpaths”
property
“subpaths” GStrv
The subpaths for a partially installed ref.
Owner: FlatpakInstalledRef
Flags: Read / Write
Name
FlatpakRelatedRef — Related application reference
Properties
gboolean | should-autoprune | Read / Write / Construct Only |
gboolean | should-delete | Read / Write / Construct Only |
gboolean | should-download | Read / Write / Construct Only |
GStrv | subpaths | Read / Write / Construct Only |
Description
A FlatpakRelatedRef provides information about an ref that is related to another ref. For instance, the local extension ref of an app.
Functions
flatpak_related_ref_new ()
FlatpakRelatedRef * flatpak_related_ref_new (const char *collection_id
,const char *full_ref
,const char *commit
,char **subpaths
,gboolean download
,gboolean delete
);
Creates a new FlatpakRelatedRef object.
flatpak_related_ref_get_subpaths ()
const char * const *
flatpak_related_ref_get_subpaths (FlatpakRelatedRef *self
);
Returns the subpaths that should be installed/updated for the ref.
This returns NULL
if all files should be installed.
Since: 0.6.7
flatpak_related_ref_should_download ()
gboolean
flatpak_related_ref_should_download (FlatpakRelatedRef *self
);
Returns whether to auto-download the ref with the main ref.
Since: 0.6.7
flatpak_related_ref_should_delete ()
gboolean
flatpak_related_ref_should_delete (FlatpakRelatedRef *self
);
Returns whether to auto-delete the ref with the main ref.
Since: 0.6.7
flatpak_related_ref_should_autoprune ()
gboolean
flatpak_related_ref_should_autoprune (FlatpakRelatedRef *self
);
Returns whether to delete when pruning unused refs.
Since: 0.11.8
Property Details
The “should-autoprune”
property
“should-autoprune” gboolean
Whether to delete when pruning unused refs.
Owner: FlatpakRelatedRef
Flags: Read / Write / Construct Only
Default value: FALSE
The “should-delete”
property
“should-delete” gboolean
Whether to auto-delete the ref with the main ref.
Owner: FlatpakRelatedRef
Flags: Read / Write / Construct Only
Default value: FALSE
The “should-download”
property
“should-download” gboolean
Whether to auto-download the ref with the main ref.
Owner: FlatpakRelatedRef
Flags: Read / Write / Construct Only
Default value: FALSE
The “subpaths”
property
“subpaths” GStrv
The subpaths for a partially installed ref.
Owner: FlatpakRelatedRef
Flags: Read / Write / Construct Only
Name
FlatpakRemoteRef — Remote application reference
Properties
guint64 | download-size | Read / Write / Construct Only |
gchar * | end-of-life | Read / Write / Construct Only |
gchar * | end-of-life-rebase | Read / Write / Construct Only |
guint64 | installed-size | Read / Write / Construct Only |
GBytes * | metadata | Read / Write / Construct Only |
gchar * | remote-name | Read / Write / Construct Only |
Description
A FlatpakRemoteRef provides information about an application or runtime (in short: ref) that is available from a remote repository.
Functions
flatpak_remote_ref_get_remote_name ()
const char *
flatpak_remote_ref_get_remote_name (FlatpakRemoteRef *self
);
Gets the remote name of the ref.
flatpak_remote_ref_get_download_size ()
guint64
flatpak_remote_ref_get_download_size (FlatpakRemoteRef *self
);
Returns the download size of the ref.
flatpak_remote_ref_get_eol ()
const char *
flatpak_remote_ref_get_eol (FlatpakRemoteRef *self
);
Returns the end-of-life reason string, or NULL
if the
ref is not end-of-lifed.
flatpak_remote_ref_get_eol_rebase ()
const char *
flatpak_remote_ref_get_eol_rebase (FlatpakRemoteRef *self
);
Returns the end-of-life rebased ref, or NULL
if the
ref is not end-of-lifed.
flatpak_remote_ref_get_installed_size ()
guint64
flatpak_remote_ref_get_installed_size (FlatpakRemoteRef *self
);
Returns the installed size of the ref.
flatpak_remote_ref_get_metadata ()
GBytes *
flatpak_remote_ref_get_metadata (FlatpakRemoteRef *self
);
Returns the app metadata from the metadata cache of the ref.
Property Details
The “download-size”
property
“download-size” guint64
The download size of the application.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
Default value: 0
The “end-of-life”
property
“end-of-life” gchar *
The reason for the ref to be end of life.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
Default value: NULL
The “end-of-life-rebase”
property
“end-of-life-rebase” gchar *
The new ref for the end of lifeed ref.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
Default value: NULL
The “installed-size”
property
“installed-size” guint64
The installed size of the application.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
Default value: 0
The “metadata”
property
“metadata” GBytes *
The metadata info for the application.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
The “remote-name”
property
“remote-name” gchar *
The name of the remote.
Owner: FlatpakRemoteRef
Flags: Read / Write / Construct Only
Default value: NULL
Name
FlatpakBundleRef — Application bundle reference
Functions
Functions
flatpak_bundle_ref_new ()
FlatpakBundleRef * flatpak_bundle_ref_new (GFile *file
,GError **error
);
Creates a new bundle ref for the given file.
flatpak_bundle_ref_get_file ()
GFile *
flatpak_bundle_ref_get_file (FlatpakBundleRef *self
);
Get the file this bundle is stored in.
flatpak_bundle_ref_get_metadata ()
GBytes *
flatpak_bundle_ref_get_metadata (FlatpakBundleRef *self
);
Get the metadata for the app/runtime
flatpak_bundle_ref_get_appstream ()
GBytes *
flatpak_bundle_ref_get_appstream (FlatpakBundleRef *self
);
Get the compressed appstream for the app/runtime
flatpak_bundle_ref_get_icon ()
GBytes * flatpak_bundle_ref_get_icon (FlatpakBundleRef *self
,int size
);
Get the icon png data for the app/runtime
flatpak_bundle_ref_get_origin ()
char *
flatpak_bundle_ref_get_origin (FlatpakBundleRef *self
);
Get the origin url stored in the bundle
flatpak_bundle_ref_get_installed_size ()
guint64
flatpak_bundle_ref_get_installed_size (FlatpakBundleRef *self
);
Returns the installed size for the bundle.
flatpak_bundle_ref_get_runtime_repo_url ()
char *
flatpak_bundle_ref_get_runtime_repo_url
(FlatpakBundleRef *self
);
Get the runtime flatpakrepo url stored in the bundle (if any)
Since: 0.8.0
Property Details
The “file”
property
“file” GFile *
The bundle file that this ref refers to.
Owner: FlatpakBundleRef
Flags: Read / Write / Construct Only
Name
FlatpakInstance — Information about a running sandbox
Functions
GPtrArray * | flatpak_instance_get_all () |
const char * | flatpak_instance_get_id () |
const char * | flatpak_instance_get_app () |
const char * | flatpak_instance_get_arch () |
const char * | flatpak_instance_get_branch () |
const char * | flatpak_instance_get_commit () |
const char * | flatpak_instance_get_runtime () |
const char * | flatpak_instance_get_runtime_commit () |
int | flatpak_instance_get_pid () |
int | flatpak_instance_get_child_pid () |
GKeyFile * | flatpak_instance_get_info () |
gboolean | flatpak_instance_is_running () |
Description
A FlatpakInstance refers to a running sandbox, and contains some basic information about the sandbox setup, such as the application and runtime used inside the sandbox.
Importantly, it also gives access to the PID of the main processes in the sandbox.
One way to obtain FlatpakInstances is to use flatpak_instance_get_all()
.
Another way is to use flatpak_installation_launch_full()
.
Note that process lifecycle tracking is fundamentally racy. You have to be prepared for the sandbox and the processes represented by a FlatpakInstance to not be around anymore.
The FlatpakInstance api was added in Flatpak 1.1.
Functions
flatpak_instance_get_all ()
GPtrArray *
flatpak_instance_get_all (void
);
Gets FlatpakInstance objects for all running sandboxes in the current session.
Since: 1.1
flatpak_instance_get_id ()
const char *
flatpak_instance_get_id (FlatpakInstance *self
);
Gets the instance ID. The ID is used by Flatpak for bookkeeping purposes and has no further relevance.
Since: 1.1
flatpak_instance_get_app ()
const char *
flatpak_instance_get_app (FlatpakInstance *self
);
Gets the application ID of the application running in the instance.
Note that this may return NULL
for sandboxes that don't have an application.
Since: 1.1
flatpak_instance_get_arch ()
const char *
flatpak_instance_get_arch (FlatpakInstance *self
);
Gets the architecture of the application running in the instance.
Since: 1.1
flatpak_instance_get_branch ()
const char *
flatpak_instance_get_branch (FlatpakInstance *self
);
Gets the branch of the application running in the instance.
Since: 1.1
flatpak_instance_get_commit ()
const char *
flatpak_instance_get_commit (FlatpakInstance *self
);
Gets the commit of the application running in the instance.
Since: 1.1
flatpak_instance_get_runtime ()
const char *
flatpak_instance_get_runtime (FlatpakInstance *self
);
Gets the ref of the runtime used in the instance.
Since: 1.1
flatpak_instance_get_runtime_commit ()
const char *
flatpak_instance_get_runtime_commit (FlatpakInstance *self
);
Gets the commit of the runtime used in the instance.
Since: 1.1
flatpak_instance_get_pid ()
int
flatpak_instance_get_pid (FlatpakInstance *self
);
Gets the PID of the outermost process in the sandbox. This is not the application process itself, but a bubblewrap 'babysitter' process.
See flatpak_instance_get_child_pid()
.
Since: 1.1
flatpak_instance_get_child_pid ()
int
flatpak_instance_get_child_pid (FlatpakInstance *self
);
Gets the PID of the application process in the sandbox.
See flatpak_instance_get_pid()
.
Note that this function may return 0 immediately after launching a sandbox, for a short amount of time.
Since: 1.1
flatpak_instance_get_info ()
GKeyFile *
flatpak_instance_get_info (FlatpakInstance *self
);
Gets a keyfile that holds information about the running sandbox.
This file is available as /.flatpak-info inside the sandbox as well.
The most important data in the keyfile is available with separate getters, but there may be more information in the keyfile.
Since: 1.1
flatpak_instance_is_running ()
gboolean
flatpak_instance_is_running (FlatpakInstance *self
);
Finds out if the sandbox represented by self
is still running.
Name
Error codes
Types and Values
#define | FLATPAK_ERROR |
enum | FlatpakError |
#define | FLATPAK_PORTAL_ERROR |
enum | FlatpakPortalError |
Description
The FlatpakError and FlatpakPortalError enumerations contain error codes for some common errors.
Types and Values
enum FlatpakError
Error codes for library functions.
Members
App/runtime is already installed | ||
App/runtime is not installed | ||
App/runtime was only pulled into the local repository but not installed. | ||
The App/Runtime is already installed, but from a different remote. | ||
The transaction was aborted (returned TRUE in operation-error signal). | ||
The App/Runtime install was skipped due to earlier errors. | ||
The App/Runtime needs a more recent version of flatpak. | ||
The specified remote was not found. | ||
A runtime needed for the app was not found. | ||
The pulled commit is a downgrade, and a downgrade wasn't specifically allowed. (Since: 1.0) | ||
A ref could not be parsed. (Since: 1.0.3) | ||
Invalid data. (Since: 1.0.3) | ||
Missing GPG key or signature. (Since: 1.0.3) | ||
Sandbox setup failed. (Since: 1.0.3) | ||
Exporting data failed. (Since: 1.0.3) | ||
Remote can't be uninstalled. (Since: 1.0.3) | ||
Runtime can't be uninstalled. (Since: 1.0.3) | ||
Application, runtime or remote name is invalid. (Since: 1.0.3) | ||
More disk space needed. (Since: 1.2.0) | ||
An operation is being attempted by the wrong user (such as root operating on a user installation). (Since: 1.2.0) | ||
Cached data was requested, but it was not available. (Since: 1.4.0) | ||
The specified ref was not found. (Since: 1.4.0) | ||
An operation was not allowed by the administrative policy. For example, an app is not allowed to be installed due to not complying with the parental controls policy. (Since: 1.5.1) |
FLATPAK_PORTAL_ERROR
#define FLATPAK_PORTAL_ERROR flatpak_portal_error_quark ()
The error domain for FlatpakPortalError errors.
Name
Version information
Types and Values
#define | FLATPAK_MAJOR_VERSION |
#define | FLATPAK_MINOR_VERSION |
#define | FLATPAK_MICRO_VERSION |
GObject ├── FlatpakRef │ ├── FlatpakBundleRef │ ├── FlatpakInstalledRef │ ├── FlatpakRelatedRef │ ╰── FlatpakRemoteRef ├── FlatpakInstallation ├── FlatpakInstance ├── FlatpakRemote ├── FlatpakTransaction ├── FlatpakTransactionOperation ╰── FlatpakTransactionProgress
B
- FlatpakBundleRef, struct in FlatpakBundleRef
- FlatpakBundleRef:file, object property in FlatpakBundleRef
- flatpak_bundle_ref_get_appstream, function in FlatpakBundleRef
- flatpak_bundle_ref_get_file, function in FlatpakBundleRef
- flatpak_bundle_ref_get_icon, function in FlatpakBundleRef
- flatpak_bundle_ref_get_installed_size, function in FlatpakBundleRef
- flatpak_bundle_ref_get_metadata, function in FlatpakBundleRef
- flatpak_bundle_ref_get_origin, function in FlatpakBundleRef
- flatpak_bundle_ref_get_runtime_repo_url, function in FlatpakBundleRef
- flatpak_bundle_ref_new, function in FlatpakBundleRef
C
- FLATPAK_CHECK_VERSION, macro in Version information
E
- FLATPAK_ERROR, macro in Error codes
- FlatpakError, enum in Error codes
G
- flatpak_get_default_arch, function in FlatpakInstallation
- flatpak_get_supported_arches, function in FlatpakInstallation
- flatpak_get_system_installations, function in FlatpakInstallation
I
- FlatpakInstallation, struct in FlatpakInstallation
- flatpak_installation_add_remote, function in FlatpakInstallation
- flatpak_installation_cleanup_local_refs_sync, function in FlatpakInstallation
- flatpak_installation_create_monitor, function in FlatpakInstallation
- flatpak_installation_drop_caches, function in FlatpakInstallation
- flatpak_installation_fetch_remote_metadata_sync, function in FlatpakInstallation
- flatpak_installation_fetch_remote_ref_sync, function in FlatpakInstallation
- flatpak_installation_fetch_remote_size_sync, function in FlatpakInstallation
- flatpak_installation_get_config, function in FlatpakInstallation
- flatpak_installation_get_current_installed_app, function in FlatpakInstallation
- flatpak_installation_get_default_languages, function in FlatpakInstallation
- flatpak_installation_get_display_name, function in FlatpakInstallation
- flatpak_installation_get_id, function in FlatpakInstallation
- flatpak_installation_get_installed_ref, function in FlatpakInstallation
- flatpak_installation_get_is_user, function in FlatpakInstallation
- flatpak_installation_get_min_free_space_bytes, function in FlatpakInstallation
- flatpak_installation_get_path, function in FlatpakInstallation
- flatpak_installation_get_priority, function in FlatpakInstallation
- flatpak_installation_get_remote_by_name, function in FlatpakInstallation
- flatpak_installation_get_storage_type, function in FlatpakInstallation
- flatpak_installation_install, function in FlatpakInstallation
- flatpak_installation_install_bundle, function in FlatpakInstallation
- flatpak_installation_install_full, function in FlatpakInstallation
- flatpak_installation_install_ref_file, function in FlatpakInstallation
- flatpak_installation_launch, function in FlatpakInstallation
- flatpak_installation_launch_full, function in FlatpakInstallation
- flatpak_installation_list_installed_refs, function in FlatpakInstallation
- flatpak_installation_list_installed_refs_by_kind, function in FlatpakInstallation
- flatpak_installation_list_installed_refs_for_update, function in FlatpakInstallation
- flatpak_installation_list_installed_related_refs_sync, function in FlatpakInstallation
- flatpak_installation_list_remotes, function in FlatpakInstallation
- flatpak_installation_list_remotes_by_type, function in FlatpakInstallation
- flatpak_installation_list_remote_refs_sync, function in FlatpakInstallation
- flatpak_installation_list_remote_related_refs_sync, function in FlatpakInstallation
- flatpak_installation_load_app_overrides, function in FlatpakInstallation
- flatpak_installation_modify_remote, function in FlatpakInstallation
- flatpak_installation_new_for_path, function in FlatpakInstallation
- flatpak_installation_new_system, function in FlatpakInstallation
- flatpak_installation_new_system_with_id, function in FlatpakInstallation
- flatpak_installation_new_user, function in FlatpakInstallation
- flatpak_installation_prune_local_repo, function in FlatpakInstallation
- flatpak_installation_remove_local_ref_sync, function in FlatpakInstallation
- flatpak_installation_remove_remote, function in FlatpakInstallation
- flatpak_installation_run_triggers, function in FlatpakInstallation
- flatpak_installation_set_config_sync, function in FlatpakInstallation
- flatpak_installation_uninstall, function in FlatpakInstallation
- flatpak_installation_uninstall_full, function in FlatpakInstallation
- flatpak_installation_update, function in FlatpakInstallation
- flatpak_installation_update_appstream_full_sync, function in FlatpakInstallation
- flatpak_installation_update_appstream_sync, function in FlatpakInstallation
- flatpak_installation_update_full, function in FlatpakInstallation
- flatpak_installation_update_remote_sync, function in FlatpakInstallation
- FlatpakInstalledRef, struct in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-content-rating, object property in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-content-rating-type, object property in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-license, object property in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-name, object property in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-summary, object property in FlatpakInstalledRef
- FlatpakInstalledRef:appdata-version, object property in FlatpakInstalledRef
- FlatpakInstalledRef:deploy-dir, object property in FlatpakInstalledRef
- FlatpakInstalledRef:end-of-life, object property in FlatpakInstalledRef
- FlatpakInstalledRef:end-of-life-rebase, object property in FlatpakInstalledRef
- FlatpakInstalledRef:installed-size, object property in FlatpakInstalledRef
- FlatpakInstalledRef:is-current, object property in FlatpakInstalledRef
- FlatpakInstalledRef:latest-commit, object property in FlatpakInstalledRef
- FlatpakInstalledRef:origin, object property in FlatpakInstalledRef
- FlatpakInstalledRef:subpaths, object property in FlatpakInstalledRef
- flatpak_installed_ref_get_appdata_license, function in FlatpakInstalledRef
- flatpak_installed_ref_get_appdata_name, function in FlatpakInstalledRef
- flatpak_installed_ref_get_appdata_summary, function in FlatpakInstalledRef
- flatpak_installed_ref_get_appdata_version, function in FlatpakInstalledRef
- flatpak_installed_ref_get_deploy_dir, function in FlatpakInstalledRef
- flatpak_installed_ref_get_eol, function in FlatpakInstalledRef
- flatpak_installed_ref_get_eol_rebase, function in FlatpakInstalledRef
- flatpak_installed_ref_get_installed_size, function in FlatpakInstalledRef
- flatpak_installed_ref_get_is_current, function in FlatpakInstalledRef
- flatpak_installed_ref_get_latest_commit, function in FlatpakInstalledRef
- flatpak_installed_ref_get_origin, function in FlatpakInstalledRef
- flatpak_installed_ref_get_subpaths, function in FlatpakInstalledRef
- flatpak_installed_ref_load_appdata, function in FlatpakInstalledRef
- flatpak_installed_ref_load_metadata, function in FlatpakInstalledRef
- FlatpakInstallFlags, enum in FlatpakInstallation
- FlatpakInstance, struct in FlatpakInstance
- flatpak_instance_get_all, function in FlatpakInstance
- flatpak_instance_get_app, function in FlatpakInstance
- flatpak_instance_get_arch, function in FlatpakInstance
- flatpak_instance_get_branch, function in FlatpakInstance
- flatpak_instance_get_child_pid, function in FlatpakInstance
- flatpak_instance_get_commit, function in FlatpakInstance
- flatpak_instance_get_id, function in FlatpakInstance
- flatpak_instance_get_info, function in FlatpakInstance
- flatpak_instance_get_pid, function in FlatpakInstance
- flatpak_instance_get_runtime, function in FlatpakInstance
- flatpak_instance_get_runtime_commit, function in FlatpakInstance
- flatpak_instance_is_running, function in FlatpakInstance
L
- FlatpakLaunchFlags, enum in FlatpakInstallation
M
- FLATPAK_MAJOR_VERSION, macro in Version information
- FLATPAK_MICRO_VERSION, macro in Version information
- FLATPAK_MINOR_VERSION, macro in Version information
P
- FlatpakPortalError, enum in Error codes
- FLATPAK_PORTAL_ERROR, macro in Error codes
- FlatpakProgressCallback, user_function in FlatpakInstallation
R
- FlatpakRef, struct in FlatpakRef
- FlatpakRef:arch, object property in FlatpakRef
- FlatpakRef:branch, object property in FlatpakRef
- FlatpakRef:collection-id, object property in FlatpakRef
- FlatpakRef:commit, object property in FlatpakRef
- FlatpakRef:kind, object property in FlatpakRef
- FlatpakRef:name, object property in FlatpakRef
- FlatpakRefKind, enum in FlatpakRef
- flatpak_ref_format_ref, function in FlatpakRef
- flatpak_ref_get_arch, function in FlatpakRef
- flatpak_ref_get_branch, function in FlatpakRef
- flatpak_ref_get_collection_id, function in FlatpakRef
- flatpak_ref_get_commit, function in FlatpakRef
- flatpak_ref_get_kind, function in FlatpakRef
- flatpak_ref_get_name, function in FlatpakRef
- flatpak_ref_parse, function in FlatpakRef
- FlatpakRelatedRef, struct in FlatpakRelatedRef
- FlatpakRelatedRef:should-autoprune, object property in FlatpakRelatedRef
- FlatpakRelatedRef:should-delete, object property in FlatpakRelatedRef
- FlatpakRelatedRef:should-download, object property in FlatpakRelatedRef
- FlatpakRelatedRef:subpaths, object property in FlatpakRelatedRef
- flatpak_related_ref_get_subpaths, function in FlatpakRelatedRef
- flatpak_related_ref_new, function in FlatpakRelatedRef
- flatpak_related_ref_should_autoprune, function in FlatpakRelatedRef
- flatpak_related_ref_should_delete, function in FlatpakRelatedRef
- flatpak_related_ref_should_download, function in FlatpakRelatedRef
- FlatpakRemote, struct in FlatpakRemote
- FlatpakRemote:name, object property in FlatpakRemote
- FlatpakRemote:type, object property in FlatpakRemote
- FlatpakRemoteRef, struct in FlatpakRemoteRef
- FlatpakRemoteRef:download-size, object property in FlatpakRemoteRef
- FlatpakRemoteRef:end-of-life, object property in FlatpakRemoteRef
- FlatpakRemoteRef:end-of-life-rebase, object property in FlatpakRemoteRef
- FlatpakRemoteRef:installed-size, object property in FlatpakRemoteRef
- FlatpakRemoteRef:metadata, object property in FlatpakRemoteRef
- FlatpakRemoteRef:remote-name, object property in FlatpakRemoteRef
- FlatpakRemoteType, enum in FlatpakRemote
- flatpak_remote_get_appstream_dir, function in FlatpakRemote
- flatpak_remote_get_appstream_timestamp, function in FlatpakRemote
- flatpak_remote_get_collection_id, function in FlatpakRemote
- flatpak_remote_get_comment, function in FlatpakRemote
- flatpak_remote_get_default_branch, function in FlatpakRemote
- flatpak_remote_get_description, function in FlatpakRemote
- flatpak_remote_get_disabled, function in FlatpakRemote
- flatpak_remote_get_gpg_verify, function in FlatpakRemote
- flatpak_remote_get_homepage, function in FlatpakRemote
- flatpak_remote_get_icon, function in FlatpakRemote
- flatpak_remote_get_name, function in FlatpakRemote
- flatpak_remote_get_nodeps, function in FlatpakRemote
- flatpak_remote_get_noenumerate, function in FlatpakRemote
- flatpak_remote_get_prio, function in FlatpakRemote
- flatpak_remote_get_remote_type, function in FlatpakRemote
- flatpak_remote_get_title, function in FlatpakRemote
- flatpak_remote_get_url, function in FlatpakRemote
- flatpak_remote_new, function in FlatpakRemote
- flatpak_remote_new_from_file, function in FlatpakRemote
- flatpak_remote_ref_get_download_size, function in FlatpakRemoteRef
- flatpak_remote_ref_get_eol, function in FlatpakRemoteRef
- flatpak_remote_ref_get_eol_rebase, function in FlatpakRemoteRef
- flatpak_remote_ref_get_installed_size, function in FlatpakRemoteRef
- flatpak_remote_ref_get_metadata, function in FlatpakRemoteRef
- flatpak_remote_ref_get_remote_name, function in FlatpakRemoteRef
- flatpak_remote_set_collection_id, function in FlatpakRemote
- flatpak_remote_set_comment, function in FlatpakRemote
- flatpak_remote_set_default_branch, function in FlatpakRemote
- flatpak_remote_set_description, function in FlatpakRemote
- flatpak_remote_set_disabled, function in FlatpakRemote
- flatpak_remote_set_gpg_key, function in FlatpakRemote
- flatpak_remote_set_gpg_verify, function in FlatpakRemote
- flatpak_remote_set_homepage, function in FlatpakRemote
- flatpak_remote_set_icon, function in FlatpakRemote
- flatpak_remote_set_nodeps, function in FlatpakRemote
- flatpak_remote_set_noenumerate, function in FlatpakRemote
- flatpak_remote_set_prio, function in FlatpakRemote
- flatpak_remote_set_title, function in FlatpakRemote
- flatpak_remote_set_url, function in FlatpakRemote
S
- FlatpakStorageType, enum in FlatpakInstallation
T
- FlatpakTransaction, struct in FlatpakTransaction
- FlatpakTransaction::add-new-remote, object signal in FlatpakTransaction
- FlatpakTransaction::choose-remote-for-ref, object signal in FlatpakTransaction
- FlatpakTransaction::end-of-lifed, object signal in FlatpakTransaction
- FlatpakTransaction::end-of-lifed-with-rebase, object signal in FlatpakTransaction
- FlatpakTransaction::new-operation, object signal in FlatpakTransaction
- FlatpakTransaction::operation-done, object signal in FlatpakTransaction
- FlatpakTransaction::operation-error, object signal in FlatpakTransaction
- FlatpakTransaction::ready, object signal in FlatpakTransaction
- FlatpakTransaction::webflow-done, object signal in FlatpakTransaction
- FlatpakTransaction::webflow-start, object signal in FlatpakTransaction
- FlatpakTransaction:installation, object property in FlatpakTransaction
- FlatpakTransactionErrorDetails, enum in FlatpakTransaction
- FlatpakTransactionOperation, struct in FlatpakTransactionOperation
- FlatpakTransactionOperationType, enum in FlatpakTransaction
- FlatpakTransactionProgress, struct in FlatpakTransactionProgress
- FlatpakTransactionProgress::changed, object signal in FlatpakTransactionProgress
- FlatpakTransactionRemoteReason, enum in FlatpakTransaction
- FlatpakTransactionResult, enum in FlatpakTransaction
- flatpak_transaction_add_default_dependency_sources, function in FlatpakTransaction
- flatpak_transaction_add_dependency_source, function in FlatpakTransaction
- flatpak_transaction_add_install, function in FlatpakTransaction
- flatpak_transaction_add_install_bundle, function in FlatpakTransaction
- flatpak_transaction_add_install_flatpakref, function in FlatpakTransaction
- flatpak_transaction_add_uninstall, function in FlatpakTransaction
- flatpak_transaction_add_update, function in FlatpakTransaction
- flatpak_transaction_get_current_operation, function in FlatpakTransaction
- flatpak_transaction_get_installation, function in FlatpakTransaction
- flatpak_transaction_get_no_deploy, function in FlatpakTransaction
- flatpak_transaction_get_no_pull, function in FlatpakTransaction
- flatpak_transaction_get_operations, function in FlatpakTransaction
- flatpak_transaction_is_empty, function in FlatpakTransaction
- flatpak_transaction_new_for_installation, function in FlatpakTransaction
- flatpak_transaction_operation_get_bundle_path, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_commit, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_metadata, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_old_metadata, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_operation_type, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_ref, function in FlatpakTransactionOperation
- flatpak_transaction_operation_get_remote, function in FlatpakTransactionOperation
- flatpak_transaction_operation_type_to_string, function in FlatpakTransactionOperation
- flatpak_transaction_progress_get_is_estimating, function in FlatpakTransactionProgress
- flatpak_transaction_progress_get_progress, function in FlatpakTransactionProgress
- flatpak_transaction_progress_get_status, function in FlatpakTransactionProgress
- flatpak_transaction_progress_set_update_frequency, function in FlatpakTransactionProgress
- flatpak_transaction_run, function in FlatpakTransaction
- flatpak_transaction_set_default_arch, function in FlatpakTransaction
- flatpak_transaction_set_disable_dependencies, function in FlatpakTransaction
- flatpak_transaction_set_disable_prune, function in FlatpakTransaction
- flatpak_transaction_set_disable_related, function in FlatpakTransaction
- flatpak_transaction_set_disable_static_deltas, function in FlatpakTransaction
- flatpak_transaction_set_force_uninstall, function in FlatpakTransaction
- flatpak_transaction_set_no_deploy, function in FlatpakTransaction
- flatpak_transaction_set_no_pull, function in FlatpakTransaction
- flatpak_transaction_set_reinstall, function in FlatpakTransaction
U
- FlatpakUninstallFlags, enum in FlatpakInstallation
- FlatpakUpdateFlags, enum in FlatpakInstallation