]> git.ipfire.org Git - thirdparty/git.git/commitdiff
attr: teach "--attr-source=<tree>" global option to "git"
authorJohn Cai <johncai86@gmail.com>
Sat, 6 May 2023 04:15:29 +0000 (04:15 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sat, 6 May 2023 21:34:09 +0000 (14:34 -0700)
Earlier, 47cfc9bd (attr: add flag `--source` to work with tree-ish,
2023-01-14) taught "git check-attr" the "--source=<tree>" option to
allow it to read attribute files from a tree-ish, but did so only
for the command.  Just like "check-attr" users wanted a way to use
attributes from a tree-ish and not from the working tree files,
users of other commands (like "git diff") would benefit from the
same.

Undo most of the UI change the commit made, while keeping the
internal logic to read attributes from a given tree-ish. Expose the
internal logic via a new "--attr-source=<tree>" command line option
given to "git", so that it can be used with any git command that
runs as part of the main git process.

Additionally, add an environment variable GIT_ATTR_SOURCE that is set
when --attr-source is passed in, so that subprocesses use the same value
for the attributes source tree.

Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
16 files changed:
Documentation/git.txt
archive.c
attr.c
attr.h
builtin/check-attr.c
builtin/pack-objects.c
convert.c
environment.h
git.c
ll-merge.c
pathspec.c
t/lib-diff-alternative.sh
t/t0003-attributes.sh
t/t4018-diff-funcname.sh
userdiff.c
ws.c

index 74973d3cc4044d807ee2f98b0013f6811ae4f65b..02707cb01d1583f1b778bb7db7c4363aafdbcd71 100644 (file)
@@ -212,6 +212,11 @@ If you just want to run git as if it was started in `<path>` then use
        nohelpers (exclude helper commands), alias and config
        (retrieve command list from config variable completion.commands)
 
+--attr-source=<tree-ish>::
+       Read gitattributes from <tree-ish> instead of the worktree. See
+       linkgit:gitattributes[5]. This is equivalent to setting the
+       `GIT_ATTR_SOURCE` environment variable.
+
 GIT COMMANDS
 ------------
 
@@ -686,6 +691,9 @@ for further details.
        tells Git not to verify the SSL certificate when fetching or
        pushing over HTTPS.
 
+`GIT_ATTR_SOURCE`::
+       Sets the treeish that gitattributes will be read from.
+
 `GIT_ASKPASS`::
        If this environment variable is set, then Git commands which need to
        acquire passwords or passphrases (e.g. for HTTP or IMAP authentication)
index 8570cf37ff76450db090600a5dfd893ea552f652..e809514fe7063d27b19a74615d1e7c3a4182fb8a 100644 (file)
--- a/archive.c
+++ b/archive.c
@@ -128,7 +128,7 @@ static const struct attr_check *get_archive_attrs(struct index_state *istate,
        static struct attr_check *check;
        if (!check)
                check = attr_check_initl("export-ignore", "export-subst", NULL);
-       git_check_attr(istate, NULL, path, check);
+       git_check_attr(istate, path, check);
        return check;
 }
 
diff --git a/attr.c b/attr.c
index 2d8aeb8b58cbc0f19f050bce768b06f0c6f4b705..11238d6083d4ae7eb710d72b9a720bc04d4eb462 100644 (file)
--- a/attr.c
+++ b/attr.c
@@ -20,6 +20,7 @@
 #include "object-store.h"
 #include "setup.h"
 #include "thread-utils.h"
+#include "object-name.h"
 
 const char git_attr__true[] = "(builtin)true";
 const char git_attr__false[] = "\0(builtin)false";
@@ -1169,11 +1170,42 @@ static void collect_some_attrs(struct index_state *istate,
        fill(path, pathlen, basename_offset, check->stack, check->all_attrs, rem);
 }
 
+static const char *default_attr_source_tree_object_name;
+
+void set_git_attr_source(const char *tree_object_name)
+{
+       default_attr_source_tree_object_name = xstrdup(tree_object_name);
+}
+
+static void compute_default_attr_source(struct object_id *attr_source)
+{
+       if (!default_attr_source_tree_object_name)
+               default_attr_source_tree_object_name = getenv(GIT_ATTR_SOURCE_ENVIRONMENT);
+
+       if (!default_attr_source_tree_object_name || !is_null_oid(attr_source))
+               return;
+
+       if (repo_get_oid_treeish(the_repository, default_attr_source_tree_object_name, attr_source))
+               die(_("bad --attr-source or GIT_ATTR_SOURCE"));
+}
+
+static struct object_id *default_attr_source(void)
+{
+       static struct object_id attr_source;
+
+       if (is_null_oid(&attr_source))
+               compute_default_attr_source(&attr_source);
+       if (is_null_oid(&attr_source))
+               return NULL;
+       return &attr_source;
+}
+
 void git_check_attr(struct index_state *istate,
-                   const struct object_id *tree_oid, const char *path,
+                   const char *path,
                    struct attr_check *check)
 {
        int i;
+       const struct object_id *tree_oid = default_attr_source();
 
        collect_some_attrs(istate, tree_oid, path, check);
 
@@ -1186,10 +1218,11 @@ void git_check_attr(struct index_state *istate,
        }
 }
 
-void git_all_attrs(struct index_state *istate, const struct object_id *tree_oid,
+void git_all_attrs(struct index_state *istate,
                   const char *path, struct attr_check *check)
 {
        int i;
+       const struct object_id *tree_oid = default_attr_source();
 
        attr_check_reset(check);
        collect_some_attrs(istate, tree_oid, path, check);
diff --git a/attr.h b/attr.h
index 9884ea2bc60fb4816ed11222b4c820a855f22a24..676bd17ce27766784b45f8f8b15f6b01c184e2e7 100644 (file)
--- a/attr.h
+++ b/attr.h
@@ -45,7 +45,7 @@
  * const char *path;
  *
  * setup_check();
- * git_check_attr(&the_index, tree_oid, path, check);
+ * git_check_attr(&the_index, path, check);
  * ------------
  *
  * - Act on `.value` member of the result, left in `check->items[]`:
 #define ATTR_MAX_FILE_SIZE (100 * 1024 * 1024)
 
 struct index_state;
-struct object_id;
 
 /**
  * An attribute is an opaque object that is identified by its name. Pass the
@@ -135,6 +134,12 @@ struct git_attr;
 struct all_attrs_item;
 struct attr_stack;
 
+/*
+ * The textual object name for the tree-ish used by git_check_attr()
+ * to read attributes from (instead of from the working tree).
+ */
+void set_git_attr_source(const char *);
+
 /*
  * Given a string, return the gitattribute object that
  * corresponds to it.
@@ -203,14 +208,14 @@ void attr_check_free(struct attr_check *check);
 const char *git_attr_name(const struct git_attr *);
 
 void git_check_attr(struct index_state *istate,
-                   const struct object_id *tree_oid, const char *path,
+                   const char *path,
                    struct attr_check *check);
 
 /*
  * Retrieve all attributes that apply to the specified path.
  * check holds the attributes and their values.
  */
-void git_all_attrs(struct index_state *istate, const struct object_id *tree_oid,
+void git_all_attrs(struct index_state *istate,
                   const char *path, struct attr_check *check);
 
 enum git_attr_direction {
index 037bf1aaa2ab3b8202902a3dec30ff1b2b519321..748f3578b2ab9270378195ac0291fbd5b3913f25 100644 (file)
@@ -63,7 +63,7 @@ static void output_attr(struct attr_check *check, const char *file)
 }
 
 static void check_attr(const char *prefix, struct attr_check *check,
-                      const struct object_id *tree_oid, int collect_all,
+                      int collect_all,
                       const char *file)
 
 {
@@ -71,9 +71,9 @@ static void check_attr(const char *prefix, struct attr_check *check,
                prefix_path(prefix, prefix ? strlen(prefix) : 0, file);
 
        if (collect_all) {
-               git_all_attrs(&the_index, tree_oid, full_path, check);
+               git_all_attrs(&the_index, full_path, check);
        } else {
-               git_check_attr(&the_index, tree_oid, full_path, check);
+               git_check_attr(&the_index, full_path, check);
        }
        output_attr(check, file);
 
@@ -81,7 +81,7 @@ static void check_attr(const char *prefix, struct attr_check *check,
 }
 
 static void check_attr_stdin_paths(const char *prefix, struct attr_check *check,
-                                  const struct object_id *tree_oid, int collect_all)
+                                  int collect_all)
 {
        struct strbuf buf = STRBUF_INIT;
        struct strbuf unquoted = STRBUF_INIT;
@@ -95,7 +95,7 @@ static void check_attr_stdin_paths(const char *prefix, struct attr_check *check,
                                die("line is badly quoted");
                        strbuf_swap(&buf, &unquoted);
                }
-               check_attr(prefix, check, tree_oid, collect_all, buf.buf);
+               check_attr(prefix, check, collect_all, buf.buf);
                maybe_flush_or_die(stdout, "attribute to stdout");
        }
        strbuf_release(&buf);
@@ -111,7 +111,6 @@ static NORETURN void error_with_usage(const char *msg)
 int cmd_check_attr(int argc, const char **argv, const char *prefix)
 {
        struct attr_check *check;
-       struct object_id *tree_oid = NULL;
        struct object_id initialized_oid;
        int cnt, i, doubledash, filei;
 
@@ -187,14 +186,14 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix)
        if (source) {
                if (repo_get_oid_tree(the_repository, source, &initialized_oid))
                        die("%s: not a valid tree-ish source", source);
-               tree_oid = &initialized_oid;
+               set_git_attr_source(source);
        }
 
        if (stdin_paths)
-               check_attr_stdin_paths(prefix, check, tree_oid, all_attrs);
+               check_attr_stdin_paths(prefix, check, all_attrs);
        else {
                for (i = filei; i < argc; i++)
-                       check_attr(prefix, check, tree_oid, all_attrs, argv[i]);
+                       check_attr(prefix, check, all_attrs, argv[i]);
                maybe_flush_or_die(stdout, "attribute to stdout");
        }
 
index a5b466839bad1b4529b9aafc822fc6d3e516448e..9cfc8801f9bb9aea42aa2031a0bc3f6a8963d89b 100644 (file)
@@ -1331,7 +1331,7 @@ static int no_try_delta(const char *path)
 
        if (!check)
                check = attr_check_initl("delta", NULL);
-       git_check_attr(the_repository->index, NULL, path, check);
+       git_check_attr(the_repository->index, path, check);
        if (ATTR_FALSE(check->items[0].value))
                return 1;
        return 0;
index 5a2ea5308d6b1467b1ac1925507b1dacc5d809e4..e65938bb1a83e2b329e999220c4080ed49ca3969 100644 (file)
--- a/convert.c
+++ b/convert.c
@@ -1314,7 +1314,7 @@ void convert_attrs(struct index_state *istate,
                git_config(read_convert_config, NULL);
        }
 
-       git_check_attr(istate, NULL, path, check);
+       git_check_attr(istate, path, check);
        ccheck = check->items;
        ca->crlf_action = git_path_check_crlf(ccheck + 4);
        if (ca->crlf_action == CRLF_UNDEFINED)
index a63f0c6a24f79703383826ecc68b30fdd014c2c3..30cb7e0fa34d35ef074167b2e7e012a887504c0c 100644 (file)
@@ -55,6 +55,7 @@ const char *getenv_safe(struct strvec *argv, const char *name);
 #define GIT_QUARANTINE_ENVIRONMENT "GIT_QUARANTINE_PATH"
 #define GIT_OPTIONAL_LOCKS_ENVIRONMENT "GIT_OPTIONAL_LOCKS"
 #define GIT_TEXT_DOMAIN_DIR_ENVIRONMENT "GIT_TEXTDOMAINDIR"
+#define GIT_ATTR_SOURCE_ENVIRONMENT "GIT_ATTR_SOURCE"
 
 /*
  * Environment variable used in handshaking the wire protocol.
diff --git a/git.c b/git.c
index 45899be82658d725ac87c8d2328483089bcefd1c..2f42da20f4e0dfbf021c2e5da40d4adcbde5d642 100644 (file)
--- a/git.c
+++ b/git.c
@@ -9,6 +9,7 @@
 #include "alias.h"
 #include "replace-object.h"
 #include "setup.h"
+#include "attr.h"
 #include "shallow.h"
 #include "trace.h"
 #include "trace2.h"
@@ -314,6 +315,21 @@ static int handle_options(const char ***argv, int *argc, int *envchanged)
                        } else {
                                exit(list_cmds(cmd));
                        }
+               } else if (!strcmp(cmd, "--attr-source")) {
+                       if (*argc < 2) {
+                               fprintf(stderr, _("no attribute source given for --attr-source\n" ));
+                               usage(git_usage_string);
+                       }
+                       setenv(GIT_ATTR_SOURCE_ENVIRONMENT, (*argv)[1], 1);
+                       if (envchanged)
+                               *envchanged = 1;
+                       (*argv)++;
+                       (*argc)--;
+               } else if (skip_prefix(cmd, "--attr-source=", &cmd)) {
+                       set_git_attr_source(cmd);
+                       setenv(GIT_ATTR_SOURCE_ENVIRONMENT, cmd, 1);
+                       if (envchanged)
+                               *envchanged = 1;
                } else {
                        fprintf(stderr, _("unknown option: %s\n"), cmd);
                        usage(git_usage_string);
index 28bc94c45d63015bd6eb7f971d4e78bf55a4deba..6580970a6706c745c91bada99cb178138ff50747 100644 (file)
@@ -393,7 +393,7 @@ enum ll_merge_result ll_merge(mmbuffer_t *result_buf,
                normalize_file(theirs, path, istate);
        }
 
-       git_check_attr(istate, NULL, path, check);
+       git_check_attr(istate, path, check);
        ll_driver_name = check->items[0].value;
        if (check->items[1].value) {
                marker_size = atoi(check->items[1].value);
@@ -421,7 +421,7 @@ int ll_merge_marker_size(struct index_state *istate, const char *path)
 
        if (!check)
                check = attr_check_initl("conflict-marker-size", NULL);
-       git_check_attr(istate, NULL, path, check);
+       git_check_attr(istate, path, check);
        if (check->items[0].value) {
                marker_size = atoi(check->items[0].value);
                if (marker_size <= 0)
index 6972d515f0c7dbb93292361720603d9a80bfa44e..09103a137efa5738f2aafa14ee94f1d7f4b9a23b 100644 (file)
@@ -734,7 +734,7 @@ int match_pathspec_attrs(struct index_state *istate,
        if (name[namelen])
                name = to_free = xmemdupz(name, namelen);
 
-       git_check_attr(istate, NULL, name, item->attr_check);
+       git_check_attr(istate, name, item->attr_check);
 
        free(to_free);
 
index a8f5d3274a5a6007ca9acb3317752c6c1c7982a0..c4dc2d46dc1ef4d3c95bda858d208045ded864c2 100644 (file)
@@ -112,15 +112,36 @@ EOF
 
        STRATEGY=$1
 
-       test_expect_success "$STRATEGY diff from attributes" '
+       test_expect_success "setup attributes files for tests with $STRATEGY" '
+               git checkout -b master &&
                echo "file* diff=driver" >.gitattributes &&
-               git config diff.driver.algorithm "$STRATEGY" &&
-               test_must_fail git diff --no-index file1 file2 > output &&
-               cat expect &&
-               cat output &&
+               git add file1 file2 .gitattributes &&
+               git commit -m "adding files" &&
+               git checkout -b branchA &&
+               echo "file* diff=driverA" >.gitattributes &&
+               git add .gitattributes &&
+               git commit -m "adding driverA as diff driver" &&
+               git checkout master &&
+               git clone --bare --no-local . bare.git
+       '
+
+       test_expect_success "$STRATEGY diff from attributes" '
+               test_must_fail git -c diff.driver.algorithm=$STRATEGY diff --no-index file1 file2 > output &&
                test_cmp expect output
        '
 
+       test_expect_success "diff from attributes with bare repo with source" '
+               git -C bare.git --attr-source=branchA -c diff.driver.algorithm=myers \
+                       -c diff.driverA.algorithm=$STRATEGY \
+                       diff HEAD:file1 HEAD:file2 >output &&
+               test_cmp expect output
+       '
+
+       test_expect_success "diff from attributes with bare repo with invalid source" '
+               test_must_fail git -C bare.git --attr-source=invalid-branch diff \
+                       HEAD:file1 HEAD:file2
+       '
+
        test_expect_success "$STRATEGY diff from attributes has valid diffstat" '
                echo "file* diff=driver" >.gitattributes &&
                git config diff.driver.algorithm "$STRATEGY" &&
index 89b306cb114debb61e787e6d80417cd362cc367f..26e082f05b4473a553b4de9b7747b928179439cd 100755 (executable)
@@ -30,8 +30,17 @@ attr_check_quote () {
 attr_check_source () {
        path="$1" expect="$2" source="$3" git_opts="$4" &&
 
-       git $git_opts check-attr --source $source test -- "$path" >actual 2>err &&
        echo "$path: test: $expect" >expect &&
+
+       git $git_opts check-attr --source $source test -- "$path" >actual 2>err &&
+       test_cmp expect actual &&
+       test_must_be_empty err &&
+
+       git $git_opts --attr-source="$source" check-attr test -- "$path" >actual 2>err &&
+       test_cmp expect actual &&
+       test_must_be_empty err
+
+       GIT_ATTR_SOURCE="$source" git $git_opts check-attr test -- "$path" >actual 2>err &&
        test_cmp expect actual &&
        test_must_be_empty err
 }
index 42a2b9a13b7a5bd6cf28cfbe9bbfb9a5a3e5f3e6..c8d555771d5072f95185f48898b59a7e88ddcd26 100755 (executable)
@@ -63,6 +63,25 @@ do
                test_i18ngrep ! fatal msg &&
                test_i18ngrep ! error msg
        '
+
+       test_expect_success "builtin $p pattern compiles on bare repo with --attr-source" '
+               test_when_finished "rm -rf bare.git" &&
+               git checkout -B master &&
+               git add . &&
+               echo "*.java diff=notexist" >.gitattributes &&
+               git add .gitattributes &&
+               git commit -am "changing gitattributes" &&
+               git checkout -B branchA &&
+               echo "*.java diff=$p" >.gitattributes &&
+               git add .gitattributes &&
+               git commit -am "changing gitattributes" &&
+               git clone --bare --no-local . bare.git &&
+               git -C bare.git symbolic-ref HEAD refs/heads/master &&
+               test_expect_code 1 git -C bare.git --attr-source=branchA \
+                       diff --exit-code HEAD:A.java HEAD:B.java 2>msg &&
+               test_i18ngrep ! fatal msg &&
+               test_i18ngrep ! error msg
+       '
 done
 
 test_expect_success 'last regexp must not be negated' '
index eaec6ebb5e995b726cf1e93f23d716679f2baea9..664c7c140256bb089d3e3920828ead185dfedd01 100644 (file)
@@ -444,7 +444,7 @@ struct userdiff_driver *userdiff_find_by_path(struct index_state *istate,
                check = attr_check_initl("diff", NULL);
        if (!path)
                return NULL;
-       git_check_attr(istate, NULL, path, check);
+       git_check_attr(istate, path, check);
 
        if (ATTR_TRUE(check->items[0].value))
                return &driver_true;
diff --git a/ws.c b/ws.c
index da3d0e28cbba9cb5e5d459f8e807a9a0fcf42102..903bfcd53e4b83aaa1e6f33c6efe68f23a8a73c9 100644 (file)
--- a/ws.c
+++ b/ws.c
@@ -79,7 +79,7 @@ unsigned whitespace_rule(struct index_state *istate, const char *pathname)
        if (!attr_whitespace_rule)
                attr_whitespace_rule = attr_check_initl("whitespace", NULL);
 
-       git_check_attr(istate, NULL, pathname, attr_whitespace_rule);
+       git_check_attr(istate, pathname, attr_whitespace_rule);
        value = attr_whitespace_rule->items[0].value;
        if (ATTR_TRUE(value)) {
                /* true (whitespace) */