2 * This merges the file listing in the directory cache index
3 * with the actual working directory list, and shows different
4 * combinations of the two.
6 * Copyright (C) Linus Torvalds, 2005
13 static int show_deleted
= 0;
14 static int show_cached
= 0;
15 static int show_others
= 0;
16 static int show_ignored
= 0;
18 static const char **dir
;
22 static void add_name(const char *pathname
, int len
)
26 if (cache_name_pos(pathname
, len
) >= 0)
29 if (nr_dir
== dir_alloc
) {
30 dir_alloc
= alloc_nr(dir_alloc
);
31 dir
= realloc(dir
, dir_alloc
*sizeof(char *));
33 name
= malloc(len
+ 1);
34 memcpy(name
, pathname
, len
+ 1);
39 * Read a directory tree. We currently ignore anything but
40 * directories and regular files. That's because git doesn't
41 * handle them at all yet. Maybe that will change some day.
43 * Also, we currently ignore all names starting with a dot.
44 * That likely will not change.
46 static void read_directory(const char *path
, const char *base
, int baselen
)
48 DIR *dir
= opendir(path
);
52 char fullname
[MAXPATHLEN
+ 1];
53 memcpy(fullname
, base
, baselen
);
55 while ((de
= readdir(dir
)) != NULL
) {
58 if (de
->d_name
[0] == '.')
60 len
= strlen(de
->d_name
);
61 memcpy(fullname
+ baselen
, de
->d_name
, len
+1);
68 if (lstat(fullname
, &st
))
70 if (S_ISREG(st
.st_mode
))
72 if (!S_ISDIR(st
.st_mode
))
76 memcpy(fullname
+ baselen
+ len
, "/", 2);
77 read_directory(fullname
, fullname
, baselen
+ len
+ 1);
82 add_name(fullname
, baselen
+ len
);
88 static int cmp_name(const void *p1
, const void *p2
)
90 const char *n1
= *(const char **)p1
;
91 const char *n2
= *(const char **)p2
;
92 int l1
= strlen(n1
), l2
= strlen(n2
);
94 return cache_name_compare(n1
, l1
, n2
, l2
);
97 static void show_files(void)
101 /* For cached/deleted files we don't need to even do the readdir */
102 if (show_others
| show_ignored
) {
103 read_directory(".", "", 0);
104 qsort(dir
, nr_dir
, sizeof(char *), cmp_name
);
107 for (i
= 0; i
< nr_dir
; i
++)
108 printf("%s\n", dir
[i
]);
111 for (i
= 0; i
< active_nr
; i
++) {
112 struct cache_entry
*ce
= active_cache
[i
];
113 printf("%s\n", ce
->name
);
117 for (i
= 0; i
< active_nr
; i
++) {
118 struct cache_entry
*ce
= active_cache
[i
];
120 if (!stat(ce
->name
, &st
))
122 printf("%s\n", ce
->name
);
126 /* We don't have any "ignore" list yet */
130 int main(int argc
, char **argv
)
134 for (i
= 1; i
< argc
; i
++) {
137 if (!strcmp(arg
, "--cached")) {
141 if (!strcmp(arg
, "--deleted")) {
145 if (!strcmp(arg
, "--others")) {
149 if (!strcmp(arg
, "--ignored")) {
154 usage("show-files (--[cached|deleted|others|ignoded])*");
157 /* With no flags, we default to showing the cached files */
158 if (!(show_cached
| show_deleted
| show_others
| show_ignored
))