]> git.proxmox.com Git - libgit2.git/commitdiff
Improve diff config options handling
authorRussell Belfer <rb@github.com>
Mon, 22 Apr 2013 23:25:57 +0000 (16:25 -0700)
committerRussell Belfer <rb@github.com>
Tue, 23 Apr 2013 19:57:30 +0000 (12:57 -0700)
This makes diff use the cvar cache for config options where
possible, and also adds support for a number of other config
options to diff including "diff.context", "diff.ignoreSubmodules",
"diff.noprefix", "diff.mnemonicprefix", and "core.abbrev".

To make this natural, this involved a rearrangement of the code
that allocates the diff object vs. the code that initializes it
based on the combination of options passed in by the user and
read from the config.

This commit includes tests for most of these new options as well.

src/diff.c
src/diff_output.c
tests-clar/diff/patch.c
tests-clar/diff/tree.c

index d9348bba82ba7c4376f0d9eac21af15db87f0dab..bce2914d1822e6ac48e1ee15ecab74bbc9e6a627 100644 (file)
@@ -14,6 +14,8 @@
 
 #define DIFF_FLAG_IS_SET(DIFF,FLAG) (((DIFF)->opts.flags & (FLAG)) != 0)
 #define DIFF_FLAG_ISNT_SET(DIFF,FLAG) (((DIFF)->opts.flags & (FLAG)) == 0)
+#define DIFF_FLAG_SET(DIFF,FLAG,VAL) (DIFF)->opts.flags = \
+       (VAL) ? ((DIFF)->opts.flags | (FLAG)) : ((DIFF)->opts.flags & ~(VAL))
 
 static git_diff_delta *diff_delta__alloc(
        git_diff_list *diff,
@@ -277,68 +279,148 @@ static int config_int(git_config *cfg, const char *name, int defvalue)
        return val;
 }
 
-static git_diff_list *git_diff_list_alloc(
-       git_repository *repo, const git_diff_options *opts)
+static const char *diff_mnemonic_prefix(
+       git_iterator_type_t type, bool left_side)
 {
-       git_config *cfg;
+       const char *pfx = "";
+
+       switch (type) {
+       case GIT_ITERATOR_TYPE_EMPTY:   pfx = "c"; break;
+       case GIT_ITERATOR_TYPE_TREE:    pfx = "c"; break;
+       case GIT_ITERATOR_TYPE_INDEX:   pfx = "i"; break;
+       case GIT_ITERATOR_TYPE_WORKDIR: pfx = "w"; break;
+       case GIT_ITERATOR_TYPE_FS:      pfx = left_side ? "1" : "2"; break;
+       default: break;
+       }
+
+       /* note: without a deeper look at pathspecs, there is no easy way
+        * to get the (o)bject / (w)ork tree mnemonics working...
+        */
+
+       return pfx;
+}
+
+static git_diff_list *diff_list_alloc(
+       git_repository *repo,
+       git_iterator *old_iter,
+       git_iterator *new_iter)
+{
+       git_diff_options dflt = GIT_DIFF_OPTIONS_INIT;
        git_diff_list *diff = git__calloc(1, sizeof(git_diff_list));
-       if (diff == NULL)
+       if (!diff)
                return NULL;
 
+       assert(repo && old_iter && new_iter);
+
        GIT_REFCOUNT_INC(diff);
        diff->repo = repo;
+       diff->old_src = old_iter->type;
+       diff->new_src = new_iter->type;
+       memcpy(&diff->opts, &dflt, sizeof(diff->opts));
 
        if (git_vector_init(&diff->deltas, 0, git_diff_delta__cmp) < 0 ||
-               git_pool_init(&diff->pool, 1, 0) < 0)
-               goto fail;
+               git_pool_init(&diff->pool, 1, 0) < 0) {
+               git_diff_list_free(diff);
+               return NULL;
+       }
+
+       /* Use case-insensitive compare if either iterator has
+        * the ignore_case bit set */
+       if (!git_iterator_ignore_case(old_iter) &&
+               !git_iterator_ignore_case(new_iter))
+       {
+               diff->opts.flags &= ~GIT_DIFF_DELTAS_ARE_ICASE;
+
+               diff->strcomp    = git__strcmp;
+               diff->strncomp   = git__strncmp;
+               diff->pfxcomp    = git__prefixcmp;
+               diff->entrycomp  = git_index_entry__cmp;
+       } else {
+               diff->opts.flags |= GIT_DIFF_DELTAS_ARE_ICASE;
+
+               diff->strcomp    = git__strcasecmp;
+               diff->strncomp   = git__strncasecmp;
+               diff->pfxcomp    = git__prefixcmp_icase;
+               diff->entrycomp  = git_index_entry__cmp_icase;
+       }
+
+       return diff;
+}
+
+static int diff_list_apply_options(
+       git_diff_list *diff,
+       const git_diff_options *opts)
+{
+       git_config *cfg;
+       git_repository *repo = diff->repo;
+       git_pool *pool = &diff->pool;
+       int val;
+
+       if (opts) {
+               /* copy user options (except case sensitivity info from iterators) */
+               bool icase = DIFF_FLAG_IS_SET(diff, GIT_DIFF_DELTAS_ARE_ICASE);
+               memcpy(&diff->opts, opts, sizeof(diff->opts));
+               DIFF_FLAG_SET(diff, GIT_DIFF_DELTAS_ARE_ICASE, icase);
+
+               /* initialize pathspec from options */
+               if (git_pathspec_init(&diff->pathspec, &opts->pathspec, pool) < 0)
+                       return -1;
+       }
+
+       /* flag INCLUDE_TYPECHANGE_TREES implies INCLUDE_TYPECHANGE */
+       if (DIFF_FLAG_IS_SET(diff, GIT_DIFF_INCLUDE_TYPECHANGE_TREES))
+               diff->opts.flags |= GIT_DIFF_INCLUDE_TYPECHANGE;
 
        /* load config values that affect diff behavior */
        if (git_repository_config__weakptr(&cfg, repo) < 0)
-               goto fail;
-       if (config_bool(cfg, "core.symlinks", 1))
+               return -1;
+
+       if (!git_repository__cvar(&val, repo, GIT_CVAR_SYMLINKS) && val)
                diff->diffcaps = diff->diffcaps | GIT_DIFFCAPS_HAS_SYMLINKS;
-       if (config_bool(cfg, "core.ignorestat", 0))
+
+       if (!git_repository__cvar(&val, repo, GIT_CVAR_IGNORESTAT) && val)
                diff->diffcaps = diff->diffcaps | GIT_DIFFCAPS_ASSUME_UNCHANGED;
-       if (config_bool(cfg, "core.filemode", 1))
+
+       if ((diff->opts.flags & GIT_DIFF_IGNORE_FILEMODE) == 0 &&
+               !git_repository__cvar(&val, repo, GIT_CVAR_FILEMODE) && val)
                diff->diffcaps = diff->diffcaps | GIT_DIFFCAPS_TRUST_MODE_BITS;
-       if (config_bool(cfg, "core.trustctime", 1))
+
+       if (!git_repository__cvar(&val, repo, GIT_CVAR_TRUSTCTIME) && val)
                diff->diffcaps = diff->diffcaps | GIT_DIFFCAPS_TRUST_CTIME;
+
        /* Don't set GIT_DIFFCAPS_USE_DEV - compile time option in core git */
 
-       /* TODO: there are certain config settings where even if we were
-        * not given an options structure, we need the diff list to have one
-        * so that we can store the altered default values.
-        *
-        * - diff.ignoreSubmodules
-        * - diff.mnemonicprefix
-        * - diff.noprefix
-        */
+       /* If not given explicit `opts`, check `diff.xyz` configs */
+       if (!opts) {
+               diff->opts.context_lines = config_int(cfg, "diff.context", 3);
 
-       if (opts == NULL) {
-               /* Make sure we default to 3 lines */
-               int context = config_int(cfg, "diff.context", 3);
-               diff->opts.context_lines = max(context, 0);
-               return diff;
+               if (config_bool(cfg, "diff.ignoreSubmodules", 0))
+                       diff->opts.flags |= GIT_DIFF_IGNORE_SUBMODULES;
        }
 
-       memcpy(&diff->opts, opts, sizeof(git_diff_options));
-
-       if(opts->flags & GIT_DIFF_IGNORE_FILEMODE)
-               diff->diffcaps = diff->diffcaps & ~GIT_DIFFCAPS_TRUST_MODE_BITS;
-
-       /* pathspec init will do nothing for empty pathspec */
-       if (git_pathspec_init(&diff->pathspec, &opts->pathspec, &diff->pool) < 0)
-               goto fail;
+       /* if either prefix is not set, figure out appropriate value */
+       if (!diff->opts.old_prefix || !diff->opts.new_prefix) {
+               const char *use_old = DIFF_OLD_PREFIX_DEFAULT;
+               const char *use_new = DIFF_NEW_PREFIX_DEFAULT;
 
-       /* TODO: handle config diff.mnemonicprefix, diff.noprefix */
+               if (config_bool(cfg, "diff.noprefix", 0)) {
+                       use_old = use_new = "";
+               } else if (config_bool(cfg, "diff.mnemonicprefix", 0)) {
+                       use_old = diff_mnemonic_prefix(diff->old_src, true);
+                       use_new = diff_mnemonic_prefix(diff->new_src, false);
+               }
 
-       diff->opts.old_prefix = diff_strdup_prefix(&diff->pool,
-               opts->old_prefix ? opts->old_prefix : DIFF_OLD_PREFIX_DEFAULT);
-       diff->opts.new_prefix = diff_strdup_prefix(&diff->pool,
-               opts->new_prefix ? opts->new_prefix : DIFF_NEW_PREFIX_DEFAULT);
+               if (!diff->opts.old_prefix)
+                       diff->opts.old_prefix = use_old;
+               if (!diff->opts.new_prefix)
+                       diff->opts.new_prefix = use_new;
+       }
 
+       /* strdup prefix from pool so we're not dependent on external data */
+       diff->opts.old_prefix = diff_strdup_prefix(pool, diff->opts.old_prefix);
+       diff->opts.new_prefix = diff_strdup_prefix(pool, diff->opts.new_prefix);
        if (!diff->opts.old_prefix || !diff->opts.new_prefix)
-               goto fail;
+               return -1;
 
        if (DIFF_FLAG_IS_SET(diff, GIT_DIFF_REVERSE)) {
                const char *swap = diff->opts.old_prefix;
@@ -346,15 +428,7 @@ static git_diff_list *git_diff_list_alloc(
                diff->opts.new_prefix = swap;
        }
 
-       /* INCLUDE_TYPECHANGE_TREES implies INCLUDE_TYPECHANGE */
-       if (DIFF_FLAG_IS_SET(diff, GIT_DIFF_INCLUDE_TYPECHANGE_TREES))
-               diff->opts.flags |= GIT_DIFF_INCLUDE_TYPECHANGE;
-
-       return diff;
-
-fail:
-       git_diff_list_free(diff);
-       return NULL;
+       return 0;
 }
 
 static void diff_list_free(git_diff_list *diff)
@@ -618,37 +692,6 @@ static bool entry_is_prefixed(
                        item->path[pathlen] == '/');
 }
 
-static int diff_list_init_from_iterators(
-       git_diff_list *diff,
-       git_iterator *old_iter,
-       git_iterator *new_iter)
-{
-       diff->old_src = old_iter->type;
-       diff->new_src = new_iter->type;
-
-       /* Use case-insensitive compare if either iterator has
-        * the ignore_case bit set */
-       if (!git_iterator_ignore_case(old_iter) &&
-               !git_iterator_ignore_case(new_iter))
-       {
-               diff->opts.flags &= ~GIT_DIFF_DELTAS_ARE_ICASE;
-
-               diff->strcomp    = git__strcmp;
-               diff->strncomp   = git__strncmp;
-               diff->pfxcomp    = git__prefixcmp;
-               diff->entrycomp  = git_index_entry__cmp;
-       } else {
-               diff->opts.flags |= GIT_DIFF_DELTAS_ARE_ICASE;
-
-               diff->strcomp    = git__strcasecmp;
-               diff->strncomp   = git__strncasecmp;
-               diff->pfxcomp    = git__prefixcmp_icase;
-               diff->entrycomp  = git_index_entry__cmp_icase;
-       }
-
-       return 0;
-}
-
 int git_diff__from_iterators(
        git_diff_list **diff_ptr,
        git_repository *repo,
@@ -659,20 +702,18 @@ int git_diff__from_iterators(
        int error = 0;
        const git_index_entry *oitem, *nitem;
        git_buf ignore_prefix = GIT_BUF_INIT;
-       git_diff_list *diff = git_diff_list_alloc(repo, opts);
-
-       *diff_ptr = NULL;
-
-       if (!diff || diff_list_init_from_iterators(diff, old_iter, new_iter) < 0)
-               goto fail;
+       git_diff_list *diff = diff_list_alloc(repo, old_iter, new_iter);
+       GITERR_CHECK_ALLOC(diff);
 
+       /* make iterators have matching icase behavior */
        if (DIFF_FLAG_IS_SET(diff, GIT_DIFF_DELTAS_ARE_ICASE)) {
                if (git_iterator_set_ignore_case(old_iter, true) < 0 ||
                        git_iterator_set_ignore_case(new_iter, true) < 0)
                        goto fail;
        }
 
-       if (git_iterator_current(&oitem, old_iter) < 0 ||
+       if (diff_list_apply_options(diff, opts) < 0 ||
+               git_iterator_current(&oitem, old_iter) < 0 ||
                git_iterator_current(&nitem, new_iter) < 0)
                goto fail;
 
index 34a3e506c6a4b64ba591a68215781063401feb0c..b8bb73bf73b4efa629a5003762c14cb31dac267e 100644 (file)
@@ -1114,11 +1114,20 @@ int git_diff_print_compact(
 
 static int print_oid_range(diff_print_info *pi, const git_diff_delta *delta)
 {
-       char start_oid[8], end_oid[8];
+       int abbrevlen;
+       char start_oid[GIT_OID_HEXSZ+1], end_oid[GIT_OID_HEXSZ+1];
 
-       /* TODO: Determine a good actual OID range to print */
-       git_oid_tostr(start_oid, sizeof(start_oid), &delta->old_file.oid);
-       git_oid_tostr(end_oid, sizeof(end_oid), &delta->new_file.oid);
+       if (git_repository__cvar(&abbrevlen, pi->diff->repo, GIT_CVAR_ABBREV) < 0)
+               return -1;
+
+       abbrevlen += 1; /* for NUL byte */
+       if (abbrevlen < 2)
+               abbrevlen = 2;
+       else if (abbrevlen > (int)sizeof(start_oid))
+               abbrevlen = (int)sizeof(start_oid);
+
+       git_oid_tostr(start_oid, abbrevlen, &delta->old_file.oid);
+       git_oid_tostr(end_oid, abbrevlen, &delta->new_file.oid);
 
        /* TODO: Match git diff more closely */
        if (delta->old_file.mode == delta->new_file.mode) {
index d41f3f12dff0763ccd33ab13c41b704859c6bd2f..40b191dd502954d666066295fcd7442b741e049e 100644 (file)
@@ -135,6 +135,84 @@ void test_diff_patch__to_string(void)
        git_tree_free(one);
 }
 
+void test_diff_patch__config_options(void)
+{
+       const char *one_sha = "26a125e"; /* current HEAD */
+       git_tree *one;
+       git_config *cfg;
+       git_diff_list *diff;
+       git_diff_patch *patch;
+       char *text;
+       git_diff_options opts = GIT_DIFF_OPTIONS_INIT;
+       char *onefile = "staged_changes_modified_file";
+       const char *expected1 = "diff --git c/staged_changes_modified_file i/staged_changes_modified_file\nindex 70bd944..906ee77 100644\n--- c/staged_changes_modified_file\n+++ i/staged_changes_modified_file\n@@ -1 +1,2 @@\n staged_changes_modified_file\n+staged_changes_modified_file\n";
+       const char *expected2 = "diff --git i/staged_changes_modified_file w/staged_changes_modified_file\nindex 906ee77..011c344 100644\n--- i/staged_changes_modified_file\n+++ w/staged_changes_modified_file\n@@ -1,2 +1,3 @@\n staged_changes_modified_file\n staged_changes_modified_file\n+staged_changes_modified_file\n";
+       const char *expected3 = "diff --git staged_changes_modified_file staged_changes_modified_file\nindex 906ee77..011c344 100644\n--- staged_changes_modified_file\n+++ staged_changes_modified_file\n@@ -1,2 +1,3 @@\n staged_changes_modified_file\n staged_changes_modified_file\n+staged_changes_modified_file\n";
+       const char *expected4 = "diff --git staged_changes_modified_file staged_changes_modified_file\nindex 70bd9443ada0..906ee7711f4f 100644\n--- staged_changes_modified_file\n+++ staged_changes_modified_file\n@@ -1 +1,2 @@\n staged_changes_modified_file\n+staged_changes_modified_file\n";
+
+       g_repo = cl_git_sandbox_init("status");
+       cl_git_pass(git_repository_config(&cfg, g_repo));
+       one = resolve_commit_oid_to_tree(g_repo, one_sha);
+       opts.pathspec.count = 1;
+       opts.pathspec.strings = &onefile;
+
+
+       cl_git_pass(git_config_set_string(cfg, "diff.mnemonicprefix", "true"));
+
+       cl_git_pass(git_diff_tree_to_index(&diff, g_repo, one, NULL, &opts));
+
+       cl_assert_equal_i(1, (int)git_diff_num_deltas(diff));
+       cl_git_pass(git_diff_get_patch(&patch, NULL, diff, 0));
+       cl_git_pass(git_diff_patch_to_str(&text, patch));
+       cl_assert_equal_s(expected1, text);
+
+       git__free(text);
+       git_diff_patch_free(patch);
+       git_diff_list_free(diff);
+
+       cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, NULL, &opts));
+
+       cl_assert_equal_i(1, (int)git_diff_num_deltas(diff));
+       cl_git_pass(git_diff_get_patch(&patch, NULL, diff, 0));
+       cl_git_pass(git_diff_patch_to_str(&text, patch));
+       cl_assert_equal_s(expected2, text);
+
+       git__free(text);
+       git_diff_patch_free(patch);
+       git_diff_list_free(diff);
+
+
+       cl_git_pass(git_config_set_string(cfg, "diff.noprefix", "true"));
+
+       cl_git_pass(git_diff_index_to_workdir(&diff, g_repo, NULL, &opts));
+
+       cl_assert_equal_i(1, (int)git_diff_num_deltas(diff));
+       cl_git_pass(git_diff_get_patch(&patch, NULL, diff, 0));
+       cl_git_pass(git_diff_patch_to_str(&text, patch));
+       cl_assert_equal_s(expected3, text);
+
+       git__free(text);
+       git_diff_patch_free(patch);
+       git_diff_list_free(diff);
+
+
+       cl_git_pass(git_config_set_int32(cfg, "core.abbrev", 12));
+
+       cl_git_pass(git_diff_tree_to_index(&diff, g_repo, one, NULL, &opts));
+
+       cl_assert_equal_i(1, (int)git_diff_num_deltas(diff));
+       cl_git_pass(git_diff_get_patch(&patch, NULL, diff, 0));
+       cl_git_pass(git_diff_patch_to_str(&text, patch));
+       cl_assert_equal_s(expected4, text);
+
+       git__free(text);
+       git_diff_patch_free(patch);
+       git_diff_list_free(diff);
+
+       git_tree_free(one);
+       git_config_free(cfg);
+}
+
 void test_diff_patch__hunks_have_correct_line_numbers(void)
 {
        git_config *cfg;
index 850feefde295896cafe4b06e95605db2e262ffc8..f05c7869e5af7448ee3d44d0134e87aa1a533f81 100644 (file)
@@ -454,3 +454,77 @@ void test_diff_tree__issue_1397(void)
        cl_assert_equal_i(0, expect.file_status[GIT_DELTA_ADDED]);
        cl_assert_equal_i(0, expect.file_status[GIT_DELTA_TYPECHANGE]);
 }
+
+static void set_config_int(git_repository *repo, const char *name, int value)
+{
+       git_config *cfg;
+
+       cl_git_pass(git_repository_config(&cfg, repo));
+       cl_git_pass(git_config_set_int32(cfg, name, value));
+       git_config_free(cfg);
+}
+
+void test_diff_tree__diff_configs(void)
+{
+       const char *a_commit = "d70d245e";
+       const char *b_commit = "7a9e0b02";
+
+       g_repo = cl_git_sandbox_init("diff");
+
+       cl_assert((a = resolve_commit_oid_to_tree(g_repo, a_commit)) != NULL);
+       cl_assert((b = resolve_commit_oid_to_tree(g_repo, b_commit)) != NULL);
+
+       cl_git_pass(git_diff_tree_to_tree(&diff, g_repo, a, b, NULL));
+
+       cl_git_pass(git_diff_foreach(
+               diff, diff_file_cb, diff_hunk_cb, diff_line_cb, &expect));
+
+       cl_assert_equal_i(2, expect.files);
+       cl_assert_equal_i(2, expect.file_status[GIT_DELTA_MODIFIED]);
+       cl_assert_equal_i(6, expect.hunks);
+       cl_assert_equal_i(55, expect.lines);
+       cl_assert_equal_i(33, expect.line_ctxt);
+       cl_assert_equal_i(7, expect.line_adds);
+       cl_assert_equal_i(15, expect.line_dels);
+
+       git_diff_list_free(diff);
+       diff = NULL;
+
+       set_config_int(g_repo, "diff.context", 1);
+
+       memset(&expect, 0, sizeof(expect));
+
+       cl_git_pass(git_diff_tree_to_tree(&diff, g_repo, a, b, NULL));
+
+       cl_git_pass(git_diff_foreach(
+               diff, diff_file_cb, diff_hunk_cb, diff_line_cb, &expect));
+
+       cl_assert_equal_i(2, expect.files);
+       cl_assert_equal_i(2, expect.file_status[GIT_DELTA_MODIFIED]);
+       cl_assert_equal_i(7, expect.hunks);
+       cl_assert_equal_i(34, expect.lines);
+       cl_assert_equal_i(12, expect.line_ctxt);
+       cl_assert_equal_i(7, expect.line_adds);
+       cl_assert_equal_i(15, expect.line_dels);
+
+       git_diff_list_free(diff);
+       diff = NULL;
+
+       set_config_int(g_repo, "diff.context", 0);
+       set_config_int(g_repo, "diff.noprefix", 1);
+
+       memset(&expect, 0, sizeof(expect));
+
+       cl_git_pass(git_diff_tree_to_tree(&diff, g_repo, a, b, NULL));
+
+       cl_git_pass(git_diff_foreach(
+               diff, diff_file_cb, diff_hunk_cb, diff_line_cb, &expect));
+
+       cl_assert_equal_i(2, expect.files);
+       cl_assert_equal_i(2, expect.file_status[GIT_DELTA_MODIFIED]);
+       cl_assert_equal_i(7, expect.hunks);
+       cl_assert_equal_i(22, expect.lines);
+       cl_assert_equal_i(0, expect.line_ctxt);
+       cl_assert_equal_i(7, expect.line_adds);
+       cl_assert_equal_i(15, expect.line_dels);
+}