
Use strbufs and strings instead of interned strings for values of rev, dump, and node fields that happen to be strings. After this change, the only remaining string_pool use is for paths in the repo_tree API and internals. Functional change: treat an empty author, UUID, or URL as none at all. So for example, in repos where the first revision has an empty svn:author property, the first rev will be treated as by "nobody" rather than by a person with empty name and email address created by prepending an @ sign to the repository UUID. Signed-off-by: David Barr <david.barr@cordelta.com> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
65 lines
1.4 KiB
C
65 lines
1.4 KiB
C
/*
|
|
* Licensed under a two-clause BSD-style license.
|
|
* See LICENSE for details.
|
|
*/
|
|
|
|
#include "git-compat-util.h"
|
|
#include "strbuf.h"
|
|
#include "repo_tree.h"
|
|
#include "fast_export.h"
|
|
|
|
const char *repo_read_path(const uint32_t *path)
|
|
{
|
|
int err;
|
|
uint32_t dummy;
|
|
static struct strbuf buf = STRBUF_INIT;
|
|
|
|
strbuf_reset(&buf);
|
|
err = fast_export_ls(REPO_MAX_PATH_DEPTH, path, &dummy, &buf);
|
|
if (err) {
|
|
if (errno != ENOENT)
|
|
die_errno("BUG: unexpected fast_export_ls error");
|
|
return NULL;
|
|
}
|
|
return buf.buf;
|
|
}
|
|
|
|
uint32_t repo_read_mode(const uint32_t *path)
|
|
{
|
|
int err;
|
|
uint32_t result;
|
|
static struct strbuf dummy = STRBUF_INIT;
|
|
|
|
strbuf_reset(&dummy);
|
|
err = fast_export_ls(REPO_MAX_PATH_DEPTH, path, &result, &dummy);
|
|
if (err) {
|
|
if (errno != ENOENT)
|
|
die_errno("BUG: unexpected fast_export_ls error");
|
|
/* Treat missing paths as directories. */
|
|
return REPO_MODE_DIR;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void repo_copy(uint32_t revision, const uint32_t *src, const uint32_t *dst)
|
|
{
|
|
int err;
|
|
uint32_t mode;
|
|
static struct strbuf data = STRBUF_INIT;
|
|
|
|
strbuf_reset(&data);
|
|
err = fast_export_ls_rev(revision, REPO_MAX_PATH_DEPTH, src, &mode, &data);
|
|
if (err) {
|
|
if (errno != ENOENT)
|
|
die_errno("BUG: unexpected fast_export_ls_rev error");
|
|
fast_export_delete(REPO_MAX_PATH_DEPTH, dst);
|
|
return;
|
|
}
|
|
fast_export_modify(REPO_MAX_PATH_DEPTH, dst, mode, data.buf);
|
|
}
|
|
|
|
void repo_delete(uint32_t *path)
|
|
{
|
|
fast_export_delete(REPO_MAX_PATH_DEPTH, path);
|
|
}
|