core: Use ot_gfile_ prefix for new local GFile creation function
This commit is contained in:
parent
6591e586ed
commit
231f7ed76c
|
|
@ -205,7 +205,7 @@ run_trigger (OstreeCheckout *self,
|
||||||
{
|
{
|
||||||
temp_path = g_build_filename (priv->path, basename, NULL);
|
temp_path = g_build_filename (priv->path, basename, NULL);
|
||||||
rel_temp_path = g_strconcat ("./", basename, NULL);
|
rel_temp_path = g_strconcat ("./", basename, NULL);
|
||||||
temp_copy = ot_util_new_file_for_path (temp_path);
|
temp_copy = ot_gfile_new_for_path (temp_path);
|
||||||
|
|
||||||
if (!g_file_copy (trigger, temp_copy, 0, NULL, NULL, NULL, error))
|
if (!g_file_copy (trigger, temp_copy, 0, NULL, NULL, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -310,7 +310,7 @@ ostree_checkout_run_triggers (OstreeCheckout *self,
|
||||||
GFileEnumerator *enumerator = NULL;
|
GFileEnumerator *enumerator = NULL;
|
||||||
|
|
||||||
triggerdir_path = g_build_filename (LIBEXECDIR, "ostree", "triggers.d", NULL);
|
triggerdir_path = g_build_filename (LIBEXECDIR, "ostree", "triggers.d", NULL);
|
||||||
triggerdir = ot_util_new_file_for_path (triggerdir_path);
|
triggerdir = ot_gfile_new_for_path (triggerdir_path);
|
||||||
|
|
||||||
enumerator = g_file_enumerate_children (triggerdir, OSTREE_GIO_FAST_QUERYINFO,
|
enumerator = g_file_enumerate_children (triggerdir, OSTREE_GIO_FAST_QUERYINFO,
|
||||||
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
||||||
|
|
@ -333,7 +333,7 @@ ostree_checkout_run_triggers (OstreeCheckout *self,
|
||||||
if (type == G_FILE_TYPE_REGULAR && g_str_has_suffix (name, ".trigger"))
|
if (type == G_FILE_TYPE_REGULAR && g_str_has_suffix (name, ".trigger"))
|
||||||
{
|
{
|
||||||
child_path = g_build_filename (triggerdir_path, name, NULL);
|
child_path = g_build_filename (triggerdir_path, name, NULL);
|
||||||
child = ot_util_new_file_for_path (child_path);
|
child = ot_gfile_new_for_path (child_path);
|
||||||
|
|
||||||
success = check_trigger (self, child, error);
|
success = check_trigger (self, child, error);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -685,8 +685,8 @@ unpack_meta (const char *path,
|
||||||
GChecksum *ret_checksum = NULL;
|
GChecksum *ret_checksum = NULL;
|
||||||
GFileOutputStream *out = NULL;
|
GFileOutputStream *out = NULL;
|
||||||
|
|
||||||
file = ot_util_new_file_for_path (path);
|
file = ot_gfile_new_for_path (path);
|
||||||
dest_file = ot_util_new_file_for_path (dest_path);
|
dest_file = ot_gfile_new_for_path (dest_path);
|
||||||
|
|
||||||
if (out_checksum)
|
if (out_checksum)
|
||||||
ret_checksum = g_checksum_new (G_CHECKSUM_SHA256);
|
ret_checksum = g_checksum_new (G_CHECKSUM_SHA256);
|
||||||
|
|
@ -802,7 +802,7 @@ unpack_file (const char *path,
|
||||||
guint64 content_len;
|
guint64 content_len;
|
||||||
gsize bytes_read;
|
gsize bytes_read;
|
||||||
|
|
||||||
file = ot_util_new_file_for_path (path);
|
file = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
if (!ostree_parse_packed_file (file, &metadata, &in, NULL, error))
|
if (!ostree_parse_packed_file (file, &metadata, &in, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -815,7 +815,7 @@ unpack_file (const char *path,
|
||||||
mode = GUINT32_FROM_BE (mode);
|
mode = GUINT32_FROM_BE (mode);
|
||||||
content_len = GUINT64_FROM_BE (content_len);
|
content_len = GUINT64_FROM_BE (content_len);
|
||||||
|
|
||||||
dest_file = ot_util_new_file_for_path (dest_path);
|
dest_file = ot_gfile_new_for_path (dest_path);
|
||||||
|
|
||||||
if (out_checksum)
|
if (out_checksum)
|
||||||
ret_checksum = g_checksum_new (G_CHECKSUM_SHA256);
|
ret_checksum = g_checksum_new (G_CHECKSUM_SHA256);
|
||||||
|
|
|
||||||
|
|
@ -396,7 +396,7 @@ _ostree_repo_file_nontree_get_local (OstreeRepoFile *self)
|
||||||
|
|
||||||
checksum = _ostree_repo_file_get_checksum (self);
|
checksum = _ostree_repo_file_get_checksum (self);
|
||||||
path = ostree_repo_get_object_path (self->repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
path = ostree_repo_get_object_path (self->repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
||||||
ret = ot_util_new_file_for_path (path);
|
ret = ot_gfile_new_for_path (path);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
@ -703,7 +703,7 @@ get_child_local_file (OstreeRepo *repo,
|
||||||
GFile *ret;
|
GFile *ret;
|
||||||
|
|
||||||
path = ostree_repo_get_object_path (repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
path = ostree_repo_get_object_path (repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
||||||
ret = ot_util_new_file_for_path (path);
|
ret = ot_gfile_new_for_path (path);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
||||||
|
|
@ -134,7 +134,7 @@ ostree_repo_constructor (GType gtype,
|
||||||
|
|
||||||
g_assert (priv->path != NULL);
|
g_assert (priv->path != NULL);
|
||||||
|
|
||||||
priv->repo_file = ot_util_new_file_for_path (priv->path);
|
priv->repo_file = ot_gfile_new_for_path (priv->path);
|
||||||
priv->tmp_dir = g_file_resolve_relative_path (priv->repo_file, "tmp");
|
priv->tmp_dir = g_file_resolve_relative_path (priv->repo_file, "tmp");
|
||||||
priv->local_heads_dir = g_file_resolve_relative_path (priv->repo_file, "refs/heads");
|
priv->local_heads_dir = g_file_resolve_relative_path (priv->repo_file, "refs/heads");
|
||||||
priv->remote_heads_dir = g_file_resolve_relative_path (priv->repo_file, "refs/remotes");
|
priv->remote_heads_dir = g_file_resolve_relative_path (priv->repo_file, "refs/remotes");
|
||||||
|
|
@ -610,7 +610,7 @@ write_gvariant_to_tmp (OstreeRepo *self,
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = TRUE;
|
ret = TRUE;
|
||||||
*out_tmpname = ot_util_new_file_for_path (dest_name);
|
*out_tmpname = ot_gfile_new_for_path (dest_name);
|
||||||
*out_checksum = checksum;
|
*out_checksum = checksum;
|
||||||
checksum = NULL;
|
checksum = NULL;
|
||||||
out:
|
out:
|
||||||
|
|
@ -704,7 +704,7 @@ import_directory_meta (OstreeRepo *self,
|
||||||
GFile *f = NULL;
|
GFile *f = NULL;
|
||||||
GFileInfo *f_info = NULL;
|
GFileInfo *f_info = NULL;
|
||||||
|
|
||||||
f = ot_util_new_file_for_path (path);
|
f = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
f_info = g_file_query_info (f, OSTREE_GIO_FAST_QUERYINFO,
|
f_info = g_file_query_info (f, OSTREE_GIO_FAST_QUERYINFO,
|
||||||
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
||||||
|
|
@ -877,7 +877,7 @@ archive_file_trusted (OstreeRepo *self,
|
||||||
char *dest_path = NULL;
|
char *dest_path = NULL;
|
||||||
char *dest_tmp_path = NULL;
|
char *dest_tmp_path = NULL;
|
||||||
|
|
||||||
infile = ot_util_new_file_for_path (path);
|
infile = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
dest_path = prepare_dir_for_checksum_get_object_path (self, checksum, objtype, error);
|
dest_path = prepare_dir_for_checksum_get_object_path (self, checksum, objtype, error);
|
||||||
if (!dest_path)
|
if (!dest_path)
|
||||||
|
|
@ -885,7 +885,7 @@ archive_file_trusted (OstreeRepo *self,
|
||||||
|
|
||||||
dest_tmp_path = g_strconcat (dest_path, ".tmp", NULL);
|
dest_tmp_path = g_strconcat (dest_path, ".tmp", NULL);
|
||||||
|
|
||||||
outfile = ot_util_new_file_for_path (dest_tmp_path);
|
outfile = ot_gfile_new_for_path (dest_tmp_path);
|
||||||
out = g_file_replace (outfile, NULL, FALSE, 0, NULL, error);
|
out = g_file_replace (outfile, NULL, FALSE, 0, NULL, error);
|
||||||
if (!out)
|
if (!out)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -1218,7 +1218,7 @@ add_one_file_to_tree_and_import (OstreeRepo *self,
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
||||||
g_assert (tree != NULL);
|
g_assert (tree != NULL);
|
||||||
|
|
||||||
f = ot_util_new_file_for_path (abspath);
|
f = ot_gfile_new_for_path (abspath);
|
||||||
|
|
||||||
if (!ostree_checksum_file (f, OSTREE_OBJECT_TYPE_FILE, &checksum, NULL, error))
|
if (!ostree_checksum_file (f, OSTREE_OBJECT_TYPE_FILE, &checksum, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -1624,7 +1624,7 @@ ostree_repo_iter_objects (OstreeRepo *self,
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
||||||
g_return_val_if_fail (priv->inited, FALSE);
|
g_return_val_if_fail (priv->inited, FALSE);
|
||||||
|
|
||||||
objectdir = ot_util_new_file_for_path (priv->objects_path);
|
objectdir = ot_gfile_new_for_path (priv->objects_path);
|
||||||
enumerator = g_file_enumerate_children (objectdir, OSTREE_GIO_FAST_QUERYINFO,
|
enumerator = g_file_enumerate_children (objectdir, OSTREE_GIO_FAST_QUERYINFO,
|
||||||
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
|
||||||
NULL,
|
NULL,
|
||||||
|
|
@ -1684,7 +1684,7 @@ ostree_repo_load_variant (OstreeRepo *self,
|
||||||
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
|
||||||
|
|
||||||
path = ostree_repo_get_object_path (self, sha256, OSTREE_OBJECT_TYPE_META);
|
path = ostree_repo_get_object_path (self, sha256, OSTREE_OBJECT_TYPE_META);
|
||||||
f = ot_util_new_file_for_path (path);
|
f = ot_gfile_new_for_path (path);
|
||||||
if (!ostree_parse_metadata_file (f, &ret_type, &ret_variant, error))
|
if (!ostree_parse_metadata_file (f, &ret_type, &ret_variant, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
|
@ -1722,7 +1722,7 @@ checkout_one_directory (OstreeRepo *self,
|
||||||
GVariant *xattr_variant = NULL;
|
GVariant *xattr_variant = NULL;
|
||||||
|
|
||||||
dest_path = g_build_filename (destination, dirname, NULL);
|
dest_path = g_build_filename (destination, dirname, NULL);
|
||||||
dest_file = ot_util_new_file_for_path (dest_path);
|
dest_file = ot_gfile_new_for_path (dest_path);
|
||||||
|
|
||||||
if (!_ostree_repo_file_get_xattrs (dir, &xattr_variant, NULL, error))
|
if (!_ostree_repo_file_get_xattrs (dir, &xattr_variant, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ ot_util_ensure_directory (const char *path, gboolean with_parents, GError **erro
|
||||||
GError *temp_error = NULL;
|
GError *temp_error = NULL;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
|
|
||||||
dir = ot_util_new_file_for_path (path);
|
dir = ot_gfile_new_for_path (path);
|
||||||
if (with_parents)
|
if (with_parents)
|
||||||
ret = g_file_make_directory_with_parents (dir, NULL, &temp_error);
|
ret = g_file_make_directory_with_parents (dir, NULL, &temp_error);
|
||||||
else
|
else
|
||||||
|
|
@ -66,7 +66,7 @@ ot_util_get_file_contents_utf8 (const char *path,
|
||||||
GFile *file = NULL;
|
GFile *file = NULL;
|
||||||
char *ret = NULL;
|
char *ret = NULL;
|
||||||
|
|
||||||
file = ot_util_new_file_for_path (path);
|
file = ot_gfile_new_for_path (path);
|
||||||
if (!ot_util_gfile_load_contents_utf8 (file, NULL, &ret, NULL, error))
|
if (!ot_util_gfile_load_contents_utf8 (file, NULL, &ret, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
|
@ -142,7 +142,7 @@ ot_util_read_file_noatime (GFile *file, GCancellable *cancellable, GError **erro
|
||||||
|
|
||||||
/* Like g_file_new_for_path, but only do local stuff, not GVFS */
|
/* Like g_file_new_for_path, but only do local stuff, not GVFS */
|
||||||
GFile *
|
GFile *
|
||||||
ot_util_new_file_for_path (const char *path)
|
ot_gfile_new_for_path (const char *path)
|
||||||
{
|
{
|
||||||
return g_vfs_get_file_for_path (g_vfs_get_local (), path);
|
return g_vfs_get_file_for_path (g_vfs_get_local (), path);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
G_BEGIN_DECLS
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
GFile *ot_util_new_file_for_path (const char *path);
|
GFile *ot_gfile_new_for_path (const char *path);
|
||||||
|
|
||||||
const char *ot_gfile_get_path_cached (GFile *file);
|
const char *ot_gfile_get_path_cached (GFile *file);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -95,7 +95,7 @@ open_log (const char *name,
|
||||||
GFileOutputStream *ret_log = NULL;
|
GFileOutputStream *ret_log = NULL;
|
||||||
|
|
||||||
path = g_strdup_printf ("%s/%s.log", tmpdir, name);
|
path = g_strdup_printf ("%s/%s.log", tmpdir, name);
|
||||||
logf = ot_util_new_file_for_path (path);
|
logf = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
ret_log = g_file_replace (logf, NULL, FALSE, 0, NULL, error);
|
ret_log = g_file_replace (logf, NULL, FALSE, 0, NULL, error);
|
||||||
if (!ret_log)
|
if (!ret_log)
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ ostree_builtin_checksum (int argc, char **argv, const char *repo_path, GError **
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (argc > 1)
|
if (argc > 1)
|
||||||
f = ot_util_new_file_for_path (argv[1]);
|
f = ot_gfile_new_for_path (argv[1]);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
||||||
|
|
|
||||||
|
|
@ -240,7 +240,7 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
}
|
}
|
||||||
else if (metadata_bin_path)
|
else if (metadata_bin_path)
|
||||||
{
|
{
|
||||||
metadata_f = ot_util_new_file_for_path (metadata_bin_path);
|
metadata_f = ot_gfile_new_for_path (metadata_bin_path);
|
||||||
if (!ot_util_variant_map (metadata_f, G_VARIANT_TYPE ("a{sv}"), &metadata, error))
|
if (!ot_util_variant_map (metadata_f, G_VARIANT_TYPE ("a{sv}"), &metadata, error))
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
@ -295,7 +295,7 @@ ostree_builtin_commit (int argc, char **argv, const char *repo_path, GError **er
|
||||||
out = (GOutputStream*)g_unix_output_stream_new (pipefd[1], TRUE);
|
out = (GOutputStream*)g_unix_output_stream_new (pipefd[1], TRUE);
|
||||||
from_fd = pipefd[0];
|
from_fd = pipefd[0];
|
||||||
|
|
||||||
fdata.dir = ot_util_new_file_for_path (dir);
|
fdata.dir = ot_gfile_new_for_path (dir);
|
||||||
fdata.separator = separator;
|
fdata.separator = separator;
|
||||||
fdata.out = out;
|
fdata.out = out;
|
||||||
fdata.cancellable = NULL;
|
fdata.cancellable = NULL;
|
||||||
|
|
|
||||||
|
|
@ -192,7 +192,7 @@ compose_branch_on_dir (OstreeRepo *repo,
|
||||||
if (g_str_has_suffix (destpath, "/"))
|
if (g_str_has_suffix (destpath, "/"))
|
||||||
destpath[strlen (destpath) - 1] = '\0';
|
destpath[strlen (destpath) - 1] = '\0';
|
||||||
branchpath = g_strconcat (destpath, "-tmp-checkout-", branchrev, NULL);
|
branchpath = g_strconcat (destpath, "-tmp-checkout-", branchrev, NULL);
|
||||||
branchf = ot_util_new_file_for_path (branchpath);
|
branchf = ot_gfile_new_for_path (branchpath);
|
||||||
|
|
||||||
g_print ("Checking out %s (commit %s)...\n", branch, branchrev);
|
g_print ("Checking out %s (commit %s)...\n", branch, branchrev);
|
||||||
if (!ostree_repo_checkout (repo, branchrev, branchpath, NULL, error))
|
if (!ostree_repo_checkout (repo, branchrev, branchpath, NULL, error))
|
||||||
|
|
@ -255,7 +255,7 @@ ostree_builtin_compose (int argc, char **argv, const char *repo_path, GError **e
|
||||||
}
|
}
|
||||||
|
|
||||||
destination = argv[1];
|
destination = argv[1];
|
||||||
destf = ot_util_new_file_for_path (destination);
|
destf = ot_gfile_new_for_path (destination);
|
||||||
|
|
||||||
if (compose_metadata_path)
|
if (compose_metadata_path)
|
||||||
{
|
{
|
||||||
|
|
@ -280,7 +280,7 @@ ostree_builtin_compose (int argc, char **argv, const char *repo_path, GError **e
|
||||||
"ostree-compose", g_variant_builder_end (&compose_metadata_builder));
|
"ostree-compose", g_variant_builder_end (&compose_metadata_builder));
|
||||||
compose_metadata_builder_initialized = FALSE;
|
compose_metadata_builder_initialized = FALSE;
|
||||||
|
|
||||||
metadata_f = ot_util_new_file_for_path (compose_metadata_path);
|
metadata_f = ot_gfile_new_for_path (compose_metadata_path);
|
||||||
|
|
||||||
commit_metadata = g_variant_builder_end (&commit_metadata_builder);
|
commit_metadata = g_variant_builder_end (&commit_metadata_builder);
|
||||||
if (!ot_util_variant_save (metadata_f, commit_metadata, NULL, error))
|
if (!ot_util_variant_save (metadata_f, commit_metadata, NULL, error))
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ parse_file_or_commit (OstreeRepo *repo,
|
||||||
|| g_str_has_prefix (arg, "./")
|
|| g_str_has_prefix (arg, "./")
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
ret_file = ot_util_new_file_for_path (arg);
|
ret_file = ot_gfile_new_for_path (arg);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -100,7 +100,7 @@ ostree_builtin_diff (int argc, char **argv, const char *repo_path, GError **erro
|
||||||
src = argv[1];
|
src = argv[1];
|
||||||
target = argv[2];
|
target = argv[2];
|
||||||
|
|
||||||
cwd = ot_util_new_file_for_path (".");
|
cwd = ot_gfile_new_for_path (".");
|
||||||
|
|
||||||
if (!parse_file_or_commit (repo, src, &srcf, NULL, error))
|
if (!parse_file_or_commit (repo, src, &srcf, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@ checksum_packed_file (OtFsckData *data,
|
||||||
gsize bytes_read;
|
gsize bytes_read;
|
||||||
char buf[8192];
|
char buf[8192];
|
||||||
|
|
||||||
file = ot_util_new_file_for_path (path);
|
file = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
in = g_file_read (file, NULL, error);
|
in = g_file_read (file, NULL, error);
|
||||||
if (!in)
|
if (!in)
|
||||||
|
|
@ -132,7 +132,7 @@ object_iter_callback (OstreeRepo *repo,
|
||||||
char *dot;
|
char *dot;
|
||||||
GFile *f = NULL;
|
GFile *f = NULL;
|
||||||
|
|
||||||
f = ot_util_new_file_for_path (path);
|
f = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
/* nlinks = g_file_info_get_attribute_uint32 (file_info, "unix::nlink");
|
/* nlinks = g_file_info_get_attribute_uint32 (file_info, "unix::nlink");
|
||||||
if (nlinks < 2 && !quiet)
|
if (nlinks < 2 && !quiet)
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ ostree_builtin_init (int argc, char **argv, const char *repo_path, GError **erro
|
||||||
if (!g_option_context_parse (context, &argc, &argv, error))
|
if (!g_option_context_parse (context, &argc, &argv, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
repodir = ot_util_new_file_for_path (repo_path);
|
repodir = ot_gfile_new_for_path (repo_path);
|
||||||
|
|
||||||
child = g_file_get_child (repodir, "config");
|
child = g_file_get_child (repodir, "config");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -94,7 +94,7 @@ fetch_uri (OstreeRepo *repo,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
close (fd);
|
close (fd);
|
||||||
tempf = ot_util_new_file_for_path (template);
|
tempf = ot_gfile_new_for_path (template);
|
||||||
|
|
||||||
buf = soup_message_body_flatten (msg->response_body);
|
buf = soup_message_body_flatten (msg->response_body);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ do_print_variant_generic (const GVariantType *type,
|
||||||
GFile *f = NULL;
|
GFile *f = NULL;
|
||||||
GVariant *variant = NULL;
|
GVariant *variant = NULL;
|
||||||
|
|
||||||
f = ot_util_new_file_for_path (filename);
|
f = ot_gfile_new_for_path (filename);
|
||||||
|
|
||||||
if (!ot_util_variant_map (f, type, &variant, error))
|
if (!ot_util_variant_map (f, type, &variant, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -120,7 +120,7 @@ do_print_packfile (OstreeRepo *repo,
|
||||||
path = ostree_repo_get_object_path (repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
path = ostree_repo_get_object_path (repo, checksum, OSTREE_OBJECT_TYPE_FILE);
|
||||||
if (!path)
|
if (!path)
|
||||||
goto out;
|
goto out;
|
||||||
file = ot_util_new_file_for_path (path);
|
file = ot_gfile_new_for_path (path);
|
||||||
|
|
||||||
if (!ostree_parse_packed_file (file, &variant, &content, NULL, error))
|
if (!ostree_parse_packed_file (file, &variant, &content, NULL, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue