Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "builtin.h" |
| 3 | #include "exec_cmd.h" |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 4 | #include "levenshtein.h" |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 5 | #include "help.h" |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 6 | #include "common-cmds.h" |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 7 | #include "string-list.h" |
| 8 | #include "column.h" |
Jeff King | 816fb46 | 2012-06-02 14:51:42 -0400 | [diff] [blame] | 9 | #include "version.h" |
Vikrant Varma | e561810 | 2013-05-04 05:34:19 +0530 | [diff] [blame] | 10 | #include "refs.h" |
Christian Couder | 6494998 | 2008-03-07 08:46:28 +0100 | [diff] [blame] | 11 | |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 12 | void add_cmdname(struct cmdnames *cmds, const char *name, int len) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 13 | { |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 14 | struct cmdname *ent = xmalloc(sizeof(*ent) + len + 1); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 15 | |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 16 | ent->len = len; |
| 17 | memcpy(ent->name, name, len); |
| 18 | ent->name[len] = 0; |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 19 | |
| 20 | ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc); |
| 21 | cmds->names[cmds->cnt++] = ent; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 22 | } |
| 23 | |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 24 | static void clean_cmdnames(struct cmdnames *cmds) |
| 25 | { |
| 26 | int i; |
| 27 | for (i = 0; i < cmds->cnt; ++i) |
| 28 | free(cmds->names[i]); |
| 29 | free(cmds->names); |
| 30 | cmds->cnt = 0; |
| 31 | cmds->alloc = 0; |
| 32 | } |
| 33 | |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 34 | static int cmdname_compare(const void *a_, const void *b_) |
| 35 | { |
| 36 | struct cmdname *a = *(struct cmdname **)a_; |
| 37 | struct cmdname *b = *(struct cmdname **)b_; |
| 38 | return strcmp(a->name, b->name); |
| 39 | } |
| 40 | |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 41 | static void uniq(struct cmdnames *cmds) |
| 42 | { |
| 43 | int i, j; |
| 44 | |
| 45 | if (!cmds->cnt) |
| 46 | return; |
| 47 | |
Jeff King | 4a15758 | 2012-07-26 00:16:19 +0800 | [diff] [blame] | 48 | for (i = j = 1; i < cmds->cnt; i++) { |
| 49 | if (!strcmp(cmds->names[i]->name, cmds->names[j-1]->name)) |
| 50 | free(cmds->names[i]); |
| 51 | else |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 52 | cmds->names[j++] = cmds->names[i]; |
Jeff King | 4a15758 | 2012-07-26 00:16:19 +0800 | [diff] [blame] | 53 | } |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 54 | |
| 55 | cmds->cnt = j; |
| 56 | } |
| 57 | |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 58 | void exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) |
Junio C Hamano | f3fa183 | 2007-11-08 15:35:32 -0800 | [diff] [blame] | 59 | { |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 60 | int ci, cj, ei; |
| 61 | int cmp; |
| 62 | |
| 63 | ci = cj = ei = 0; |
| 64 | while (ci < cmds->cnt && ei < excludes->cnt) { |
| 65 | cmp = strcmp(cmds->names[ci]->name, excludes->names[ei]->name); |
| 66 | if (cmp < 0) |
| 67 | cmds->names[cj++] = cmds->names[ci++]; |
Junio C Hamano | 6a17f58 | 2012-07-25 11:01:12 -0700 | [diff] [blame] | 68 | else if (cmp == 0) { |
| 69 | ei++; |
| 70 | free(cmds->names[ci++]); |
| 71 | } else if (cmp > 0) |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 72 | ei++; |
| 73 | } |
| 74 | |
| 75 | while (ci < cmds->cnt) |
| 76 | cmds->names[cj++] = cmds->names[ci++]; |
| 77 | |
| 78 | cmds->cnt = cj; |
| 79 | } |
| 80 | |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 81 | static void pretty_print_string_list(struct cmdnames *cmds, |
| 82 | unsigned int colopts) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 83 | { |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 84 | struct string_list list = STRING_LIST_INIT_NODUP; |
| 85 | struct column_options copts; |
| 86 | int i; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 87 | |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 88 | for (i = 0; i < cmds->cnt; i++) |
| 89 | string_list_append(&list, cmds->names[i]->name); |
| 90 | /* |
| 91 | * always enable column display, we only consult column.* |
| 92 | * about layout strategy and stuff |
| 93 | */ |
| 94 | colopts = (colopts & ~COL_ENABLE_MASK) | COL_ENABLED; |
| 95 | memset(&copts, 0, sizeof(copts)); |
| 96 | copts.indent = " "; |
| 97 | copts.padding = 2; |
| 98 | print_columns(&list, colopts, &copts); |
| 99 | string_list_clear(&list, 0); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Johannes Sixt | cc3b7a9 | 2008-01-14 14:05:33 +0100 | [diff] [blame] | 102 | static int is_executable(const char *name) |
| 103 | { |
| 104 | struct stat st; |
| 105 | |
| 106 | if (stat(name, &st) || /* stat, not lstat */ |
| 107 | !S_ISREG(st.st_mode)) |
| 108 | return 0; |
| 109 | |
Ramsay Jones | f66450a | 2013-06-22 20:42:47 +0100 | [diff] [blame] | 110 | #if defined(GIT_WINDOWS_NATIVE) |
Frank Li | 0d30ad7 | 2009-09-16 10:20:17 +0200 | [diff] [blame] | 111 | { /* cannot trust the executable bit, peek into the file instead */ |
Johannes Sixt | cc3b7a9 | 2008-01-14 14:05:33 +0100 | [diff] [blame] | 112 | char buf[3] = { 0 }; |
| 113 | int n; |
| 114 | int fd = open(name, O_RDONLY); |
| 115 | st.st_mode &= ~S_IXUSR; |
| 116 | if (fd >= 0) { |
| 117 | n = read(fd, buf, 2); |
| 118 | if (n == 2) |
| 119 | /* DOS executables start with "MZ" */ |
| 120 | if (!strcmp(buf, "#!") || !strcmp(buf, "MZ")) |
| 121 | st.st_mode |= S_IXUSR; |
| 122 | close(fd); |
| 123 | } |
Frank Li | 0d30ad7 | 2009-09-16 10:20:17 +0200 | [diff] [blame] | 124 | } |
Johannes Sixt | cc3b7a9 | 2008-01-14 14:05:33 +0100 | [diff] [blame] | 125 | #endif |
| 126 | return st.st_mode & S_IXUSR; |
| 127 | } |
| 128 | |
Alex Riesen | e321180 | 2008-08-28 19:15:33 +0200 | [diff] [blame] | 129 | static void list_commands_in_dir(struct cmdnames *cmds, |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 130 | const char *path, |
| 131 | const char *prefix) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 132 | { |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 133 | int prefix_len; |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 134 | DIR *dir = opendir(path); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 135 | struct dirent *de; |
Johannes Schindelin | f5d600e | 2008-07-27 22:34:14 +0200 | [diff] [blame] | 136 | struct strbuf buf = STRBUF_INIT; |
| 137 | int len; |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 138 | |
Johannes Schindelin | f5d600e | 2008-07-27 22:34:14 +0200 | [diff] [blame] | 139 | if (!dir) |
Alex Riesen | e321180 | 2008-08-28 19:15:33 +0200 | [diff] [blame] | 140 | return; |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 141 | if (!prefix) |
| 142 | prefix = "git-"; |
| 143 | prefix_len = strlen(prefix); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 144 | |
Johannes Schindelin | f5d600e | 2008-07-27 22:34:14 +0200 | [diff] [blame] | 145 | strbuf_addf(&buf, "%s/", path); |
| 146 | len = buf.len; |
| 147 | |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 148 | while ((de = readdir(dir)) != NULL) { |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 149 | int entlen; |
| 150 | |
Scott R Parish | edb6ddc | 2007-10-27 01:36:50 -0700 | [diff] [blame] | 151 | if (prefixcmp(de->d_name, prefix)) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 152 | continue; |
Scott R Parish | 0966003 | 2007-10-27 01:36:52 -0700 | [diff] [blame] | 153 | |
Johannes Schindelin | f5d600e | 2008-07-27 22:34:14 +0200 | [diff] [blame] | 154 | strbuf_setlen(&buf, len); |
| 155 | strbuf_addstr(&buf, de->d_name); |
| 156 | if (!is_executable(buf.buf)) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 157 | continue; |
| 158 | |
Scott R Parish | edb6ddc | 2007-10-27 01:36:50 -0700 | [diff] [blame] | 159 | entlen = strlen(de->d_name) - prefix_len; |
Rene Scharfe | 5bb1cda | 2006-08-11 14:01:45 +0200 | [diff] [blame] | 160 | if (has_extension(de->d_name, ".exe")) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 161 | entlen -= 4; |
| 162 | |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 163 | add_cmdname(cmds, de->d_name + prefix_len, entlen); |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 164 | } |
| 165 | closedir(dir); |
Johannes Schindelin | f5d600e | 2008-07-27 22:34:14 +0200 | [diff] [blame] | 166 | strbuf_release(&buf); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Alex Riesen | e321180 | 2008-08-28 19:15:33 +0200 | [diff] [blame] | 169 | void load_command_list(const char *prefix, |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 170 | struct cmdnames *main_cmds, |
| 171 | struct cmdnames *other_cmds) |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 172 | { |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 173 | const char *env_path = getenv("PATH"); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 174 | const char *exec_path = git_exec_path(); |
| 175 | |
Alex Riesen | 1f08e5c | 2008-08-28 19:19:07 +0200 | [diff] [blame] | 176 | if (exec_path) { |
Alex Riesen | e321180 | 2008-08-28 19:15:33 +0200 | [diff] [blame] | 177 | list_commands_in_dir(main_cmds, exec_path, prefix); |
Alex Riesen | 1f08e5c | 2008-08-28 19:19:07 +0200 | [diff] [blame] | 178 | qsort(main_cmds->names, main_cmds->cnt, |
| 179 | sizeof(*main_cmds->names), cmdname_compare); |
| 180 | uniq(main_cmds); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Alex Riesen | 1f08e5c | 2008-08-28 19:19:07 +0200 | [diff] [blame] | 183 | if (env_path) { |
| 184 | char *paths, *path, *colon; |
| 185 | path = paths = xstrdup(env_path); |
| 186 | while (1) { |
| 187 | if ((colon = strchr(path, PATH_SEP))) |
| 188 | *colon = 0; |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 189 | if (!exec_path || strcmp(path, exec_path)) |
| 190 | list_commands_in_dir(other_cmds, path, prefix); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 191 | |
Alex Riesen | 1f08e5c | 2008-08-28 19:19:07 +0200 | [diff] [blame] | 192 | if (!colon) |
| 193 | break; |
| 194 | path = colon + 1; |
| 195 | } |
| 196 | free(paths); |
| 197 | |
| 198 | qsort(other_cmds->names, other_cmds->cnt, |
| 199 | sizeof(*other_cmds->names), cmdname_compare); |
| 200 | uniq(other_cmds); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 201 | } |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 202 | exclude_cmds(other_cmds, main_cmds); |
Jeff King | 2156435 | 2008-02-24 17:17:37 -0500 | [diff] [blame] | 203 | } |
| 204 | |
Junio C Hamano | f4ed0af | 2012-05-03 15:13:31 -0700 | [diff] [blame] | 205 | void list_commands(unsigned int colopts, |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 206 | struct cmdnames *main_cmds, struct cmdnames *other_cmds) |
Jeff King | 2156435 | 2008-02-24 17:17:37 -0500 | [diff] [blame] | 207 | { |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 208 | if (main_cmds->cnt) { |
Alex Riesen | 61c5d43 | 2008-08-28 19:19:42 +0200 | [diff] [blame] | 209 | const char *exec_path = git_exec_path(); |
Nguyễn Thái Ngọc Duy | 4470ef9 | 2012-04-25 18:21:53 +0700 | [diff] [blame] | 210 | printf_ln(_("available git commands in '%s'"), exec_path); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 211 | putchar('\n'); |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 212 | pretty_print_string_list(main_cmds, colopts); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 213 | putchar('\n'); |
| 214 | } |
| 215 | |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 216 | if (other_cmds->cnt) { |
Nguyễn Thái Ngọc Duy | 4470ef9 | 2012-04-25 18:21:53 +0700 | [diff] [blame] | 217 | printf_ln(_("git commands available from elsewhere on your $PATH")); |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 218 | putchar('\n'); |
Nguyễn Thái Ngọc Duy | dbfae68 | 2012-04-13 17:54:37 +0700 | [diff] [blame] | 219 | pretty_print_string_list(other_cmds, colopts); |
Scott R Parish | 1eb0569 | 2007-10-28 20:30:52 -0700 | [diff] [blame] | 220 | putchar('\n'); |
| 221 | } |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Junio C Hamano | 1542d4c | 2013-01-18 22:35:04 -0800 | [diff] [blame] | 224 | void list_common_cmds_help(void) |
| 225 | { |
| 226 | int i, longest = 0; |
| 227 | |
| 228 | for (i = 0; i < ARRAY_SIZE(common_cmds); i++) { |
| 229 | if (longest < strlen(common_cmds[i].name)) |
| 230 | longest = strlen(common_cmds[i].name); |
| 231 | } |
| 232 | |
| 233 | puts(_("The most commonly used git commands are:")); |
| 234 | for (i = 0; i < ARRAY_SIZE(common_cmds); i++) { |
| 235 | printf(" %s ", common_cmds[i].name); |
| 236 | mput_char(' ', longest - strlen(common_cmds[i].name)); |
| 237 | puts(_(common_cmds[i].help)); |
| 238 | } |
| 239 | } |
| 240 | |
Miklos Vajna | 940208a | 2008-07-30 01:16:58 +0200 | [diff] [blame] | 241 | int is_in_cmdlist(struct cmdnames *c, const char *s) |
Jeff King | 2156435 | 2008-02-24 17:17:37 -0500 | [diff] [blame] | 242 | { |
| 243 | int i; |
| 244 | for (i = 0; i < c->cnt; i++) |
| 245 | if (!strcmp(s, c->names[i]->name)) |
| 246 | return 1; |
| 247 | return 0; |
| 248 | } |
| 249 | |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 250 | static int autocorrect; |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 251 | static struct cmdnames aliases; |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 252 | |
| 253 | static int git_unknown_cmd_config(const char *var, const char *value, void *cb) |
Ramsay Allan Jones | 822a7d5 | 2006-07-30 22:42:25 +0100 | [diff] [blame] | 254 | { |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 255 | if (!strcmp(var, "help.autocorrect")) |
| 256 | autocorrect = git_config_int(var,value); |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 257 | /* Also use aliases for command lookup */ |
| 258 | if (!prefixcmp(var, "alias.")) |
| 259 | add_cmdname(&aliases, var + 6, strlen(var + 6)); |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 260 | |
| 261 | return git_default_config(var, value, cb); |
| 262 | } |
| 263 | |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 264 | static int levenshtein_compare(const void *p1, const void *p2) |
Ramsay Allan Jones | 822a7d5 | 2006-07-30 22:42:25 +0100 | [diff] [blame] | 265 | { |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 266 | const struct cmdname *const *c1 = p1, *const *c2 = p2; |
| 267 | const char *s1 = (*c1)->name, *s2 = (*c2)->name; |
| 268 | int l1 = (*c1)->len; |
| 269 | int l2 = (*c2)->len; |
| 270 | return l1 != l2 ? l1 - l2 : strcmp(s1, s2); |
| 271 | } |
| 272 | |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 273 | static void add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) |
| 274 | { |
| 275 | int i; |
| 276 | ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc); |
| 277 | |
| 278 | for (i = 0; i < old->cnt; i++) |
| 279 | cmds->names[cmds->cnt++] = old->names[i]; |
| 280 | free(old->names); |
| 281 | old->cnt = 0; |
| 282 | old->names = NULL; |
| 283 | } |
| 284 | |
Johannes Sixt | 06500a0 | 2009-12-15 08:57:18 +0100 | [diff] [blame] | 285 | /* An empirically derived magic number */ |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 286 | #define SIMILARITY_FLOOR 7 |
| 287 | #define SIMILAR_ENOUGH(x) ((x) < SIMILARITY_FLOOR) |
Johannes Sixt | 06500a0 | 2009-12-15 08:57:18 +0100 | [diff] [blame] | 288 | |
Michael Schubert | 823e0de | 2011-07-08 12:08:49 +0200 | [diff] [blame] | 289 | static const char bad_interpreter_advice[] = |
| 290 | N_("'%s' appears to be a git command, but we were not\n" |
| 291 | "able to execute it. Maybe git-%s is broken?"); |
| 292 | |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 293 | const char *help_unknown_cmd(const char *cmd) |
| 294 | { |
| 295 | int i, n, best_similarity = 0; |
| 296 | struct cmdnames main_cmds, other_cmds; |
| 297 | |
| 298 | memset(&main_cmds, 0, sizeof(main_cmds)); |
Johan Herland | 0b74f5d | 2009-08-11 12:10:21 +0200 | [diff] [blame] | 299 | memset(&other_cmds, 0, sizeof(other_cmds)); |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 300 | memset(&aliases, 0, sizeof(aliases)); |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 301 | |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 302 | git_config(git_unknown_cmd_config, NULL); |
| 303 | |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 304 | load_command_list("git-", &main_cmds, &other_cmds); |
| 305 | |
Pieter de Bie | 746c221 | 2008-09-10 17:54:28 +0200 | [diff] [blame] | 306 | add_cmd_list(&main_cmds, &aliases); |
| 307 | add_cmd_list(&main_cmds, &other_cmds); |
| 308 | qsort(main_cmds.names, main_cmds.cnt, |
| 309 | sizeof(main_cmds.names), cmdname_compare); |
| 310 | uniq(&main_cmds); |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 311 | |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 312 | /* This abuses cmdname->len for levenshtein distance */ |
| 313 | for (i = 0, n = 0; i < main_cmds.cnt; i++) { |
| 314 | int cmp = 0; /* avoid compiler stupidity */ |
| 315 | const char *candidate = main_cmds.names[i]->name; |
| 316 | |
Michael Schubert | 823e0de | 2011-07-08 12:08:49 +0200 | [diff] [blame] | 317 | /* |
| 318 | * An exact match means we have the command, but |
| 319 | * for some reason exec'ing it gave us ENOENT; probably |
| 320 | * it's a bad interpreter in the #! line. |
| 321 | */ |
| 322 | if (!strcmp(candidate, cmd)) |
| 323 | die(_(bad_interpreter_advice), cmd, cmd); |
| 324 | |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 325 | /* Does the candidate appear in common_cmds list? */ |
| 326 | while (n < ARRAY_SIZE(common_cmds) && |
| 327 | (cmp = strcmp(common_cmds[n].name, candidate)) < 0) |
| 328 | n++; |
| 329 | if ((n < ARRAY_SIZE(common_cmds)) && !cmp) { |
| 330 | /* Yes, this is one of the common commands */ |
| 331 | n++; /* use the entry from common_cmds[] */ |
| 332 | if (!prefixcmp(candidate, cmd)) { |
| 333 | /* Give prefix match a very good score */ |
| 334 | main_cmds.names[i]->len = 0; |
| 335 | continue; |
| 336 | } |
| 337 | } |
| 338 | |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 339 | main_cmds.names[i]->len = |
Matthieu Moy | c41494f | 2012-05-27 18:02:58 +0200 | [diff] [blame] | 340 | levenshtein(cmd, candidate, 0, 2, 1, 3) + 1; |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 341 | } |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 342 | |
| 343 | qsort(main_cmds.names, main_cmds.cnt, |
| 344 | sizeof(*main_cmds.names), levenshtein_compare); |
| 345 | |
| 346 | if (!main_cmds.cnt) |
Nguyễn Thái Ngọc Duy | 9665627 | 2012-04-23 19:30:24 +0700 | [diff] [blame] | 347 | die(_("Uh oh. Your system reports no Git commands at all.")); |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 348 | |
Erik Faye-Lund | 6612b9e | 2010-11-26 17:00:39 +0100 | [diff] [blame] | 349 | /* skip and count prefix matches */ |
| 350 | for (n = 0; n < main_cmds.cnt && !main_cmds.names[n]->len; n++) |
| 351 | ; /* still counting */ |
| 352 | |
| 353 | if (main_cmds.cnt <= n) { |
| 354 | /* prefix matches with everything? that is too ambiguous */ |
| 355 | best_similarity = SIMILARITY_FLOOR + 1; |
| 356 | } else { |
| 357 | /* count all the most similar ones */ |
| 358 | for (best_similarity = main_cmds.names[n++]->len; |
| 359 | (n < main_cmds.cnt && |
| 360 | best_similarity == main_cmds.names[n]->len); |
| 361 | n++) |
| 362 | ; /* still counting */ |
| 363 | } |
Johannes Sixt | 06500a0 | 2009-12-15 08:57:18 +0100 | [diff] [blame] | 364 | if (autocorrect && n == 1 && SIMILAR_ENOUGH(best_similarity)) { |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 365 | const char *assumed = main_cmds.names[0]->name; |
| 366 | main_cmds.names[0] = NULL; |
| 367 | clean_cmdnames(&main_cmds); |
Nguyễn Thái Ngọc Duy | 9665627 | 2012-04-23 19:30:24 +0700 | [diff] [blame] | 368 | fprintf_ln(stderr, |
| 369 | _("WARNING: You called a Git command named '%s', " |
| 370 | "which does not exist.\n" |
| 371 | "Continuing under the assumption that you meant '%s'"), |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 372 | cmd, assumed); |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 373 | if (autocorrect > 0) { |
Nguyễn Thái Ngọc Duy | 9665627 | 2012-04-23 19:30:24 +0700 | [diff] [blame] | 374 | fprintf_ln(stderr, _("in %0.1f seconds automatically..."), |
Alex Riesen | f0e9071 | 2008-08-31 15:54:58 +0200 | [diff] [blame] | 375 | (float)autocorrect/10.0); |
| 376 | poll(NULL, 0, autocorrect * 100); |
| 377 | } |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 378 | return assumed; |
| 379 | } |
| 380 | |
Nguyễn Thái Ngọc Duy | 9665627 | 2012-04-23 19:30:24 +0700 | [diff] [blame] | 381 | fprintf_ln(stderr, _("git: '%s' is not a git command. See 'git --help'."), cmd); |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 382 | |
Johannes Sixt | 06500a0 | 2009-12-15 08:57:18 +0100 | [diff] [blame] | 383 | if (SIMILAR_ENOUGH(best_similarity)) { |
Nguyễn Thái Ngọc Duy | 9665627 | 2012-04-23 19:30:24 +0700 | [diff] [blame] | 384 | fprintf_ln(stderr, |
| 385 | Q_("\nDid you mean this?", |
| 386 | "\nDid you mean one of these?", |
| 387 | n)); |
Johannes Schindelin | 8af84da | 2008-08-31 15:50:23 +0200 | [diff] [blame] | 388 | |
| 389 | for (i = 0; i < n; i++) |
| 390 | fprintf(stderr, "\t%s\n", main_cmds.names[i]->name); |
| 391 | } |
| 392 | |
Ramsay Allan Jones | 822a7d5 | 2006-07-30 22:42:25 +0100 | [diff] [blame] | 393 | exit(1); |
| 394 | } |
| 395 | |
Linus Torvalds | a633fca | 2006-07-28 22:44:25 -0700 | [diff] [blame] | 396 | int cmd_version(int argc, const char **argv, const char *prefix) |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 397 | { |
David Aguilar | f2de0b9 | 2013-04-16 13:33:25 -0700 | [diff] [blame] | 398 | /* |
| 399 | * The format of this string should be kept stable for compatibility |
| 400 | * with external projects that rely on the output of "git version". |
| 401 | */ |
Linus Torvalds | 70827b1 | 2006-04-21 10:27:34 -0700 | [diff] [blame] | 402 | printf("git version %s\n", git_version_string); |
| 403 | return 0; |
| 404 | } |
Vikrant Varma | e561810 | 2013-05-04 05:34:19 +0530 | [diff] [blame] | 405 | |
| 406 | struct similar_ref_cb { |
| 407 | const char *base_ref; |
| 408 | struct string_list *similar_refs; |
| 409 | }; |
| 410 | |
| 411 | static int append_similar_ref(const char *refname, const unsigned char *sha1, |
| 412 | int flags, void *cb_data) |
| 413 | { |
| 414 | struct similar_ref_cb *cb = (struct similar_ref_cb *)(cb_data); |
| 415 | char *branch = strrchr(refname, '/') + 1; |
| 416 | /* A remote branch of the same name is deemed similar */ |
| 417 | if (!prefixcmp(refname, "refs/remotes/") && |
| 418 | !strcmp(branch, cb->base_ref)) |
| 419 | string_list_append(cb->similar_refs, |
| 420 | refname + strlen("refs/remotes/")); |
| 421 | return 0; |
| 422 | } |
| 423 | |
| 424 | static struct string_list guess_refs(const char *ref) |
| 425 | { |
| 426 | struct similar_ref_cb ref_cb; |
| 427 | struct string_list similar_refs = STRING_LIST_INIT_NODUP; |
| 428 | |
| 429 | ref_cb.base_ref = ref; |
| 430 | ref_cb.similar_refs = &similar_refs; |
| 431 | for_each_ref(append_similar_ref, &ref_cb); |
| 432 | return similar_refs; |
| 433 | } |
| 434 | |
| 435 | void help_unknown_ref(const char *ref, const char *cmd, const char *error) |
| 436 | { |
| 437 | int i; |
| 438 | struct string_list suggested_refs = guess_refs(ref); |
| 439 | |
| 440 | fprintf_ln(stderr, _("%s: %s - %s"), cmd, ref, error); |
| 441 | |
| 442 | if (suggested_refs.nr > 0) { |
| 443 | fprintf_ln(stderr, |
| 444 | Q_("\nDid you mean this?", |
| 445 | "\nDid you mean one of these?", |
| 446 | suggested_refs.nr)); |
| 447 | for (i = 0; i < suggested_refs.nr; i++) |
| 448 | fprintf(stderr, "\t%s\n", suggested_refs.items[i].string); |
| 449 | } |
| 450 | |
| 451 | string_list_clear(&suggested_refs, 0); |
| 452 | exit(1); |
| 453 | } |