2 * GIT - The information manager from hell
4 * Copyright (C) Linus Torvalds, 2005
8 int line_termination = '\n';
12 struct path_prefix *prev;
16 static void print_path_prefix(struct path_prefix *prefix)
20 print_path_prefix(prefix->prev);
21 fputs(prefix->name, stdout);
26 static void list_recursive(void *buffer,
27 const unsigned char *type,
29 struct path_prefix *prefix)
31 struct path_prefix this_prefix;
32 this_prefix.prev = prefix;
34 if (strcmp(type, "tree"))
35 die("expected a 'tree' node");
38 int namelen = strlen(buffer)+1;
41 unsigned long eltsize;
42 unsigned char *sha1 = buffer + namelen;
43 char *path = strchr(buffer, ' ') + 1;
46 if (size < namelen + 20 || sscanf(buffer, "%o", &mode) != 1)
47 die("corrupt 'tree' file");
51 printf("%06o\t%s\t%s\t", mode,
52 S_ISDIR(mode) ? "tree" : "blob",
54 print_path_prefix(prefix);
56 putchar(line_termination);
58 if (! recursive || ! S_ISDIR(mode))
61 if (! (eltbuf = read_sha1_file(sha1, elttype, &eltsize)) ) {
62 error("cannot read %s", sha1_to_hex(sha1));
65 this_prefix.name = path;
66 list_recursive(eltbuf, elttype, eltsize, &this_prefix);
71 static int list(unsigned char *sha1)
76 buffer = read_object_with_reference(sha1, "tree", &size, 0);
78 die("unable to read sha1 file");
79 list_recursive(buffer, "tree", size, NULL);
83 static const char *ls_tree_usage = "ls-tree [-r] [-z] <key>";
85 int main(int argc, char **argv)
87 unsigned char sha1[20];
89 while (1 < argc && argv[1][0] == '-') {
104 usage(ls_tree_usage);
105 if (get_sha1(argv[1], sha1) < 0)
106 usage(ls_tree_usage);