]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/ls-files.c
strbuf: simplify strbuf_expand_literal_cb()
[thirdparty/git.git] / builtin / ls-files.c
CommitLineData
8695c8bf
LT
1/*
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.
5 *
6 * Copyright (C) Linus Torvalds, 2005
7 */
8695c8bf 8#include "cache.h"
188dce13 9#include "repository.h"
b2141fc1 10#include "config.h"
73359a9b 11#include "convert.h"
22ddf719 12#include "quote.h"
453ec4bd 13#include "dir.h"
0864f264 14#include "builtin.h"
f394e093 15#include "gettext.h"
dabab1d6 16#include "object-name.h"
ce74de93 17#include "strbuf.h"
64586e75 18#include "tree.h"
eefadd18 19#include "cache-tree.h"
ce8e8804 20#include "parse-options.h"
9d9a2f4a
JH
21#include "resolve-undo.h"
22#include "string-list.h"
64acde94 23#include "pathspec.h"
e77aa336 24#include "run-command.h"
e38da487 25#include "setup.h"
2e5d6503 26#include "submodule.h"
1b796ace 27#include "submodule-config.h"
4d28c4f7
ZH
28#include "object-store.h"
29#include "hex.h"
30
8695c8bf 31
96f1e58f
DR
32static int abbrev;
33static int show_deleted;
34static int show_cached;
35static int show_others;
36static int show_stage;
37static int show_unmerged;
9d9a2f4a 38static int show_resolve_undo;
96f1e58f
DR
39static int show_modified;
40static int show_killed;
41static int show_valid_bit;
d8c71db8 42static int show_fsmonitor_bit;
b83c8345 43static int line_terminator = '\n';
84974217 44static int debug_mode;
a7630bd4 45static int show_eol;
e77aa336 46static int recurse_submodules;
93a7d983 47static int skipping_duplicates;
78087097 48static int show_sparse_dirs;
8695c8bf 49
efad1a56
CB
50static const char *prefix;
51static int max_prefix_len;
96f1e58f 52static int prefix_len;
9e06d6ed 53static struct pathspec pathspec;
96f1e58f
DR
54static int error_unmatch;
55static char *ps_matched;
64586e75 56static const char *with_tree;
ce8e8804 57static int exc_given;
c04318e4 58static int exclude_args;
ce74de93 59static const char *format;
5be4efbe 60
20d37ef6
PB
61static const char *tag_cached = "";
62static const char *tag_unmerged = "";
63static const char *tag_removed = "";
64static const char *tag_other = "";
6ca45943 65static const char *tag_killed = "";
b0391890 66static const char *tag_modified = "";
44a36913 67static const char *tag_skip_worktree = "";
9d9a2f4a 68static const char *tag_resolve_undo = "";
20d37ef6 69
847a9e5d 70static void write_eolinfo(struct index_state *istate,
1985fd68 71 const struct cache_entry *ce, const char *path)
a7630bd4 72{
1985fd68 73 if (show_eol) {
a7630bd4
TB
74 struct stat st;
75 const char *i_txt = "";
76 const char *w_txt = "";
a52b321d 77 const char *a_txt = get_convert_attr_ascii(istate, path);
a7630bd4 78 if (ce && S_ISREG(ce->ce_mode))
1985fd68 79 i_txt = get_cached_convert_stats_ascii(istate,
a7609c54 80 ce->name);
a7630bd4
TB
81 if (!lstat(path, &st) && S_ISREG(st.st_mode))
82 w_txt = get_wt_convert_stats_ascii(path);
83 printf("i/%-5s w/%-5s attr/%-17s\t", i_txt, w_txt, a_txt);
84 }
85}
86
e9a820ce 87static void write_name(const char *name)
efad1a56 88{
ad66df2d 89 /*
e9a820ce
JX
90 * With "--full-name", prefix_len=0; this caller needs to pass
91 * an empty string in that case (a NULL is good for "").
ad66df2d 92 */
e9a820ce
JX
93 write_name_quoted_relative(name, prefix_len ? prefix : NULL,
94 stdout, line_terminator);
efad1a56
CB
95}
96
ce74de93
ZH
97static void write_name_to_buf(struct strbuf *sb, const char *name)
98{
cfb62dd0
AJ
99 struct strbuf buf = STRBUF_INIT;
100 const char *rel = relative_path(name, prefix_len ? prefix : NULL, &buf);
ce74de93
ZH
101
102 if (line_terminator)
103 quote_c_style(rel, sb, NULL, 0);
104 else
105 strbuf_addstr(sb, rel);
cfb62dd0
AJ
106
107 strbuf_release(&buf);
ce74de93
ZH
108}
109
a84f3e59
BW
110static const char *get_tag(const struct cache_entry *ce, const char *tag)
111{
112 static char alttag[4];
113
d8c71db8
BP
114 if (tag && *tag && ((show_valid_bit && (ce->ce_flags & CE_VALID)) ||
115 (show_fsmonitor_bit && (ce->ce_flags & CE_FSMONITOR_VALID)))) {
a84f3e59
BW
116 memcpy(alttag, tag, 3);
117
118 if (isalpha(tag[0])) {
119 alttag[0] = tolower(tag[0]);
120 } else if (tag[0] == '?') {
121 alttag[0] = '!';
122 } else {
123 alttag[0] = 'v';
124 alttag[1] = tag[0];
125 alttag[2] = ' ';
126 alttag[3] = 0;
127 }
128
129 tag = alttag;
130 }
131
132 return tag;
133}
134
5306ccf9
BW
135static void print_debug(const struct cache_entry *ce)
136{
137 if (debug_mode) {
138 const struct stat_data *sd = &ce->ce_stat_data;
139
7cb7283a
TG
140 printf(" ctime: %u:%u\n", sd->sd_ctime.sec, sd->sd_ctime.nsec);
141 printf(" mtime: %u:%u\n", sd->sd_mtime.sec, sd->sd_mtime.nsec);
142 printf(" dev: %u\tino: %u\n", sd->sd_dev, sd->sd_ino);
143 printf(" uid: %u\tgid: %u\n", sd->sd_uid, sd->sd_gid);
144 printf(" size: %u\tflags: %x\n", sd->sd_size, ce->ce_flags);
5306ccf9
BW
145 }
146}
147
847a9e5d 148static void show_dir_entry(struct index_state *istate,
a52b321d 149 const char *tag, struct dir_entry *ent)
5be4efbe 150{
efad1a56 151 int len = max_prefix_len;
5be4efbe 152
cbca060e 153 if (len > ent->len)
7e44c935 154 die("git ls-files: internal error - directory entry not superset of prefix");
5be4efbe 155
95c11ecc
EN
156 /* If ps_matches is non-NULL, figure out which pathspec(s) match. */
157 if (ps_matched)
158 dir_path_match(istate, ent, &pathspec, len, ps_matched);
5be4efbe 159
22ddf719 160 fputs(tag, stdout);
a52b321d 161 write_eolinfo(istate, NULL, ent->name);
e9a820ce 162 write_name(ent->name);
5be4efbe
LT
163}
164
847a9e5d 165static void show_other_files(struct index_state *istate,
23d6846b 166 const struct dir_struct *dir)
fcbc3083
JH
167{
168 int i;
5698454e 169
453ec4bd 170 for (i = 0; i < dir->nr; i++) {
453ec4bd 171 struct dir_entry *ent = dir->entries[i];
23d6846b 172 if (!index_name_is_other(istate, ent->name, ent->len))
98fa4738 173 continue;
a52b321d 174 show_dir_entry(istate, tag_other, ent);
fcbc3083
JH
175 }
176}
177
847a9e5d 178static void show_killed_files(struct index_state *istate,
23d6236a 179 const struct dir_struct *dir)
6ca45943
JH
180{
181 int i;
453ec4bd
LT
182 for (i = 0; i < dir->nr; i++) {
183 struct dir_entry *ent = dir->entries[i];
6ca45943
JH
184 char *cp, *sp;
185 int pos, len, killed = 0;
186
187 for (cp = ent->name; cp - ent->name < ent->len; cp = sp + 1) {
188 sp = strchr(cp, '/');
189 if (!sp) {
190 /* If ent->name is prefix of an entry in the
191 * cache, it will be killed.
192 */
23d6236a 193 pos = index_name_pos(istate, ent->name, ent->len);
6ca45943 194 if (0 <= pos)
033abf97 195 BUG("killed-file %.*s not found",
ef1177d1 196 ent->len, ent->name);
6ca45943 197 pos = -pos - 1;
23d6236a
BW
198 while (pos < istate->cache_nr &&
199 ce_stage(istate->cache[pos]))
6ca45943 200 pos++; /* skip unmerged */
23d6236a 201 if (istate->cache_nr <= pos)
6ca45943
JH
202 break;
203 /* pos points at a name immediately after
204 * ent->name in the cache. Does it expect
205 * ent->name to be a directory?
206 */
23d6236a 207 len = ce_namelen(istate->cache[pos]);
6ca45943 208 if ((ent->len < len) &&
23d6236a 209 !strncmp(istate->cache[pos]->name,
6ca45943 210 ent->name, ent->len) &&
23d6236a 211 istate->cache[pos]->name[ent->len] == '/')
6ca45943
JH
212 killed = 1;
213 break;
214 }
23d6236a 215 if (0 <= index_name_pos(istate, ent->name, sp - ent->name)) {
6ca45943
JH
216 /* If any of the leading directories in
217 * ent->name is registered in the cache,
218 * ent->name will be killed.
219 */
220 killed = 1;
221 break;
222 }
223 }
224 if (killed)
a52b321d 225 show_dir_entry(istate, tag_killed, dir->entries[i]);
6ca45943 226 }
8695c8bf
LT
227}
228
188dce13 229static void show_files(struct repository *repo, struct dir_struct *dir);
07c01b9f 230
188dce13
BW
231static void show_submodule(struct repository *superproject,
232 struct dir_struct *dir, const char *path)
e77aa336 233{
d5498e08 234 struct repository subrepo;
188dce13 235
8eb8dcf9 236 if (repo_submodule_init(&subrepo, superproject, path, null_oid()))
188dce13
BW
237 return;
238
d5498e08 239 if (repo_read_index(&subrepo) < 0)
188dce13
BW
240 die("index file corrupt");
241
d5498e08 242 show_files(&subrepo, dir);
188dce13 243
d5498e08 244 repo_clear(&subrepo);
e77aa336
BW
245}
246
4d28c4f7
ZH
247static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
248 const enum object_type type, unsigned int padded)
249{
250 if (type == OBJ_BLOB) {
251 unsigned long size;
252 if (oid_object_info(the_repository, oid, &size) < 0)
253 die(_("could not get object info about '%s'"),
254 oid_to_hex(oid));
255 if (padded)
256 strbuf_addf(line, "%7"PRIuMAX, (uintmax_t)size);
257 else
258 strbuf_addf(line, "%"PRIuMAX, (uintmax_t)size);
259 } else if (padded) {
260 strbuf_addf(line, "%7s", "-");
261 } else {
262 strbuf_addstr(line, "-");
263 }
264}
ce74de93
ZH
265
266static void show_ce_fmt(struct repository *repo, const struct cache_entry *ce,
267 const char *format, const char *fullname) {
ce74de93
ZH
268 struct strbuf sb = STRBUF_INIT;
269
6f1e2d52
RS
270 while (strbuf_expand_step(&sb, &format)) {
271 const char *end;
272 size_t len;
273 struct stat st;
274
275 if (skip_prefix(format, "%", &format))
276 strbuf_addch(&sb, '%');
4416b86c 277 else if ((len = strbuf_expand_literal(&sb, format)))
6f1e2d52
RS
278 format += len;
279 else if (*format != '(')
280 die(_("bad ls-files format: element '%s' "
281 "does not start with '('"), format);
282 else if (!(end = strchr(format + 1, ')')))
283 die(_("bad ls-files format: element '%s' "
284 "does not end in ')'"), format);
285 else if (skip_prefix(format, "(objectmode)", &format))
286 strbuf_addf(&sb, "%06o", ce->ce_mode);
287 else if (skip_prefix(format, "(objectname)", &format))
288 strbuf_add_unique_abbrev(&sb, &ce->oid, abbrev);
289 else if (skip_prefix(format, "(objecttype)", &format))
290 strbuf_addstr(&sb, type_name(object_type(ce->ce_mode)));
291 else if (skip_prefix(format, "(objectsize:padded)", &format))
292 expand_objectsize(&sb, &ce->oid,
293 object_type(ce->ce_mode), 1);
294 else if (skip_prefix(format, "(objectsize)", &format))
295 expand_objectsize(&sb, &ce->oid,
296 object_type(ce->ce_mode), 0);
297 else if (skip_prefix(format, "(stage)", &format))
298 strbuf_addf(&sb, "%d", ce_stage(ce));
299 else if (skip_prefix(format, "(eolinfo:index)", &format))
300 strbuf_addstr(&sb, S_ISREG(ce->ce_mode) ?
301 get_cached_convert_stats_ascii(repo->index,
302 ce->name) : "");
303 else if (skip_prefix(format, "(eolinfo:worktree)", &format))
304 strbuf_addstr(&sb, !lstat(fullname, &st) &&
305 S_ISREG(st.st_mode) ?
306 get_wt_convert_stats_ascii(fullname) : "");
307 else if (skip_prefix(format, "(eolattr)", &format))
308 strbuf_addstr(&sb, get_convert_attr_ascii(repo->index,
309 fullname));
310 else if (skip_prefix(format, "(path)", &format))
311 write_name_to_buf(&sb, fullname);
312 else
313 die(_("bad ls-files format: %%%.*s"),
314 (int)(end - format + 1), format);
315 }
ce74de93
ZH
316 strbuf_addch(&sb, line_terminator);
317 fwrite(sb.buf, sb.len, 1, stdout);
318 strbuf_release(&sb);
319}
320
188dce13
BW
321static void show_ce(struct repository *repo, struct dir_struct *dir,
322 const struct cache_entry *ce, const char *fullname,
323 const char *tag)
5be4efbe 324{
188dce13 325 if (max_prefix_len > strlen(fullname))
7e44c935 326 die("git ls-files: internal error - cache entry not superset of prefix");
5be4efbe 327
75a6315f 328 if (recurse_submodules && S_ISGITLINK(ce->ce_mode) &&
188dce13
BW
329 is_submodule_active(repo, ce->name)) {
330 show_submodule(repo, dir, ce->name);
a52b321d 331 } else if (match_pathspec(repo->index, &pathspec, fullname, strlen(fullname),
188dce13 332 max_prefix_len, ps_matched,
e77aa336
BW
333 S_ISDIR(ce->ce_mode) ||
334 S_ISGITLINK(ce->ce_mode))) {
ce74de93
ZH
335 if (format) {
336 show_ce_fmt(repo, ce, format, fullname);
337 print_debug(ce);
338 return;
339 }
340
a84f3e59 341 tag = get_tag(ce, tag);
5be4efbe 342
e77aa336
BW
343 if (!show_stage) {
344 fputs(tag, stdout);
345 } else {
346 printf("%s%06o %s %d\t",
347 tag,
348 ce->ce_mode,
290eada0 349 repo_find_unique_abbrev(repo, &ce->oid, abbrev),
e77aa336
BW
350 ce_stage(ce));
351 }
188dce13
BW
352 write_eolinfo(repo->index, ce, fullname);
353 write_name(fullname);
5306ccf9 354 print_debug(ce);
2bcab240 355 }
5be4efbe
LT
356}
357
847a9e5d 358static void show_ru_info(struct index_state *istate)
9d9a2f4a 359{
8a57c6e9
AR
360 struct string_list_item *item;
361
2d407e2d 362 if (!istate->resolve_undo)
9d9a2f4a 363 return;
8a57c6e9 364
2d407e2d 365 for_each_string_list_item(item, istate->resolve_undo) {
8a57c6e9
AR
366 const char *path = item->string;
367 struct resolve_undo_info *ui = item->util;
368 int i, len;
369
370 len = strlen(path);
371 if (len < max_prefix_len)
372 continue; /* outside of the prefix */
a52b321d 373 if (!match_pathspec(istate, &pathspec, path, len,
ae8d0824 374 max_prefix_len, ps_matched, 0))
8a57c6e9
AR
375 continue; /* uninterested */
376 for (i = 0; i < 3; i++) {
377 if (!ui->mode[i])
378 continue;
379 printf("%s%06o %s %d\t", tag_resolve_undo, ui->mode[i],
d850b7a5 380 repo_find_unique_abbrev(the_repository, &ui->oid[i], abbrev),
8a57c6e9 381 i + 1);
e9a820ce 382 write_name(path);
8a57c6e9
AR
383 }
384 }
9d9a2f4a
JH
385}
386
1d35e3bf 387static int ce_excluded(struct dir_struct *dir, struct index_state *istate,
188dce13 388 const char *fullname, const struct cache_entry *ce)
782cd4c0
JH
389{
390 int dtype = ce_to_dtype(ce);
188dce13
BW
391 return is_excluded(dir, istate, fullname, &dtype);
392}
393
394static void construct_fullname(struct strbuf *out, const struct repository *repo,
395 const struct cache_entry *ce)
396{
397 strbuf_reset(out);
398 if (repo->submodule_prefix)
399 strbuf_addstr(out, repo->submodule_prefix);
400 strbuf_addstr(out, ce->name);
782cd4c0
JH
401}
402
188dce13 403static void show_files(struct repository *repo, struct dir_struct *dir)
8695c8bf
LT
404{
405 int i;
188dce13 406 struct strbuf fullname = STRBUF_INIT;
8695c8bf
LT
407
408 /* For cached/deleted files we don't need to even do the readdir */
6ca45943 409 if (show_others || show_killed) {
2eac2a4c
JH
410 if (!show_others)
411 dir->flags |= DIR_COLLECT_KILLED_ONLY;
188dce13 412 fill_directory(dir, repo->index, &pathspec);
6ca45943 413 if (show_others)
188dce13 414 show_other_files(repo->index, dir);
6ca45943 415 if (show_killed)
188dce13 416 show_killed_files(repo->index, dir);
8695c8bf 417 }
188dce13 418
ed644d16
ZH
419 if (!(show_cached || show_stage || show_deleted || show_modified))
420 return;
78087097
DS
421
422 if (!show_sparse_dirs)
423 ensure_full_index(repo->index);
424
ed644d16
ZH
425 for (i = 0; i < repo->index->cache_nr; i++) {
426 const struct cache_entry *ce = repo->index->cache[i];
427 struct stat st;
428 int stat_err;
188dce13 429
ed644d16
ZH
430 construct_fullname(&fullname, repo, ce);
431
432 if ((dir->flags & DIR_SHOW_IGNORED) &&
433 !ce_excluded(dir, repo->index, fullname.buf, ce))
434 continue;
435 if (ce->ce_flags & CE_UPDATE)
436 continue;
437 if ((show_cached || show_stage) &&
93a7d983 438 (!show_unmerged || ce_stage(ce))) {
188dce13
BW
439 show_ce(repo, dir, ce, fullname.buf,
440 ce_stage(ce) ? tag_unmerged :
441 (ce_skip_worktree(ce) ? tag_skip_worktree :
442 tag_cached));
93a7d983
ZH
443 if (skipping_duplicates)
444 goto skip_to_next_name;
445 }
188dce13 446
ed644d16
ZH
447 if (!(show_deleted || show_modified))
448 continue;
449 if (ce_skip_worktree(ce))
450 continue;
451 stat_err = lstat(fullname.buf, &st);
452 if (stat_err && (errno != ENOENT && errno != ENOTDIR))
453 error_errno("cannot lstat '%s'", fullname.buf);
93a7d983 454 if (stat_err && show_deleted) {
ed644d16 455 show_ce(repo, dir, ce, fullname.buf, tag_removed);
93a7d983
ZH
456 if (skipping_duplicates)
457 goto skip_to_next_name;
458 }
ed644d16 459 if (show_modified &&
93a7d983 460 (stat_err || ie_modified(repo->index, ce, &st, 0))) {
ed644d16 461 show_ce(repo, dir, ce, fullname.buf, tag_modified);
93a7d983
ZH
462 if (skipping_duplicates)
463 goto skip_to_next_name;
464 }
465 continue;
466
467skip_to_next_name:
468 {
469 int j;
470 struct cache_entry **cache = repo->index->cache;
471 for (j = i + 1; j < repo->index->cache_nr; j++)
472 if (strcmp(ce->name, cache[j]->name))
473 break;
474 i = j - 1; /* compensate for the for loop */
475 }
5be4efbe 476 }
188dce13
BW
477
478 strbuf_release(&fullname);
5be4efbe
LT
479}
480
481/*
482 * Prune the index to only contain stuff starting with "prefix"
483 */
6510ae17
BW
484static void prune_index(struct index_state *istate,
485 const char *prefix, size_t prefixlen)
5be4efbe 486{
7b4158a8 487 int pos;
5be4efbe
LT
488 unsigned int first, last;
489
168e6355 490 if (!prefix || !istate->cache_nr)
7b4158a8 491 return;
6510ae17 492 pos = index_name_pos(istate, prefix, prefixlen);
5be4efbe
LT
493 if (pos < 0)
494 pos = -pos-1;
96f6d3f6 495 first = pos;
6510ae17 496 last = istate->cache_nr;
5be4efbe 497 while (last > first) {
568a05c5 498 int next = first + ((last - first) >> 1);
6510ae17 499 const struct cache_entry *ce = istate->cache[next];
7b4158a8 500 if (!strncmp(ce->name, prefix, prefixlen)) {
5be4efbe
LT
501 first = next+1;
502 continue;
8695c8bf 503 }
5be4efbe
LT
504 last = next;
505 }
f331ab9d 506 MOVE_ARRAY(istate->cache, istate->cache + pos, last - pos);
6510ae17 507 istate->cache_nr = last - pos;
5be4efbe
LT
508}
509
cbca060e
BW
510static int get_common_prefix_len(const char *common_prefix)
511{
512 int common_prefix_len;
513
514 if (!common_prefix)
515 return 0;
516
517 common_prefix_len = strlen(common_prefix);
518
519 /*
520 * If the prefix has a trailing slash, strip it so that submodules wont
521 * be pruned from the index.
522 */
523 if (common_prefix[common_prefix_len - 1] == '/')
524 common_prefix_len--;
525
526 return common_prefix_len;
527}
528
eefadd18
ÆAB
529static int read_one_entry_opt(struct index_state *istate,
530 const struct object_id *oid,
9614ad3c 531 struct strbuf *base,
eefadd18 532 const char *pathname,
fcc7c12f 533 unsigned mode, int opt)
eefadd18
ÆAB
534{
535 int len;
536 struct cache_entry *ce;
537
538 if (S_ISDIR(mode))
539 return READ_TREE_RECURSIVE;
540
541 len = strlen(pathname);
9614ad3c 542 ce = make_empty_cache_entry(istate, base->len + len);
eefadd18
ÆAB
543
544 ce->ce_mode = create_ce_mode(mode);
fcc7c12f 545 ce->ce_flags = create_ce_flags(1);
9614ad3c
ÆAB
546 ce->ce_namelen = base->len + len;
547 memcpy(ce->name, base->buf, base->len);
548 memcpy(ce->name + base->len, pathname, len+1);
eefadd18
ÆAB
549 oidcpy(&ce->oid, oid);
550 return add_index_entry(istate, ce, opt);
551}
552
553static int read_one_entry(const struct object_id *oid, struct strbuf *base,
47957485 554 const char *pathname, unsigned mode,
eefadd18
ÆAB
555 void *context)
556{
557 struct index_state *istate = context;
9614ad3c 558 return read_one_entry_opt(istate, oid, base, pathname,
fcc7c12f 559 mode,
eefadd18
ÆAB
560 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
561}
562
563/*
564 * This is used when the caller knows there is no existing entries at
565 * the stage that will conflict with the entry being added.
566 */
567static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
47957485 568 const char *pathname, unsigned mode,
eefadd18
ÆAB
569 void *context)
570{
571 struct index_state *istate = context;
9614ad3c
ÆAB
572 return read_one_entry_opt(istate, oid, base, pathname,
573 mode, ADD_CACHE_JUST_APPEND);
eefadd18
ÆAB
574}
575
64586e75
JH
576/*
577 * Read the tree specified with --with-tree option
578 * (typically, HEAD) into stage #1 and then
579 * squash them down to stage #0. This is used for
580 * --error-unmatch to list and check the path patterns
581 * that were given from the command line. We are not
582 * going to write this index out.
583 */
312c984a
BW
584void overlay_tree_on_index(struct index_state *istate,
585 const char *tree_name, const char *prefix)
64586e75
JH
586{
587 struct tree *tree;
6f37eb7d 588 struct object_id oid;
f0096c06 589 struct pathspec pathspec;
64586e75
JH
590 struct cache_entry *last_stage0 = NULL;
591 int i;
9614ad3c
ÆAB
592 read_tree_fn_t fn = NULL;
593 int err;
64586e75 594
d850b7a5 595 if (repo_get_oid(the_repository, tree_name, &oid))
64586e75 596 die("tree-ish %s not found.", tree_name);
a9dbc179 597 tree = parse_tree_indirect(&oid);
64586e75
JH
598 if (!tree)
599 die("bad tree-ish %s", tree_name);
600
601 /* Hoist the unmerged entries up to stage #3 to make room */
42f44e84
DS
602 /* TODO: audit for interaction with sparse-index. */
603 ensure_full_index(istate);
312c984a
BW
604 for (i = 0; i < istate->cache_nr; i++) {
605 struct cache_entry *ce = istate->cache[i];
64586e75
JH
606 if (!ce_stage(ce))
607 continue;
7a51ed66 608 ce->ce_flags |= CE_STAGEMASK;
64586e75
JH
609 }
610
611 if (prefix) {
9a087274
NTND
612 static const char *(matchbuf[1]);
613 matchbuf[0] = NULL;
614 parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC,
615 PATHSPEC_PREFER_CWD, prefix, matchbuf);
64586e75 616 } else
9a087274 617 memset(&pathspec, 0, sizeof(pathspec));
9614ad3c
ÆAB
618
619 /*
620 * See if we have cache entry at the stage. If so,
621 * do it the original slow way, otherwise, append and then
622 * sort at the end.
623 */
624 for (i = 0; !fn && i < istate->cache_nr; i++) {
625 const struct cache_entry *ce = istate->cache[i];
626 if (ce_stage(ce) == 1)
627 fn = read_one_entry;
628 }
629
630 if (!fn)
631 fn = read_one_entry_quick;
47957485 632 err = read_tree(the_repository, tree, &pathspec, fn, istate);
c07ce060 633 clear_pathspec(&pathspec);
9614ad3c 634 if (err)
64586e75
JH
635 die("unable to read tree entries %s", tree_name);
636
9614ad3c
ÆAB
637 /*
638 * Sort the cache entry -- we need to nuke the cache tree, though.
639 */
640 if (fn == read_one_entry_quick) {
641 cache_tree_free(&istate->cache_tree);
642 QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
643 }
644
312c984a
BW
645 for (i = 0; i < istate->cache_nr; i++) {
646 struct cache_entry *ce = istate->cache[i];
64586e75
JH
647 switch (ce_stage(ce)) {
648 case 0:
649 last_stage0 = ce;
650 /* fallthru */
651 default:
652 continue;
653 case 1:
654 /*
655 * If there is stage #0 entry for this, we do not
656 * need to show it. We use CE_UPDATE bit to mark
657 * such an entry.
658 */
659 if (last_stage0 &&
660 !strcmp(last_stage0->name, ce->name))
7a51ed66 661 ce->ce_flags |= CE_UPDATE;
64586e75
JH
662 }
663 }
664}
665
ce8e8804 666static const char * const ls_files_usage[] = {
9c9b4f2f 667 N_("git ls-files [<options>] [<file>...]"),
ce8e8804
MV
668 NULL
669};
670
ce8e8804
MV
671static int option_parse_exclude(const struct option *opt,
672 const char *arg, int unset)
673{
72aeb187 674 struct string_list *exclude_list = opt->value;
ce8e8804 675
517fe807
JK
676 BUG_ON_OPT_NEG(unset);
677
ce8e8804 678 exc_given = 1;
72aeb187 679 string_list_append(exclude_list, arg);
ce8e8804
MV
680
681 return 0;
682}
683
684static int option_parse_exclude_from(const struct option *opt,
685 const char *arg, int unset)
686{
687 struct dir_struct *dir = opt->value;
688
517fe807
JK
689 BUG_ON_OPT_NEG(unset);
690
ce8e8804 691 exc_given = 1;
65edd96a 692 add_patterns_from_file(dir, arg);
ce8e8804
MV
693
694 return 0;
695}
696
697static int option_parse_exclude_standard(const struct option *opt,
698 const char *arg, int unset)
699{
700 struct dir_struct *dir = opt->value;
701
517fe807
JK
702 BUG_ON_OPT_NEG(unset);
703 BUG_ON_OPT_ARG(arg);
704
ce8e8804
MV
705 exc_given = 1;
706 setup_standard_excludes(dir);
707
708 return 0;
709}
cf9a113d 710
efad1a56 711int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
8695c8bf 712{
72aeb187 713 int require_work_tree = 0, show_tag = 0, i;
4c217a4c 714 char *max_prefix;
ce93a4c6 715 struct dir_struct dir = DIR_INIT;
caa3d554 716 struct pattern_list *pl;
72aeb187 717 struct string_list exclude_list = STRING_LIST_INIT_NODUP;
ce8e8804 718 struct option builtin_ls_files_options[] = {
1f3c79a9
JK
719 /* Think twice before adding "--nul" synonym to this */
720 OPT_SET_INT('z', NULL, &line_terminator,
54b4d125 721 N_("separate paths with the NUL character"), '\0'),
d5d09d47 722 OPT_BOOL('t', NULL, &show_tag,
377adc3a 723 N_("identify the file status with tags")),
d5d09d47 724 OPT_BOOL('v', NULL, &show_valid_bit,
377adc3a 725 N_("use lowercase letters for 'assume unchanged' files")),
d8c71db8
BP
726 OPT_BOOL('f', NULL, &show_fsmonitor_bit,
727 N_("use lowercase letters for 'fsmonitor clean' files")),
d5d09d47 728 OPT_BOOL('c', "cached", &show_cached,
377adc3a 729 N_("show cached files in the output (default)")),
d5d09d47 730 OPT_BOOL('d', "deleted", &show_deleted,
377adc3a 731 N_("show deleted files in the output")),
d5d09d47 732 OPT_BOOL('m', "modified", &show_modified,
377adc3a 733 N_("show modified files in the output")),
d5d09d47 734 OPT_BOOL('o', "others", &show_others,
377adc3a 735 N_("show other files in the output")),
ce8e8804 736 OPT_BIT('i', "ignored", &dir.flags,
377adc3a 737 N_("show ignored files in the output"),
ce8e8804 738 DIR_SHOW_IGNORED),
d5d09d47 739 OPT_BOOL('s', "stage", &show_stage,
377adc3a 740 N_("show staged contents' object name in the output")),
d5d09d47 741 OPT_BOOL('k', "killed", &show_killed,
377adc3a 742 N_("show files on the filesystem that need to be removed")),
ce8e8804 743 OPT_BIT(0, "directory", &dir.flags,
ad5fe377 744 N_("show 'other' directories' names only"),
ce8e8804 745 DIR_SHOW_OTHER_DIRECTORIES),
a7630bd4 746 OPT_BOOL(0, "eol", &show_eol, N_("show line endings of files")),
e9008b9a 747 OPT_NEGBIT(0, "empty-directory", &dir.flags,
377adc3a 748 N_("don't show empty directories"),
ce8e8804 749 DIR_HIDE_EMPTY_DIRECTORIES),
d5d09d47 750 OPT_BOOL('u', "unmerged", &show_unmerged,
377adc3a 751 N_("show unmerged files in the output")),
d5d09d47 752 OPT_BOOL(0, "resolve-undo", &show_resolve_undo,
377adc3a 753 N_("show resolve-undo information")),
203c8533 754 OPT_CALLBACK_F('x', "exclude", &exclude_list, N_("pattern"),
377adc3a 755 N_("skip files matching pattern"),
203c8533
DL
756 PARSE_OPT_NONEG, option_parse_exclude),
757 OPT_CALLBACK_F('X', "exclude-from", &dir, N_("file"),
54b4d125 758 N_("read exclude patterns from <file>"),
203c8533 759 PARSE_OPT_NONEG, option_parse_exclude_from),
377adc3a
NTND
760 OPT_STRING(0, "exclude-per-directory", &dir.exclude_per_dir, N_("file"),
761 N_("read additional per-directory exclude patterns in <file>")),
203c8533 762 OPT_CALLBACK_F(0, "exclude-standard", &dir, NULL,
377adc3a 763 N_("add the standard git exclusions"),
ccf659e8 764 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
203c8533 765 option_parse_exclude_standard),
3e4a67b4
NTND
766 OPT_SET_INT_F(0, "full-name", &prefix_len,
767 N_("make the output relative to the project top directory"),
768 0, PARSE_OPT_NONEG),
e77aa336
BW
769 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
770 N_("recurse through submodules")),
d5d09d47 771 OPT_BOOL(0, "error-unmatch", &error_unmatch,
377adc3a
NTND
772 N_("if any <file> is not in the index, treat this as an error")),
773 OPT_STRING(0, "with-tree", &with_tree, N_("tree-ish"),
774 N_("pretend that paths removed since <tree-ish> are still present")),
ce8e8804 775 OPT__ABBREV(&abbrev),
d5d09d47 776 OPT_BOOL(0, "debug", &debug_mode, N_("show debugging data")),
93a7d983
ZH
777 OPT_BOOL(0, "deduplicate", &skipping_duplicates,
778 N_("suppress duplicate entries")),
78087097
DS
779 OPT_BOOL(0, "sparse", &show_sparse_dirs,
780 N_("show sparse directories in the presence of a sparse index")),
ce74de93
ZH
781 OPT_STRING_F(0, "format", &format, N_("format"),
782 N_("format to use for the output"),
783 PARSE_OPT_NONEG),
ce8e8804
MV
784 OPT_END()
785 };
eab4ac6a 786 int ret = 0;
8695c8bf 787
cbb3167e
NTND
788 if (argc == 2 && !strcmp(argv[1], "-h"))
789 usage_with_options(ls_files_usage, builtin_ls_files_options);
790
78087097
DS
791 prepare_repo_settings(the_repository);
792 the_repository->settings.command_requires_full_index = 0;
793
efad1a56 794 prefix = cmd_prefix;
5be4efbe 795 if (prefix)
efad1a56 796 prefix_len = strlen(prefix);
ef90d6d4 797 git_config(git_default_config, NULL);
5be4efbe 798
188dce13 799 if (repo_read_index(the_repository) < 0)
c28b3d6e
NTND
800 die("index file corrupt");
801
37782920 802 argc = parse_options(argc, argv, prefix, builtin_ls_files_options,
ce8e8804 803 ls_files_usage, 0);
65edd96a 804 pl = add_pattern_list(&dir, EXC_CMDL, "--exclude option");
72aeb187 805 for (i = 0; i < exclude_list.nr; i++) {
65edd96a 806 add_pattern(exclude_list.items[i].string, "", 0, pl, --exclude_args);
72aeb187 807 }
ce74de93
ZH
808
809 if (format && (show_stage || show_others || show_killed ||
810 show_resolve_undo || skipping_duplicates || show_eol || show_tag))
811 usage_msg_opt(_("--format cannot be used with -s, -o, -k, -t, "
812 "--resolve-undo, --deduplicate, --eol"),
813 ls_files_usage, builtin_ls_files_options);
814
d8c71db8 815 if (show_tag || show_valid_bit || show_fsmonitor_bit) {
ce8e8804
MV
816 tag_cached = "H ";
817 tag_unmerged = "M ";
818 tag_removed = "R ";
819 tag_modified = "C ";
820 tag_other = "? ";
821 tag_killed = "K ";
44a36913 822 tag_skip_worktree = "S ";
9d9a2f4a 823 tag_resolve_undo = "U ";
9ff768e9 824 }
de2e3b04 825 if (show_modified || show_others || show_deleted || (dir.flags & DIR_SHOW_IGNORED) || show_killed)
ce8e8804
MV
826 require_work_tree = 1;
827 if (show_unmerged)
828 /*
829 * There's no point in showing unmerged unless
830 * you also show the stage information.
831 */
832 show_stage = 1;
93a7d983
ZH
833 if (show_tag || show_stage)
834 skipping_duplicates = 0;
ce8e8804
MV
835 if (dir.exclude_per_dir)
836 exc_given = 1;
9ff768e9 837
7d8ae932
MH
838 if (require_work_tree && !is_inside_work_tree())
839 setup_work_tree();
6d9ba67b 840
e77aa336 841 if (recurse_submodules &&
290eada0 842 (show_deleted || show_others || show_unmerged ||
07c01b9f 843 show_killed || show_modified || show_resolve_undo || with_tree))
e77aa336
BW
844 die("ls-files --recurse-submodules unsupported mode");
845
846 if (recurse_submodules && error_unmatch)
847 die("ls-files --recurse-submodules does not support "
848 "--error-unmatch");
849
9e06d6ed 850 parse_pathspec(&pathspec, 0,
cbca060e 851 PATHSPEC_PREFER_CWD,
9e06d6ed 852 prefix, argv);
f3670a57 853
75a6315f
BW
854 /*
855 * Find common prefix for all pathspec's
856 * This is used as a performance optimization which unfortunately cannot
188dce13
BW
857 * be done when recursing into submodules because when a pathspec is
858 * given which spans repository boundaries you can't simply remove the
859 * submodule entry because the pathspec may match something inside the
860 * submodule.
75a6315f
BW
861 */
862 if (recurse_submodules)
863 max_prefix = NULL;
864 else
865 max_prefix = common_prefix(&pathspec);
cbca060e
BW
866 max_prefix_len = get_common_prefix_len(max_prefix);
867
188dce13 868 prune_index(the_repository->index, max_prefix, max_prefix_len);
5be4efbe 869
bba319b5 870 /* Treat unmatching pathspec elements as errors */
9e06d6ed 871 if (pathspec.nr && error_unmatch)
8b54c234 872 ps_matched = xcalloc(pathspec.nr, 1);
bba319b5 873
b338e9f6
EN
874 if ((dir.flags & DIR_SHOW_IGNORED) && !show_others && !show_cached)
875 die("ls-files -i must be used with either -o or -c");
876
ac78b009
BW
877 if ((dir.flags & DIR_SHOW_IGNORED) && !exc_given)
878 die("ls-files --ignored needs some exclude pattern");
8695c8bf
LT
879
880 /* With no flags, we default to showing the cached files */
0b437a18
RS
881 if (!(show_stage || show_deleted || show_others || show_unmerged ||
882 show_killed || show_modified || show_resolve_undo))
8695c8bf
LT
883 show_cached = 1;
884
64586e75
JH
885 if (with_tree) {
886 /*
887 * Basic sanity check; show-stages and show-unmerged
888 * would not make any sense with this option.
889 */
890 if (show_stage || show_unmerged)
12909b6b 891 die(_("options '%s' and '%s' cannot be used together"), "ls-files --with-tree", "-s/-u");
188dce13 892 overlay_tree_on_index(the_repository->index, with_tree, max_prefix);
64586e75 893 }
188dce13
BW
894
895 show_files(the_repository, &dir);
896
9d9a2f4a 897 if (show_resolve_undo)
188dce13 898 show_ru_info(the_repository->index);
bba319b5 899
eab4ac6a
ÆAB
900 if (ps_matched && report_path_error(ps_matched, &pathspec)) {
901 fprintf(stderr, "Did you forget to 'git add'?\n");
902 ret = 1;
bba319b5
JH
903 }
904
272f0a57 905 string_list_clear(&exclude_list, 0);
eceba532 906 dir_clear(&dir);
4c217a4c 907 free(max_prefix);
eab4ac6a 908 return ret;
8695c8bf 909}