Merge branch 'tl/ls-tree-code-clean-up'
Code clean-up. * tl/ls-tree-code-clean-up: t3104: remove shift code in 'test_ls_tree_format' ls-tree: cleanup the redundant SPACE ls-tree: make "line_termination" less generic ls-tree: fold "show_tree_data" into "cb" struct ls-tree: use a "struct options" ls-tree: don't use "show_tree_data" for "fast" callbacks
This commit is contained in:
@ -14,37 +14,11 @@
|
|||||||
#include "parse-options.h"
|
#include "parse-options.h"
|
||||||
#include "pathspec.h"
|
#include "pathspec.h"
|
||||||
|
|
||||||
static int line_termination = '\n';
|
|
||||||
#define LS_RECURSIVE 1
|
|
||||||
#define LS_TREE_ONLY (1 << 1)
|
|
||||||
#define LS_SHOW_TREES (1 << 2)
|
|
||||||
static int abbrev;
|
|
||||||
static int ls_options;
|
|
||||||
static struct pathspec pathspec;
|
|
||||||
static int chomp_prefix;
|
|
||||||
static const char *ls_tree_prefix;
|
|
||||||
static const char *format;
|
|
||||||
struct show_tree_data {
|
|
||||||
unsigned mode;
|
|
||||||
enum object_type type;
|
|
||||||
const struct object_id *oid;
|
|
||||||
const char *pathname;
|
|
||||||
struct strbuf *base;
|
|
||||||
};
|
|
||||||
|
|
||||||
static const char * const ls_tree_usage[] = {
|
static const char * const ls_tree_usage[] = {
|
||||||
N_("git ls-tree [<options>] <tree-ish> [<path>...]"),
|
N_("git ls-tree [<options>] <tree-ish> [<path>...]"),
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
static enum ls_tree_cmdmode {
|
|
||||||
MODE_DEFAULT = 0,
|
|
||||||
MODE_LONG,
|
|
||||||
MODE_NAME_ONLY,
|
|
||||||
MODE_NAME_STATUS,
|
|
||||||
MODE_OBJECT_ONLY,
|
|
||||||
} cmdmode;
|
|
||||||
|
|
||||||
static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
|
static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
|
||||||
const enum object_type type, unsigned int padded)
|
const enum object_type type, unsigned int padded)
|
||||||
{
|
{
|
||||||
@ -64,10 +38,34 @@ static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct ls_tree_options {
|
||||||
|
unsigned null_termination:1;
|
||||||
|
int abbrev;
|
||||||
|
enum ls_tree_path_options {
|
||||||
|
LS_RECURSIVE = 1 << 0,
|
||||||
|
LS_TREE_ONLY = 1 << 1,
|
||||||
|
LS_SHOW_TREES = 1 << 2,
|
||||||
|
} ls_options;
|
||||||
|
struct pathspec pathspec;
|
||||||
|
int chomp_prefix;
|
||||||
|
const char *ls_tree_prefix;
|
||||||
|
const char *format;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct show_tree_data {
|
||||||
|
struct ls_tree_options *options;
|
||||||
|
unsigned mode;
|
||||||
|
enum object_type type;
|
||||||
|
const struct object_id *oid;
|
||||||
|
const char *pathname;
|
||||||
|
struct strbuf *base;
|
||||||
|
};
|
||||||
|
|
||||||
static size_t expand_show_tree(struct strbuf *sb, const char *start,
|
static size_t expand_show_tree(struct strbuf *sb, const char *start,
|
||||||
void *context)
|
void *context)
|
||||||
{
|
{
|
||||||
struct show_tree_data *data = context;
|
struct show_tree_data *data = context;
|
||||||
|
struct ls_tree_options *options = data->options;
|
||||||
const char *end;
|
const char *end;
|
||||||
const char *p;
|
const char *p;
|
||||||
unsigned int errlen;
|
unsigned int errlen;
|
||||||
@ -92,10 +90,10 @@ static size_t expand_show_tree(struct strbuf *sb, const char *start,
|
|||||||
} else if (skip_prefix(start, "(objectsize)", &p)) {
|
} else if (skip_prefix(start, "(objectsize)", &p)) {
|
||||||
expand_objectsize(sb, data->oid, data->type, 0);
|
expand_objectsize(sb, data->oid, data->type, 0);
|
||||||
} else if (skip_prefix(start, "(objectname)", &p)) {
|
} else if (skip_prefix(start, "(objectname)", &p)) {
|
||||||
strbuf_add_unique_abbrev(sb, data->oid, abbrev);
|
strbuf_add_unique_abbrev(sb, data->oid, options->abbrev);
|
||||||
} else if (skip_prefix(start, "(path)", &p)) {
|
} else if (skip_prefix(start, "(path)", &p)) {
|
||||||
const char *name = data->base->buf;
|
const char *name = data->base->buf;
|
||||||
const char *prefix = chomp_prefix ? ls_tree_prefix : NULL;
|
const char *prefix = options->chomp_prefix ? options->ls_tree_prefix : NULL;
|
||||||
struct strbuf quoted = STRBUF_INIT;
|
struct strbuf quoted = STRBUF_INIT;
|
||||||
struct strbuf sbuf = STRBUF_INIT;
|
struct strbuf sbuf = STRBUF_INIT;
|
||||||
strbuf_addstr(data->base, data->pathname);
|
strbuf_addstr(data->base, data->pathname);
|
||||||
@ -111,18 +109,19 @@ static size_t expand_show_tree(struct strbuf *sb, const char *start,
|
|||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_recursive(const char *base, size_t baselen, const char *pathname)
|
static int show_recursive(struct ls_tree_options *options, const char *base,
|
||||||
|
size_t baselen, const char *pathname)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (ls_options & LS_RECURSIVE)
|
if (options->ls_options & LS_RECURSIVE)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (!pathspec.nr)
|
if (!options->pathspec.nr)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
for (i = 0; i < pathspec.nr; i++) {
|
for (i = 0; i < options->pathspec.nr; i++) {
|
||||||
const char *spec = pathspec.items[i].match;
|
const char *spec = options->pathspec.items[i].match;
|
||||||
size_t len, speclen;
|
size_t len, speclen;
|
||||||
|
|
||||||
if (strncmp(base, spec, baselen))
|
if (strncmp(base, spec, baselen))
|
||||||
@ -142,14 +141,15 @@ static int show_recursive(const char *base, size_t baselen, const char *pathname
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_fmt(const struct object_id *oid, struct strbuf *base,
|
static int show_tree_fmt(const struct object_id *oid, struct strbuf *base,
|
||||||
const char *pathname, unsigned mode, void *context UNUSED)
|
const char *pathname, unsigned mode, void *context)
|
||||||
{
|
{
|
||||||
|
struct ls_tree_options *options = context;
|
||||||
size_t baselen;
|
size_t baselen;
|
||||||
int recurse = 0;
|
int recurse = 0;
|
||||||
struct strbuf sb = STRBUF_INIT;
|
struct strbuf sb = STRBUF_INIT;
|
||||||
enum object_type type = object_type(mode);
|
enum object_type type = object_type(mode);
|
||||||
|
struct show_tree_data cb_data = {
|
||||||
struct show_tree_data data = {
|
.options = options,
|
||||||
.mode = mode,
|
.mode = mode,
|
||||||
.type = type,
|
.type = type,
|
||||||
.oid = oid,
|
.oid = oid,
|
||||||
@ -157,94 +157,102 @@ static int show_tree_fmt(const struct object_id *oid, struct strbuf *base,
|
|||||||
.base = base,
|
.base = base,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (type == OBJ_TREE && show_recursive(base->buf, base->len, pathname))
|
if (type == OBJ_TREE && show_recursive(options, base->buf, base->len, pathname))
|
||||||
recurse = READ_TREE_RECURSIVE;
|
recurse = READ_TREE_RECURSIVE;
|
||||||
if (type == OBJ_TREE && recurse && !(ls_options & LS_SHOW_TREES))
|
if (type == OBJ_TREE && recurse && !(options->ls_options & LS_SHOW_TREES))
|
||||||
return recurse;
|
return recurse;
|
||||||
if (type == OBJ_BLOB && (ls_options & LS_TREE_ONLY))
|
if (type == OBJ_BLOB && (options->ls_options & LS_TREE_ONLY))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
baselen = base->len;
|
baselen = base->len;
|
||||||
strbuf_expand(&sb, format, expand_show_tree, &data);
|
strbuf_expand(&sb, options->format, expand_show_tree, &cb_data);
|
||||||
strbuf_addch(&sb, line_termination);
|
strbuf_addch(&sb, options->null_termination ? '\0' : '\n');
|
||||||
fwrite(sb.buf, sb.len, 1, stdout);
|
fwrite(sb.buf, sb.len, 1, stdout);
|
||||||
strbuf_release(&sb);
|
strbuf_release(&sb);
|
||||||
strbuf_setlen(base, baselen);
|
strbuf_setlen(base, baselen);
|
||||||
return recurse;
|
return recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_common(struct show_tree_data *data, int *recurse,
|
static int show_tree_common(struct ls_tree_options *options, int *recurse,
|
||||||
const struct object_id *oid, struct strbuf *base,
|
struct strbuf *base, const char *pathname,
|
||||||
const char *pathname, unsigned mode)
|
enum object_type type)
|
||||||
{
|
{
|
||||||
enum object_type type = object_type(mode);
|
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
|
|
||||||
*recurse = 0;
|
*recurse = 0;
|
||||||
data->mode = mode;
|
|
||||||
data->type = type;
|
|
||||||
data->oid = oid;
|
|
||||||
data->pathname = pathname;
|
|
||||||
data->base = base;
|
|
||||||
|
|
||||||
if (type == OBJ_BLOB) {
|
if (type == OBJ_BLOB) {
|
||||||
if (ls_options & LS_TREE_ONLY)
|
if (options->ls_options & LS_TREE_ONLY)
|
||||||
ret = 0;
|
ret = 0;
|
||||||
} else if (type == OBJ_TREE &&
|
} else if (type == OBJ_TREE &&
|
||||||
show_recursive(base->buf, base->len, pathname)) {
|
show_recursive(options, base->buf, base->len, pathname)) {
|
||||||
*recurse = READ_TREE_RECURSIVE;
|
*recurse = READ_TREE_RECURSIVE;
|
||||||
if (!(ls_options & LS_SHOW_TREES))
|
if (!(options->ls_options & LS_SHOW_TREES))
|
||||||
ret = *recurse;
|
ret = *recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void show_tree_common_default_long(struct strbuf *base,
|
static void show_tree_common_default_long(struct ls_tree_options *options,
|
||||||
|
struct strbuf *base,
|
||||||
const char *pathname,
|
const char *pathname,
|
||||||
const size_t baselen)
|
const size_t baselen)
|
||||||
{
|
{
|
||||||
|
const char *prefix = options->chomp_prefix ? options->ls_tree_prefix : NULL;
|
||||||
|
|
||||||
strbuf_addstr(base, pathname);
|
strbuf_addstr(base, pathname);
|
||||||
write_name_quoted_relative(base->buf,
|
|
||||||
chomp_prefix ? ls_tree_prefix : NULL, stdout,
|
if (options->null_termination) {
|
||||||
line_termination);
|
struct strbuf sb = STRBUF_INIT;
|
||||||
|
const char *name = relative_path(base->buf, prefix, &sb);
|
||||||
|
|
||||||
|
fputs(name, stdout);
|
||||||
|
fputc('\0', stdout);
|
||||||
|
|
||||||
|
strbuf_release(&sb);
|
||||||
|
} else {
|
||||||
|
write_name_quoted_relative(base->buf, prefix, stdout, '\n');
|
||||||
|
}
|
||||||
|
|
||||||
strbuf_setlen(base, baselen);
|
strbuf_setlen(base, baselen);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_default(const struct object_id *oid, struct strbuf *base,
|
static int show_tree_default(const struct object_id *oid, struct strbuf *base,
|
||||||
const char *pathname, unsigned mode,
|
const char *pathname, unsigned mode,
|
||||||
void *context UNUSED)
|
void *context)
|
||||||
{
|
{
|
||||||
|
struct ls_tree_options *options = context;
|
||||||
int early;
|
int early;
|
||||||
int recurse;
|
int recurse;
|
||||||
struct show_tree_data data = { 0 };
|
enum object_type type = object_type(mode);
|
||||||
|
|
||||||
early = show_tree_common(&data, &recurse, oid, base, pathname, mode);
|
early = show_tree_common(options, &recurse, base, pathname, type);
|
||||||
if (early >= 0)
|
if (early >= 0)
|
||||||
return early;
|
return early;
|
||||||
|
|
||||||
printf("%06o %s %s\t", data.mode, type_name(data.type),
|
printf("%06o %s %s\t", mode, type_name(object_type(mode)),
|
||||||
find_unique_abbrev(data.oid, abbrev));
|
find_unique_abbrev(oid, options->abbrev));
|
||||||
show_tree_common_default_long(base, pathname, data.base->len);
|
show_tree_common_default_long(options, base, pathname, base->len);
|
||||||
return recurse;
|
return recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_long(const struct object_id *oid, struct strbuf *base,
|
static int show_tree_long(const struct object_id *oid, struct strbuf *base,
|
||||||
const char *pathname, unsigned mode,
|
const char *pathname, unsigned mode,
|
||||||
void *context UNUSED)
|
void *context)
|
||||||
{
|
{
|
||||||
|
struct ls_tree_options *options = context;
|
||||||
int early;
|
int early;
|
||||||
int recurse;
|
int recurse;
|
||||||
struct show_tree_data data = { 0 };
|
|
||||||
char size_text[24];
|
char size_text[24];
|
||||||
|
enum object_type type = object_type(mode);
|
||||||
|
|
||||||
early = show_tree_common(&data, &recurse, oid, base, pathname, mode);
|
early = show_tree_common(options, &recurse, base, pathname, type);
|
||||||
if (early >= 0)
|
if (early >= 0)
|
||||||
return early;
|
return early;
|
||||||
|
|
||||||
if (data.type == OBJ_BLOB) {
|
if (type == OBJ_BLOB) {
|
||||||
unsigned long size;
|
unsigned long size;
|
||||||
if (oid_object_info(the_repository, data.oid, &size) == OBJ_BAD)
|
if (oid_object_info(the_repository, oid, &size) == OBJ_BAD)
|
||||||
xsnprintf(size_text, sizeof(size_text), "BAD");
|
xsnprintf(size_text, sizeof(size_text), "BAD");
|
||||||
else
|
else
|
||||||
xsnprintf(size_text, sizeof(size_text),
|
xsnprintf(size_text, sizeof(size_text),
|
||||||
@ -253,49 +261,76 @@ static int show_tree_long(const struct object_id *oid, struct strbuf *base,
|
|||||||
xsnprintf(size_text, sizeof(size_text), "-");
|
xsnprintf(size_text, sizeof(size_text), "-");
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("%06o %s %s %7s\t", data.mode, type_name(data.type),
|
printf("%06o %s %s %7s\t", mode, type_name(type),
|
||||||
find_unique_abbrev(data.oid, abbrev), size_text);
|
find_unique_abbrev(oid, options->abbrev), size_text);
|
||||||
show_tree_common_default_long(base, pathname, data.base->len);
|
show_tree_common_default_long(options, base, pathname, base->len);
|
||||||
return recurse;
|
return recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_name_only(const struct object_id *oid, struct strbuf *base,
|
static int show_tree_name_only(const struct object_id *oid, struct strbuf *base,
|
||||||
const char *pathname, unsigned mode,
|
const char *pathname, unsigned mode,
|
||||||
void *context UNUSED)
|
void *context)
|
||||||
{
|
{
|
||||||
|
struct ls_tree_options *options = context;
|
||||||
int early;
|
int early;
|
||||||
int recurse;
|
int recurse;
|
||||||
const size_t baselen = base->len;
|
const size_t baselen = base->len;
|
||||||
struct show_tree_data data = { 0 };
|
enum object_type type = object_type(mode);
|
||||||
|
const char *prefix;
|
||||||
|
|
||||||
early = show_tree_common(&data, &recurse, oid, base, pathname, mode);
|
early = show_tree_common(options, &recurse, base, pathname, type);
|
||||||
if (early >= 0)
|
if (early >= 0)
|
||||||
return early;
|
return early;
|
||||||
|
|
||||||
|
prefix = options->chomp_prefix ? options->ls_tree_prefix : NULL;
|
||||||
strbuf_addstr(base, pathname);
|
strbuf_addstr(base, pathname);
|
||||||
write_name_quoted_relative(base->buf,
|
if (options->null_termination) {
|
||||||
chomp_prefix ? ls_tree_prefix : NULL,
|
struct strbuf sb = STRBUF_INIT;
|
||||||
stdout, line_termination);
|
const char *name = relative_path(base->buf, prefix, &sb);
|
||||||
|
|
||||||
|
fputs(name, stdout);
|
||||||
|
fputc('\0', stdout);
|
||||||
|
|
||||||
|
strbuf_release(&sb);
|
||||||
|
} else {
|
||||||
|
write_name_quoted_relative(base->buf, prefix, stdout, '\n');
|
||||||
|
}
|
||||||
strbuf_setlen(base, baselen);
|
strbuf_setlen(base, baselen);
|
||||||
return recurse;
|
return recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int show_tree_object(const struct object_id *oid, struct strbuf *base,
|
static int show_tree_object(const struct object_id *oid, struct strbuf *base,
|
||||||
const char *pathname, unsigned mode,
|
const char *pathname, unsigned mode,
|
||||||
void *context UNUSED)
|
void *context)
|
||||||
{
|
{
|
||||||
|
struct ls_tree_options *options = context;
|
||||||
int early;
|
int early;
|
||||||
int recurse;
|
int recurse;
|
||||||
struct show_tree_data data = { 0 };
|
enum object_type type = object_type(mode);
|
||||||
|
const char *str;
|
||||||
|
|
||||||
early = show_tree_common(&data, &recurse, oid, base, pathname, mode);
|
early = show_tree_common(options, &recurse, base, pathname, type);
|
||||||
if (early >= 0)
|
if (early >= 0)
|
||||||
return early;
|
return early;
|
||||||
|
|
||||||
printf("%s%c", find_unique_abbrev(oid, abbrev), line_termination);
|
str = find_unique_abbrev(oid, options->abbrev);
|
||||||
|
if (options->null_termination) {
|
||||||
|
fputs(str, stdout);
|
||||||
|
fputc('\0', stdout);
|
||||||
|
} else {
|
||||||
|
puts(str);
|
||||||
|
}
|
||||||
return recurse;
|
return recurse;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum ls_tree_cmdmode {
|
||||||
|
MODE_DEFAULT = 0,
|
||||||
|
MODE_LONG,
|
||||||
|
MODE_NAME_ONLY,
|
||||||
|
MODE_NAME_STATUS,
|
||||||
|
MODE_OBJECT_ONLY,
|
||||||
|
};
|
||||||
|
|
||||||
struct ls_tree_cmdmode_to_fmt {
|
struct ls_tree_cmdmode_to_fmt {
|
||||||
enum ls_tree_cmdmode mode;
|
enum ls_tree_cmdmode mode;
|
||||||
const char *const fmt;
|
const char *const fmt;
|
||||||
@ -335,15 +370,18 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
struct tree *tree;
|
struct tree *tree;
|
||||||
int i, full_tree = 0;
|
int i, full_tree = 0;
|
||||||
read_tree_fn_t fn = NULL;
|
read_tree_fn_t fn = NULL;
|
||||||
|
enum ls_tree_cmdmode cmdmode = MODE_DEFAULT;
|
||||||
|
int null_termination = 0;
|
||||||
|
struct ls_tree_options options = { 0 };
|
||||||
const struct option ls_tree_options[] = {
|
const struct option ls_tree_options[] = {
|
||||||
OPT_BIT('d', NULL, &ls_options, N_("only show trees"),
|
OPT_BIT('d', NULL, &options.ls_options, N_("only show trees"),
|
||||||
LS_TREE_ONLY),
|
LS_TREE_ONLY),
|
||||||
OPT_BIT('r', NULL, &ls_options, N_("recurse into subtrees"),
|
OPT_BIT('r', NULL, &options.ls_options, N_("recurse into subtrees"),
|
||||||
LS_RECURSIVE),
|
LS_RECURSIVE),
|
||||||
OPT_BIT('t', NULL, &ls_options, N_("show trees when recursing"),
|
OPT_BIT('t', NULL, &options.ls_options, N_("show trees when recursing"),
|
||||||
LS_SHOW_TREES),
|
LS_SHOW_TREES),
|
||||||
OPT_SET_INT('z', NULL, &line_termination,
|
OPT_BOOL('z', NULL, &null_termination,
|
||||||
N_("terminate entries with NUL byte"), 0),
|
N_("terminate entries with NUL byte")),
|
||||||
OPT_CMDMODE('l', "long", &cmdmode, N_("include object size"),
|
OPT_CMDMODE('l', "long", &cmdmode, N_("include object size"),
|
||||||
MODE_LONG),
|
MODE_LONG),
|
||||||
OPT_CMDMODE(0, "name-only", &cmdmode, N_("list only filenames"),
|
OPT_CMDMODE(0, "name-only", &cmdmode, N_("list only filenames"),
|
||||||
@ -352,29 +390,32 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
MODE_NAME_STATUS),
|
MODE_NAME_STATUS),
|
||||||
OPT_CMDMODE(0, "object-only", &cmdmode, N_("list only objects"),
|
OPT_CMDMODE(0, "object-only", &cmdmode, N_("list only objects"),
|
||||||
MODE_OBJECT_ONLY),
|
MODE_OBJECT_ONLY),
|
||||||
OPT_SET_INT(0, "full-name", &chomp_prefix,
|
OPT_SET_INT(0, "full-name", &options.chomp_prefix,
|
||||||
N_("use full path names"), 0),
|
N_("use full path names"), 0),
|
||||||
OPT_BOOL(0, "full-tree", &full_tree,
|
OPT_BOOL(0, "full-tree", &full_tree,
|
||||||
N_("list entire tree; not just current directory "
|
N_("list entire tree; not just current directory "
|
||||||
"(implies --full-name)")),
|
"(implies --full-name)")),
|
||||||
OPT_STRING_F(0, "format", &format, N_("format"),
|
OPT_STRING_F(0, "format", &options.format, N_("format"),
|
||||||
N_("format to use for the output"),
|
N_("format to use for the output"),
|
||||||
PARSE_OPT_NONEG),
|
PARSE_OPT_NONEG),
|
||||||
OPT__ABBREV(&abbrev),
|
OPT__ABBREV(&options.abbrev),
|
||||||
OPT_END()
|
OPT_END()
|
||||||
};
|
};
|
||||||
struct ls_tree_cmdmode_to_fmt *m2f = ls_tree_cmdmode_format;
|
struct ls_tree_cmdmode_to_fmt *m2f = ls_tree_cmdmode_format;
|
||||||
|
int ret;
|
||||||
|
|
||||||
git_config(git_default_config, NULL);
|
git_config(git_default_config, NULL);
|
||||||
ls_tree_prefix = prefix;
|
options.ls_tree_prefix = prefix;
|
||||||
if (prefix)
|
if (prefix)
|
||||||
chomp_prefix = strlen(prefix);
|
options.chomp_prefix = strlen(prefix);
|
||||||
|
|
||||||
argc = parse_options(argc, argv, prefix, ls_tree_options,
|
argc = parse_options(argc, argv, prefix, ls_tree_options,
|
||||||
ls_tree_usage, 0);
|
ls_tree_usage, 0);
|
||||||
|
options.null_termination = null_termination;
|
||||||
|
|
||||||
if (full_tree) {
|
if (full_tree) {
|
||||||
ls_tree_prefix = prefix = NULL;
|
options.ls_tree_prefix = prefix = NULL;
|
||||||
chomp_prefix = 0;
|
options.chomp_prefix = 0;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* We wanted to detect conflicts between --name-only and
|
* We wanted to detect conflicts between --name-only and
|
||||||
@ -386,10 +427,10 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
|
|
||||||
/* -d -r should imply -t, but -d by itself should not have to. */
|
/* -d -r should imply -t, but -d by itself should not have to. */
|
||||||
if ( (LS_TREE_ONLY|LS_RECURSIVE) ==
|
if ( (LS_TREE_ONLY|LS_RECURSIVE) ==
|
||||||
((LS_TREE_ONLY|LS_RECURSIVE) & ls_options))
|
((LS_TREE_ONLY|LS_RECURSIVE) & options.ls_options))
|
||||||
ls_options |= LS_SHOW_TREES;
|
options.ls_options |= LS_SHOW_TREES;
|
||||||
|
|
||||||
if (format && cmdmode)
|
if (options.format && cmdmode)
|
||||||
usage_msg_opt(
|
usage_msg_opt(
|
||||||
_("--format can't be combined with other format-altering options"),
|
_("--format can't be combined with other format-altering options"),
|
||||||
ls_tree_usage, ls_tree_options);
|
ls_tree_usage, ls_tree_options);
|
||||||
@ -404,13 +445,13 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
* cannot be lifted until it is converted to use
|
* cannot be lifted until it is converted to use
|
||||||
* match_pathspec() or tree_entry_interesting()
|
* match_pathspec() or tree_entry_interesting()
|
||||||
*/
|
*/
|
||||||
parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC &
|
parse_pathspec(&options.pathspec, PATHSPEC_ALL_MAGIC &
|
||||||
~(PATHSPEC_FROMTOP | PATHSPEC_LITERAL),
|
~(PATHSPEC_FROMTOP | PATHSPEC_LITERAL),
|
||||||
PATHSPEC_PREFER_CWD,
|
PATHSPEC_PREFER_CWD,
|
||||||
prefix, argv + 1);
|
prefix, argv + 1);
|
||||||
for (i = 0; i < pathspec.nr; i++)
|
for (i = 0; i < options.pathspec.nr; i++)
|
||||||
pathspec.items[i].nowildcard_len = pathspec.items[i].len;
|
options.pathspec.items[i].nowildcard_len = options.pathspec.items[i].len;
|
||||||
pathspec.has_wildcard = 0;
|
options.pathspec.has_wildcard = 0;
|
||||||
tree = parse_tree_indirect(&oid);
|
tree = parse_tree_indirect(&oid);
|
||||||
if (!tree)
|
if (!tree)
|
||||||
die("not a tree object");
|
die("not a tree object");
|
||||||
@ -420,11 +461,11 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
*/
|
*/
|
||||||
while (m2f) {
|
while (m2f) {
|
||||||
if (!m2f->fmt) {
|
if (!m2f->fmt) {
|
||||||
fn = format ? show_tree_fmt : show_tree_default;
|
fn = options.format ? show_tree_fmt : show_tree_default;
|
||||||
} else if (format && !strcmp(format, m2f->fmt)) {
|
} else if (options.format && !strcmp(options.format, m2f->fmt)) {
|
||||||
cmdmode = m2f->mode;
|
cmdmode = m2f->mode;
|
||||||
fn = m2f->fn;
|
fn = m2f->fn;
|
||||||
} else if (!format && cmdmode == m2f->mode) {
|
} else if (!options.format && cmdmode == m2f->mode) {
|
||||||
fn = m2f->fn;
|
fn = m2f->fn;
|
||||||
} else {
|
} else {
|
||||||
m2f++;
|
m2f++;
|
||||||
@ -433,5 +474,7 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return !!read_tree(the_repository, tree, &pathspec, fn, NULL);
|
ret = !!read_tree(the_repository, tree, &options.pathspec, fn, &options);
|
||||||
|
clear_pathspec(&options.pathspec);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,6 @@ test_ls_tree_format () {
|
|||||||
format=$1 &&
|
format=$1 &&
|
||||||
opts=$2 &&
|
opts=$2 &&
|
||||||
fmtopts=$3 &&
|
fmtopts=$3 &&
|
||||||
shift 2 &&
|
|
||||||
|
|
||||||
test_expect_success "ls-tree '--format=<$format>' is like options '$opts $fmtopts'" '
|
test_expect_success "ls-tree '--format=<$format>' is like options '$opts $fmtopts'" '
|
||||||
git ls-tree $opts -r HEAD >expect &&
|
git ls-tree $opts -r HEAD >expect &&
|
||||||
|
Reference in New Issue
Block a user