| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #pragma once |
| |
| #include "ostree-core.h" |
| |
| G_BEGIN_DECLS |
| |
| |
| #define OSTREE_STATIC_DELTA_PART_MAX_SIZE_BYTES (16*1024*1024) |
| |
| #define OSTREE_STATIC_DELTA_OBJTYPE_CSUM_LEN 33 |
| |
| #define OSTREE_SUMMARY_STATIC_DELTAS "ostree.static-deltas" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define OSTREE_STATIC_DELTA_PART_PAYLOAD_FORMAT_V0 "(a(uuu)aa(ayay)ayay)" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define OSTREE_STATIC_DELTA_META_ENTRY_FORMAT "(uayttay)" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define OSTREE_STATIC_DELTA_FALLBACK_FORMAT "(yaytt)" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define OSTREE_STATIC_DELTA_SUPERBLOCK_FORMAT "(a{sv}tayay" OSTREE_COMMIT_GVARIANT_STRING "aya" OSTREE_STATIC_DELTA_META_ENTRY_FORMAT "a" OSTREE_STATIC_DELTA_FALLBACK_FORMAT ")" |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #define OSTREE_STATIC_DELTA_SIGNED_FORMAT "(taya{sv})" |
| |
| #define OSTREE_STATIC_DELTA_SIGNED_MAGIC 0x4F535453474E4454 |
| |
| typedef enum { |
| OSTREE_STATIC_DELTA_OPEN_FLAGS_NONE = 0, |
| OSTREE_STATIC_DELTA_OPEN_FLAGS_SKIP_CHECKSUM = (1 << 0), |
| OSTREE_STATIC_DELTA_OPEN_FLAGS_VARIANT_TRUSTED = (1 << 1) |
| } OstreeStaticDeltaOpenFlags; |
| |
| typedef enum { |
| OSTREE_STATIC_DELTA_OP_OPEN_SPLICE_AND_CLOSE = 'S', |
| OSTREE_STATIC_DELTA_OP_OPEN = 'o', |
| OSTREE_STATIC_DELTA_OP_WRITE = 'w', |
| OSTREE_STATIC_DELTA_OP_SET_READ_SOURCE = 'r', |
| OSTREE_STATIC_DELTA_OP_UNSET_READ_SOURCE = 'R', |
| OSTREE_STATIC_DELTA_OP_CLOSE = 'c', |
| OSTREE_STATIC_DELTA_OP_BSPATCH = 'B' |
| } OstreeStaticDeltaOpCode; |
| #define OSTREE_STATIC_DELTA_N_OPS 7 |
| |
| gboolean |
| _ostree_static_delta_part_open (GInputStream *part_in, |
| GBytes *inline_part_bytes, |
| OstreeStaticDeltaOpenFlags flags, |
| const char *expected_checksum, |
| GVariant **out_part, |
| GCancellable *cancellable, |
| GError **error); |
| |
| typedef struct { |
| guint n_ops_executed[OSTREE_STATIC_DELTA_N_OPS]; |
| } OstreeDeltaExecuteStats; |
| |
| gboolean _ostree_static_delta_part_execute (OstreeRepo *repo, |
| GVariant *header, |
| GVariant *part_payload, |
| gboolean stats_only, |
| OstreeDeltaExecuteStats *stats, |
| GCancellable *cancellable, |
| GError **error); |
| |
| void _ostree_static_delta_part_execute_async (OstreeRepo *repo, |
| GVariant *header, |
| GVariant *part_payload, |
| GCancellable *cancellable, |
| GAsyncReadyCallback callback, |
| gpointer user_data); |
| |
| gboolean _ostree_static_delta_part_execute_finish (OstreeRepo *repo, |
| GAsyncResult *result, |
| GError **error); |
| |
| gboolean |
| _ostree_static_delta_parse_checksum_array (GVariant *array, |
| guint8 **out_checksums_array, |
| guint *out_n_checksums, |
| GError **error); |
| |
| gboolean |
| _ostree_repo_static_delta_part_have_all_objects (OstreeRepo *repo, |
| GVariant *checksum_array, |
| gboolean *out_have_all, |
| GCancellable *cancellable, |
| GError **error); |
| |
| typedef struct { |
| char *checksum; |
| guint64 size; |
| GPtrArray *basenames; |
| } OstreeDeltaContentSizeNames; |
| |
| void _ostree_delta_content_sizenames_free (gpointer v); |
| |
| gboolean |
| _ostree_delta_compute_similar_objects (OstreeRepo *repo, |
| GVariant *from_commit, |
| GVariant *to_commit, |
| GHashTable *new_reachable_regfile_content, |
| guint similarity_percent_threshold, |
| GHashTable **out_modified_regfile_content, |
| GCancellable *cancellable, |
| GError **error); |
| |
| gboolean |
| _ostree_repo_static_delta_query_exists (OstreeRepo *repo, |
| const char *delta_id, |
| gboolean *out_exists, |
| GCancellable *cancellable, |
| GError **error); |
| GVariant * |
| _ostree_repo_static_delta_superblock_digest (OstreeRepo *repo, |
| const char *from, |
| const char *to, |
| GCancellable *cancellable, |
| GError **error); |
| |
| gboolean |
| _ostree_repo_static_delta_dump (OstreeRepo *repo, |
| const char *delta_id, |
| GCancellable *cancellable, |
| GError **error); |
| |
| gboolean |
| _ostree_repo_static_delta_delete (OstreeRepo *repo, |
| const char *delta_id, |
| GCancellable *cancellable, |
| GError **error); |
| |
| |
| |
| |
| |
| |
| static inline guint32 |
| maybe_swap_endian_u32 (gboolean swap, |
| guint32 v) |
| { |
| if (!swap) |
| return v; |
| return GUINT32_SWAP_LE_BE (v); |
| } |
| |
| static inline guint64 |
| maybe_swap_endian_u64 (gboolean swap, |
| guint64 v) |
| { |
| if (!swap) |
| return v; |
| return GUINT64_SWAP_LE_BE (v); |
| } |
| |
| typedef enum { |
| OSTREE_DELTA_ENDIAN_BIG, |
| OSTREE_DELTA_ENDIAN_LITTLE, |
| OSTREE_DELTA_ENDIAN_INVALID |
| } OstreeDeltaEndianness; |
| |
| OstreeDeltaEndianness _ostree_delta_get_endianness (GVariant *superblock, gboolean *out_was_heuristic); |
| |
| gboolean _ostree_delta_needs_byteswap (GVariant *superblock); |
| |
| G_END_DECLS |