Skip to content

Commit

Permalink
ls-tree: simplify nesting if/else logic in "show_tree()"
Browse files Browse the repository at this point in the history
Use the object_type() function to determine the object type from the
"mode" passed to us by read_tree(), instead of doing so with the S_*()
macros.

Helped-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Teng Long <dyronetengb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
dyrone authored and gitster committed Mar 23, 2022
1 parent 889f783 commit 87af0dd
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions builtin/ls-tree.c
Expand Up @@ -66,20 +66,17 @@ static int show_tree(const struct object_id *oid, struct strbuf *base,
{
int recurse = 0;
size_t baselen;
enum object_type type = OBJ_BLOB;
enum object_type type = object_type(mode);

if (S_ISGITLINK(mode)) {
type = OBJ_COMMIT;
} else if (S_ISDIR(mode)) {
if (show_recursive(base->buf, base->len, pathname)) {
recurse = READ_TREE_RECURSIVE;
if (!(ls_options & LS_SHOW_TREES))
return recurse;
}
type = OBJ_TREE;
if (type == OBJ_BLOB) {
if (ls_options & LS_TREE_ONLY)
return 0;
} else if (type == OBJ_TREE &&
show_recursive(base->buf, base->len, pathname)) {
recurse = READ_TREE_RECURSIVE;
if (!(ls_options & LS_SHOW_TREES))
return recurse;
}
else if (ls_options & LS_TREE_ONLY)
return 0;

if (!(ls_options & LS_NAME_ONLY)) {
if (ls_options & LS_SHOW_SIZE) {
Expand Down

0 comments on commit 87af0dd

Please sign in to comment.