4 #include "levenshtein.h"
6 #include "common-cmds.h"
7 #include "string-list.h"
11 void add_cmdname(struct cmdnames
*cmds
, const char *name
, int len
)
13 struct cmdname
*ent
= xmalloc(sizeof(*ent
) + len
+ 1);
16 memcpy(ent
->name
, name
, len
);
19 ALLOC_GROW(cmds
->names
, cmds
->cnt
+ 1, cmds
->alloc
);
20 cmds
->names
[cmds
->cnt
++] = ent
;
23 static void clean_cmdnames(struct cmdnames
*cmds
)
26 for (i
= 0; i
< cmds
->cnt
; ++i
)
33 static int cmdname_compare(const void *a_
, const void *b_
)
35 struct cmdname
*a
= *(struct cmdname
**)a_
;
36 struct cmdname
*b
= *(struct cmdname
**)b_
;
37 return strcmp(a
->name
, b
->name
);
40 static void uniq(struct cmdnames
*cmds
)
47 for (i
= j
= 1; i
< cmds
->cnt
; i
++)
48 if (strcmp(cmds
->names
[i
]->name
, cmds
->names
[i
-1]->name
))
49 cmds
->names
[j
++] = cmds
->names
[i
];
54 void exclude_cmds(struct cmdnames
*cmds
, struct cmdnames
*excludes
)
60 while (ci
< cmds
->cnt
&& ei
< excludes
->cnt
) {
61 cmp
= strcmp(cmds
->names
[ci
]->name
, excludes
->names
[ei
]->name
);
63 cmds
->names
[cj
++] = cmds
->names
[ci
++];
70 while (ci
< cmds
->cnt
)
71 cmds
->names
[cj
++] = cmds
->names
[ci
++];
76 static void pretty_print_string_list(struct cmdnames
*cmds
,
79 struct string_list list
= STRING_LIST_INIT_NODUP
;
80 struct column_options copts
;
83 for (i
= 0; i
< cmds
->cnt
; i
++)
84 string_list_append(&list
, cmds
->names
[i
]->name
);
86 * always enable column display, we only consult column.*
87 * about layout strategy and stuff
89 colopts
= (colopts
& ~COL_ENABLE_MASK
) | COL_ENABLED
;
90 memset(&copts
, 0, sizeof(copts
));
93 print_columns(&list
, colopts
, &copts
);
94 string_list_clear(&list
, 0);
97 static int is_executable(const char *name
)
101 if (stat(name
, &st
) || /* stat, not lstat */
102 !S_ISREG(st
.st_mode
))
105 #if defined(WIN32) || defined(__CYGWIN__)
106 #if defined(__CYGWIN__)
107 if ((st
.st_mode
& S_IXUSR
) == 0)
109 { /* cannot trust the executable bit, peek into the file instead */
112 int fd
= open(name
, O_RDONLY
);
113 st
.st_mode
&= ~S_IXUSR
;
115 n
= read(fd
, buf
, 2);
117 /* DOS executables start with "MZ" */
118 if (!strcmp(buf
, "#!") || !strcmp(buf
, "MZ"))
119 st
.st_mode
|= S_IXUSR
;
124 return st
.st_mode
& S_IXUSR
;
127 static void list_commands_in_dir(struct cmdnames
*cmds
,
132 DIR *dir
= opendir(path
);
134 struct strbuf buf
= STRBUF_INIT
;
141 prefix_len
= strlen(prefix
);
143 strbuf_addf(&buf
, "%s/", path
);
146 while ((de
= readdir(dir
)) != NULL
) {
149 if (prefixcmp(de
->d_name
, prefix
))
152 strbuf_setlen(&buf
, len
);
153 strbuf_addstr(&buf
, de
->d_name
);
154 if (!is_executable(buf
.buf
))
157 entlen
= strlen(de
->d_name
) - prefix_len
;
158 if (has_extension(de
->d_name
, ".exe"))
161 add_cmdname(cmds
, de
->d_name
+ prefix_len
, entlen
);
164 strbuf_release(&buf
);
167 void load_command_list(const char *prefix
,
168 struct cmdnames
*main_cmds
,
169 struct cmdnames
*other_cmds
)
171 const char *env_path
= getenv("PATH");
172 const char *exec_path
= git_exec_path();
175 list_commands_in_dir(main_cmds
, exec_path
, prefix
);
176 qsort(main_cmds
->names
, main_cmds
->cnt
,
177 sizeof(*main_cmds
->names
), cmdname_compare
);
182 char *paths
, *path
, *colon
;
183 path
= paths
= xstrdup(env_path
);
185 if ((colon
= strchr(path
, PATH_SEP
)))
187 if (!exec_path
|| strcmp(path
, exec_path
))
188 list_commands_in_dir(other_cmds
, path
, prefix
);
196 qsort(other_cmds
->names
, other_cmds
->cnt
,
197 sizeof(*other_cmds
->names
), cmdname_compare
);
200 exclude_cmds(other_cmds
, main_cmds
);
203 void list_commands(unsigned int colopts
,
204 struct cmdnames
*main_cmds
, struct cmdnames
*other_cmds
)
206 if (main_cmds
->cnt
) {
207 const char *exec_path
= git_exec_path();
208 printf_ln(_("available git commands in '%s'"), exec_path
);
210 pretty_print_string_list(main_cmds
, colopts
);
214 if (other_cmds
->cnt
) {
215 printf_ln(_("git commands available from elsewhere on your $PATH"));
217 pretty_print_string_list(other_cmds
, colopts
);
222 int is_in_cmdlist(struct cmdnames
*c
, const char *s
)
225 for (i
= 0; i
< c
->cnt
; i
++)
226 if (!strcmp(s
, c
->names
[i
]->name
))
231 static int autocorrect
;
232 static struct cmdnames aliases
;
234 static int git_unknown_cmd_config(const char *var
, const char *value
, void *cb
)
236 if (!strcmp(var
, "help.autocorrect"))
237 autocorrect
= git_config_int(var
,value
);
238 /* Also use aliases for command lookup */
239 if (!prefixcmp(var
, "alias."))
240 add_cmdname(&aliases
, var
+ 6, strlen(var
+ 6));
242 return git_default_config(var
, value
, cb
);
245 static int levenshtein_compare(const void *p1
, const void *p2
)
247 const struct cmdname
*const *c1
= p1
, *const *c2
= p2
;
248 const char *s1
= (*c1
)->name
, *s2
= (*c2
)->name
;
251 return l1
!= l2
? l1
- l2
: strcmp(s1
, s2
);
254 static void add_cmd_list(struct cmdnames
*cmds
, struct cmdnames
*old
)
257 ALLOC_GROW(cmds
->names
, cmds
->cnt
+ old
->cnt
, cmds
->alloc
);
259 for (i
= 0; i
< old
->cnt
; i
++)
260 cmds
->names
[cmds
->cnt
++] = old
->names
[i
];
266 /* An empirically derived magic number */
267 #define SIMILARITY_FLOOR 7
268 #define SIMILAR_ENOUGH(x) ((x) < SIMILARITY_FLOOR)
270 static const char bad_interpreter_advice
[] =
271 N_("'%s' appears to be a git command, but we were not\n"
272 "able to execute it. Maybe git-%s is broken?");
274 const char *help_unknown_cmd(const char *cmd
)
276 int i
, n
, best_similarity
= 0;
277 struct cmdnames main_cmds
, other_cmds
;
279 memset(&main_cmds
, 0, sizeof(main_cmds
));
280 memset(&other_cmds
, 0, sizeof(other_cmds
));
281 memset(&aliases
, 0, sizeof(aliases
));
283 git_config(git_unknown_cmd_config
, NULL
);
285 load_command_list("git-", &main_cmds
, &other_cmds
);
287 add_cmd_list(&main_cmds
, &aliases
);
288 add_cmd_list(&main_cmds
, &other_cmds
);
289 qsort(main_cmds
.names
, main_cmds
.cnt
,
290 sizeof(main_cmds
.names
), cmdname_compare
);
293 /* This abuses cmdname->len for levenshtein distance */
294 for (i
= 0, n
= 0; i
< main_cmds
.cnt
; i
++) {
295 int cmp
= 0; /* avoid compiler stupidity */
296 const char *candidate
= main_cmds
.names
[i
]->name
;
299 * An exact match means we have the command, but
300 * for some reason exec'ing it gave us ENOENT; probably
301 * it's a bad interpreter in the #! line.
303 if (!strcmp(candidate
, cmd
))
304 die(_(bad_interpreter_advice
), cmd
, cmd
);
306 /* Does the candidate appear in common_cmds list? */
307 while (n
< ARRAY_SIZE(common_cmds
) &&
308 (cmp
= strcmp(common_cmds
[n
].name
, candidate
)) < 0)
310 if ((n
< ARRAY_SIZE(common_cmds
)) && !cmp
) {
311 /* Yes, this is one of the common commands */
312 n
++; /* use the entry from common_cmds[] */
313 if (!prefixcmp(candidate
, cmd
)) {
314 /* Give prefix match a very good score */
315 main_cmds
.names
[i
]->len
= 0;
320 main_cmds
.names
[i
]->len
=
321 levenshtein(cmd
, candidate
, 0, 2, 1, 3) + 1;
324 qsort(main_cmds
.names
, main_cmds
.cnt
,
325 sizeof(*main_cmds
.names
), levenshtein_compare
);
328 die(_("Uh oh. Your system reports no Git commands at all."));
330 /* skip and count prefix matches */
331 for (n
= 0; n
< main_cmds
.cnt
&& !main_cmds
.names
[n
]->len
; n
++)
332 ; /* still counting */
334 if (main_cmds
.cnt
<= n
) {
335 /* prefix matches with everything? that is too ambiguous */
336 best_similarity
= SIMILARITY_FLOOR
+ 1;
338 /* count all the most similar ones */
339 for (best_similarity
= main_cmds
.names
[n
++]->len
;
340 (n
< main_cmds
.cnt
&&
341 best_similarity
== main_cmds
.names
[n
]->len
);
343 ; /* still counting */
345 if (autocorrect
&& n
== 1 && SIMILAR_ENOUGH(best_similarity
)) {
346 const char *assumed
= main_cmds
.names
[0]->name
;
347 main_cmds
.names
[0] = NULL
;
348 clean_cmdnames(&main_cmds
);
350 _("WARNING: You called a Git command named '%s', "
351 "which does not exist.\n"
352 "Continuing under the assumption that you meant '%s'"),
354 if (autocorrect
> 0) {
355 fprintf_ln(stderr
, _("in %0.1f seconds automatically..."),
356 (float)autocorrect
/10.0);
357 poll(NULL
, 0, autocorrect
* 100);
362 fprintf_ln(stderr
, _("git: '%s' is not a git command. See 'git --help'."), cmd
);
364 if (SIMILAR_ENOUGH(best_similarity
)) {
366 Q_("\nDid you mean this?",
367 "\nDid you mean one of these?",
370 for (i
= 0; i
< n
; i
++)
371 fprintf(stderr
, "\t%s\n", main_cmds
.names
[i
]->name
);
377 int cmd_version(int argc
, const char **argv
, const char *prefix
)
379 printf("git version %s\n", git_version_string
);