2 #include "add-interactive.h"
8 #include "string-list.h"
11 #include "run-command.h"
14 static void init_color(struct repository *r, struct add_i_state *s,
15 const char *section_and_slot, char *dst,
16 const char *default_color)
18 char *key = xstrfmt("color.%s", section_and_slot);
23 else if (repo_config_get_value(r, key, &value) ||
24 color_parse(value, dst))
25 strlcpy(dst, default_color, COLOR_MAXLEN);
30 void init_add_i_state(struct add_i_state *s, struct repository *r)
36 if (repo_config_get_value(r, "color.interactive", &value))
40 git_config_colorbool("color.interactive", value);
41 s->use_color = want_color(s->use_color);
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,
47 init_color(r, s, "interactive.error", s->error_color,
50 init_color(r, s, "diff.frag", s->fraginfo_color,
51 diff_get_color(s->use_color, DIFF_FRAGINFO));
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));
56 init_color(r, s, "diff.old", s->file_old_color,
57 diff_get_color(s->use_color, DIFF_FILE_OLD));
58 init_color(r, s, "diff.new", s->file_new_color,
59 diff_get_color(s->use_color, DIFF_FILE_NEW));
61 strlcpy(s->reset_color,
62 s->use_color ? GIT_COLOR_RESET : "", COLOR_MAXLEN);
64 FREE_AND_NULL(s->interactive_diff_filter);
65 git_config_get_string("interactive.difffilter",
66 &s->interactive_diff_filter);
68 FREE_AND_NULL(s->interactive_diff_algorithm);
69 git_config_get_string("diff.algorithm",
70 &s->interactive_diff_algorithm);
72 git_config_get_bool("interactive.singlekey", &s->use_single_key);
75 void clear_add_i_state(struct add_i_state *s)
77 FREE_AND_NULL(s->interactive_diff_filter);
78 FREE_AND_NULL(s->interactive_diff_algorithm);
79 memset(s, 0, sizeof(*s));
84 * A "prefix item list" is a list of items that are identified by a string, and
85 * a unique prefix (if any) is determined for each item.
87 * It is implemented in the form of a pair of `string_list`s, the first one
88 * duplicating the strings, with the `util` field pointing at a structure whose
89 * first field must be `size_t prefix_length`.
91 * That `prefix_length` field will be computed by `find_unique_prefixes()`; It
92 * will be set to zero if no valid, unique prefix could be found.
94 * The second `string_list` is called `sorted` and does _not_ duplicate the
95 * strings but simply reuses the first one's, with the `util` field pointing at
96 * the `string_item_list` of the first `string_list`. It will be populated and
97 * sorted by `find_unique_prefixes()`.
99 struct prefix_item_list {
100 struct string_list items;
101 struct string_list sorted;
102 int *selected; /* for multi-selections */
103 size_t min_length, max_length;
105 #define PREFIX_ITEM_LIST_INIT \
106 { STRING_LIST_INIT_DUP, STRING_LIST_INIT_NODUP, NULL, 1, 4 }
108 static void prefix_item_list_clear(struct prefix_item_list *list)
110 string_list_clear(&list->items, 1);
111 string_list_clear(&list->sorted, 0);
112 FREE_AND_NULL(list->selected);
115 static void extend_prefix_length(struct string_list_item *p,
116 const char *other_string, size_t max_length)
118 size_t *len = p->util;
120 if (!*len || memcmp(p->string, other_string, *len))
124 char c = p->string[*len];
127 * Is `p` a strict prefix of `other`? Or have we exhausted the
128 * maximal length of the prefix? Or is the current character a
129 * multi-byte UTF-8 one? If so, there is no valid, unique
132 if (!c || ++*len > max_length || !isascii(c)) {
137 if (c != other_string[*len - 1])
142 static void find_unique_prefixes(struct prefix_item_list *list)
146 if (list->sorted.nr == list->items.nr)
149 string_list_clear(&list->sorted, 0);
150 /* Avoid reallocating incrementally */
151 list->sorted.items = xmalloc(st_mult(sizeof(*list->sorted.items),
153 list->sorted.nr = list->sorted.alloc = list->items.nr;
155 for (i = 0; i < list->items.nr; i++) {
156 list->sorted.items[i].string = list->items.items[i].string;
157 list->sorted.items[i].util = list->items.items + i;
160 string_list_sort(&list->sorted);
162 for (i = 0; i < list->sorted.nr; i++) {
163 struct string_list_item *sorted_item = list->sorted.items + i;
164 struct string_list_item *item = sorted_item->util;
165 size_t *len = item->util;
168 while (*len < list->min_length) {
169 char c = item->string[(*len)++];
171 if (!c || !isascii(c)) {
178 extend_prefix_length(item, sorted_item[-1].string,
180 if (i + 1 < list->sorted.nr)
181 extend_prefix_length(item, sorted_item[1].string,
186 static ssize_t find_unique(const char *string, struct prefix_item_list *list)
188 int index = string_list_find_insert_index(&list->sorted, string, 1);
189 struct string_list_item *item;
191 if (list->items.nr != list->sorted.nr)
192 BUG("prefix_item_list in inconsistent state (%"PRIuMAX
194 (uintmax_t)list->items.nr, (uintmax_t)list->sorted.nr);
197 item = list->sorted.items[-1 - index].util;
198 else if (index > 0 &&
199 starts_with(list->sorted.items[index - 1].string, string))
201 else if (index + 1 < list->sorted.nr &&
202 starts_with(list->sorted.items[index + 1].string, string))
204 else if (index < list->sorted.nr &&
205 starts_with(list->sorted.items[index].string, string))
206 item = list->sorted.items[index].util;
209 return item - list->items.items;
212 struct list_options {
215 void (*print_item)(int i, int selected, struct string_list_item *item,
216 void *print_item_data);
217 void *print_item_data;
220 static void list(struct add_i_state *s, struct string_list *list, int *selected,
221 struct list_options *opts)
229 color_fprintf_ln(stdout, s->header_color,
232 for (i = 0; i < list->nr; i++) {
233 opts->print_item(i, selected ? selected[i] : 0, list->items + i,
234 opts->print_item_data);
236 if ((opts->columns) && ((i + 1) % (opts->columns))) {
249 struct list_and_choose_options {
250 struct list_options list_opts;
257 void (*print_help)(struct add_i_state *s);
260 #define LIST_AND_CHOOSE_ERROR (-1)
261 #define LIST_AND_CHOOSE_QUIT (-2)
264 * Returns the selected index in singleton mode, the number of selected items
267 * If an error occurred, returns `LIST_AND_CHOOSE_ERROR`. Upon EOF,
268 * `LIST_AND_CHOOSE_QUIT` is returned.
270 static ssize_t list_and_choose(struct add_i_state *s,
271 struct prefix_item_list *items,
272 struct list_and_choose_options *opts)
274 int singleton = opts->flags & SINGLETON;
275 int immediate = opts->flags & IMMEDIATE;
277 struct strbuf input = STRBUF_INIT;
278 ssize_t res = singleton ? LIST_AND_CHOOSE_ERROR : 0;
281 free(items->selected);
282 CALLOC_ARRAY(items->selected, items->items.nr);
285 if (singleton && !immediate)
286 BUG("singleton requires immediate");
288 find_unique_prefixes(items);
293 strbuf_reset(&input);
295 list(s, &items->items, items->selected, &opts->list_opts);
297 color_fprintf(stdout, s->prompt_color, "%s", opts->prompt);
298 fputs(singleton ? "> " : ">> ", stdout);
301 if (git_read_line_interactively(&input) == EOF) {
304 res = LIST_AND_CHOOSE_QUIT;
311 if (!strcmp(input.buf, "?")) {
318 size_t sep = strcspn(p, " \t\r\n,");
320 /* `from` is inclusive, `to` is exclusive */
321 ssize_t from = -1, to = -1;
330 /* Input that begins with '-'; de-select */
337 if (sep == 1 && *p == '*') {
339 to = items->items.nr;
340 } else if (isdigit(*p)) {
343 * A range can be specified like 5-7 or 5-.
345 * Note: `from` is 0-based while the user input
346 * is 1-based, hence we have to decrement by
347 * one. We do not have to decrement `to` even
348 * if it is 0-based because it is an exclusive
351 from = strtoul(p, &endp, 10) - 1;
354 else if (*endp == '-') {
355 if (isdigit(*(++endp)))
356 to = strtoul(endp, &endp, 10);
358 to = items->items.nr;
359 /* extra characters after the range? */
368 from = find_unique(p, items);
373 if (from < 0 || from >= items->items.nr ||
374 (singleton && from + 1 != to)) {
375 color_fprintf_ln(stderr, s->error_color,
378 } else if (singleton) {
383 if (to > items->items.nr)
384 to = items->items.nr;
386 for (; from < to; from++)
387 if (items->selected[from] != choose) {
388 items->selected[from] = choose;
389 res += choose ? +1 : -1;
395 if ((immediate && res != LIST_AND_CHOOSE_ERROR) ||
396 !strcmp(input.buf, "*"))
400 strbuf_release(&input);
406 unsigned seen:1, unmerged:1, binary:1;
410 size_t prefix_length;
411 struct adddel index, worktree;
414 static void add_file_item(struct string_list *files, const char *name)
416 struct file_item *item = xcalloc(sizeof(*item), 1);
418 string_list_append(files, name)->util = item;
421 struct pathname_entry {
422 struct hashmap_entry ent;
424 struct file_item *item;
427 static int pathname_entry_cmp(const void *unused_cmp_data,
428 const struct hashmap_entry *he1,
429 const struct hashmap_entry *he2,
432 const struct pathname_entry *e1 =
433 container_of(he1, const struct pathname_entry, ent);
434 const struct pathname_entry *e2 =
435 container_of(he2, const struct pathname_entry, ent);
437 return strcmp(e1->name, name ? (const char *)name : e2->name);
440 struct collection_status {
441 enum { FROM_WORKTREE = 0, FROM_INDEX = 1 } mode;
443 const char *reference;
445 unsigned skip_unseen:1;
446 size_t unmerged_count, binary_count;
447 struct string_list *files;
448 struct hashmap file_map;
451 static void collect_changes_cb(struct diff_queue_struct *q,
452 struct diff_options *options,
455 struct collection_status *s = data;
456 struct diffstat_t stat = { 0 };
462 compute_diffstat(options, &stat, q);
464 for (i = 0; i < stat.nr; i++) {
465 const char *name = stat.files[i]->name;
466 int hash = strhash(name);
467 struct pathname_entry *entry;
468 struct file_item *file_item;
469 struct adddel *adddel, *other_adddel;
471 entry = hashmap_get_entry_from_hash(&s->file_map, hash, name,
472 struct pathname_entry, ent);
477 add_file_item(s->files, name);
479 entry = xcalloc(sizeof(*entry), 1);
480 hashmap_entry_init(&entry->ent, hash);
481 entry->name = s->files->items[s->files->nr - 1].string;
482 entry->item = s->files->items[s->files->nr - 1].util;
483 hashmap_add(&s->file_map, &entry->ent);
486 file_item = entry->item;
487 adddel = s->mode == FROM_INDEX ?
488 &file_item->index : &file_item->worktree;
489 other_adddel = s->mode == FROM_INDEX ?
490 &file_item->worktree : &file_item->index;
492 adddel->add = stat.files[i]->added;
493 adddel->del = stat.files[i]->deleted;
494 if (stat.files[i]->is_binary) {
495 if (!other_adddel->binary)
499 if (stat.files[i]->is_unmerged) {
500 if (!other_adddel->unmerged)
502 adddel->unmerged = 1;
505 free_diffstat_info(&stat);
508 enum modified_files_filter {
514 static int get_modified_files(struct repository *r,
515 enum modified_files_filter filter,
516 struct prefix_item_list *files,
517 const struct pathspec *ps,
518 size_t *unmerged_count,
519 size_t *binary_count)
521 struct object_id head_oid;
522 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING,
524 struct collection_status s = { 0 };
527 if (discard_index(r->index) < 0 ||
528 repo_read_index_preload(r, ps, 0) < 0)
529 return error(_("could not read index"));
531 prefix_item_list_clear(files);
532 s.files = &files->items;
533 hashmap_init(&s.file_map, pathname_entry_cmp, NULL, 0);
535 for (i = 0; i < 2; i++) {
537 struct setup_revision_opt opt = { 0 };
539 if (filter == INDEX_ONLY)
540 s.mode = (i == 0) ? FROM_INDEX : FROM_WORKTREE;
542 s.mode = (i == 0) ? FROM_WORKTREE : FROM_INDEX;
543 s.skip_unseen = filter && i;
545 opt.def = is_initial ?
546 empty_tree_oid_hex() : oid_to_hex(&head_oid);
548 init_revisions(&rev, NULL);
549 setup_revisions(0, NULL, &rev, &opt);
551 rev.diffopt.output_format = DIFF_FORMAT_CALLBACK;
552 rev.diffopt.format_callback = collect_changes_cb;
553 rev.diffopt.format_callback_data = &s;
556 copy_pathspec(&rev.prune_data, ps);
558 if (s.mode == FROM_INDEX)
559 run_diff_index(&rev, 1);
561 rev.diffopt.flags.ignore_dirty_submodules = 1;
562 run_diff_files(&rev, 0);
566 clear_pathspec(&rev.prune_data);
568 hashmap_clear_and_free(&s.file_map, struct pathname_entry, ent);
570 *unmerged_count = s.unmerged_count;
572 *binary_count = s.binary_count;
574 /* While the diffs are ordered already, we ran *two* diffs... */
575 string_list_sort(&files->items);
580 static void render_adddel(struct strbuf *buf,
581 struct adddel *ad, const char *no_changes)
584 strbuf_addstr(buf, _("binary"));
586 strbuf_addf(buf, "+%"PRIuMAX"/-%"PRIuMAX,
587 (uintmax_t)ad->add, (uintmax_t)ad->del);
589 strbuf_addstr(buf, no_changes);
592 /* filters out prefixes which have special meaning to list_and_choose() */
593 static int is_valid_prefix(const char *prefix, size_t prefix_len)
595 return prefix_len && prefix &&
597 * We expect `prefix` to be NUL terminated, therefore this
598 * `strcspn()` call is okay, even if it might do much more
599 * work than strictly necessary.
601 strcspn(prefix, " \t\r\n,") >= prefix_len && /* separators */
602 *prefix != '-' && /* deselection */
603 !isdigit(*prefix) && /* selection */
605 (*prefix != '*' && /* "all" wildcard */
606 *prefix != '?')); /* prompt help */
609 struct print_file_item_data {
610 const char *modified_fmt, *color, *reset;
611 struct strbuf buf, name, index, worktree;
612 unsigned only_names:1;
615 static void print_file_item(int i, int selected, struct string_list_item *item,
616 void *print_file_item_data)
618 struct file_item *c = item->util;
619 struct print_file_item_data *d = print_file_item_data;
620 const char *highlighted = NULL;
622 strbuf_reset(&d->index);
623 strbuf_reset(&d->worktree);
624 strbuf_reset(&d->buf);
626 /* Format the item with the prefix highlighted. */
627 if (c->prefix_length > 0 &&
628 is_valid_prefix(item->string, c->prefix_length)) {
629 strbuf_reset(&d->name);
630 strbuf_addf(&d->name, "%s%.*s%s%s", d->color,
631 (int)c->prefix_length, item->string, d->reset,
632 item->string + c->prefix_length);
633 highlighted = d->name.buf;
637 printf("%c%2d: %s", selected ? '*' : ' ', i + 1,
638 highlighted ? highlighted : item->string);
642 render_adddel(&d->worktree, &c->worktree, _("nothing"));
643 render_adddel(&d->index, &c->index, _("unchanged"));
645 strbuf_addf(&d->buf, d->modified_fmt, d->index.buf, d->worktree.buf,
646 highlighted ? highlighted : item->string);
648 printf("%c%2d: %s", selected ? '*' : ' ', i + 1, d->buf.buf);
651 static int run_status(struct add_i_state *s, const struct pathspec *ps,
652 struct prefix_item_list *files,
653 struct list_and_choose_options *opts)
655 if (get_modified_files(s->r, NO_FILTER, files, ps, NULL, NULL) < 0)
658 list(s, &files->items, NULL, &opts->list_opts);
664 static int run_update(struct add_i_state *s, const struct pathspec *ps,
665 struct prefix_item_list *files,
666 struct list_and_choose_options *opts)
670 struct lock_file index_lock;
672 if (get_modified_files(s->r, WORKTREE_ONLY, files, ps, NULL, NULL) < 0)
675 if (!files->items.nr) {
680 opts->prompt = N_("Update");
681 count = list_and_choose(s, files, opts);
687 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
693 for (i = 0; i < files->items.nr; i++) {
694 const char *name = files->items.items[i].string;
695 if (files->selected[i] &&
696 add_file_to_index(s->r->index, name, 0) < 0) {
697 res = error(_("could not stage '%s'"), name);
702 if (!res && write_locked_index(s->r->index, &index_lock, COMMIT_LOCK) < 0)
703 res = error(_("could not write index"));
706 printf(Q_("updated %d path\n",
707 "updated %d paths\n", count), (int)count);
713 static void revert_from_diff(struct diff_queue_struct *q,
714 struct diff_options *opt, void *data)
716 int i, add_flags = ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE;
718 for (i = 0; i < q->nr; i++) {
719 struct diff_filespec *one = q->queue[i]->one;
720 struct cache_entry *ce;
722 if (!(one->mode && !is_null_oid(&one->oid))) {
723 remove_file_from_index(opt->repo->index, one->path);
724 printf(_("note: %s is untracked now.\n"), one->path);
726 ce = make_cache_entry(opt->repo->index, one->mode,
727 &one->oid, one->path, 0, 0);
729 die(_("make_cache_entry failed for path '%s'"),
731 add_index_entry(opt->repo->index, ce, add_flags);
736 static int run_revert(struct add_i_state *s, const struct pathspec *ps,
737 struct prefix_item_list *files,
738 struct list_and_choose_options *opts)
743 struct object_id oid;
744 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &oid,
746 struct lock_file index_lock;
749 struct diff_options diffopt = { NULL };
751 if (get_modified_files(s->r, INDEX_ONLY, files, ps, NULL, NULL) < 0)
754 if (!files->items.nr) {
759 opts->prompt = N_("Revert");
760 count = list_and_choose(s, files, opts);
764 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
771 oidcpy(&oid, s->r->hash_algo->empty_tree);
773 tree = parse_tree_indirect(&oid);
775 res = error(_("Could not parse HEAD^{tree}"));
778 oidcpy(&oid, &tree->object.oid);
781 ALLOC_ARRAY(paths, count + 1);
782 for (i = j = 0; i < files->items.nr; i++)
783 if (files->selected[i])
784 paths[j++] = files->items.items[i].string;
787 parse_pathspec(&diffopt.pathspec, 0,
788 PATHSPEC_PREFER_FULL | PATHSPEC_LITERAL_PATH,
791 diffopt.output_format = DIFF_FORMAT_CALLBACK;
792 diffopt.format_callback = revert_from_diff;
793 diffopt.flags.override_submodule_config = 1;
796 if (do_diff_cache(&oid, &diffopt))
799 diffcore_std(&diffopt);
800 diff_flush(&diffopt);
803 clear_pathspec(&diffopt.pathspec);
805 if (!res && write_locked_index(s->r->index, &index_lock,
809 res = repo_refresh_and_write_index(s->r, REFRESH_QUIET, 0, 1,
813 printf(Q_("reverted %d path\n",
814 "reverted %d paths\n", count), (int)count);
821 static int get_untracked_files(struct repository *r,
822 struct prefix_item_list *files,
823 const struct pathspec *ps)
825 struct dir_struct dir = { 0 };
827 struct strbuf buf = STRBUF_INIT;
829 if (repo_read_index(r) < 0)
830 return error(_("could not read index"));
832 prefix_item_list_clear(files);
833 setup_standard_excludes(&dir);
834 add_pattern_list(&dir, EXC_CMDL, "--exclude option");
835 fill_directory(&dir, r->index, ps);
837 for (i = 0; i < dir.nr; i++) {
838 struct dir_entry *ent = dir.entries[i];
840 if (index_name_is_other(r->index, ent->name, ent->len)) {
842 strbuf_add(&buf, ent->name, ent->len);
843 add_file_item(&files->items, buf.buf);
847 strbuf_release(&buf);
851 static int run_add_untracked(struct add_i_state *s, const struct pathspec *ps,
852 struct prefix_item_list *files,
853 struct list_and_choose_options *opts)
855 struct print_file_item_data *d = opts->list_opts.print_item_data;
858 struct lock_file index_lock;
860 if (get_untracked_files(s->r, files, ps) < 0)
863 if (!files->items.nr) {
864 printf(_("No untracked files.\n"));
865 goto finish_add_untracked;
868 opts->prompt = N_("Add untracked");
870 count = list_and_choose(s, files, opts);
873 goto finish_add_untracked;
875 fd = repo_hold_locked_index(s->r, &index_lock, LOCK_REPORT_ON_ERROR);
878 goto finish_add_untracked;
881 for (i = 0; i < files->items.nr; i++) {
882 const char *name = files->items.items[i].string;
883 if (files->selected[i] &&
884 add_file_to_index(s->r->index, name, 0) < 0) {
885 res = error(_("could not stage '%s'"), name);
891 write_locked_index(s->r->index, &index_lock, COMMIT_LOCK) < 0)
892 res = error(_("could not write index"));
895 printf(Q_("added %d path\n",
896 "added %d paths\n", count), (int)count);
898 finish_add_untracked:
903 static int run_patch(struct add_i_state *s, const struct pathspec *ps,
904 struct prefix_item_list *files,
905 struct list_and_choose_options *opts)
909 size_t unmerged_count = 0, binary_count = 0;
911 if (get_modified_files(s->r, WORKTREE_ONLY, files, ps,
912 &unmerged_count, &binary_count) < 0)
915 if (unmerged_count || binary_count) {
916 for (i = j = 0; i < files->items.nr; i++) {
917 struct file_item *item = files->items.items[i].util;
919 if (item->index.binary || item->worktree.binary) {
921 free(files->items.items[i].string);
922 } else if (item->index.unmerged ||
923 item->worktree.unmerged) {
924 color_fprintf_ln(stderr, s->error_color,
925 _("ignoring unmerged: %s"),
926 files->items.items[i].string);
928 free(files->items.items[i].string);
930 files->items.items[j++] = files->items.items[i];
935 if (!files->items.nr) {
937 fprintf(stderr, _("Only binary files changed.\n"));
939 fprintf(stderr, _("No changes.\n"));
943 opts->prompt = N_("Patch update");
944 count = list_and_choose(s, files, opts);
946 struct strvec args = STRVEC_INIT;
947 struct pathspec ps_selected = { 0 };
949 for (i = 0; i < files->items.nr; i++)
950 if (files->selected[i])
952 files->items.items[i].string);
953 parse_pathspec(&ps_selected,
954 PATHSPEC_ALL_MAGIC & ~PATHSPEC_LITERAL,
955 PATHSPEC_LITERAL_PATH, "", args.v);
956 res = run_add_p(s->r, ADD_P_ADD, NULL, &ps_selected);
958 clear_pathspec(&ps_selected);
964 static int run_diff(struct add_i_state *s, const struct pathspec *ps,
965 struct prefix_item_list *files,
966 struct list_and_choose_options *opts)
971 struct object_id oid;
972 int is_initial = !resolve_ref_unsafe("HEAD", RESOLVE_REF_READING, &oid,
974 if (get_modified_files(s->r, INDEX_ONLY, files, ps, NULL, NULL) < 0)
977 if (!files->items.nr) {
982 opts->prompt = N_("Review diff");
983 opts->flags = IMMEDIATE;
984 count = list_and_choose(s, files, opts);
987 struct strvec args = STRVEC_INIT;
989 strvec_pushl(&args, "git", "diff", "-p", "--cached",
990 oid_to_hex(!is_initial ? &oid :
991 s->r->hash_algo->empty_tree),
993 for (i = 0; i < files->items.nr; i++)
994 if (files->selected[i])
996 files->items.items[i].string);
997 res = run_command_v_opt(args.v, 0);
1005 static int run_help(struct add_i_state *s, const struct pathspec *unused_ps,
1006 struct prefix_item_list *unused_files,
1007 struct list_and_choose_options *unused_opts)
1009 color_fprintf_ln(stdout, s->help_color, "status - %s",
1010 _("show paths with changes"));
1011 color_fprintf_ln(stdout, s->help_color, "update - %s",
1012 _("add working tree state to the staged set of changes"));
1013 color_fprintf_ln(stdout, s->help_color, "revert - %s",
1014 _("revert staged set of changes back to the HEAD version"));
1015 color_fprintf_ln(stdout, s->help_color, "patch - %s",
1016 _("pick hunks and update selectively"));
1017 color_fprintf_ln(stdout, s->help_color, "diff - %s",
1018 _("view diff between HEAD and index"));
1019 color_fprintf_ln(stdout, s->help_color, "add untracked - %s",
1020 _("add contents of untracked files to the staged set of changes"));
1025 static void choose_prompt_help(struct add_i_state *s)
1027 color_fprintf_ln(stdout, s->help_color, "%s",
1029 color_fprintf_ln(stdout, s->help_color, "1 - %s",
1030 _("select a single item"));
1031 color_fprintf_ln(stdout, s->help_color, "3-5 - %s",
1032 _("select a range of items"));
1033 color_fprintf_ln(stdout, s->help_color, "2-3,6-9 - %s",
1034 _("select multiple ranges"));
1035 color_fprintf_ln(stdout, s->help_color, "foo - %s",
1036 _("select item based on unique prefix"));
1037 color_fprintf_ln(stdout, s->help_color, "-... - %s",
1038 _("unselect specified items"));
1039 color_fprintf_ln(stdout, s->help_color, "* - %s",
1040 _("choose all items"));
1041 color_fprintf_ln(stdout, s->help_color, " - %s",
1042 _("(empty) finish selecting"));
1045 typedef int (*command_t)(struct add_i_state *s, const struct pathspec *ps,
1046 struct prefix_item_list *files,
1047 struct list_and_choose_options *opts);
1049 struct command_item {
1050 size_t prefix_length;
1054 struct print_command_item_data {
1055 const char *color, *reset;
1058 static void print_command_item(int i, int selected,
1059 struct string_list_item *item,
1060 void *print_command_item_data)
1062 struct print_command_item_data *d = print_command_item_data;
1063 struct command_item *util = item->util;
1065 if (!util->prefix_length ||
1066 !is_valid_prefix(item->string, util->prefix_length))
1067 printf(" %2d: %s", i + 1, item->string);
1069 printf(" %2d: %s%.*s%s%s", i + 1,
1070 d->color, (int)util->prefix_length, item->string,
1071 d->reset, item->string + util->prefix_length);
1074 static void command_prompt_help(struct add_i_state *s)
1076 const char *help_color = s->help_color;
1077 color_fprintf_ln(stdout, help_color, "%s", _("Prompt help:"));
1078 color_fprintf_ln(stdout, help_color, "1 - %s",
1079 _("select a numbered item"));
1080 color_fprintf_ln(stdout, help_color, "foo - %s",
1081 _("select item based on unique prefix"));
1082 color_fprintf_ln(stdout, help_color, " - %s",
1083 _("(empty) select nothing"));
1086 int run_add_i(struct repository *r, const struct pathspec *ps)
1088 struct add_i_state s = { NULL };
1089 struct print_command_item_data data = { "[", "]" };
1090 struct list_and_choose_options main_loop_opts = {
1091 { 4, N_("*** Commands ***"), print_command_item, &data },
1092 N_("What now"), SINGLETON | IMMEDIATE, command_prompt_help
1097 } command_list[] = {
1098 { "status", run_status },
1099 { "update", run_update },
1100 { "revert", run_revert },
1101 { "add untracked", run_add_untracked },
1102 { "patch", run_patch },
1103 { "diff", run_diff },
1105 { "help", run_help },
1107 struct prefix_item_list commands = PREFIX_ITEM_LIST_INIT;
1109 struct print_file_item_data print_file_item_data = {
1110 "%12s %12s %s", NULL, NULL,
1111 STRBUF_INIT, STRBUF_INIT, STRBUF_INIT, STRBUF_INIT
1113 struct list_and_choose_options opts = {
1114 { 0, NULL, print_file_item, &print_file_item_data },
1115 NULL, 0, choose_prompt_help
1117 struct strbuf header = STRBUF_INIT;
1118 struct prefix_item_list files = PREFIX_ITEM_LIST_INIT;
1122 for (i = 0; i < ARRAY_SIZE(command_list); i++) {
1123 struct command_item *util = xcalloc(sizeof(*util), 1);
1124 util->command = command_list[i].command;
1125 string_list_append(&commands.items, command_list[i].string)
1129 init_add_i_state(&s, r);
1132 * When color was asked for, use the prompt color for
1133 * highlighting, otherwise use square brackets.
1136 data.color = s.prompt_color;
1137 data.reset = s.reset_color;
1139 print_file_item_data.color = data.color;
1140 print_file_item_data.reset = data.reset;
1142 strbuf_addstr(&header, " ");
1143 strbuf_addf(&header, print_file_item_data.modified_fmt,
1144 _("staged"), _("unstaged"), _("path"));
1145 opts.list_opts.header = header.buf;
1147 if (discard_index(r->index) < 0 ||
1148 repo_read_index(r) < 0 ||
1149 repo_refresh_and_write_index(r, REFRESH_QUIET, 0, 1,
1150 NULL, NULL, NULL) < 0)
1151 warning(_("could not refresh index"));
1153 res = run_status(&s, ps, &files, &opts);
1156 struct command_item *util;
1158 i = list_and_choose(&s, &commands, &main_loop_opts);
1159 if (i < 0 || i >= commands.items.nr)
1162 util = commands.items.items[i].util;
1164 if (i == LIST_AND_CHOOSE_QUIT || (util && !util->command)) {
1165 printf(_("Bye.\n"));
1171 res = util->command(&s, ps, &files, &opts);
1174 prefix_item_list_clear(&files);
1175 strbuf_release(&print_file_item_data.buf);
1176 strbuf_release(&print_file_item_data.name);
1177 strbuf_release(&print_file_item_data.index);
1178 strbuf_release(&print_file_item_data.worktree);
1179 strbuf_release(&header);
1180 prefix_item_list_clear(&commands);
1181 clear_add_i_state(&s);