4 #include "run-command.h"
5 #include "levenshtein.h"
7 #include "common-cmds.h"
8 #include "string-list.h"
12 #include "parse-options.h"
14 void add_cmdname(struct cmdnames
*cmds
, const char *name
, int len
)
17 FLEX_ALLOC_MEM(ent
, name
, name
, len
);
20 ALLOC_GROW(cmds
->names
, cmds
->cnt
+ 1, cmds
->alloc
);
21 cmds
->names
[cmds
->cnt
++] = ent
;
24 static void clean_cmdnames(struct cmdnames
*cmds
)
27 for (i
= 0; i
< cmds
->cnt
; ++i
)
34 static int cmdname_compare(const void *a_
, const void *b_
)
36 struct cmdname
*a
= *(struct cmdname
**)a_
;
37 struct cmdname
*b
= *(struct cmdname
**)b_
;
38 return strcmp(a
->name
, b
->name
);
41 static void uniq(struct cmdnames
*cmds
)
48 for (i
= j
= 1; i
< cmds
->cnt
; i
++) {
49 if (!strcmp(cmds
->names
[i
]->name
, cmds
->names
[j
-1]->name
))
52 cmds
->names
[j
++] = cmds
->names
[i
];
58 void exclude_cmds(struct cmdnames
*cmds
, struct cmdnames
*excludes
)
64 while (ci
< cmds
->cnt
&& ei
< excludes
->cnt
) {
65 cmp
= strcmp(cmds
->names
[ci
]->name
, excludes
->names
[ei
]->name
);
67 cmds
->names
[cj
++] = cmds
->names
[ci
++];
70 free(cmds
->names
[ci
++]);
75 while (ci
< cmds
->cnt
)
76 cmds
->names
[cj
++] = cmds
->names
[ci
++];
81 static void pretty_print_cmdnames(struct cmdnames
*cmds
, unsigned int colopts
)
83 struct string_list list
= STRING_LIST_INIT_NODUP
;
84 struct column_options copts
;
87 for (i
= 0; i
< cmds
->cnt
; i
++)
88 string_list_append(&list
, cmds
->names
[i
]->name
);
90 * always enable column display, we only consult column.*
91 * about layout strategy and stuff
93 colopts
= (colopts
& ~COL_ENABLE_MASK
) | COL_ENABLED
;
94 memset(&copts
, 0, sizeof(copts
));
97 print_columns(&list
, colopts
, &copts
);
98 string_list_clear(&list
, 0);
101 static void list_commands_in_dir(struct cmdnames
*cmds
,
105 DIR *dir
= opendir(path
);
107 struct strbuf buf
= STRBUF_INIT
;
115 strbuf_addf(&buf
, "%s/", path
);
118 while ((de
= readdir(dir
)) != NULL
) {
122 if (!skip_prefix(de
->d_name
, prefix
, &ent
))
125 strbuf_setlen(&buf
, len
);
126 strbuf_addstr(&buf
, de
->d_name
);
127 if (!is_executable(buf
.buf
))
130 entlen
= strlen(ent
);
131 strip_suffix(ent
, ".exe", &entlen
);
133 add_cmdname(cmds
, ent
, entlen
);
136 strbuf_release(&buf
);
139 void load_command_list(const char *prefix
,
140 struct cmdnames
*main_cmds
,
141 struct cmdnames
*other_cmds
)
143 const char *env_path
= getenv("PATH");
144 const char *exec_path
= git_exec_path();
147 list_commands_in_dir(main_cmds
, exec_path
, prefix
);
148 QSORT(main_cmds
->names
, main_cmds
->cnt
, cmdname_compare
);
153 char *paths
, *path
, *colon
;
154 path
= paths
= xstrdup(env_path
);
156 if ((colon
= strchr(path
, PATH_SEP
)))
158 if (!exec_path
|| strcmp(path
, exec_path
))
159 list_commands_in_dir(other_cmds
, path
, prefix
);
167 QSORT(other_cmds
->names
, other_cmds
->cnt
, cmdname_compare
);
170 exclude_cmds(other_cmds
, main_cmds
);
173 void list_commands(unsigned int colopts
,
174 struct cmdnames
*main_cmds
, struct cmdnames
*other_cmds
)
176 if (main_cmds
->cnt
) {
177 const char *exec_path
= git_exec_path();
178 printf_ln(_("available git commands in '%s'"), exec_path
);
180 pretty_print_cmdnames(main_cmds
, colopts
);
184 if (other_cmds
->cnt
) {
185 printf_ln(_("git commands available from elsewhere on your $PATH"));
187 pretty_print_cmdnames(other_cmds
, colopts
);
192 static int cmd_group_cmp(const void *elem1
, const void *elem2
)
194 const struct cmdname_help
*e1
= elem1
;
195 const struct cmdname_help
*e2
= elem2
;
197 if (e1
->group
< e2
->group
)
199 if (e1
->group
> e2
->group
)
201 return strcmp(e1
->name
, e2
->name
);
204 void list_common_cmds_help(void)
207 int current_grp
= -1;
209 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
210 if (longest
< strlen(common_cmds
[i
].name
))
211 longest
= strlen(common_cmds
[i
].name
);
214 QSORT(common_cmds
, ARRAY_SIZE(common_cmds
), cmd_group_cmp
);
216 puts(_("These are common Git commands used in various situations:"));
218 for (i
= 0; i
< ARRAY_SIZE(common_cmds
); i
++) {
219 if (common_cmds
[i
].group
!= current_grp
) {
220 printf("\n%s\n", _(common_cmd_groups
[common_cmds
[i
].group
]));
221 current_grp
= common_cmds
[i
].group
;
224 printf(" %s ", common_cmds
[i
].name
);
225 mput_char(' ', longest
- strlen(common_cmds
[i
].name
));
226 puts(_(common_cmds
[i
].help
));
230 int is_in_cmdlist(struct cmdnames
*c
, const char *s
)
233 for (i
= 0; i
< c
->cnt
; i
++)
234 if (!strcmp(s
, c
->names
[i
]->name
))
239 static int autocorrect
;
240 static struct cmdnames aliases
;
242 static int git_unknown_cmd_config(const char *var
, const char *value
, void *cb
)
246 if (!strcmp(var
, "help.autocorrect"))
247 autocorrect
= git_config_int(var
,value
);
248 /* Also use aliases for command lookup */
249 if (skip_prefix(var
, "alias.", &p
))
250 add_cmdname(&aliases
, p
, strlen(p
));
252 return git_default_config(var
, value
, cb
);
255 static int levenshtein_compare(const void *p1
, const void *p2
)
257 const struct cmdname
*const *c1
= p1
, *const *c2
= p2
;
258 const char *s1
= (*c1
)->name
, *s2
= (*c2
)->name
;
261 return l1
!= l2
? l1
- l2
: strcmp(s1
, s2
);
264 static void add_cmd_list(struct cmdnames
*cmds
, struct cmdnames
*old
)
267 ALLOC_GROW(cmds
->names
, cmds
->cnt
+ old
->cnt
, cmds
->alloc
);
269 for (i
= 0; i
< old
->cnt
; i
++)
270 cmds
->names
[cmds
->cnt
++] = old
->names
[i
];
276 /* An empirically derived magic number */
277 #define SIMILARITY_FLOOR 7
278 #define SIMILAR_ENOUGH(x) ((x) < SIMILARITY_FLOOR)
280 static const char bad_interpreter_advice
[] =
281 N_("'%s' appears to be a git command, but we were not\n"
282 "able to execute it. Maybe git-%s is broken?");
284 const char *help_unknown_cmd(const char *cmd
)
286 int i
, n
, best_similarity
= 0;
287 struct cmdnames main_cmds
, other_cmds
;
289 memset(&main_cmds
, 0, sizeof(main_cmds
));
290 memset(&other_cmds
, 0, sizeof(other_cmds
));
291 memset(&aliases
, 0, sizeof(aliases
));
293 git_config(git_unknown_cmd_config
, NULL
);
295 load_command_list("git-", &main_cmds
, &other_cmds
);
297 add_cmd_list(&main_cmds
, &aliases
);
298 add_cmd_list(&main_cmds
, &other_cmds
);
299 QSORT(main_cmds
.names
, main_cmds
.cnt
, cmdname_compare
);
302 /* This abuses cmdname->len for levenshtein distance */
303 for (i
= 0, n
= 0; i
< main_cmds
.cnt
; i
++) {
304 int cmp
= 0; /* avoid compiler stupidity */
305 const char *candidate
= main_cmds
.names
[i
]->name
;
308 * An exact match means we have the command, but
309 * for some reason exec'ing it gave us ENOENT; probably
310 * it's a bad interpreter in the #! line.
312 if (!strcmp(candidate
, cmd
))
313 die(_(bad_interpreter_advice
), cmd
, cmd
);
315 /* Does the candidate appear in common_cmds list? */
316 while (n
< ARRAY_SIZE(common_cmds
) &&
317 (cmp
= strcmp(common_cmds
[n
].name
, candidate
)) < 0)
319 if ((n
< ARRAY_SIZE(common_cmds
)) && !cmp
) {
320 /* Yes, this is one of the common commands */
321 n
++; /* use the entry from common_cmds[] */
322 if (starts_with(candidate
, cmd
)) {
323 /* Give prefix match a very good score */
324 main_cmds
.names
[i
]->len
= 0;
329 main_cmds
.names
[i
]->len
=
330 levenshtein(cmd
, candidate
, 0, 2, 1, 3) + 1;
333 QSORT(main_cmds
.names
, main_cmds
.cnt
, levenshtein_compare
);
336 die(_("Uh oh. Your system reports no Git commands at all."));
338 /* skip and count prefix matches */
339 for (n
= 0; n
< main_cmds
.cnt
&& !main_cmds
.names
[n
]->len
; n
++)
340 ; /* still counting */
342 if (main_cmds
.cnt
<= n
) {
343 /* prefix matches with everything? that is too ambiguous */
344 best_similarity
= SIMILARITY_FLOOR
+ 1;
346 /* count all the most similar ones */
347 for (best_similarity
= main_cmds
.names
[n
++]->len
;
348 (n
< main_cmds
.cnt
&&
349 best_similarity
== main_cmds
.names
[n
]->len
);
351 ; /* still counting */
353 if (autocorrect
&& n
== 1 && SIMILAR_ENOUGH(best_similarity
)) {
354 const char *assumed
= main_cmds
.names
[0]->name
;
355 main_cmds
.names
[0] = NULL
;
356 clean_cmdnames(&main_cmds
);
358 _("WARNING: You called a Git command named '%s', "
359 "which does not exist.\n"
360 "Continuing under the assumption that you meant '%s'"),
362 if (autocorrect
> 0) {
363 fprintf_ln(stderr
, _("in %0.1f seconds automatically..."),
364 (float)autocorrect
/10.0);
365 sleep_millisec(autocorrect
* 100);
370 fprintf_ln(stderr
, _("git: '%s' is not a git command. See 'git --help'."), cmd
);
372 if (SIMILAR_ENOUGH(best_similarity
)) {
374 Q_("\nThe most similar command is",
375 "\nThe most similar commands are",
378 for (i
= 0; i
< n
; i
++)
379 fprintf(stderr
, "\t%s\n", main_cmds
.names
[i
]->name
);
385 int cmd_version(int argc
, const char **argv
, const char *prefix
)
387 int build_options
= 0;
388 const char * const usage
[] = {
389 N_("git version [<options>]"),
392 struct option options
[] = {
393 OPT_BOOL(0, "build-options", &build_options
,
394 "also print build options"),
398 argc
= parse_options(argc
, argv
, prefix
, options
, usage
, 0);
401 * The format of this string should be kept stable for compatibility
402 * with external projects that rely on the output of "git version".
404 * Always show the version, even if other options are given.
406 printf("git version %s\n", git_version_string
);
409 printf("sizeof-long: %d\n", (int)sizeof(long));
410 /* NEEDSWORK: also save and output GIT-BUILD_OPTIONS? */
415 struct similar_ref_cb
{
416 const char *base_ref
;
417 struct string_list
*similar_refs
;
420 static int append_similar_ref(const char *refname
, const struct object_id
*oid
,
421 int flags
, void *cb_data
)
423 struct similar_ref_cb
*cb
= (struct similar_ref_cb
*)(cb_data
);
424 char *branch
= strrchr(refname
, '/') + 1;
427 /* A remote branch of the same name is deemed similar */
428 if (skip_prefix(refname
, "refs/remotes/", &remote
) &&
429 !strcmp(branch
, cb
->base_ref
))
430 string_list_append(cb
->similar_refs
, remote
);
434 static struct string_list
guess_refs(const char *ref
)
436 struct similar_ref_cb ref_cb
;
437 struct string_list similar_refs
= STRING_LIST_INIT_NODUP
;
439 ref_cb
.base_ref
= ref
;
440 ref_cb
.similar_refs
= &similar_refs
;
441 for_each_ref(append_similar_ref
, &ref_cb
);
445 void help_unknown_ref(const char *ref
, const char *cmd
, const char *error
)
448 struct string_list suggested_refs
= guess_refs(ref
);
450 fprintf_ln(stderr
, _("%s: %s - %s"), cmd
, ref
, error
);
452 if (suggested_refs
.nr
> 0) {
454 Q_("\nDid you mean this?",
455 "\nDid you mean one of these?",
457 for (i
= 0; i
< suggested_refs
.nr
; i
++)
458 fprintf(stderr
, "\t%s\n", suggested_refs
.items
[i
].string
);
461 string_list_clear(&suggested_refs
, 0);