builtin-diff.con commit Merge branch 'jc/diff-prefix' (e69a6f4)
   1/*
   2 * Builtin "git diff"
   3 *
   4 * Copyright (c) 2006 Junio C Hamano
   5 */
   6#include "cache.h"
   7#include "color.h"
   8#include "commit.h"
   9#include "blob.h"
  10#include "tag.h"
  11#include "diff.h"
  12#include "diffcore.h"
  13#include "revision.h"
  14#include "log-tree.h"
  15#include "builtin.h"
  16
  17struct blobinfo {
  18        unsigned char sha1[20];
  19        const char *name;
  20        unsigned mode;
  21};
  22
  23static const char builtin_diff_usage[] =
  24"git diff <options> <rev>{0,2} -- <path>*";
  25
  26static void stuff_change(struct diff_options *opt,
  27                         unsigned old_mode, unsigned new_mode,
  28                         const unsigned char *old_sha1,
  29                         const unsigned char *new_sha1,
  30                         const char *old_name,
  31                         const char *new_name)
  32{
  33        struct diff_filespec *one, *two;
  34
  35        if (!is_null_sha1(old_sha1) && !is_null_sha1(new_sha1) &&
  36            !hashcmp(old_sha1, new_sha1) && (old_mode == new_mode))
  37                return;
  38
  39        if (DIFF_OPT_TST(opt, REVERSE_DIFF)) {
  40                unsigned tmp;
  41                const unsigned char *tmp_u;
  42                const char *tmp_c;
  43                tmp = old_mode; old_mode = new_mode; new_mode = tmp;
  44                tmp_u = old_sha1; old_sha1 = new_sha1; new_sha1 = tmp_u;
  45                tmp_c = old_name; old_name = new_name; new_name = tmp_c;
  46        }
  47
  48        if (opt->prefix &&
  49            (strncmp(old_name, opt->prefix, opt->prefix_length) ||
  50             strncmp(new_name, opt->prefix, opt->prefix_length)))
  51                return;
  52
  53        one = alloc_filespec(old_name);
  54        two = alloc_filespec(new_name);
  55        fill_filespec(one, old_sha1, old_mode);
  56        fill_filespec(two, new_sha1, new_mode);
  57
  58        diff_queue(&diff_queued_diff, one, two);
  59}
  60
  61static int builtin_diff_b_f(struct rev_info *revs,
  62                            int argc, const char **argv,
  63                            struct blobinfo *blob,
  64                            const char *path)
  65{
  66        /* Blob vs file in the working tree*/
  67        struct stat st;
  68
  69        if (argc > 1)
  70                usage(builtin_diff_usage);
  71
  72        if (lstat(path, &st))
  73                die("'%s': %s", path, strerror(errno));
  74        if (!(S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)))
  75                die("'%s': not a regular file or symlink", path);
  76
  77        diff_set_mnemonic_prefix(&revs->diffopt, "o/", "w/");
  78
  79        if (blob[0].mode == S_IFINVALID)
  80                blob[0].mode = canon_mode(st.st_mode);
  81
  82        stuff_change(&revs->diffopt,
  83                     blob[0].mode, canon_mode(st.st_mode),
  84                     blob[0].sha1, null_sha1,
  85                     path, path);
  86        diffcore_std(&revs->diffopt);
  87        diff_flush(&revs->diffopt);
  88        return 0;
  89}
  90
  91static int builtin_diff_blobs(struct rev_info *revs,
  92                              int argc, const char **argv,
  93                              struct blobinfo *blob)
  94{
  95        unsigned mode = canon_mode(S_IFREG | 0644);
  96
  97        if (argc > 1)
  98                usage(builtin_diff_usage);
  99
 100        if (blob[0].mode == S_IFINVALID)
 101                blob[0].mode = mode;
 102
 103        if (blob[1].mode == S_IFINVALID)
 104                blob[1].mode = mode;
 105
 106        stuff_change(&revs->diffopt,
 107                     blob[0].mode, blob[1].mode,
 108                     blob[0].sha1, blob[1].sha1,
 109                     blob[0].name, blob[1].name);
 110        diffcore_std(&revs->diffopt);
 111        diff_flush(&revs->diffopt);
 112        return 0;
 113}
 114
 115static int builtin_diff_index(struct rev_info *revs,
 116                              int argc, const char **argv)
 117{
 118        int cached = 0;
 119        while (1 < argc) {
 120                const char *arg = argv[1];
 121                if (!strcmp(arg, "--cached"))
 122                        cached = 1;
 123                else
 124                        usage(builtin_diff_usage);
 125                argv++; argc--;
 126        }
 127        if (!cached)
 128                setup_work_tree();
 129        /*
 130         * Make sure there is one revision (i.e. pending object),
 131         * and there is no revision filtering parameters.
 132         */
 133        if (revs->pending.nr != 1 ||
 134            revs->max_count != -1 || revs->min_age != -1 ||
 135            revs->max_age != -1)
 136                usage(builtin_diff_usage);
 137        if (read_cache() < 0) {
 138                perror("read_cache");
 139                return -1;
 140        }
 141        return run_diff_index(revs, cached);
 142}
 143
 144static int builtin_diff_tree(struct rev_info *revs,
 145                             int argc, const char **argv,
 146                             struct object_array_entry *ent)
 147{
 148        const unsigned char *(sha1[2]);
 149        int swap = 0;
 150
 151        if (argc > 1)
 152                usage(builtin_diff_usage);
 153
 154        /* We saw two trees, ent[0] and ent[1].
 155         * if ent[1] is uninteresting, they are swapped
 156         */
 157        if (ent[1].item->flags & UNINTERESTING)
 158                swap = 1;
 159        sha1[swap] = ent[0].item->sha1;
 160        sha1[1-swap] = ent[1].item->sha1;
 161        diff_tree_sha1(sha1[0], sha1[1], "", &revs->diffopt);
 162        log_tree_diff_flush(revs);
 163        return 0;
 164}
 165
 166static int builtin_diff_combined(struct rev_info *revs,
 167                                 int argc, const char **argv,
 168                                 struct object_array_entry *ent,
 169                                 int ents)
 170{
 171        const unsigned char (*parent)[20];
 172        int i;
 173
 174        if (argc > 1)
 175                usage(builtin_diff_usage);
 176
 177        if (!revs->dense_combined_merges && !revs->combine_merges)
 178                revs->dense_combined_merges = revs->combine_merges = 1;
 179        parent = xmalloc(ents * sizeof(*parent));
 180        /* Again, the revs are all reverse */
 181        for (i = 0; i < ents; i++)
 182                hashcpy((unsigned char *)(parent + i),
 183                        ent[ents - 1 - i].item->sha1);
 184        diff_tree_combined(parent[0], parent + 1, ents - 1,
 185                           revs->dense_combined_merges, revs);
 186        return 0;
 187}
 188
 189static void refresh_index_quietly(void)
 190{
 191        struct lock_file *lock_file;
 192        int fd;
 193
 194        lock_file = xcalloc(1, sizeof(struct lock_file));
 195        fd = hold_locked_index(lock_file, 0);
 196        if (fd < 0)
 197                return;
 198        discard_cache();
 199        read_cache();
 200        refresh_cache(REFRESH_QUIET|REFRESH_UNMERGED);
 201
 202        if (active_cache_changed &&
 203            !write_cache(fd, active_cache, active_nr))
 204                commit_locked_index(lock_file);
 205
 206        rollback_lock_file(lock_file);
 207}
 208
 209static int builtin_diff_files(struct rev_info *revs, int argc, const char **argv)
 210{
 211        int result;
 212        unsigned int options = 0;
 213
 214        while (1 < argc && argv[1][0] == '-') {
 215                if (!strcmp(argv[1], "--base"))
 216                        revs->max_count = 1;
 217                else if (!strcmp(argv[1], "--ours"))
 218                        revs->max_count = 2;
 219                else if (!strcmp(argv[1], "--theirs"))
 220                        revs->max_count = 3;
 221                else if (!strcmp(argv[1], "-q"))
 222                        options |= DIFF_SILENT_ON_REMOVED;
 223                else
 224                        return error("invalid option: %s", argv[1]);
 225                argv++; argc--;
 226        }
 227
 228        if (revs->max_count == -1 &&
 229            (revs->diffopt.output_format & DIFF_FORMAT_PATCH))
 230                revs->combine_merges = revs->dense_combined_merges = 1;
 231
 232        setup_work_tree();
 233        if (read_cache() < 0) {
 234                perror("read_cache");
 235                return -1;
 236        }
 237        result = run_diff_files(revs, options);
 238        return diff_result_code(&revs->diffopt, result);
 239}
 240
 241int cmd_diff(int argc, const char **argv, const char *prefix)
 242{
 243        int i;
 244        struct rev_info rev;
 245        struct object_array_entry ent[100];
 246        int ents = 0, blobs = 0, paths = 0;
 247        const char *path = NULL;
 248        struct blobinfo blob[2];
 249        int nongit;
 250        int result = 0;
 251
 252        /*
 253         * We could get N tree-ish in the rev.pending_objects list.
 254         * Also there could be M blobs there, and P pathspecs.
 255         *
 256         * N=0, M=0:
 257         *      cache vs files (diff-files)
 258         * N=0, M=2:
 259         *      compare two random blobs.  P must be zero.
 260         * N=0, M=1, P=1:
 261         *      compare a blob with a working tree file.
 262         *
 263         * N=1, M=0:
 264         *      tree vs cache (diff-index --cached)
 265         *
 266         * N=2, M=0:
 267         *      tree vs tree (diff-tree)
 268         *
 269         * N=0, M=0, P=2:
 270         *      compare two filesystem entities (aka --no-index).
 271         *
 272         * Other cases are errors.
 273         */
 274
 275        prefix = setup_git_directory_gently(&nongit);
 276        git_config(git_diff_ui_config, NULL);
 277
 278        if (diff_use_color_default == -1)
 279                diff_use_color_default = git_use_color_default;
 280
 281        init_revisions(&rev, prefix);
 282
 283        /* If this is a no-index diff, just run it and exit there. */
 284        diff_no_index(&rev, argc, argv, nongit, prefix);
 285
 286        /* Otherwise, we are doing the usual "git" diff */
 287        rev.diffopt.skip_stat_unmatch = !!diff_auto_refresh_index;
 288
 289        if (nongit)
 290                die("Not a git repository");
 291        argc = setup_revisions(argc, argv, &rev, NULL);
 292        if (!rev.diffopt.output_format) {
 293                rev.diffopt.output_format = DIFF_FORMAT_PATCH;
 294                if (diff_setup_done(&rev.diffopt) < 0)
 295                        die("diff_setup_done failed");
 296        }
 297        DIFF_OPT_SET(&rev.diffopt, ALLOW_EXTERNAL);
 298        DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
 299
 300        /*
 301         * If the user asked for our exit code then don't start a
 302         * pager or we would end up reporting its exit code instead.
 303         */
 304        if (!DIFF_OPT_TST(&rev.diffopt, EXIT_WITH_STATUS) &&
 305            check_pager_config("diff") != 0)
 306                setup_pager();
 307
 308        /*
 309         * Do we have --cached and not have a pending object, then
 310         * default to HEAD by hand.  Eek.
 311         */
 312        if (!rev.pending.nr) {
 313                int i;
 314                for (i = 1; i < argc; i++) {
 315                        const char *arg = argv[i];
 316                        if (!strcmp(arg, "--"))
 317                                break;
 318                        else if (!strcmp(arg, "--cached")) {
 319                                add_head_to_pending(&rev);
 320                                if (!rev.pending.nr)
 321                                        die("No HEAD commit to compare with (yet)");
 322                                break;
 323                        }
 324                }
 325        }
 326
 327        for (i = 0; i < rev.pending.nr; i++) {
 328                struct object_array_entry *list = rev.pending.objects+i;
 329                struct object *obj = list->item;
 330                const char *name = list->name;
 331                int flags = (obj->flags & UNINTERESTING);
 332                if (!obj->parsed)
 333                        obj = parse_object(obj->sha1);
 334                obj = deref_tag(obj, NULL, 0);
 335                if (!obj)
 336                        die("invalid object '%s' given.", name);
 337                if (obj->type == OBJ_COMMIT)
 338                        obj = &((struct commit *)obj)->tree->object;
 339                if (obj->type == OBJ_TREE) {
 340                        if (ARRAY_SIZE(ent) <= ents)
 341                                die("more than %d trees given: '%s'",
 342                                    (int) ARRAY_SIZE(ent), name);
 343                        obj->flags |= flags;
 344                        ent[ents].item = obj;
 345                        ent[ents].name = name;
 346                        ents++;
 347                        continue;
 348                }
 349                if (obj->type == OBJ_BLOB) {
 350                        if (2 <= blobs)
 351                                die("more than two blobs given: '%s'", name);
 352                        hashcpy(blob[blobs].sha1, obj->sha1);
 353                        blob[blobs].name = name;
 354                        blob[blobs].mode = list->mode;
 355                        blobs++;
 356                        continue;
 357
 358                }
 359                die("unhandled object '%s' given.", name);
 360        }
 361        if (rev.prune_data) {
 362                const char **pathspec = rev.prune_data;
 363                while (*pathspec) {
 364                        if (!path)
 365                                path = *pathspec;
 366                        paths++;
 367                        pathspec++;
 368                }
 369        }
 370
 371        /*
 372         * Now, do the arguments look reasonable?
 373         */
 374        if (!ents) {
 375                switch (blobs) {
 376                case 0:
 377                        result = builtin_diff_files(&rev, argc, argv);
 378                        break;
 379                case 1:
 380                        if (paths != 1)
 381                                usage(builtin_diff_usage);
 382                        result = builtin_diff_b_f(&rev, argc, argv, blob, path);
 383                        break;
 384                case 2:
 385                        if (paths)
 386                                usage(builtin_diff_usage);
 387                        result = builtin_diff_blobs(&rev, argc, argv, blob);
 388                        break;
 389                default:
 390                        usage(builtin_diff_usage);
 391                }
 392        }
 393        else if (blobs)
 394                usage(builtin_diff_usage);
 395        else if (ents == 1)
 396                result = builtin_diff_index(&rev, argc, argv);
 397        else if (ents == 2)
 398                result = builtin_diff_tree(&rev, argc, argv, ent);
 399        else if ((ents == 3) && (ent[0].item->flags & UNINTERESTING)) {
 400                /* diff A...B where there is one sane merge base between
 401                 * A and B.  We have ent[0] == merge-base, ent[1] == A,
 402                 * and ent[2] == B.  Show diff between the base and B.
 403                 */
 404                ent[1] = ent[2];
 405                result = builtin_diff_tree(&rev, argc, argv, ent);
 406        }
 407        else
 408                result = builtin_diff_combined(&rev, argc, argv,
 409                                             ent, ents);
 410        result = diff_result_code(&rev.diffopt, result);
 411        if (1 < rev.diffopt.skip_stat_unmatch)
 412                refresh_index_quietly();
 413        return result;
 414}