]> git.ipfire.org Git - thirdparty/git.git/blame - add-interactive.c
Merge branch 'gc/branch-recurse-submodules-fix'
[thirdparty/git.git] / add-interactive.c
CommitLineData
f83dff60
JS
1#include "cache.h"
2#include "add-interactive.h"
1daaebca
3#include "color.h"
4#include "config.h"
5e82b9e4
DF
5#include "diffcore.h"
6#include "revision.h"
7#include "refs.h"
8#include "string-list.h"
a8c45be9 9#include "lockfile.h"
ab1e1ccc 10#include "dir.h"
8746e072 11#include "run-command.h"
08d383f2 12#include "prompt.h"
5e82b9e4 13
1daaebca 14static void init_color(struct repository *r, struct add_i_state *s,
25d9e5cc 15 const char *section_and_slot, char *dst,
1daaebca
16 const char *default_color)
17{
25d9e5cc 18 char *key = xstrfmt("color.%s", section_and_slot);
1daaebca
19 const char *value;
20
21 if (!s->use_color)
22 dst[0] = '\0';
23 else if (repo_config_get_value(r, key, &value) ||
24 color_parse(value, dst))
25 strlcpy(dst, default_color, COLOR_MAXLEN);
26
27 free(key);
28}
29
25ea47af 30void init_add_i_state(struct add_i_state *s, struct repository *r)
5e82b9e4 31{
1daaebca
32 const char *value;
33
34 s->r = r;
35
36 if (repo_config_get_value(r, "color.interactive", &value))
37 s->use_color = -1;
38 else
39 s->use_color =
40 git_config_colorbool("color.interactive", value);
41 s->use_color = want_color(s->use_color);
42
25d9e5cc
JS
43 init_color(r, s, "interactive.header", s->header_color, GIT_COLOR_BOLD);
44 init_color(r, s, "interactive.help", s->help_color, GIT_COLOR_BOLD_RED);
45 init_color(r, s, "interactive.prompt", s->prompt_color,
46 GIT_COLOR_BOLD_BLUE);
47 init_color(r, s, "interactive.error", s->error_color,
48 GIT_COLOR_BOLD_RED);
49
50 init_color(r, s, "diff.frag", s->fraginfo_color,
25ea47af 51 diff_get_color(s->use_color, DIFF_FRAGINFO));
890b68b2
JS
52 init_color(r, s, "diff.context", s->context_color, "fall back");
53 if (!strcmp(s->context_color, "fall back"))
54 init_color(r, s, "diff.plain", s->context_color,
55 diff_get_color(s->use_color, DIFF_CONTEXT));
25d9e5cc 56 init_color(r, s, "diff.old", s->file_old_color,
bcdd297b 57 diff_get_color(s->use_color, DIFF_FILE_OLD));
25d9e5cc 58 init_color(r, s, "diff.new", s->file_new_color,
bcdd297b 59 diff_get_color(s->use_color, DIFF_FILE_NEW));
180f48df 60
c62cd172
JS
61 strlcpy(s->reset_color,
62 s->use_color ? GIT_COLOR_RESET : "", COLOR_MAXLEN);
63
180f48df
JS
64 FREE_AND_NULL(s->interactive_diff_filter);
65 git_config_get_string("interactive.difffilter",
66 &s->interactive_diff_filter);
08b1ea4c
JS
67
68 FREE_AND_NULL(s->interactive_diff_algorithm);
69 git_config_get_string("diff.algorithm",
70 &s->interactive_diff_algorithm);
04f816b1
JS
71
72 git_config_get_bool("interactive.singlekey", &s->use_single_key);
ac618c41
PW
73 if (s->use_single_key)
74 setbuf(stdin, NULL);
180f48df
JS
75}
76
77void clear_add_i_state(struct add_i_state *s)
78{
79 FREE_AND_NULL(s->interactive_diff_filter);
08b1ea4c 80 FREE_AND_NULL(s->interactive_diff_algorithm);
180f48df
JS
81 memset(s, 0, sizeof(*s));
82 s->use_color = -1;
5e82b9e4
DF
83}
84
76b74323
JS
85/*
86 * A "prefix item list" is a list of items that are identified by a string, and
87 * a unique prefix (if any) is determined for each item.
88 *
89 * It is implemented in the form of a pair of `string_list`s, the first one
90 * duplicating the strings, with the `util` field pointing at a structure whose
91 * first field must be `size_t prefix_length`.
92 *
93 * That `prefix_length` field will be computed by `find_unique_prefixes()`; It
94 * will be set to zero if no valid, unique prefix could be found.
95 *
96 * The second `string_list` is called `sorted` and does _not_ duplicate the
97 * strings but simply reuses the first one's, with the `util` field pointing at
98 * the `string_item_list` of the first `string_list`. It will be populated and
99 * sorted by `find_unique_prefixes()`.
100 */
101struct prefix_item_list {
102 struct string_list items;
103 struct string_list sorted;
f37c2264 104 int *selected; /* for multi-selections */
76b74323
JS
105 size_t min_length, max_length;
106};
f69a6e4f
ÆAB
107#define PREFIX_ITEM_LIST_INIT { \
108 .items = STRING_LIST_INIT_DUP, \
109 .sorted = STRING_LIST_INIT_NODUP, \
110 .min_length = 1, \
111 .max_length = 4, \
112}
76b74323
JS
113
114static void prefix_item_list_clear(struct prefix_item_list *list)
115{
116 string_list_clear(&list->items, 1);
117 string_list_clear(&list->sorted, 0);
f37c2264 118 FREE_AND_NULL(list->selected);
76b74323
JS
119}
120
121static void extend_prefix_length(struct string_list_item *p,
122 const char *other_string, size_t max_length)
123{
124 size_t *len = p->util;
125
126 if (!*len || memcmp(p->string, other_string, *len))
127 return;
128
129 for (;;) {
130 char c = p->string[*len];
131
132 /*
133 * Is `p` a strict prefix of `other`? Or have we exhausted the
134 * maximal length of the prefix? Or is the current character a
135 * multi-byte UTF-8 one? If so, there is no valid, unique
136 * prefix.
137 */
138 if (!c || ++*len > max_length || !isascii(c)) {
139 *len = 0;
140 break;
141 }
142
143 if (c != other_string[*len - 1])
144 break;
145 }
146}
147
148static void find_unique_prefixes(struct prefix_item_list *list)
149{
150 size_t i;
151
152 if (list->sorted.nr == list->items.nr)
153 return;
154
155 string_list_clear(&list->sorted, 0);
156 /* Avoid reallocating incrementally */
157 list->sorted.items = xmalloc(st_mult(sizeof(*list->sorted.items),
158 list->items.nr));
159 list->sorted.nr = list->sorted.alloc = list->items.nr;
160
161 for (i = 0; i < list->items.nr; i++) {
162 list->sorted.items[i].string = list->items.items[i].string;
163 list->sorted.items[i].util = list->items.items + i;
164 }
165
166 string_list_sort(&list->sorted);
167
168 for (i = 0; i < list->sorted.nr; i++) {
169 struct string_list_item *sorted_item = list->sorted.items + i;
170 struct string_list_item *item = sorted_item->util;
171 size_t *len = item->util;
172
173 *len = 0;
174 while (*len < list->min_length) {
175 char c = item->string[(*len)++];
176
177 if (!c || !isascii(c)) {
178 *len = 0;
179 break;
180 }
181 }
182
183 if (i > 0)
184 extend_prefix_length(item, sorted_item[-1].string,
185 list->max_length);
186 if (i + 1 < list->sorted.nr)
187 extend_prefix_length(item, sorted_item[1].string,
188 list->max_length);
189 }
190}
191
192static ssize_t find_unique(const char *string, struct prefix_item_list *list)
193{
194 int index = string_list_find_insert_index(&list->sorted, string, 1);
195 struct string_list_item *item;
196
197 if (list->items.nr != list->sorted.nr)
198 BUG("prefix_item_list in inconsistent state (%"PRIuMAX
199 " vs %"PRIuMAX")",
200 (uintmax_t)list->items.nr, (uintmax_t)list->sorted.nr);
201
202 if (index < 0)
203 item = list->sorted.items[-1 - index].util;
204 else if (index > 0 &&
205 starts_with(list->sorted.items[index - 1].string, string))
206 return -1;
207 else if (index + 1 < list->sorted.nr &&
208 starts_with(list->sorted.items[index + 1].string, string))
209 return -1;
d34e4502
JS
210 else if (index < list->sorted.nr &&
211 starts_with(list->sorted.items[index].string, string))
76b74323
JS
212 item = list->sorted.items[index].util;
213 else
214 return -1;
215 return item - list->items.items;
216}
217
5e82b9e4 218struct list_options {
6348bfba 219 int columns;
5e82b9e4 220 const char *header;
f37c2264
JS
221 void (*print_item)(int i, int selected, struct string_list_item *item,
222 void *print_item_data);
5e82b9e4
DF
223 void *print_item_data;
224};
225
f37c2264 226static void list(struct add_i_state *s, struct string_list *list, int *selected,
1daaebca 227 struct list_options *opts)
5e82b9e4 228{
6348bfba 229 int i, last_lf = 0;
5e82b9e4
DF
230
231 if (!list->nr)
232 return;
233
234 if (opts->header)
1daaebca
235 color_fprintf_ln(stdout, s->header_color,
236 "%s", opts->header);
5e82b9e4
DF
237
238 for (i = 0; i < list->nr; i++) {
f37c2264
JS
239 opts->print_item(i, selected ? selected[i] : 0, list->items + i,
240 opts->print_item_data);
6348bfba
JS
241
242 if ((opts->columns) && ((i + 1) % (opts->columns))) {
243 putchar('\t');
244 last_lf = 0;
245 }
246 else {
247 putchar('\n');
248 last_lf = 1;
249 }
250 }
251
252 if (!last_lf)
5e82b9e4 253 putchar('\n');
6348bfba
JS
254}
255struct list_and_choose_options {
256 struct list_options list_opts;
257
258 const char *prompt;
f37c2264
JS
259 enum {
260 SINGLETON = (1<<0),
261 IMMEDIATE = (1<<1),
262 } flags;
68db1cbf 263 void (*print_help)(struct add_i_state *s);
6348bfba
JS
264};
265
266#define LIST_AND_CHOOSE_ERROR (-1)
267#define LIST_AND_CHOOSE_QUIT (-2)
268
269/*
f37c2264
JS
270 * Returns the selected index in singleton mode, the number of selected items
271 * otherwise.
6348bfba
JS
272 *
273 * If an error occurred, returns `LIST_AND_CHOOSE_ERROR`. Upon EOF,
274 * `LIST_AND_CHOOSE_QUIT` is returned.
275 */
76b74323
JS
276static ssize_t list_and_choose(struct add_i_state *s,
277 struct prefix_item_list *items,
6348bfba
JS
278 struct list_and_choose_options *opts)
279{
f37c2264
JS
280 int singleton = opts->flags & SINGLETON;
281 int immediate = opts->flags & IMMEDIATE;
282
6348bfba 283 struct strbuf input = STRBUF_INIT;
f37c2264
JS
284 ssize_t res = singleton ? LIST_AND_CHOOSE_ERROR : 0;
285
286 if (!singleton) {
287 free(items->selected);
288 CALLOC_ARRAY(items->selected, items->items.nr);
289 }
290
291 if (singleton && !immediate)
292 BUG("singleton requires immediate");
6348bfba 293
76b74323
JS
294 find_unique_prefixes(items);
295
6348bfba
JS
296 for (;;) {
297 char *p;
298
299 strbuf_reset(&input);
300
f37c2264 301 list(s, &items->items, items->selected, &opts->list_opts);
6348bfba 302
3d965c76 303 color_fprintf(stdout, s->prompt_color, "%s", opts->prompt);
f37c2264 304 fputs(singleton ? "> " : ">> ", stdout);
6348bfba
JS
305 fflush(stdout);
306
08d383f2 307 if (git_read_line_interactively(&input) == EOF) {
6348bfba 308 putchar('\n');
f37c2264
JS
309 if (immediate)
310 res = LIST_AND_CHOOSE_QUIT;
6348bfba
JS
311 break;
312 }
6348bfba
JS
313
314 if (!input.len)
315 break;
316
68db1cbf
JS
317 if (!strcmp(input.buf, "?")) {
318 opts->print_help(s);
319 continue;
320 }
321
6348bfba
JS
322 p = input.buf;
323 for (;;) {
324 size_t sep = strcspn(p, " \t\r\n,");
f37c2264
JS
325 int choose = 1;
326 /* `from` is inclusive, `to` is exclusive */
327 ssize_t from = -1, to = -1;
6348bfba
JS
328
329 if (!sep) {
330 if (!*p)
331 break;
332 p++;
333 continue;
334 }
335
f37c2264
JS
336 /* Input that begins with '-'; de-select */
337 if (*p == '-') {
338 choose = 0;
339 p++;
340 sep--;
341 }
342
343 if (sep == 1 && *p == '*') {
344 from = 0;
345 to = items->items.nr;
346 } else if (isdigit(*p)) {
6348bfba 347 char *endp;
f37c2264
JS
348 /*
349 * A range can be specified like 5-7 or 5-.
350 *
351 * Note: `from` is 0-based while the user input
352 * is 1-based, hence we have to decrement by
353 * one. We do not have to decrement `to` even
354 * if it is 0-based because it is an exclusive
355 * boundary.
356 */
357 from = strtoul(p, &endp, 10) - 1;
358 if (endp == p + sep)
359 to = from + 1;
360 else if (*endp == '-') {
849e43cc
JS
361 if (isdigit(*(++endp)))
362 to = strtoul(endp, &endp, 10);
363 else
364 to = items->items.nr;
f37c2264
JS
365 /* extra characters after the range? */
366 if (endp != p + sep)
367 from = -1;
368 }
6348bfba
JS
369 }
370
371 if (p[sep])
372 p[sep++] = '\0';
f37c2264
JS
373 if (from < 0) {
374 from = find_unique(p, items);
375 if (from >= 0)
376 to = from + 1;
377 }
76b74323 378
f37c2264
JS
379 if (from < 0 || from >= items->items.nr ||
380 (singleton && from + 1 != to)) {
cb581b16 381 color_fprintf_ln(stderr, s->error_color,
3d965c76 382 _("Huh (%s)?"), p);
f37c2264
JS
383 break;
384 } else if (singleton) {
385 res = from;
6348bfba
JS
386 break;
387 }
388
f37c2264
JS
389 if (to > items->items.nr)
390 to = items->items.nr;
391
392 for (; from < to; from++)
393 if (items->selected[from] != choose) {
394 items->selected[from] = choose;
395 res += choose ? +1 : -1;
396 }
397
6348bfba
JS
398 p += sep;
399 }
400
f37c2264
JS
401 if ((immediate && res != LIST_AND_CHOOSE_ERROR) ||
402 !strcmp(input.buf, "*"))
6348bfba 403 break;
5e82b9e4 404 }
6348bfba
JS
405
406 strbuf_release(&input);
407 return res;
5e82b9e4
DF
408}
409
410struct adddel {
411 uintmax_t add, del;
8746e072 412 unsigned seen:1, unmerged:1, binary:1;
5e82b9e4
DF
413};
414
415struct file_item {
a8c45be9 416 size_t prefix_length;
5e82b9e4
DF
417 struct adddel index, worktree;
418};
419
420static void add_file_item(struct string_list *files, const char *name)
421{
241b5d3e 422 struct file_item *item = xcalloc(1, sizeof(*item));
5e82b9e4
DF
423
424 string_list_append(files, name)->util = item;
425}
426
427struct pathname_entry {
428 struct hashmap_entry ent;
429 const char *name;
430 struct file_item *item;
431};
432
433static int pathname_entry_cmp(const void *unused_cmp_data,
434 const struct hashmap_entry *he1,
435 const struct hashmap_entry *he2,
436 const void *name)
437{
438 const struct pathname_entry *e1 =
439 container_of(he1, const struct pathname_entry, ent);
440 const struct pathname_entry *e2 =
441 container_of(he2, const struct pathname_entry, ent);
442
443 return strcmp(e1->name, name ? (const char *)name : e2->name);
444}
445
446struct collection_status {
c08171d1 447 enum { FROM_WORKTREE = 0, FROM_INDEX = 1 } mode;
5e82b9e4
DF
448
449 const char *reference;
450
c08171d1 451 unsigned skip_unseen:1;
8746e072 452 size_t unmerged_count, binary_count;
5e82b9e4
DF
453 struct string_list *files;
454 struct hashmap file_map;
455};
456
457static void collect_changes_cb(struct diff_queue_struct *q,
458 struct diff_options *options,
459 void *data)
460{
461 struct collection_status *s = data;
462 struct diffstat_t stat = { 0 };
463 int i;
464
465 if (!q->nr)
466 return;
467
468 compute_diffstat(options, &stat, q);
469
470 for (i = 0; i < stat.nr; i++) {
471 const char *name = stat.files[i]->name;
472 int hash = strhash(name);
473 struct pathname_entry *entry;
474 struct file_item *file_item;
8746e072 475 struct adddel *adddel, *other_adddel;
5e82b9e4
DF
476
477 entry = hashmap_get_entry_from_hash(&s->file_map, hash, name,
478 struct pathname_entry, ent);
479 if (!entry) {
c08171d1
JS
480 if (s->skip_unseen)
481 continue;
482
5e82b9e4
DF
483 add_file_item(s->files, name);
484
ca56dadb 485 CALLOC_ARRAY(entry, 1);
5e82b9e4
DF
486 hashmap_entry_init(&entry->ent, hash);
487 entry->name = s->files->items[s->files->nr - 1].string;
488 entry->item = s->files->items[s->files->nr - 1].util;
489 hashmap_add(&s->file_map, &entry->ent);
490 }
491
492 file_item = entry->item;
c08171d1 493 adddel = s->mode == FROM_INDEX ?
5e82b9e4 494 &file_item->index : &file_item->worktree;
8746e072
JS
495 other_adddel = s->mode == FROM_INDEX ?
496 &file_item->worktree : &file_item->index;
5e82b9e4
DF
497 adddel->seen = 1;
498 adddel->add = stat.files[i]->added;
499 adddel->del = stat.files[i]->deleted;
8746e072
JS
500 if (stat.files[i]->is_binary) {
501 if (!other_adddel->binary)
502 s->binary_count++;
5e82b9e4 503 adddel->binary = 1;
8746e072
JS
504 }
505 if (stat.files[i]->is_unmerged) {
506 if (!other_adddel->unmerged)
507 s->unmerged_count++;
508 adddel->unmerged = 1;
509 }
5e82b9e4
DF
510 }
511 free_diffstat_info(&stat);
512}
513
c08171d1
JS
514enum modified_files_filter {
515 NO_FILTER = 0,
516 WORKTREE_ONLY = 1,
517 INDEX_ONLY = 2,
518};
519
520static int get_modified_files(struct repository *r,
521 enum modified_files_filter filter,
a8c45be9 522 struct prefix_item_list *files,
8746e072
JS
523 const struct pathspec *ps,
524 size_t *unmerged_count,
525 size_t *binary_count)
5e82b9e4
DF
526{
527 struct object_id head_oid;
528 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
529 &head_oid, NULL);
c08171d1
JS
530 struct collection_status s = { 0 };
531 int i;
5e82b9e4
DF
532
533 if (discard_index(r->index) < 0 ||
534 repo_read_index_preload(r, ps, 0) < 0)
535 return error(_("could not read index"));
536
a8c45be9
JS
537 prefix_item_list_clear(files);
538 s.files = &files->items;
5e82b9e4
DF
539 hashmap_init(&s.file_map, pathname_entry_cmp, NULL, 0);
540
c08171d1 541 for (i = 0; i < 2; i++) {
5e82b9e4
DF
542 struct rev_info rev;
543 struct setup_revision_opt opt = { 0 };
544
c08171d1
JS
545 if (filter == INDEX_ONLY)
546 s.mode = (i == 0) ? FROM_INDEX : FROM_WORKTREE;
547 else
548 s.mode = (i == 0) ? FROM_WORKTREE : FROM_INDEX;
549 s.skip_unseen = filter && i;
550
5e82b9e4
DF
551 opt.def = is_initial ?
552 empty_tree_oid_hex() : oid_to_hex(&head_oid);
553
554 init_revisions(&rev, NULL);
555 setup_revisions(0, NULL, &rev, &opt);
556
557 rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
558 rev.diffopt.format_callback = collect_changes_cb;
559 rev.diffopt.format_callback_data = &s;
560
561 if (ps)
562 copy_pathspec(&rev.prune_data, ps);
563
c08171d1 564 if (s.mode == FROM_INDEX)
5e82b9e4
DF
565 run_diff_index(&rev, 1);
566 else {
567 rev.diffopt.flags.ignore_dirty_submodules = 1;
568 run_diff_files(&rev, 0);
569 }
0c3944a6
JS
570
571 if (ps)
572 clear_pathspec(&rev.prune_data);
5e82b9e4 573 }
6da1a258 574 hashmap_clear_and_free(&s.file_map, struct pathname_entry, ent);
8746e072
JS
575 if (unmerged_count)
576 *unmerged_count = s.unmerged_count;
577 if (binary_count)
578 *binary_count = s.binary_count;
5e82b9e4
DF
579
580 /* While the diffs are ordered already, we ran *two* diffs... */
a8c45be9 581 string_list_sort(&files->items);
5e82b9e4
DF
582
583 return 0;
584}
585
586static void render_adddel(struct strbuf *buf,
587 struct adddel *ad, const char *no_changes)
588{
589 if (ad->binary)
590 strbuf_addstr(buf, _("binary"));
591 else if (ad->seen)
592 strbuf_addf(buf, "+%"PRIuMAX"/-%"PRIuMAX,
593 (uintmax_t)ad->add, (uintmax_t)ad->del);
594 else
595 strbuf_addstr(buf, no_changes);
596}
597
76b74323
JS
598/* filters out prefixes which have special meaning to list_and_choose() */
599static int is_valid_prefix(const char *prefix, size_t prefix_len)
600{
601 return prefix_len && prefix &&
602 /*
603 * We expect `prefix` to be NUL terminated, therefore this
604 * `strcspn()` call is okay, even if it might do much more
605 * work than strictly necessary.
606 */
607 strcspn(prefix, " \t\r\n,") >= prefix_len && /* separators */
608 *prefix != '-' && /* deselection */
609 !isdigit(*prefix) && /* selection */
610 (prefix_len != 1 ||
611 (*prefix != '*' && /* "all" wildcard */
612 *prefix != '?')); /* prompt help */
613}
614
5e82b9e4 615struct print_file_item_data {
a8c45be9
JS
616 const char *modified_fmt, *color, *reset;
617 struct strbuf buf, name, index, worktree;
ab1e1ccc 618 unsigned only_names:1;
5e82b9e4
DF
619};
620
f37c2264 621static void print_file_item(int i, int selected, struct string_list_item *item,
5e82b9e4
DF
622 void *print_file_item_data)
623{
624 struct file_item *c = item->util;
625 struct print_file_item_data *d = print_file_item_data;
a8c45be9 626 const char *highlighted = NULL;
5e82b9e4
DF
627
628 strbuf_reset(&d->index);
629 strbuf_reset(&d->worktree);
630 strbuf_reset(&d->buf);
631
a8c45be9
JS
632 /* Format the item with the prefix highlighted. */
633 if (c->prefix_length > 0 &&
634 is_valid_prefix(item->string, c->prefix_length)) {
635 strbuf_reset(&d->name);
636 strbuf_addf(&d->name, "%s%.*s%s%s", d->color,
637 (int)c->prefix_length, item->string, d->reset,
638 item->string + c->prefix_length);
639 highlighted = d->name.buf;
640 }
641
ab1e1ccc
JS
642 if (d->only_names) {
643 printf("%c%2d: %s", selected ? '*' : ' ', i + 1,
644 highlighted ? highlighted : item->string);
645 return;
646 }
647
5e82b9e4
DF
648 render_adddel(&d->worktree, &c->worktree, _("nothing"));
649 render_adddel(&d->index, &c->index, _("unchanged"));
a8c45be9
JS
650
651 strbuf_addf(&d->buf, d->modified_fmt, d->index.buf, d->worktree.buf,
652 highlighted ? highlighted : item->string);
5e82b9e4 653
f37c2264 654 printf("%c%2d: %s", selected ? '*' : ' ', i + 1, d->buf.buf);
5e82b9e4
DF
655}
656
657static int run_status(struct add_i_state *s, const struct pathspec *ps,
a8c45be9
JS
658 struct prefix_item_list *files,
659 struct list_and_choose_options *opts)
5e82b9e4 660{
8746e072 661 if (get_modified_files(s->r, NO_FILTER, files, ps, NULL, NULL) < 0)
5e82b9e4
DF
662 return -1;
663
a8c45be9 664 list(s, &files->items, NULL, &opts->list_opts);
5e82b9e4
DF
665 putchar('\n');
666
667 return 0;
668}
f83dff60 669
a8c45be9
JS
670static int run_update(struct add_i_state *s, const struct pathspec *ps,
671 struct prefix_item_list *files,
672 struct list_and_choose_options *opts)
673{
674 int res = 0, fd;
675 size_t count, i;
676 struct lock_file index_lock;
677
8746e072 678 if (get_modified_files(s->r, WORKTREE_ONLY, files, ps, NULL, NULL) < 0)
a8c45be9
JS
679 return -1;
680
681 if (!files->items.nr) {
682 putchar('\n');
683 return 0;
684 }
685
686 opts->prompt = N_("Update");
687 count = list_and_choose(s, files, opts);
688 if (count <= 0) {
689 putchar('\n');
690 return 0;
691 }
692
693 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
694 if (fd < 0) {
695 putchar('\n');
696 return -1;
697 }
698
699 for (i = 0; i < files->items.nr; i++) {
700 const char *name = files->items.items[i].string;
701 if (files->selected[i] &&
702 add_file_to_index(s->r->index, name, 0) < 0) {
703 res = error(_("could not stage '%s'"), name);
704 break;
705 }
706 }
707
708 if (!res && write_locked_index(s->r->index, &index_lock, COMMIT_LOCK) < 0)
709 res = error(_("could not write index"));
710
711 if (!res)
712 printf(Q_("updated %d path\n",
713 "updated %d paths\n", count), (int)count);
714
715 putchar('\n');
716 return res;
717}
718
c54ef5e4
JS
719static void revert_from_diff(struct diff_queue_struct *q,
720 struct diff_options *opt, void *data)
721{
722 int i, add_flags = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
723
724 for (i = 0; i < q->nr; i++) {
725 struct diff_filespec *one = q->queue[i]->one;
726 struct cache_entry *ce;
727
728 if (!(one->mode && !is_null_oid(&one->oid))) {
729 remove_file_from_index(opt->repo->index, one->path);
730 printf(_("note: %s is untracked now.\n"), one->path);
731 } else {
732 ce = make_cache_entry(opt->repo->index, one->mode,
733 &one->oid, one->path, 0, 0);
734 if (!ce)
735 die(_("make_cache_entry failed for path '%s'"),
736 one->path);
737 add_index_entry(opt->repo->index, ce, add_flags);
738 }
739 }
740}
741
742static int run_revert(struct add_i_state *s, const struct pathspec *ps,
743 struct prefix_item_list *files,
744 struct list_and_choose_options *opts)
745{
746 int res = 0, fd;
747 size_t count, i, j;
748
749 struct object_id oid;
750 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &oid,
751 NULL);
752 struct lock_file index_lock;
753 const char **paths;
754 struct tree *tree;
755 struct diff_options diffopt = { NULL };
756
8746e072 757 if (get_modified_files(s->r, INDEX_ONLY, files, ps, NULL, NULL) < 0)
c54ef5e4
JS
758 return -1;
759
760 if (!files->items.nr) {
761 putchar('\n');
762 return 0;
763 }
764
765 opts->prompt = N_("Revert");
766 count = list_and_choose(s, files, opts);
767 if (count <= 0)
768 goto finish_revert;
769
770 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
771 if (fd < 0) {
772 res = -1;
773 goto finish_revert;
774 }
775
776 if (is_initial)
777 oidcpy(&oid, s->r->hash_algo->empty_tree);
778 else {
779 tree = parse_tree_indirect(&oid);
780 if (!tree) {
781 res = error(_("Could not parse HEAD^{tree}"));
782 goto finish_revert;
783 }
784 oidcpy(&oid, &tree->object.oid);
785 }
786
787 ALLOC_ARRAY(paths, count + 1);
788 for (i = j = 0; i < files->items.nr; i++)
789 if (files->selected[i])
790 paths[j++] = files->items.items[i].string;
791 paths[j] = NULL;
792
793 parse_pathspec(&diffopt.pathspec, 0,
794 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH,
795 NULL, paths);
796
797 diffopt.output_format = DIFF_FORMAT_CALLBACK;
798 diffopt.format_callback = revert_from_diff;
799 diffopt.flags.override_submodule_config = 1;
800 diffopt.repo = s->r;
801
244c2724
ÆAB
802 if (do_diff_cache(&oid, &diffopt)) {
803 diff_free(&diffopt);
c54ef5e4 804 res = -1;
244c2724 805 } else {
c54ef5e4
JS
806 diffcore_std(&diffopt);
807 diff_flush(&diffopt);
808 }
809 free(paths);
c54ef5e4
JS
810
811 if (!res && write_locked_index(s->r->index, &index_lock,
812 COMMIT_LOCK) < 0)
813 res = -1;
814 else
815 res = repo_refresh_and_write_index(s->r, REFRESH_QUIET, 0, 1,
816 NULL, NULL, NULL);
817
818 if (!res)
819 printf(Q_("reverted %d path\n",
820 "reverted %d paths\n", count), (int)count);
821
822finish_revert:
823 putchar('\n');
824 return res;
825}
826
ab1e1ccc
JS
827static int get_untracked_files(struct repository *r,
828 struct prefix_item_list *files,
829 const struct pathspec *ps)
830{
831 struct dir_struct dir = { 0 };
832 size_t i;
833 struct strbuf buf = STRBUF_INIT;
834
835 if (repo_read_index(r) < 0)
836 return error(_("could not read index"));
837
838 prefix_item_list_clear(files);
839 setup_standard_excludes(&dir);
840 add_pattern_list(&dir, EXC_CMDL, "--exclude option");
841 fill_directory(&dir, r->index, ps);
842
843 for (i = 0; i < dir.nr; i++) {
844 struct dir_entry *ent = dir.entries[i];
845
846 if (index_name_is_other(r->index, ent->name, ent->len)) {
847 strbuf_reset(&buf);
848 strbuf_add(&buf, ent->name, ent->len);
849 add_file_item(&files->items, buf.buf);
850 }
851 }
852
853 strbuf_release(&buf);
854 return 0;
855}
856
857static int run_add_untracked(struct add_i_state *s, const struct pathspec *ps,
858 struct prefix_item_list *files,
859 struct list_and_choose_options *opts)
860{
861 struct print_file_item_data *d = opts->list_opts.print_item_data;
862 int res = 0, fd;
863 size_t count, i;
864 struct lock_file index_lock;
865
866 if (get_untracked_files(s->r, files, ps) < 0)
867 return -1;
868
869 if (!files->items.nr) {
870 printf(_("No untracked files.\n"));
871 goto finish_add_untracked;
872 }
873
874 opts->prompt = N_("Add untracked");
875 d->only_names = 1;
876 count = list_and_choose(s, files, opts);
877 d->only_names = 0;
878 if (count <= 0)
879 goto finish_add_untracked;
880
881 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
882 if (fd < 0) {
883 res = -1;
884 goto finish_add_untracked;
885 }
886
887 for (i = 0; i < files->items.nr; i++) {
888 const char *name = files->items.items[i].string;
889 if (files->selected[i] &&
890 add_file_to_index(s->r->index, name, 0) < 0) {
891 res = error(_("could not stage '%s'"), name);
892 break;
893 }
894 }
895
896 if (!res &&
897 write_locked_index(s->r->index, &index_lock, COMMIT_LOCK) < 0)
898 res = error(_("could not write index"));
899
900 if (!res)
901 printf(Q_("added %d path\n",
902 "added %d paths\n", count), (int)count);
903
904finish_add_untracked:
905 putchar('\n');
906 return res;
907}
908
8746e072
JS
909static int run_patch(struct add_i_state *s, const struct pathspec *ps,
910 struct prefix_item_list *files,
911 struct list_and_choose_options *opts)
912{
913 int res = 0;
914 ssize_t count, i, j;
915 size_t unmerged_count = 0, binary_count = 0;
916
917 if (get_modified_files(s->r, WORKTREE_ONLY, files, ps,
918 &unmerged_count, &binary_count) < 0)
919 return -1;
920
921 if (unmerged_count || binary_count) {
922 for (i = j = 0; i < files->items.nr; i++) {
923 struct file_item *item = files->items.items[i].util;
924
925 if (item->index.binary || item->worktree.binary) {
926 free(item);
927 free(files->items.items[i].string);
928 } else if (item->index.unmerged ||
929 item->worktree.unmerged) {
930 color_fprintf_ln(stderr, s->error_color,
931 _("ignoring unmerged: %s"),
932 files->items.items[i].string);
933 free(item);
934 free(files->items.items[i].string);
935 } else
936 files->items.items[j++] = files->items.items[i];
937 }
938 files->items.nr = j;
939 }
940
941 if (!files->items.nr) {
942 if (binary_count)
943 fprintf(stderr, _("Only binary files changed.\n"));
944 else
945 fprintf(stderr, _("No changes.\n"));
946 return 0;
947 }
948
949 opts->prompt = N_("Patch update");
950 count = list_and_choose(s, files, opts);
d660a30c 951 if (count > 0) {
ef8d7ac4 952 struct strvec args = STRVEC_INIT;
1942ee44 953 struct pathspec ps_selected = { 0 };
8746e072 954
8746e072
JS
955 for (i = 0; i < files->items.nr; i++)
956 if (files->selected[i])
ef8d7ac4 957 strvec_push(&args,
f6d8942b 958 files->items.items[i].string);
1942ee44
JS
959 parse_pathspec(&ps_selected,
960 PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
d70a9eb6 961 PATHSPEC_LITERAL_PATH, "", args.v);
d2a233cb 962 res = run_add_p(s->r, ADD_P_ADD, NULL, &ps_selected);
ef8d7ac4 963 strvec_clear(&args);
1942ee44 964 clear_pathspec(&ps_selected);
8746e072
JS
965 }
966
967 return res;
968}
969
d7633578
JS
970static int run_diff(struct add_i_state *s, const struct pathspec *ps,
971 struct prefix_item_list *files,
972 struct list_and_choose_options *opts)
973{
974 int res = 0;
975 ssize_t count, i;
976
977 struct object_id oid;
978 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &oid,
979 NULL);
980 if (get_modified_files(s->r, INDEX_ONLY, files, ps, NULL, NULL) < 0)
981 return -1;
982
983 if (!files->items.nr) {
984 putchar('\n');
985 return 0;
986 }
987
988 opts->prompt = N_("Review diff");
989 opts->flags = IMMEDIATE;
990 count = list_and_choose(s, files, opts);
991 opts->flags = 0;
d660a30c 992 if (count > 0) {
ef8d7ac4 993 struct strvec args = STRVEC_INIT;
d7633578 994
ef8d7ac4 995 strvec_pushl(&args, "git", "diff", "-p", "--cached",
f6d8942b
JK
996 oid_to_hex(!is_initial ? &oid :
997 s->r->hash_algo->empty_tree),
998 "--", NULL);
d7633578
JS
999 for (i = 0; i < files->items.nr; i++)
1000 if (files->selected[i])
ef8d7ac4 1001 strvec_push(&args,
f6d8942b 1002 files->items.items[i].string);
d70a9eb6 1003 res = run_command_v_opt(args.v, 0);
ef8d7ac4 1004 strvec_clear(&args);
d7633578
JS
1005 }
1006
1007 putchar('\n');
1008 return res;
1009}
1010
8c159044 1011static int run_help(struct add_i_state *s, const struct pathspec *unused_ps,
a8c45be9
JS
1012 struct prefix_item_list *unused_files,
1013 struct list_and_choose_options *unused_opts)
8c159044
1014{
1015 color_fprintf_ln(stdout, s->help_color, "status - %s",
1016 _("show paths with changes"));
1017 color_fprintf_ln(stdout, s->help_color, "update - %s",
1018 _("add working tree state to the staged set of changes"));
1019 color_fprintf_ln(stdout, s->help_color, "revert - %s",
1020 _("revert staged set of changes back to the HEAD version"));
1021 color_fprintf_ln(stdout, s->help_color, "patch - %s",
1022 _("pick hunks and update selectively"));
1023 color_fprintf_ln(stdout, s->help_color, "diff - %s",
1024 _("view diff between HEAD and index"));
1025 color_fprintf_ln(stdout, s->help_color, "add untracked - %s",
1026 _("add contents of untracked files to the staged set of changes"));
1027
1028 return 0;
1029}
1030
a8c45be9
JS
1031static void choose_prompt_help(struct add_i_state *s)
1032{
1033 color_fprintf_ln(stdout, s->help_color, "%s",
1034 _("Prompt help:"));
1035 color_fprintf_ln(stdout, s->help_color, "1 - %s",
1036 _("select a single item"));
1037 color_fprintf_ln(stdout, s->help_color, "3-5 - %s",
1038 _("select a range of items"));
1039 color_fprintf_ln(stdout, s->help_color, "2-3,6-9 - %s",
1040 _("select multiple ranges"));
1041 color_fprintf_ln(stdout, s->help_color, "foo - %s",
1042 _("select item based on unique prefix"));
1043 color_fprintf_ln(stdout, s->help_color, "-... - %s",
1044 _("unselect specified items"));
1045 color_fprintf_ln(stdout, s->help_color, "* - %s",
1046 _("choose all items"));
1047 color_fprintf_ln(stdout, s->help_color, " - %s",
1048 _("(empty) finish selecting"));
1049}
1050
6348bfba 1051typedef int (*command_t)(struct add_i_state *s, const struct pathspec *ps,
a8c45be9
JS
1052 struct prefix_item_list *files,
1053 struct list_and_choose_options *opts);
6348bfba 1054
76b74323
JS
1055struct command_item {
1056 size_t prefix_length;
1057 command_t command;
1058};
1059
3d965c76
1060struct print_command_item_data {
1061 const char *color, *reset;
1062};
1063
f37c2264
JS
1064static void print_command_item(int i, int selected,
1065 struct string_list_item *item,
6348bfba
JS
1066 void *print_command_item_data)
1067{
3d965c76 1068 struct print_command_item_data *d = print_command_item_data;
76b74323
JS
1069 struct command_item *util = item->util;
1070
1071 if (!util->prefix_length ||
1072 !is_valid_prefix(item->string, util->prefix_length))
1073 printf(" %2d: %s", i + 1, item->string);
1074 else
3d965c76
1075 printf(" %2d: %s%.*s%s%s", i + 1,
1076 d->color, (int)util->prefix_length, item->string,
1077 d->reset, item->string + util->prefix_length);
6348bfba
JS
1078}
1079
68db1cbf
JS
1080static void command_prompt_help(struct add_i_state *s)
1081{
1082 const char *help_color = s->help_color;
1083 color_fprintf_ln(stdout, help_color, "%s", _("Prompt help:"));
1084 color_fprintf_ln(stdout, help_color, "1 - %s",
1085 _("select a numbered item"));
1086 color_fprintf_ln(stdout, help_color, "foo - %s",
1087 _("select item based on unique prefix"));
1088 color_fprintf_ln(stdout, help_color, " - %s",
1089 _("(empty) select nothing"));
1090}
1091
f83dff60
JS
1092int run_add_i(struct repository *r, const struct pathspec *ps)
1093{
5e82b9e4 1094 struct add_i_state s = { NULL };
3d965c76 1095 struct print_command_item_data data = { "[", "]" };
6348bfba 1096 struct list_and_choose_options main_loop_opts = {
3d965c76 1097 { 4, N_("*** Commands ***"), print_command_item, &data },
f37c2264 1098 N_("What now"), SINGLETON | IMMEDIATE, command_prompt_help
6348bfba
JS
1099 };
1100 struct {
1101 const char *string;
1102 command_t command;
1103 } command_list[] = {
1104 { "status", run_status },
a8c45be9 1105 { "update", run_update },
c54ef5e4 1106 { "revert", run_revert },
ab1e1ccc 1107 { "add untracked", run_add_untracked },
8746e072 1108 { "patch", run_patch },
d7633578 1109 { "diff", run_diff },
2e697ced 1110 { "quit", NULL },
8c159044 1111 { "help", run_help },
6348bfba 1112 };
76b74323 1113 struct prefix_item_list commands = PREFIX_ITEM_LIST_INIT;
6348bfba 1114
5e82b9e4 1115 struct print_file_item_data print_file_item_data = {
a8c45be9
JS
1116 "%12s %12s %s", NULL, NULL,
1117 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
5e82b9e4 1118 };
a8c45be9
JS
1119 struct list_and_choose_options opts = {
1120 { 0, NULL, print_file_item, &print_file_item_data },
1121 NULL, 0, choose_prompt_help
5e82b9e4
DF
1122 };
1123 struct strbuf header = STRBUF_INIT;
a8c45be9 1124 struct prefix_item_list files = PREFIX_ITEM_LIST_INIT;
6348bfba 1125 ssize_t i;
5e82b9e4
DF
1126 int res = 0;
1127
76b74323 1128 for (i = 0; i < ARRAY_SIZE(command_list); i++) {
241b5d3e 1129 struct command_item *util = xcalloc(1, sizeof(*util));
76b74323
JS
1130 util->command = command_list[i].command;
1131 string_list_append(&commands.items, command_list[i].string)
1132 ->util = util;
1133 }
6348bfba 1134
5e82b9e4 1135 init_add_i_state(&s, r);
6348bfba 1136
3d965c76
1137 /*
1138 * When color was asked for, use the prompt color for
1139 * highlighting, otherwise use square brackets.
1140 */
1141 if (s.use_color) {
1142 data.color = s.prompt_color;
1143 data.reset = s.reset_color;
1144 }
a8c45be9
JS
1145 print_file_item_data.color = data.color;
1146 print_file_item_data.reset = data.reset;
3d965c76 1147
afae3cb6 1148 strbuf_addstr(&header, " ");
5e82b9e4
DF
1149 strbuf_addf(&header, print_file_item_data.modified_fmt,
1150 _("staged"), _("unstaged"), _("path"));
a8c45be9 1151 opts.list_opts.header = header.buf;
5e82b9e4
DF
1152
1153 if (discard_index(r->index) < 0 ||
1154 repo_read_index(r) < 0 ||
1155 repo_refresh_and_write_index(r, REFRESH_QUIET, 0, 1,
1156 NULL, NULL, NULL) < 0)
1157 warning(_("could not refresh index"));
1158
1159 res = run_status(&s, ps, &files, &opts);
1160
6348bfba 1161 for (;;) {
2e697ced
JS
1162 struct command_item *util;
1163
6348bfba 1164 i = list_and_choose(&s, &commands, &main_loop_opts);
2e697ced
JS
1165 if (i < 0 || i >= commands.items.nr)
1166 util = NULL;
1167 else
1168 util = commands.items.items[i].util;
1169
1170 if (i == LIST_AND_CHOOSE_QUIT || (util && !util->command)) {
6348bfba
JS
1171 printf(_("Bye.\n"));
1172 res = 0;
1173 break;
1174 }
2e697ced
JS
1175
1176 if (util)
76b74323 1177 res = util->command(&s, ps, &files, &opts);
6348bfba
JS
1178 }
1179
a8c45be9 1180 prefix_item_list_clear(&files);
5e82b9e4 1181 strbuf_release(&print_file_item_data.buf);
a8c45be9 1182 strbuf_release(&print_file_item_data.name);
5e82b9e4
DF
1183 strbuf_release(&print_file_item_data.index);
1184 strbuf_release(&print_file_item_data.worktree);
1185 strbuf_release(&header);
76b74323 1186 prefix_item_list_clear(&commands);
180f48df 1187 clear_add_i_state(&s);
5e82b9e4
DF
1188
1189 return res;
f83dff60 1190}