core: Expose more details of commit via API
Rather than offering high level "commit directory", instead perform operations on a mtree. Commits are treated more like regular objects. Change the commit builtin to drive this all at a lower level.
This commit is contained in:
parent
59281d5901
commit
c8377c7c5c
|
|
@ -1222,26 +1222,29 @@ ostree_repo_write_ref (OstreeRepo *self,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
do_commit_write_ref (OstreeRepo *self,
|
ostree_repo_stage_commit (OstreeRepo *self,
|
||||||
const char *branch,
|
const char *branch,
|
||||||
const char *parent,
|
const char *parent,
|
||||||
const char *subject,
|
const char *subject,
|
||||||
const char *body,
|
const char *body,
|
||||||
GVariant *metadata,
|
GVariant *metadata,
|
||||||
const char *root_contents_checksum,
|
const char *root_contents_checksum,
|
||||||
const char *root_metadata_checksum,
|
const char *root_metadata_checksum,
|
||||||
GChecksum **out_commit,
|
char **out_commit,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
GChecksum *ret_commit = NULL;
|
GChecksum *ret_commit_obj = NULL;
|
||||||
|
char *ret_commit = NULL;
|
||||||
GVariant *commit = NULL;
|
GVariant *commit = NULL;
|
||||||
GDateTime *now = NULL;
|
GDateTime *now = NULL;
|
||||||
|
|
||||||
g_assert (branch != NULL);
|
g_return_val_if_fail (branch != NULL, FALSE);
|
||||||
g_assert (subject != NULL);
|
g_return_val_if_fail (subject != NULL, FALSE);
|
||||||
|
g_return_val_if_fail (root_contents_checksum != NULL, FALSE);
|
||||||
|
g_return_val_if_fail (root_metadata_checksum != NULL, FALSE);
|
||||||
|
|
||||||
now = g_date_time_new_now_utc ();
|
now = g_date_time_new_now_utc ();
|
||||||
commit = g_variant_new ("(u@a{sv}ssstss)",
|
commit = g_variant_new ("(u@a{sv}ssstss)",
|
||||||
|
|
@ -1254,19 +1257,16 @@ do_commit_write_ref (OstreeRepo *self,
|
||||||
root_metadata_checksum);
|
root_metadata_checksum);
|
||||||
g_variant_ref_sink (commit);
|
g_variant_ref_sink (commit);
|
||||||
if (!stage_gvariant_object (self, OSTREE_OBJECT_TYPE_COMMIT,
|
if (!stage_gvariant_object (self, OSTREE_OBJECT_TYPE_COMMIT,
|
||||||
commit, &ret_commit, NULL, error))
|
commit, &ret_commit_obj, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (!ostree_repo_commit_transaction (self, cancellable, error))
|
ret_commit = g_strdup (g_checksum_get_string (ret_commit_obj));
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (!ostree_repo_write_ref (self, NULL, branch, g_checksum_get_string (ret_commit), error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
ot_transfer_out_value(out_commit, &ret_commit);
|
ot_transfer_out_value(out_commit, &ret_commit);
|
||||||
out:
|
out:
|
||||||
ot_clear_checksum (&ret_commit);
|
g_free (ret_commit);
|
||||||
|
ot_clear_checksum (&ret_commit_obj);
|
||||||
ot_clear_gvariant (&commit);
|
ot_clear_gvariant (&commit);
|
||||||
if (now)
|
if (now)
|
||||||
g_date_time_unref (now);
|
g_date_time_unref (now);
|
||||||
|
|
@ -1361,30 +1361,23 @@ create_modified_file_info (GFileInfo *info,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
stage_directory_recurse (OstreeRepo *self,
|
ostree_repo_stage_directory_to_mtree (OstreeRepo *self,
|
||||||
GFile *base,
|
GFile *dir,
|
||||||
GFile *dir,
|
OstreeMutableTree *mtree,
|
||||||
OstreeRepoCommitModifier *modifier,
|
OstreeRepoCommitModifier *modifier,
|
||||||
GChecksum **out_contents_checksum,
|
GCancellable *cancellable,
|
||||||
GChecksum **out_metadata_checksum,
|
GError **error)
|
||||||
GCancellable *cancellable,
|
|
||||||
GError **error)
|
|
||||||
{
|
{
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
GError *temp_error = NULL;
|
GError *temp_error = NULL;
|
||||||
GChecksum *ret_metadata_checksum = NULL;
|
|
||||||
GChecksum *ret_contents_checksum = NULL;
|
|
||||||
GFileEnumerator *dir_enum = NULL;
|
|
||||||
GFileInfo *child_info = NULL;
|
GFileInfo *child_info = NULL;
|
||||||
|
OstreeMutableTree *child_mtree = NULL;
|
||||||
|
GFileEnumerator *dir_enum = NULL;
|
||||||
GFileInfo *modified_info = NULL;
|
GFileInfo *modified_info = NULL;
|
||||||
GFile *child = NULL;
|
GFile *child = NULL;
|
||||||
GHashTable *file_checksums = NULL;
|
|
||||||
GHashTable *dir_metadata_checksums = NULL;
|
|
||||||
GHashTable *dir_contents_checksums = NULL;
|
|
||||||
GChecksum *child_file_checksum = NULL;
|
GChecksum *child_file_checksum = NULL;
|
||||||
GVariant *xattrs = NULL;
|
GVariant *xattrs = NULL;
|
||||||
GVariant *serialized_tree = NULL;
|
|
||||||
GInputStream *file_input = NULL;
|
GInputStream *file_input = NULL;
|
||||||
|
|
||||||
child_info = g_file_query_info (dir, OSTREE_GIO_FAST_QUERYINFO,
|
child_info = g_file_query_info (dir, OSTREE_GIO_FAST_QUERYINFO,
|
||||||
|
|
@ -1399,9 +1392,11 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
if (!xattrs)
|
if (!xattrs)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (!stage_directory_meta (self, modified_info, xattrs, &ret_metadata_checksum,
|
if (!stage_directory_meta (self, modified_info, xattrs, &child_file_checksum,
|
||||||
cancellable, error))
|
cancellable, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
ostree_mutable_tree_set_metadata_checksum (mtree, g_checksum_get_string (child_file_checksum));
|
||||||
|
|
||||||
g_clear_object (&child_info);
|
g_clear_object (&child_info);
|
||||||
g_clear_object (&modified_info);
|
g_clear_object (&modified_info);
|
||||||
|
|
@ -1412,13 +1407,6 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
error);
|
error);
|
||||||
if (!dir_enum)
|
if (!dir_enum)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
file_checksums = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
||||||
(GDestroyNotify)g_free, (GDestroyNotify)g_free);
|
|
||||||
dir_metadata_checksums = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
||||||
(GDestroyNotify)g_free, (GDestroyNotify)g_free);
|
|
||||||
dir_contents_checksums = g_hash_table_new_full (g_str_hash, g_str_equal,
|
|
||||||
(GDestroyNotify)g_free, (GDestroyNotify)g_free);
|
|
||||||
|
|
||||||
while ((child_info = g_file_enumerator_next_file (dir_enum, cancellable, &temp_error)) != NULL)
|
while ((child_info = g_file_enumerator_next_file (dir_enum, cancellable, &temp_error)) != NULL)
|
||||||
{
|
{
|
||||||
|
|
@ -1432,19 +1420,13 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
|
|
||||||
if (g_file_info_get_file_type (child_info) == G_FILE_TYPE_DIRECTORY)
|
if (g_file_info_get_file_type (child_info) == G_FILE_TYPE_DIRECTORY)
|
||||||
{
|
{
|
||||||
GChecksum *child_dir_metadata_checksum = NULL;
|
g_clear_object (&child_mtree);
|
||||||
GChecksum *child_dir_contents_checksum = NULL;
|
if (!ostree_mutable_tree_ensure_dir (mtree, name, &child_mtree, error))
|
||||||
|
|
||||||
if (!stage_directory_recurse (self, base, child, modifier, &child_dir_contents_checksum,
|
|
||||||
&child_dir_metadata_checksum, cancellable, error))
|
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
g_hash_table_replace (dir_contents_checksums, g_strdup (name),
|
if (!ostree_repo_stage_directory_to_mtree (self, child, child_mtree,
|
||||||
g_strdup (g_checksum_get_string (child_dir_contents_checksum)));
|
modifier, cancellable, error))
|
||||||
g_hash_table_replace (dir_metadata_checksums, g_strdup (name),
|
goto out;
|
||||||
g_strdup (g_checksum_get_string (child_dir_metadata_checksum)));
|
|
||||||
ot_clear_checksum (&child_dir_contents_checksum);
|
|
||||||
ot_clear_checksum (&child_dir_metadata_checksum);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -1468,8 +1450,10 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
&child_file_checksum, cancellable, error))
|
&child_file_checksum, cancellable, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
g_hash_table_replace (file_checksums, g_strdup (name),
|
if (!ostree_mutable_tree_replace_file (mtree, name,
|
||||||
g_strdup (g_checksum_get_string (child_file_checksum)));
|
g_checksum_get_string (child_file_checksum),
|
||||||
|
error))
|
||||||
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_clear_object (&child_info);
|
g_clear_object (&child_info);
|
||||||
|
|
@ -1480,17 +1464,6 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
serialized_tree = create_tree_variant_from_hashes (file_checksums,
|
|
||||||
dir_contents_checksums,
|
|
||||||
dir_metadata_checksums);
|
|
||||||
|
|
||||||
if (!stage_gvariant_object (self, OSTREE_OBJECT_TYPE_DIR_TREE,
|
|
||||||
serialized_tree, &ret_contents_checksum,
|
|
||||||
cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
ot_transfer_out_value(out_metadata_checksum, &ret_metadata_checksum);
|
|
||||||
ot_transfer_out_value(out_contents_checksum, &ret_contents_checksum);
|
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
out:
|
out:
|
||||||
g_clear_object (&dir_enum);
|
g_clear_object (&dir_enum);
|
||||||
|
|
@ -1498,74 +1471,12 @@ stage_directory_recurse (OstreeRepo *self,
|
||||||
g_clear_object (&modified_info);
|
g_clear_object (&modified_info);
|
||||||
g_clear_object (&child_info);
|
g_clear_object (&child_info);
|
||||||
g_clear_object (&file_input);
|
g_clear_object (&file_input);
|
||||||
if (file_checksums)
|
g_clear_object (&child_mtree);
|
||||||
g_hash_table_destroy (file_checksums);
|
|
||||||
if (dir_metadata_checksums)
|
|
||||||
g_hash_table_destroy (dir_metadata_checksums);
|
|
||||||
if (dir_contents_checksums)
|
|
||||||
g_hash_table_destroy (dir_contents_checksums);
|
|
||||||
ot_clear_checksum (&ret_metadata_checksum);
|
|
||||||
ot_clear_checksum (&ret_contents_checksum);
|
|
||||||
ot_clear_checksum (&child_file_checksum);
|
ot_clear_checksum (&child_file_checksum);
|
||||||
ot_clear_gvariant (&serialized_tree);
|
|
||||||
ot_clear_gvariant (&xattrs);
|
ot_clear_gvariant (&xattrs);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
|
||||||
ostree_repo_commit_directory (OstreeRepo *self,
|
|
||||||
const char *branch,
|
|
||||||
const char *parent,
|
|
||||||
const char *subject,
|
|
||||||
const char *body,
|
|
||||||
GVariant *metadata,
|
|
||||||
GFile *dir,
|
|
||||||
OstreeRepoCommitModifier *modifier,
|
|
||||||
GChecksum **out_commit,
|
|
||||||
GCancellable *cancellable,
|
|
||||||
GError **error)
|
|
||||||
{
|
|
||||||
OstreeRepoPrivate *priv = GET_PRIVATE (self);
|
|
||||||
gboolean ret = FALSE;
|
|
||||||
GChecksum *ret_commit_checksum = NULL;
|
|
||||||
GChecksum *root_metadata_checksum = NULL;
|
|
||||||
GChecksum *root_contents_checksum = NULL;
|
|
||||||
char *current_head = NULL;
|
|
||||||
|
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
|
||||||
g_return_val_if_fail (priv->inited, FALSE);
|
|
||||||
g_return_val_if_fail (branch != NULL, FALSE);
|
|
||||||
g_return_val_if_fail (subject != NULL, FALSE);
|
|
||||||
g_return_val_if_fail (metadata == NULL || g_variant_is_of_type (metadata, G_VARIANT_TYPE ("a{sv}")), FALSE);
|
|
||||||
|
|
||||||
if (!ostree_repo_prepare_transaction (self, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (parent == NULL)
|
|
||||||
parent = branch;
|
|
||||||
|
|
||||||
if (!ostree_repo_resolve_rev (self, parent, TRUE, ¤t_head, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (!stage_directory_recurse (self, dir, dir, modifier, &root_contents_checksum, &root_metadata_checksum, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (!do_commit_write_ref (self, branch, current_head, subject, body, metadata,
|
|
||||||
g_checksum_get_string (root_contents_checksum),
|
|
||||||
g_checksum_get_string (root_metadata_checksum),
|
|
||||||
&ret_commit_checksum, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
ret = TRUE;
|
|
||||||
ot_transfer_out_value(out_commit, &ret_commit_checksum);
|
|
||||||
out:
|
|
||||||
ot_clear_checksum (&ret_commit_checksum);
|
|
||||||
g_free (current_head);
|
|
||||||
ot_clear_checksum (&root_metadata_checksum);
|
|
||||||
ot_clear_checksum (&root_contents_checksum);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef HAVE_LIBARCHIVE
|
#ifdef HAVE_LIBARCHIVE
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
@ -1647,12 +1558,12 @@ import_libarchive_entry_file (OstreeRepo *self,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
stage_mutable_tree_recurse (OstreeRepo *self,
|
ostree_repo_stage_mtree (OstreeRepo *self,
|
||||||
OstreeMutableTree *tree,
|
OstreeMutableTree *mtree,
|
||||||
char **out_contents_checksum,
|
char **out_contents_checksum,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
GChecksum *ret_contents_checksum_obj = NULL;
|
GChecksum *ret_contents_checksum_obj = NULL;
|
||||||
|
|
@ -1668,22 +1579,24 @@ stage_mutable_tree_recurse (OstreeRepo *self,
|
||||||
dir_metadata_checksums = g_hash_table_new_full (g_str_hash, g_str_equal,
|
dir_metadata_checksums = g_hash_table_new_full (g_str_hash, g_str_equal,
|
||||||
(GDestroyNotify)g_free, (GDestroyNotify)g_free);
|
(GDestroyNotify)g_free, (GDestroyNotify)g_free);
|
||||||
|
|
||||||
g_hash_table_iter_init (&hash_iter, ostree_mutable_tree_get_subdirs (tree));
|
g_hash_table_iter_init (&hash_iter, ostree_mutable_tree_get_subdirs (mtree));
|
||||||
while (g_hash_table_iter_next (&hash_iter, &key, &value))
|
while (g_hash_table_iter_next (&hash_iter, &key, &value))
|
||||||
{
|
{
|
||||||
const char *name = key;
|
const char *name = key;
|
||||||
OstreeMutableTree *child_dir = value;
|
OstreeMutableTree *child_dir = value;
|
||||||
char *child_dir_contents_checksum;
|
char *child_dir_contents_checksum;
|
||||||
|
|
||||||
if (!stage_mutable_tree_recurse (self, child_dir, &child_dir_contents_checksum, cancellable, error))
|
if (!ostree_repo_stage_mtree (self, child_dir, &child_dir_contents_checksum,
|
||||||
|
cancellable, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
g_hash_table_replace (dir_contents_checksums, g_strdup (name), child_dir_contents_checksum);
|
g_hash_table_replace (dir_contents_checksums, g_strdup (name),
|
||||||
|
child_dir_contents_checksum); /* Transfer ownership */
|
||||||
g_hash_table_replace (dir_metadata_checksums, g_strdup (name),
|
g_hash_table_replace (dir_metadata_checksums, g_strdup (name),
|
||||||
g_strdup (ostree_mutable_tree_get_metadata_checksum (child_dir)));
|
g_strdup (ostree_mutable_tree_get_metadata_checksum (child_dir)));
|
||||||
}
|
}
|
||||||
|
|
||||||
serialized_tree = create_tree_variant_from_hashes (ostree_mutable_tree_get_files (tree),
|
serialized_tree = create_tree_variant_from_hashes (ostree_mutable_tree_get_files (mtree),
|
||||||
dir_contents_checksums,
|
dir_contents_checksums,
|
||||||
dir_metadata_checksums);
|
dir_metadata_checksums);
|
||||||
|
|
||||||
|
|
@ -1707,13 +1620,13 @@ stage_mutable_tree_recurse (OstreeRepo *self,
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
stage_libarchive_entry_into_root (OstreeRepo *self,
|
stage_libarchive_entry_to_mtree (OstreeRepo *self,
|
||||||
OstreeMutableTree *root,
|
OstreeMutableTree *root,
|
||||||
struct archive *a,
|
struct archive *a,
|
||||||
struct archive_entry *entry,
|
struct archive_entry *entry,
|
||||||
OstreeRepoCommitModifier *modifier,
|
OstreeRepoCommitModifier *modifier,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
const char *pathname;
|
const char *pathname;
|
||||||
|
|
@ -1855,14 +1768,15 @@ stage_libarchive_entry_into_root (OstreeRepo *self,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
gboolean
|
||||||
stage_libarchive_into_root (OstreeRepo *self,
|
ostree_repo_stage_archive_to_mtree (OstreeRepo *self,
|
||||||
OstreeMutableTree *root,
|
GFile *archive_f,
|
||||||
GFile *archive_f,
|
OstreeMutableTree *root,
|
||||||
OstreeRepoCommitModifier *modifier,
|
OstreeRepoCommitModifier *modifier,
|
||||||
GCancellable *cancellable,
|
GCancellable *cancellable,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
|
#ifdef HAVE_LIBARCHIVE
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
struct archive *a;
|
struct archive *a;
|
||||||
struct archive_entry *entry;
|
struct archive_entry *entry;
|
||||||
|
|
@ -1888,7 +1802,7 @@ stage_libarchive_into_root (OstreeRepo *self,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!stage_libarchive_entry_into_root (self, root, a, entry, modifier, cancellable, error))
|
if (!stage_libarchive_entry_to_mtree (self, root, a, entry, modifier, cancellable, error))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
if (archive_read_close (a) != ARCHIVE_OK)
|
if (archive_read_close (a) != ARCHIVE_OK)
|
||||||
|
|
@ -1901,79 +1815,13 @@ stage_libarchive_into_root (OstreeRepo *self,
|
||||||
out:
|
out:
|
||||||
(void)archive_read_close (a);
|
(void)archive_read_close (a);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
gboolean
|
|
||||||
ostree_repo_commit_tarfiles (OstreeRepo *self,
|
|
||||||
const char *branch,
|
|
||||||
const char *parent,
|
|
||||||
const char *subject,
|
|
||||||
const char *body,
|
|
||||||
GVariant *metadata,
|
|
||||||
GPtrArray *tarfiles,
|
|
||||||
OstreeRepoCommitModifier *modifier,
|
|
||||||
GChecksum **out_commit,
|
|
||||||
GCancellable *cancellable,
|
|
||||||
GError **error)
|
|
||||||
{
|
|
||||||
#ifdef HAVE_LIBARCHIVE
|
|
||||||
OstreeRepoPrivate *priv = GET_PRIVATE (self);
|
|
||||||
gboolean ret = FALSE;
|
|
||||||
GChecksum *ret_commit_checksum = NULL;
|
|
||||||
OstreeMutableTree *root = NULL;
|
|
||||||
char *root_contents_checksum = NULL;
|
|
||||||
char *current_head = NULL;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
|
||||||
g_return_val_if_fail (priv->inited, FALSE);
|
|
||||||
g_return_val_if_fail (branch != NULL, FALSE);
|
|
||||||
g_return_val_if_fail (subject != NULL, FALSE);
|
|
||||||
g_return_val_if_fail (metadata == NULL || g_variant_is_of_type (metadata, G_VARIANT_TYPE ("a{sv}")), FALSE);
|
|
||||||
|
|
||||||
if (!ostree_repo_prepare_transaction (self, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (parent == NULL)
|
|
||||||
parent = branch;
|
|
||||||
|
|
||||||
if (!ostree_repo_resolve_rev (self, parent, TRUE, ¤t_head, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
root = ostree_mutable_tree_new ();
|
|
||||||
|
|
||||||
for (i = 0; i < tarfiles->len; i++)
|
|
||||||
{
|
|
||||||
GFile *archive_f = tarfiles->pdata[i];
|
|
||||||
|
|
||||||
if (!stage_libarchive_into_root (self, root, archive_f, modifier, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!stage_mutable_tree_recurse (self, root, &root_contents_checksum, cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
if (!do_commit_write_ref (self, branch, current_head, subject, body, metadata,
|
|
||||||
root_contents_checksum, ostree_mutable_tree_get_metadata_checksum (root), &ret_commit_checksum,
|
|
||||||
cancellable, error))
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
ret = TRUE;
|
|
||||||
*out_commit = ret_commit_checksum;
|
|
||||||
ret_commit_checksum = NULL;
|
|
||||||
out:
|
|
||||||
ot_clear_checksum (&ret_commit_checksum);
|
|
||||||
g_free (current_head);
|
|
||||||
g_free (root_contents_checksum);
|
|
||||||
g_clear_object (&root);
|
|
||||||
return ret;
|
|
||||||
#else
|
#else
|
||||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||||
"This version of ostree is not compiled with libarchive support");
|
"This version of ostree is not compiled with libarchive support");
|
||||||
return FALSE;
|
return FALSE;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
OstreeRepoCommitModifier *
|
OstreeRepoCommitModifier *
|
||||||
ostree_repo_commit_modifier_new (void)
|
ostree_repo_commit_modifier_new (void)
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,7 @@
|
||||||
#define _OSTREE_REPO
|
#define _OSTREE_REPO
|
||||||
|
|
||||||
#include "ostree-core.h"
|
#include "ostree-core.h"
|
||||||
|
#include "ostree-mutable-tree.h"
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
|
@ -142,29 +143,37 @@ OstreeRepoCommitModifier *ostree_repo_commit_modifier_new (void);
|
||||||
|
|
||||||
void ostree_repo_commit_modifier_unref (OstreeRepoCommitModifier *modifier);
|
void ostree_repo_commit_modifier_unref (OstreeRepoCommitModifier *modifier);
|
||||||
|
|
||||||
gboolean ostree_repo_commit_directory (OstreeRepo *self,
|
gboolean ostree_repo_stage_directory_to_mtree (OstreeRepo *self,
|
||||||
const char *branch,
|
GFile *dir,
|
||||||
const char *parent,
|
OstreeMutableTree *mtree,
|
||||||
const char *subject,
|
OstreeRepoCommitModifier *modifier,
|
||||||
const char *body,
|
GCancellable *cancellable,
|
||||||
GVariant *metadata,
|
GError **error);
|
||||||
GFile *base,
|
|
||||||
OstreeRepoCommitModifier *modifier,
|
|
||||||
GChecksum **out_commit,
|
|
||||||
GCancellable *cancellable,
|
|
||||||
GError **error);
|
|
||||||
|
|
||||||
gboolean ostree_repo_commit_tarfiles (OstreeRepo *self,
|
gboolean ostree_repo_stage_archive_to_mtree (OstreeRepo *self,
|
||||||
const char *branch,
|
GFile *archive,
|
||||||
const char *parent,
|
OstreeMutableTree *tree,
|
||||||
const char *subject,
|
OstreeRepoCommitModifier *modifier,
|
||||||
const char *body,
|
GCancellable *cancellable,
|
||||||
GVariant *metadata,
|
GError **error);
|
||||||
GPtrArray *tarfiles,
|
|
||||||
OstreeRepoCommitModifier *modifier,
|
gboolean ostree_repo_stage_mtree (OstreeRepo *self,
|
||||||
GChecksum **out_commit,
|
OstreeMutableTree *tree,
|
||||||
GCancellable *cancellable,
|
char **out_contents_checksum,
|
||||||
GError **error);
|
GCancellable *cancellable,
|
||||||
|
GError **error);
|
||||||
|
|
||||||
|
gboolean ostree_repo_stage_commit (OstreeRepo *self,
|
||||||
|
const char *branch,
|
||||||
|
const char *parent,
|
||||||
|
const char *subject,
|
||||||
|
const char *body,
|
||||||
|
GVariant *metadata,
|
||||||
|
const char *content_checksum,
|
||||||
|
const char *metadata_checksum,
|
||||||
|
char **out_commit,
|
||||||
|
GCancellable *cancellable,
|
||||||
|
GError **error);
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
OSTREE_REPO_CHECKOUT_MODE_NONE,
|
OSTREE_REPO_CHECKOUT_MODE_NONE,
|
||||||
|
|
|
||||||
|
|
@ -58,14 +58,16 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
GOptionContext *context;
|
GOptionContext *context;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
OstreeRepo *repo = NULL;
|
OstreeRepo *repo = NULL;
|
||||||
char *argpath = NULL;
|
|
||||||
GFile *arg = NULL;
|
GFile *arg = NULL;
|
||||||
GPtrArray *tar_files = NULL;
|
char *parent = NULL;
|
||||||
GChecksum *commit_checksum = NULL;
|
char *commit_checksum = NULL;
|
||||||
GVariant *metadata = NULL;
|
GVariant *metadata = NULL;
|
||||||
GMappedFile *metadata_mappedf = NULL;
|
GMappedFile *metadata_mappedf = NULL;
|
||||||
GFile *metadata_f = NULL;
|
GFile *metadata_f = NULL;
|
||||||
OstreeRepoCommitModifier *modifier = NULL;
|
OstreeRepoCommitModifier *modifier = NULL;
|
||||||
|
char *contents_checksum = NULL;
|
||||||
|
GCancellable *cancellable = NULL;
|
||||||
|
OstreeMutableTree *mtree = NULL;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
context = g_option_context_new ("[ARG] - Commit a new revision");
|
context = g_option_context_new ("[ARG] - Commit a new revision");
|
||||||
|
|
@ -74,23 +76,6 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
if (!g_option_context_parse (context, &argc, &argv, error))
|
if (!g_option_context_parse (context, &argc, &argv, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (argc > 1)
|
|
||||||
argpath = g_strdup (argv[1]);
|
|
||||||
else
|
|
||||||
argpath = g_get_current_dir ();
|
|
||||||
|
|
||||||
if (g_str_has_suffix (argpath, "/"))
|
|
||||||
argpath[strlen (argpath) - 1] = '\0';
|
|
||||||
|
|
||||||
if (!*argpath)
|
|
||||||
{
|
|
||||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
||||||
"Invalid empty argument");
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
|
|
||||||
arg = ot_gfile_new_for_path (argpath);
|
|
||||||
|
|
||||||
if (metadata_text_path || metadata_bin_path)
|
if (metadata_text_path || metadata_bin_path)
|
||||||
{
|
{
|
||||||
metadata_mappedf = g_mapped_file_new (metadata_text_path ? metadata_text_path : metadata_bin_path, FALSE, error);
|
metadata_mappedf = g_mapped_file_new (metadata_text_path ? metadata_text_path : metadata_bin_path, FALSE, error);
|
||||||
|
|
@ -140,31 +125,66 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
modifier->gid = owner_gid;
|
modifier->gid = owner_gid;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!tar)
|
if (!ostree_repo_resolve_rev (repo, branch, TRUE, &parent, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if (!ostree_repo_prepare_transaction (repo, cancellable, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
mtree = ostree_mutable_tree_new ();
|
||||||
|
|
||||||
|
if (argc == 1)
|
||||||
{
|
{
|
||||||
if (!ostree_repo_commit_directory (repo, branch, parent, subject, body, metadata,
|
char *current_dir = g_get_current_dir ();
|
||||||
arg, modifier, &commit_checksum, NULL, error))
|
arg = ot_gfile_new_for_path (current_dir);
|
||||||
|
g_free (current_dir);
|
||||||
|
|
||||||
|
if (!ostree_repo_stage_directory_to_mtree (repo, arg, mtree, modifier,
|
||||||
|
cancellable, error))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tar_files = g_ptr_array_new_with_free_func ((GDestroyNotify)g_object_unref);
|
for (i = 1; i < argc; i++)
|
||||||
g_ptr_array_add (tar_files, g_object_ref (arg));
|
{
|
||||||
for (i = 2; i < argc; i++)
|
g_clear_object (&arg);
|
||||||
g_ptr_array_add (tar_files, ot_gfile_new_for_path (argv[i]));
|
arg = ot_gfile_new_for_path (argv[i]);
|
||||||
|
if (tar)
|
||||||
if (!ostree_repo_commit_tarfiles (repo, branch, parent, subject, body, metadata,
|
{
|
||||||
tar_files, modifier, &commit_checksum, NULL, error))
|
if (!ostree_repo_stage_archive_to_mtree (repo, arg, mtree, modifier,
|
||||||
goto out;
|
cancellable, error))
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!ostree_repo_stage_directory_to_mtree (repo, arg, mtree, modifier,
|
||||||
|
cancellable, error))
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!ostree_repo_stage_mtree (repo, mtree, &contents_checksum, cancellable, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if (!ostree_repo_stage_commit (repo, branch, parent, subject, body, metadata,
|
||||||
|
contents_checksum, ostree_mutable_tree_get_metadata_checksum (mtree),
|
||||||
|
&commit_checksum, cancellable, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if (!ostree_repo_commit_transaction (repo, cancellable, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if (!ostree_repo_write_ref (repo, NULL, branch, commit_checksum, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
g_print ("%s\n", g_checksum_get_string (commit_checksum));
|
g_print ("%s\n", commit_checksum);
|
||||||
out:
|
out:
|
||||||
g_free (argpath);
|
|
||||||
g_clear_object (&arg);
|
g_clear_object (&arg);
|
||||||
if (tar_files)
|
g_clear_object (&mtree);
|
||||||
g_ptr_array_unref (tar_files);
|
g_free (contents_checksum);
|
||||||
|
g_free (parent);
|
||||||
if (metadata_mappedf)
|
if (metadata_mappedf)
|
||||||
g_mapped_file_unref (metadata_mappedf);
|
g_mapped_file_unref (metadata_mappedf);
|
||||||
if (context)
|
if (context)
|
||||||
|
|
@ -172,6 +192,6 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
if (modifier)
|
if (modifier)
|
||||||
ostree_repo_commit_modifier_unref (modifier);
|
ostree_repo_commit_modifier_unref (modifier);
|
||||||
g_clear_object (&repo);
|
g_clear_object (&repo);
|
||||||
ot_clear_checksum (&commit_checksum);
|
g_free (commit_checksum);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue