[ostree] init: Add branches, tags, refs directories like git
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ostree] init: Add branches, tags, refs directories like git
- Date: Thu, 27 Oct 2011 02:38:04 +0000 (UTC)
commit 66011a84e5c88d8ad96b589cf03b15a7e11c9fdd
Author: Colin Walters <walters verbum org>
Date: Wed Oct 26 22:37:23 2011 -0400
init: Add branches, tags, refs directories like git
src/ot-builtin-init.c | 56 ++++++++++++++++++++++++++++++------------------
1 files changed, 35 insertions(+), 21 deletions(-)
---
diff --git a/src/ot-builtin-init.c b/src/ot-builtin-init.c
index 926eee7..ef4530b 100644
--- a/src/ot-builtin-init.c
+++ b/src/ot-builtin-init.c
@@ -41,12 +41,9 @@ ostree_builtin_init (int argc, char **argv, const char *prefix, GError **error)
{
GOptionContext *context = NULL;
gboolean ret = FALSE;
- char *otdir_path = NULL;
- char *objects_path = NULL;
- char *config_path = NULL;
- GFile *otdir = NULL;
- GFile *objects_dir = NULL;
- GFile *configf = NULL;
+ GFile *repodir = NULL;
+ GFile *child = NULL;
+ GFile *grandchild = NULL;
context = g_option_context_new ("- Initialize a new empty repository");
g_option_context_add_main_entries (context, options, NULL);
@@ -57,30 +54,47 @@ ostree_builtin_init (int argc, char **argv, const char *prefix, GError **error)
if (repo_path == NULL)
repo_path = ".";
- objects_path = g_build_filename (repo_path, "objects", NULL);
- objects_dir = g_file_new_for_path (objects_path);
- if (!g_file_make_directory (objects_dir, NULL, error))
- goto out;
-
- config_path = g_build_filename (repo_path, "config", NULL);
- configf = g_file_new_for_path (config_path);
+ repodir = g_file_new_for_path (repo_path);
- if (!g_file_replace_contents (configf,
+ child = g_file_get_child (repodir, "config");
+ if (!g_file_replace_contents (child,
DEFAULT_CONFIG_CONTENTS,
strlen (DEFAULT_CONFIG_CONTENTS),
NULL, FALSE, 0, NULL,
NULL, error))
goto out;
-
+ g_clear_object (&child);
+
+ child = g_file_get_child (repodir, "objects");
+ if (!g_file_make_directory (child, NULL, error))
+ goto out;
+ g_clear_object (&child);
+
+ child = g_file_get_child (repodir, "refs");
+ if (!g_file_make_directory (child, NULL, error))
+ goto out;
+ grandchild = g_file_get_child (child, "heads");
+ if (!g_file_make_directory (grandchild, NULL, error))
+ goto out;
+ g_clear_object (&child);
+ g_clear_object (&grandchild);
+
+ child = g_file_get_child (repodir, "tags");
+ if (!g_file_make_directory (child, NULL, error))
+ goto out;
+ g_clear_object (&child);
+
+ child = g_file_get_child (repodir, "remotes");
+ if (!g_file_make_directory (child, NULL, error))
+ goto out;
+ g_clear_object (&child);
+
ret = TRUE;
out:
if (context)
g_option_context_free (context);
- g_free (otdir_path);
- g_free (objects_path);
- g_free (config_path);
- g_clear_object (&otdir);
- g_clear_object (&objects_dir);
- g_clear_object (&configf);
+ g_clear_object (&repodir);
+ g_clear_object (&child);
+ g_clear_object (&grandchild);
return ret;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]