101 lines
2.9 KiB
C
101 lines
2.9 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
*
|
|
* Copyright (C) 2011 Colin Walters <walters@verbum.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* Author: Colin Walters <walters@verbum.org>
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include "ot-builtins.h"
|
|
#include "ostree.h"
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
static char *repo_path;
|
|
static GOptionEntry options[] = {
|
|
{ "repo", 0, 0, G_OPTION_ARG_FILENAME, &repo_path, "Repository path", NULL },
|
|
{ NULL }
|
|
};
|
|
|
|
#define DEFAULT_CONFIG_CONTENTS ("[core]\n" \
|
|
"repo_version=0\n")
|
|
|
|
|
|
gboolean
|
|
ostree_builtin_init (int argc, char **argv, const char *prefix, GError **error)
|
|
{
|
|
GOptionContext *context = NULL;
|
|
gboolean ret = FALSE;
|
|
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);
|
|
|
|
if (!g_option_context_parse (context, &argc, &argv, error))
|
|
goto out;
|
|
|
|
if (repo_path == NULL)
|
|
repo_path = ".";
|
|
|
|
repodir = g_file_new_for_path (repo_path);
|
|
|
|
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_clear_object (&repodir);
|
|
g_clear_object (&child);
|
|
g_clear_object (&grandchild);
|
|
return ret;
|
|
}
|