Make link-file work
This commit is contained in:
parent
7c1c61beb1
commit
4dd6800389
|
|
@ -3,6 +3,8 @@ noinst_LTLIBRARIES += libhtutil.la
|
||||||
libhtutil_la_SOURCES = \
|
libhtutil_la_SOURCES = \
|
||||||
src/libhtutil/ht-unix-utils.c \
|
src/libhtutil/ht-unix-utils.c \
|
||||||
src/libhtutil/ht-unix-utils.h \
|
src/libhtutil/ht-unix-utils.h \
|
||||||
|
src/libhtutil/ht-gio-utils.c \
|
||||||
|
src/libhtutil/ht-gio-utils.h \
|
||||||
src/libhtutil/htutil.h \
|
src/libhtutil/htutil.h \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
libhtutil_la_CFLAGS = -I$(srcdir)/src/libhtutil -DLOCALEDIR=\"$(datadir)/locale\" $(GIO_UNIX_CFLAGS)
|
libhtutil_la_CFLAGS = -I$(srcdir)/src/libhtutil -DLOCALEDIR=\"$(datadir)/locale\" $(GIO_UNIX_CFLAGS)
|
||||||
|
|
@ -23,6 +25,7 @@ bin_PROGRAMS += hacktree
|
||||||
hacktree_SOURCES = src/main.c \
|
hacktree_SOURCES = src/main.c \
|
||||||
src/ht-builtins.h \
|
src/ht-builtins.h \
|
||||||
src/ht-builtin-init.c \
|
src/ht-builtin-init.c \
|
||||||
|
src/ht-builtin-link-file.c \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
hacktree_CFLAGS = -I$(srcdir)/src -I$(srcdir)/src/libhacktree -I$(srcdir)/src/libhtutil -DLOCALEDIR=\"$(datadir)/locale\" $(GIO_UNIX_CFLAGS)
|
hacktree_CFLAGS = -I$(srcdir)/src -I$(srcdir)/src/libhacktree -I$(srcdir)/src/libhtutil -DLOCALEDIR=\"$(datadir)/locale\" $(GIO_UNIX_CFLAGS)
|
||||||
hacktree_LDADD = libhtutil.la libhacktree.la $(GIO_UNIX_LIBS)
|
hacktree_LDADD = libhtutil.la libhacktree.la $(GIO_UNIX_LIBS)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,59 @@
|
||||||
|
/* -*- 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 "ht-builtins.h"
|
||||||
|
#include "hacktree.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 }
|
||||||
|
};
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
hacktree_builtin_link_file (int argc, const char **argv, const char *prefix, GError **error)
|
||||||
|
{
|
||||||
|
gboolean ret = FALSE;
|
||||||
|
HacktreeRepo *repo = NULL;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
if (repo_path == NULL)
|
||||||
|
repo_path = ".";
|
||||||
|
|
||||||
|
repo = hacktree_repo_new (repo_path);
|
||||||
|
if (!hacktree_repo_check (repo, error))
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
for (i = 0; i < argc; i++)
|
||||||
|
{
|
||||||
|
if (!hacktree_repo_link_file (repo, argv[i], error))
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = TRUE;
|
||||||
|
out:
|
||||||
|
g_clear_object (&repo);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
@ -37,6 +37,7 @@ typedef struct {
|
||||||
} HacktreeBuiltin;
|
} HacktreeBuiltin;
|
||||||
|
|
||||||
gboolean hacktree_builtin_init (int argc, const char **argv, const char *prefix, GError **error);
|
gboolean hacktree_builtin_init (int argc, const char **argv, const char *prefix, GError **error);
|
||||||
|
gboolean hacktree_builtin_link_file (int argc, const char **argv, const char *prefix, GError **error);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "hacktree-repo.h"
|
#include "hacktree.h"
|
||||||
#include "htutil.h"
|
#include "htutil.h"
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
|
@ -47,6 +47,12 @@ struct _HacktreeRepoPrivate {
|
||||||
static void
|
static void
|
||||||
hacktree_repo_finalize (GObject *object)
|
hacktree_repo_finalize (GObject *object)
|
||||||
{
|
{
|
||||||
|
HacktreeRepo *self = HACKTREE_REPO (object);
|
||||||
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
|
|
||||||
|
g_free (priv->path);
|
||||||
|
g_free (priv->objects_path);
|
||||||
|
|
||||||
G_OBJECT_CLASS (hacktree_repo_parent_class)->finalize (object);
|
G_OBJECT_CLASS (hacktree_repo_parent_class)->finalize (object);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -90,6 +96,27 @@ hacktree_repo_get_property(GObject *object,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GObject *
|
||||||
|
hacktree_repo_constructor (GType gtype,
|
||||||
|
guint n_properties,
|
||||||
|
GObjectConstructParam *properties)
|
||||||
|
{
|
||||||
|
GObject *object;
|
||||||
|
GObjectClass *parent_class;
|
||||||
|
HacktreeRepoPrivate *priv;
|
||||||
|
|
||||||
|
parent_class = G_OBJECT_CLASS (hacktree_repo_parent_class);
|
||||||
|
object = parent_class->constructor (gtype, n_properties, properties);
|
||||||
|
|
||||||
|
priv = GET_PRIVATE (object);
|
||||||
|
|
||||||
|
g_assert (priv->path != NULL);
|
||||||
|
|
||||||
|
priv->objects_path = g_build_filename (priv->path, HACKTREE_REPO_DIR, "objects", NULL);
|
||||||
|
|
||||||
|
return object;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
hacktree_repo_class_init (HacktreeRepoClass *klass)
|
hacktree_repo_class_init (HacktreeRepoClass *klass)
|
||||||
{
|
{
|
||||||
|
|
@ -97,6 +124,9 @@ hacktree_repo_class_init (HacktreeRepoClass *klass)
|
||||||
|
|
||||||
g_type_class_add_private (klass, sizeof (HacktreeRepoPrivate));
|
g_type_class_add_private (klass, sizeof (HacktreeRepoPrivate));
|
||||||
|
|
||||||
|
object_class->constructor = hacktree_repo_constructor;
|
||||||
|
object_class->get_property = hacktree_repo_get_property;
|
||||||
|
object_class->set_property = hacktree_repo_set_property;
|
||||||
object_class->finalize = hacktree_repo_finalize;
|
object_class->finalize = hacktree_repo_finalize;
|
||||||
|
|
||||||
g_object_class_install_property (object_class,
|
g_object_class_install_property (object_class,
|
||||||
|
|
@ -113,9 +143,6 @@ hacktree_repo_init (HacktreeRepo *self)
|
||||||
{
|
{
|
||||||
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
|
|
||||||
g_assert (priv->path);
|
|
||||||
|
|
||||||
priv->objects_path = g_build_filename (priv->path, "objects", NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
HacktreeRepo*
|
HacktreeRepo*
|
||||||
|
|
@ -128,6 +155,13 @@ gboolean
|
||||||
hacktree_repo_check (HacktreeRepo *self, GError **error)
|
hacktree_repo_check (HacktreeRepo *self, GError **error)
|
||||||
{
|
{
|
||||||
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
|
|
||||||
|
if (!g_file_test (priv->objects_path, G_FILE_TEST_IS_DIR))
|
||||||
|
{
|
||||||
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
||||||
|
"Couldn't find objects directory '%s'", priv->objects_path);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
priv->inited = TRUE;
|
priv->inited = TRUE;
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
@ -188,13 +222,23 @@ stat_and_compute_checksum (int dirfd, const char *path,
|
||||||
char *symlink_target = NULL;
|
char *symlink_target = NULL;
|
||||||
char *device_id = NULL;
|
char *device_id = NULL;
|
||||||
|
|
||||||
if (fstat (fd, out_stbuf) < 0)
|
basename = g_path_get_basename (path);
|
||||||
|
|
||||||
|
if (fstatat (dirfd, basename, out_stbuf, AT_SYMLINK_NOFOLLOW) < 0)
|
||||||
{
|
{
|
||||||
ht_util_set_error_from_errno (error, errno);
|
ht_util_set_error_from_errno (error, errno);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
basename = g_path_get_basename (path);
|
if (!S_ISLNK(out_stbuf->st_mode))
|
||||||
|
{
|
||||||
|
fd = ht_util_open_file_read_at (dirfd, basename, error);
|
||||||
|
if (fd < 0)
|
||||||
|
{
|
||||||
|
ht_util_set_error_from_errno (error, errno);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stat_string = stat_to_string (out_stbuf);
|
stat_string = stat_to_string (out_stbuf);
|
||||||
|
|
||||||
|
|
@ -237,12 +281,6 @@ stat_and_compute_checksum (int dirfd, const char *path,
|
||||||
{
|
{
|
||||||
guint8 buf[8192];
|
guint8 buf[8192];
|
||||||
|
|
||||||
fd = ht_util_open_file_read_at (dirfd, basename, error);
|
|
||||||
if (fd < 0)
|
|
||||||
{
|
|
||||||
ht_util_set_error_from_errno (error, errno);
|
|
||||||
goto out;
|
|
||||||
}
|
|
||||||
while ((bytes_read = read (fd, buf, sizeof (buf))) > 0)
|
while ((bytes_read = read (fd, buf, sizeof (buf))) > 0)
|
||||||
g_checksum_update (content_sha256, buf, bytes_read);
|
g_checksum_update (content_sha256, buf, bytes_read);
|
||||||
if (bytes_read < 0)
|
if (bytes_read < 0)
|
||||||
|
|
@ -262,7 +300,7 @@ stat_and_compute_checksum (int dirfd, const char *path,
|
||||||
}
|
}
|
||||||
g_checksum_update (content_sha256, symlink_target, strlen (symlink_target));
|
g_checksum_update (content_sha256, symlink_target, strlen (symlink_target));
|
||||||
}
|
}
|
||||||
else if (S_ISDEV(out_stbuf->st_mode))
|
else if (S_ISCHR(out_stbuf->st_mode) || S_ISBLK(out_stbuf->st_mode))
|
||||||
{
|
{
|
||||||
device_id = g_strdup_printf ("%d", out_stbuf->st_rdev);
|
device_id = g_strdup_printf ("%d", out_stbuf->st_rdev);
|
||||||
g_checksum_update (content_sha256, device_id, strlen (device_id));
|
g_checksum_update (content_sha256, device_id, strlen (device_id));
|
||||||
|
|
@ -282,6 +320,7 @@ stat_and_compute_checksum (int dirfd, const char *path,
|
||||||
g_checksum_update (content_and_meta_sha256, xattrs_canonicalized, strlen (stat_string));
|
g_checksum_update (content_and_meta_sha256, xattrs_canonicalized, strlen (stat_string));
|
||||||
|
|
||||||
*out_checksum = content_and_meta_sha256;
|
*out_checksum = content_and_meta_sha256;
|
||||||
|
ret = TRUE;
|
||||||
out:
|
out:
|
||||||
if (fd >= 0)
|
if (fd >= 0)
|
||||||
close (fd);
|
close (fd);
|
||||||
|
|
@ -297,63 +336,73 @@ stat_and_compute_checksum (int dirfd, const char *path,
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
get_object_dir_for_checksum (HacktreeRepo *self,
|
prepare_dir_for_checksum_get_object_path (HacktreeRepo *self,
|
||||||
GChecksum *checksum,
|
GChecksum *checksum,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
char *checksum_prefix;
|
char *checksum_prefix = NULL;
|
||||||
char *path;
|
char *checksum_dir = NULL;
|
||||||
gboolean ret = FALSE;
|
char *object_path = NULL;
|
||||||
GError *temp_error = NULL;
|
GError *temp_error = NULL;
|
||||||
|
|
||||||
checksum_prefix = g_strdup (g_checksum_get_string (checksum));
|
checksum_prefix = g_strdup (g_checksum_get_string (checksum));
|
||||||
checksum_prefix[3] = '\0';
|
checksum_prefix[2] = '\0';
|
||||||
path = g_build_filename (priv->objects_path, checksum_prefix, NULL);
|
checksum_dir = g_build_filename (priv->objects_path, checksum_prefix, NULL);
|
||||||
|
|
||||||
if (!ht_util_ensure_directory (path, FALSE, error))
|
if (!ht_util_ensure_directory (checksum_dir, FALSE, error))
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
ret = TRUE;
|
object_path = g_build_filename (checksum_dir, checksum_prefix + 3, NULL);
|
||||||
out:
|
out:
|
||||||
g_free (checksum_prefix);
|
g_free (checksum_prefix);
|
||||||
if (ret)
|
g_free (checksum_dir);
|
||||||
return path;
|
return object_path;
|
||||||
g_free (path);
|
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
import_one_file (HacktreeRepo *self, const char *path, GError **error)
|
link_one_file (HacktreeRepo *self, const char *path, GError **error)
|
||||||
{
|
{
|
||||||
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
char *basename = NULL;
|
char *src_basename = NULL;
|
||||||
char *dirname = NULL;
|
char *src_dirname = NULL;
|
||||||
|
char *dest_basename = NULL;
|
||||||
|
char *dest_dirname = NULL;
|
||||||
GChecksum *id = NULL;
|
GChecksum *id = NULL;
|
||||||
DIR *dir = NULL;
|
DIR *src_dir = NULL;
|
||||||
|
DIR *dest_dir = NULL;
|
||||||
gboolean ret = FALSE;
|
gboolean ret = FALSE;
|
||||||
int fd;
|
int fd;
|
||||||
struct stat stbuf;
|
struct stat stbuf;
|
||||||
char *dest_path = NULL;
|
char *dest_path = NULL;
|
||||||
char *checksum_prefix;
|
char *checksum_prefix;
|
||||||
|
|
||||||
basename = g_path_get_dirname (path);
|
src_basename = g_path_get_basename (path);
|
||||||
dirname = g_path_get_dirname (path);
|
src_dirname = g_path_get_dirname (path);
|
||||||
|
|
||||||
dir = opendir (dirname);
|
src_dir = opendir (src_dirname);
|
||||||
if (dir == NULL)
|
if (src_dir == NULL)
|
||||||
{
|
{
|
||||||
ht_util_set_error_from_errno (error, errno);
|
ht_util_set_error_from_errno (error, errno);
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!stat_and_compute_checksum (dirfd (dir), path, &id, &stbuf, error))
|
if (!stat_and_compute_checksum (dirfd (src_dir), path, &id, &stbuf, error))
|
||||||
goto out;
|
goto out;
|
||||||
dest_path = get_object_dir_for_checksum (self, id, error);
|
dest_path = prepare_dir_for_checksum_get_object_path (self, id, error);
|
||||||
if (!dest_path)
|
if (!dest_path)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
dest_basename = g_path_get_basename (dest_path);
|
||||||
|
dest_dirname = g_path_get_dirname (dest_path);
|
||||||
|
dest_dir = opendir (dest_dirname);
|
||||||
|
if (dest_dir == NULL)
|
||||||
|
{
|
||||||
|
ht_util_set_error_from_errno (error, errno);
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
if (linkat (dirfd, basename, -1, dest_path, 0) < 0)
|
if (linkat (dirfd (src_dir), src_basename, dirfd (dest_dir), dest_basename, 0) < 0)
|
||||||
{
|
{
|
||||||
ht_util_set_error_from_errno (error, errno);
|
ht_util_set_error_from_errno (error, errno);
|
||||||
goto out;
|
goto out;
|
||||||
|
|
@ -363,21 +412,25 @@ import_one_file (HacktreeRepo *self, const char *path, GError **error)
|
||||||
out:
|
out:
|
||||||
if (id != NULL)
|
if (id != NULL)
|
||||||
g_checksum_free (id);
|
g_checksum_free (id);
|
||||||
if (dir != NULL)
|
if (src_dir != NULL)
|
||||||
closedir (dir);
|
closedir (src_dir);
|
||||||
g_free (basename);
|
if (dest_dir != NULL)
|
||||||
g_free (dirname);
|
closedir (dest_dir);
|
||||||
|
g_free (src_basename);
|
||||||
|
g_free (src_dirname);
|
||||||
|
g_free (dest_basename);
|
||||||
|
g_free (dest_dirname);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
hacktree_repo_import (HacktreeRepo *self,
|
hacktree_repo_link_file (HacktreeRepo *self,
|
||||||
const char *path,
|
const char *path,
|
||||||
GError **error)
|
GError **error)
|
||||||
{
|
{
|
||||||
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
HacktreeRepoPrivate *priv = GET_PRIVATE (self);
|
||||||
|
|
||||||
g_return_val_if_fail (priv->inited, FALSE);
|
g_return_val_if_fail (priv->inited, FALSE);
|
||||||
|
|
||||||
return import_one_file (self, path, error);
|
return link_one_file (self, path, error);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -53,9 +53,9 @@ HacktreeRepo* hacktree_repo_new (const char *path);
|
||||||
|
|
||||||
gboolean hacktree_repo_check (HacktreeRepo *repo, GError **error);
|
gboolean hacktree_repo_check (HacktreeRepo *repo, GError **error);
|
||||||
|
|
||||||
gboolean hacktree_repo_import (HacktreeRepo *repo,
|
gboolean hacktree_repo_link_file (HacktreeRepo *repo,
|
||||||
const char *path,
|
const char *path,
|
||||||
GError **error);
|
GError **error);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@
|
||||||
|
|
||||||
static HacktreeBuiltin builtins[] = {
|
static HacktreeBuiltin builtins[] = {
|
||||||
{ "init", hacktree_builtin_init, 0 },
|
{ "init", hacktree_builtin_init, 0 },
|
||||||
|
{ "link-file", hacktree_builtin_link_file, 0 },
|
||||||
{ NULL }
|
{ NULL }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue