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