mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-27 19:33:06 -04:00
Instead of passing the delta URL along with the image source, when we create an image source for a remote registry, if we find a delta URL in the metadata, set it on the FlatpakImageSource for later use. Centralize duplicated code for creating an image source for a remote repository based on a summary lookup into one place.
74 lines
3.8 KiB
C
74 lines
3.8 KiB
C
/*
|
|
* Copyright © 2024 Red Hat, Inc
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Authors:
|
|
* Owen Taylor <otaylor@redhat.com>
|
|
*/
|
|
|
|
#ifndef __FLATPAK_IMAGE_SOURCE_H__
|
|
#define __FLATPAK_IMAGE_SOURCE_H__
|
|
|
|
#include <glib.h>
|
|
#include <gio/gio.h>
|
|
|
|
#include <flatpak-common-types-private.h>
|
|
|
|
#define FLATPAK_TYPE_IMAGE_SOURCE flatpak_image_source_get_type ()
|
|
G_DECLARE_FINAL_TYPE (FlatpakImageSource,
|
|
flatpak_image_source,
|
|
FLATPAK, IMAGE_SOURCE,
|
|
GObject)
|
|
|
|
FlatpakImageSource *flatpak_image_source_new_local (GFile *file,
|
|
const char *reference,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
FlatpakImageSource *flatpak_image_source_new_remote (const char *uri,
|
|
const char *oci_repository,
|
|
const char *digest,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
FlatpakImageSource *flatpak_image_source_new_for_location (const char *location,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
void flatpak_image_source_set_token (FlatpakImageSource *self,
|
|
const char *token);
|
|
void flatpak_image_source_set_delta_url (FlatpakImageSource *self,
|
|
const char *delta_url);
|
|
|
|
FlatpakOciRegistry *flatpak_image_source_get_registry (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_oci_repository (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_digest (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_delta_url (FlatpakImageSource *self);
|
|
FlatpakOciManifest *flatpak_image_source_get_manifest (FlatpakImageSource *self);
|
|
size_t flatpak_image_source_get_manifest_size (FlatpakImageSource *self);
|
|
FlatpakOciImage *flatpak_image_source_get_image_config (FlatpakImageSource *self);
|
|
|
|
const char *flatpak_image_source_get_ref (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_metadata (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_commit (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_parent_commit (FlatpakImageSource *self);
|
|
guint64 flatpak_image_source_get_commit_timestamp (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_commit_subject (FlatpakImageSource *self);
|
|
const char *flatpak_image_source_get_commit_body (FlatpakImageSource *self);
|
|
|
|
void flatpak_image_source_build_commit_metadata (FlatpakImageSource *self,
|
|
GVariantBuilder *metadata_builder);
|
|
|
|
GVariant *flatpak_image_source_make_fake_commit (FlatpakImageSource *image_source);
|
|
#endif /* __FLATPAK_IMAGE_SOURCE_H__ */
|