git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: git@vger.kernel.org
Cc: "Junio C Hamano" <gitster@pobox.com>,
	"Elijah Newren" <newren@gmail.com>,
	"Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: [PATCH v5 00/18] tree-walk.h: slimmed down
Date: Wed, 31 Mar 2021 21:09:28 +0200	[thread overview]
Message-ID: <cover-00.19-00000000000-20210331T190531Z-avarab@gmail.com> (raw)
In-Reply-To: <87o8fcqrg8.fsf@evledraar.gmail.com>

These are preparatory changes to the tree-walk.h API to eventually fix
long-broken git-fsck mode checks.

Per http://lore.kernel.org/git/xmqqtup5cnlu.fsf@gitster.g I think the
previous round of this was too big.

So here's a slimmed-down version which stops short of migrating
anything to "enum object_type". There's just:

 * Tests
 * Renaming relevant API *() to *_mode() (the next series will propose a *_type())
 * Adding *_path() API for those users that don't need the "mode" the
   *_mode() function provides
 * Comment updates, fixes to comments.
 * Whitespace changes that would be needed by the next series, but
   which are a good idea anyway while we're at it, e.g. aligning
   function declarations.

Ævar Arnfjörð Bjarmason (18):
  cache.h: add a comment to object_type()
  merge-ort: correct reference to test in 62fdec17a11
  cache.h: have base_name_compare() take "is tree?", not "mode"
  fast-import tests: test for sorting dir/file foo v.s. foo.txt
  mktree tests: test that "mode" is passed when sorting
  diff tests: test that "mode" is passed when sorting
  merge-tree tests: test for the mode comparison in same_entry()
  blame: emit a better error on 'git blame directory'
  notes & match-trees: use name_entry's "pathlen" member
  tree-walk.h users: use temporary variable(s) for "mode"
  match-trees: use "tmp" for mode in shift_tree_by()
  tree.h: format argument lists of read_tree() users
  tree-walk.h API: formatting changes for subsequent commit
  tree-walk.h API doc: improve documentation of get_tree_entry()
  tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode()
  tree-walk.h API: add a get_tree_entry_path() function
  tree-walk.h API: document and format tree_entry_extract()
  tree-entry.h API: rename tree_entry_extract() to
    tree_entry_extract_mode()

 archive.c                       | 21 ++++----
 blame.c                         |  6 +--
 builtin/checkout.c              |  4 +-
 builtin/fast-import.c           | 12 +++--
 builtin/log.c                   |  5 +-
 builtin/ls-tree.c               |  4 +-
 builtin/merge-tree.c            | 12 +++--
 builtin/mktree.c                |  4 +-
 builtin/rm.c                    |  2 +-
 builtin/update-index.c          |  2 +-
 cache.h                         | 11 +++--
 combine-diff.c                  |  8 +--
 fsck.c                          |  2 +-
 line-log.c                      |  2 +-
 match-trees.c                   | 44 ++++++++---------
 merge-ort.c                     | 11 +++--
 merge-recursive.c               | 29 ++++++-----
 notes.c                         | 10 ++--
 object-name.c                   |  7 ++-
 read-cache.c                    | 16 +++---
 t/t1450-fsck.sh                 | 66 +++++++++++++++++++++++++
 t/t4300-merge-tree.sh           | 44 +++++++++++++++++
 t/t8004-blame-with-conflicts.sh | 21 ++++++++
 t/t9300-fast-import.sh          | 87 +++++++++++++++++++++++++++++++++
 tree-diff.c                     | 24 +++++----
 tree-walk.c                     | 30 ++++++++----
 tree-walk.h                     | 35 +++++++++----
 tree.h                          |  5 +-
 unpack-trees.c                  | 18 ++++---
 29 files changed, 410 insertions(+), 132 deletions(-)

Range-diff:
 1:  c307eb53331 <  -:  ----------- show tests: add test for "git show <tree>"
 2:  f37d7705cf0 <  -:  ----------- ls-files tests: add meaningful --with-tree tests
 3:  6291d8a1b5e <  -:  ----------- tree.c API: move read_tree() into builtin/ls-files.c
 4:  466b518e915 <  -:  ----------- ls-files: don't needlessly pass around stage variable
 5:  30c3abfe9b9 <  -:  ----------- ls-files: refactor away read_tree()
 6:  02c42be9249 <  -:  ----------- archive: stop passing "stage" through read_tree_recursive()
 7:  d55e8d4042b <  -:  ----------- tree.h API: expose read_tree_1() as read_tree_at()
 8:  fa157d8baee <  -:  ----------- tree.h API: simplify read_tree_recursive() signature
10:  186f7a7a44b =  1:  a74e02ff0ba cache.h: add a comment to object_type()
24:  092472f3c8d =  2:  57092359bbb merge-ort: correct reference to test in 62fdec17a11
16:  1b6a10f814c !  3:  44c3fdd0085 cache.h: have base_name_compare() take "is tree?", not "mode"
    @@ Commit message
         function to take a boolean argument indicating whether the entry is a
         tree or not, instead of having them call S_ISDIR(mode) on their own.
     
    -    This makes use of the new "object_type" field in the "name_entry".
    +    This introduces no functional change, but makes later (not part of
    +    this series) changes to abstract away "object_type" from "mode" more
    +    readable.
     
         The API being modified here was originally added way back in
         958ba6c96eb (Introduce "base_name_compare()" helper function,
    @@ match-trees.c: static void *fill_tree_desc_strict(struct tree_desc *desc,
      {
     -	return base_name_compare(a->path, tree_entry_len(a), a->mode,
     -				 b->path, tree_entry_len(b), b->mode);
    -+	int istree_a = (a->object_type == OBJ_TREE);
    -+	int istree_b = (b->object_type == OBJ_TREE);
    ++	int istree_a = S_ISDIR(a->mode);
    ++	int istree_b = S_ISDIR(b->mode);
     +	return base_name_compare(a->path, tree_entry_len(a), istree_a,
     +				 b->path, tree_entry_len(b), istree_b);
      }
    @@ tree-diff.c: static int tree_entry_pathcmp(struct tree_desc *t1, struct tree_des
      		return -1;
      
      	e1 = &t1->entry;
    -+	istree_e1 = (e1->object_type == OBJ_TREE);
    ++	istree_e1 = S_ISDIR(e1->mode);
      	e2 = &t2->entry;
     -	cmp = base_name_compare(e1->path, tree_entry_len(e1), e1->mode,
     -				e2->path, tree_entry_len(e2), e2->mode);
    -+	istree_e2 = (e2->object_type == OBJ_TREE);
    ++	istree_e2 = S_ISDIR(e2->mode);
     +	cmp = base_name_compare(e1->path, tree_entry_len(e1), istree_e1,
     +				e2->path, tree_entry_len(e2), istree_e2);
      	return cmp;
    @@ unpack-trees.c: static int do_compare_entry(const struct cache_entry *ce,
      static int compare_entry(const struct cache_entry *ce, const struct traverse_info *info, const struct name_entry *n)
      {
     -	int cmp = do_compare_entry(ce, info, n->path, n->pathlen, n->mode);
    -+	int istree = (n->object_type == OBJ_TREE);
    ++	int istree = S_ISDIR(n->mode);
     +	int cmp = do_compare_entry(ce, info, n->path, n->pathlen, istree);
      	if (cmp)
      		return cmp;
13:  7016008554a =  4:  2ff35f410cd fast-import tests: test for sorting dir/file foo v.s. foo.txt
14:  b0546197b1b =  5:  b3289f7bbe5 mktree tests: test that "mode" is passed when sorting
15:  73e92ac187d =  6:  0be013e47c4 diff tests: test that "mode" is passed when sorting
23:  592fecb7abc !  7:  3367850559b merge-tree tests: test for the mode comparison in same_entry()
    @@ Commit message
         but as seen here it's important that we don't think a path with the
         same content but different modes is the same_entry().
     
    -    The rest of this series will touch code that's relevant to this, but
    -    won't change its behavior. This test is just something I came up with
    -    in testing whether the mode test in same_entry() was needed at all.
    -
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
      ## t/t4300-merge-tree.sh ##
36:  81da5490221 !  8:  3c2ca98716d blame: emit a better error on 'git blame directory'
    @@ Commit message
         something uniquely bad when in a conflicted merge. See
         cd8ae20195 (git-blame shouldn't crash if run in an unmerged tree,
         2007-10-18) and 9aeaab6811 (blame: allow "blame file" in the middle of
    -    a conflicted merge, 2012-09-11) for the bug the t8004 test was
    -    originally meant to address.
    +    a conflicted merge, 2012-09-11) for the bug the test was originally
    +    meant to address.
     
         But when extending it let's grep out the specific error message for
         good measure. Having to change it in the future (e.g. as part of my
    @@ Commit message
     
      ## blame.c ##
     @@ blame.c: static void verify_working_tree_path(struct repository *r,
    + 		struct object_id blob_oid;
    + 		unsigned short mode;
      
    - 	for (parents = work_tree->parents; parents; parents = parents->next) {
    - 		const struct object_id *commit_oid = &parents->item->object.oid;
    --		struct object_id blob_oid;
    --		unsigned short mode;
    --		int ret = get_tree_entry_mode(r, commit_oid, path, &blob_oid,
    --					      &mode);
    --
    --		if (!ret && oid_object_info(r, &blob_oid, NULL) == OBJ_BLOB)
    -+		struct object_id oid;
    -+		if (!get_tree_entry_path(r, commit_oid, path, &oid))
    +-		if (!get_tree_entry(r, commit_oid, path, &blob_oid, &mode) &&
    +-		    oid_object_info(r, &blob_oid, NULL) == OBJ_BLOB)
    ++		if (!get_tree_entry(r, commit_oid, path, &blob_oid, &mode))
      			return;
      	}
      
 9:  0390b1e9ded =  9:  749be26bf8e notes & match-trees: use name_entry's "pathlen" member
11:  4fed508f3cb <  -:  ----------- tree-walk.h: add object_type member to name_entry
12:  c557b67231b <  -:  ----------- tree-walk.c: migrate to using new "object_type" field when possible
17:  f8912a409b5 <  -:  ----------- tree-walk.h users: switch object_type(...) to new .object_type
26:  4babecb7855 ! 10:  5c0a49c188f tree-walk.h users: use temporary variable(s) for "mode"
    @@ Commit message
         In preparation for an eventual rename of the "mode" field, add
         temporary variable(s) in those places where it's used more than once.
     
    -    This will make a subsequent commits easier to read., since we're only
    +    This will make those later commits easier to read, since we're only
         going to need to modify the line on which the assignment happens.
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
    @@ builtin/merge-tree.c: static struct merge_list *link_entry(unsigned stage, const
      	struct merge_list *link;
     +	unsigned int link_mode;
      
    - 	if (n->object_type == OBJ_NONE)
    + 	if (!n->mode)
      		return entry;
     @@ builtin/merge-tree.c: static struct merge_list *link_entry(unsigned stage, const struct traverse_info
      		path = entry->path;
29:  40f37e99cd9 ! 11:  e190ed39754 match-trees: use "tmp" for mode in shift_tree_by()
    @@ match-trees.c: void shift_tree_by(struct repository *r,
      	unsigned candidate = 0;
      
      	/* Can hash2 be a tree at shift_prefix in tree hash1? */
    --	if (!get_tree_entry_mode(r, hash1, shift_prefix, &sub1, &mode1) &&
    +-	if (!get_tree_entry(r, hash1, shift_prefix, &sub1, &mode1) &&
     -	    S_ISDIR(mode1))
    -+	if (!get_tree_entry_mode(r, hash1, shift_prefix, &sub1, &tmp) &&
    ++	if (!get_tree_entry(r, hash1, shift_prefix, &sub1, &tmp) &&
     +	    S_ISDIR(tmp))
      		candidate |= 1;
      
      	/* Can hash1 be a tree at shift_prefix in tree hash2? */
    --	if (!get_tree_entry_mode(r, hash2, shift_prefix, &sub2, &mode2) &&
    +-	if (!get_tree_entry(r, hash2, shift_prefix, &sub2, &mode2) &&
     -	    S_ISDIR(mode2))
    -+	if (!get_tree_entry_mode(r, hash2, shift_prefix, &sub2, &tmp) &&
    ++	if (!get_tree_entry(r, hash2, shift_prefix, &sub2, &tmp) &&
     +	    S_ISDIR(tmp))
      		candidate |= 2;
      
18:  df43f1a76ac ! 12:  960e15bc7d5 tree.h: format argument lists of read_tree_recursive() users
    @@ Metadata
     Author: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
      ## Commit message ##
    -    tree.h: format argument lists of read_tree_recursive() users
    +    tree.h: format argument lists of read_tree() users
     
    -    In preparation for adding a new argument to read_tree_fn_t re-indent
    -    and format the argument list of read_tree_recursive() callbacks, and
    +    Re-indent and format the argument list of read_tree() callbacks, and
         the relevant functions they call.
     
    -    This is a whitespace-only change to make reading subsequent commits
    -    easier. I'll be adding a new argument on the "mode" line, so leave
    -    space on it.
    +    This is a whitespace-only change to make changes in a later series
    +    easier to read. In that series I'll be adding a new argument on the
    +    "mode" line, so leave space on it for a new argument.
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
19:  152c6d88542 <  -:  ----------- tree.h API: make read_tree_fn_t take an "enum object_type"
20:  1c2f65cb674 <  -:  ----------- tree-walk.h users: migrate "p->mode &&" pattern
21:  163922d427c <  -:  ----------- tree-walk.h users: refactor chained "mode" if/else into switch
22:  21df7c668be <  -:  ----------- tree-walk.h users: migrate miscellaneous "mode" to "object_type"
25:  685da1abbdc <  -:  ----------- fsck.c: switch on "object_type" in fsck_walk_tree()
27:  7251654dd52 ! 13:  9c96d472472 tree-walk.h API: formatting changes for subsequent commit
    @@ Commit message
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
    - ## blame.c ##
    -@@ blame.c: static void verify_working_tree_path(struct repository *r,
    - 		const struct object_id *commit_oid = &parents->item->object.oid;
    - 		struct object_id blob_oid;
    - 		unsigned short mode;
    -+		int ret = get_tree_entry(r, commit_oid, path, &blob_oid,
    -+					 &mode);
    - 
    --		if (!get_tree_entry(r, commit_oid, path, &blob_oid, &mode) &&
    --		    oid_object_info(r, &blob_oid, NULL) == OBJ_BLOB)
    -+		if (!ret && oid_object_info(r, &blob_oid, NULL) == OBJ_BLOB)
    - 			return;
    - 	}
    - 
    -
      ## tree-walk.c ##
     @@ tree-walk.c: static int find_tree_entry(struct repository *r, struct tree_desc *t,
      			oidcpy(result, &oid);
30:  7f699bf2d5c ! 14:  44f16d74426 tree-walk.h API: add get_tree_entry_type()
    @@ Metadata
     Author: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
      ## Commit message ##
    -    tree-walk.h API: add get_tree_entry_type()
    +    tree-walk.h API doc: improve documentation of get_tree_entry()
     
    -    Add a get_tree_entry_type() helper function to compliment the existing
    -    get_tree_entry(), and a static get_tree_entry_all() which it uses internally.
    -
    -    Move those users of get_tree_entry_type() who didn't care about the
    -    mode specifically, but just want to know whether the tree entry is one
    -    of OBJ_{BLOB,COMMIT,TREE} over to the new get_tree_entry_type().
    -
    -    The get_tree_entry_all() function itself will be made non-static in a
    -    subsequent commit. I'm leaving its argument list indented accordingly
    -    to reduce churn when I do so.
    +    Change a mention of sha1 to OID and change the comment to a listing of
    +    functions discussed below, right now there's only one function, but
    +    subsequent commits will add more.
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
    - ## archive.c ##
    -@@ archive.c: static void parse_treeish_arg(const char **argv,
    - 
    - 	if (prefix) {
    - 		struct object_id tree_oid;
    --		unsigned short mode;
    -+		enum object_type object_type;
    - 		int err;
    - 
    --		err = get_tree_entry_mode(ar_args->repo,
    -+		err = get_tree_entry_type(ar_args->repo,
    - 					  &tree->object.oid,
    - 					  prefix, &tree_oid,
    --					  &mode);
    --		if (err || !S_ISDIR(mode))
    -+					  &object_type);
    -+		if (err || object_type != OBJ_TREE)
    - 			die(_("current working directory is untracked"));
    - 
    - 		tree = parse_tree_indirect(&tree_oid);
    -
    - ## match-trees.c ##
    -@@ match-trees.c: void shift_tree_by(struct repository *r,
    - 		   const char *shift_prefix)
    - {
    - 	struct object_id sub1, sub2;
    --	unsigned short tmp;
    -+	enum object_type tmp;
    - 	unsigned candidate = 0;
    - 
    - 	/* Can hash2 be a tree at shift_prefix in tree hash1? */
    --	if (!get_tree_entry_mode(r, hash1, shift_prefix, &sub1, &tmp) &&
    --	    S_ISDIR(tmp))
    -+	if (!get_tree_entry_type(r, hash1, shift_prefix, &sub1, &tmp) &&
    -+	    tmp == OBJ_TREE)
    - 		candidate |= 1;
    - 
    - 	/* Can hash1 be a tree at shift_prefix in tree hash2? */
    --	if (!get_tree_entry_mode(r, hash2, shift_prefix, &sub2, &tmp) &&
    --	    S_ISDIR(tmp))
    -+	if (!get_tree_entry_type(r, hash2, shift_prefix, &sub2, &tmp) &&
    -+	    tmp == OBJ_TREE)
    - 		candidate |= 2;
    - 
    - 	if (candidate == 3) {
    -
    - ## tree-walk.c ##
    -@@ tree-walk.c: struct dir_state {
    - 	struct object_id oid;
    - };
    - 
    -+static int get_tree_entry_all(struct repository *r,
    -+			      const struct object_id *tree_oid,
    -+			      const char *name,
    -+			      struct object_id *oid,
    -+			      unsigned short *mode,
    -+			      enum object_type *object_type);
    -+
    - static int find_tree_entry(struct repository *r, struct tree_desc *t,
    - 			   const char *name, struct object_id *result,
    --			   unsigned short *mode)
    -+			   unsigned short *mode,
    -+			   enum object_type *object_type)
    - {
    - 	int namelen = strlen(name);
    - 	while (t->size) {
    -@@ tree-walk.c: static int find_tree_entry(struct repository *r, struct tree_desc *t,
    - 		}
    - 		if (name[entrylen] != '/')
    - 			continue;
    --		if (!S_ISDIR(*mode))
    -+		if (*object_type != OBJ_TREE)
    - 			break;
    - 		if (++entrylen == namelen) {
    - 			oidcpy(result, &oid);
    - 			return 0;
    - 		}
    --		return get_tree_entry_mode(r, &oid, name + entrylen, result,
    --					   mode);
    -+		return get_tree_entry_all(r, &oid, name + entrylen, result,
    -+					  mode, object_type);
    - 	}
    - 	return -1;
    - }
    - 
    --int get_tree_entry_mode(struct repository *r,
    --			const struct object_id *tree_oid,
    --			const char *name,
    --			struct object_id *oid,
    --			unsigned short *mode)
    -+static int get_tree_entry_all(struct repository *r,
    -+		       const struct object_id *tree_oid,
    -+		       const char *name,
    -+		       struct object_id *oid,
    -+		       unsigned short *mode,
    -+		       enum object_type *object_type)
    - {
    - 	int retval;
    - 	void *tree;
    -@@ tree-walk.c: int get_tree_entry_mode(struct repository *r,
    - 		struct tree_desc t;
    - 		init_tree_desc(&t, tree, size);
    - 		retval = find_tree_entry(r, &t, name, oid,
    --					 mode);
    -+					 mode, object_type);
    - 	}
    - 	free(tree);
    - 	return retval;
    - }
    - 
    -+int get_tree_entry_mode(struct repository *r,
    -+			const struct object_id *tree_oid,
    -+			const char *name,
    -+			struct object_id *oid,
    -+			unsigned short *mode)
    -+{
    -+	enum object_type object_type;
    -+	return get_tree_entry_all(r, tree_oid, name, oid,
    -+				  mode, &object_type);
    -+}
    -+
    -+int get_tree_entry_type(struct repository *r,
    -+			const struct object_id *tree_oid,
    -+			const char *name,
    -+			struct object_id *oid,
    -+			enum object_type *object_type)
    -+{
    -+	unsigned short mode;
    -+	return get_tree_entry_all(r, tree_oid, name, oid,
    -+				  &mode, object_type);
    -+}
    -+
    - /*
    -  * This is Linux's built-in max for the number of symlinks to follow.
    -  * That limit, of course, does not affect git, but it's a reasonable
    -@@ tree-walk.c: enum get_oid_result get_tree_entry_follow_symlinks(struct repository *r,
    - 		int find_result;
    - 		char *first_slash;
    - 		char *remainder = NULL;
    -+		enum object_type object_type;
    - 
    - 		if (!t.buffer) {
    - 			void *tree;
    -@@ tree-walk.c: enum get_oid_result get_tree_entry_follow_symlinks(struct repository *r,
    - 		/* Look up the first (or only) path component in the tree. */
    - 		find_result = find_tree_entry(r, &t, namebuf.buf,
    - 					      &current_tree_oid,
    --					      mode);
    -+					      mode, &object_type);
    - 		if (find_result) {
    - 			goto done;
    - 		}
    -
      ## tree-walk.h ##
     @@ tree-walk.h: struct traverse_info {
    -  * Find an entry in a tree given a pathname and the sha1 of a tree to
    + };
    + 
    + /**
    +- * Find an entry in a tree given a pathname and the sha1 of a tree to
    ++ * Find an entry in a tree given a pathname and the OID of a tree to
       * search. Returns 0 if the entry is found and -1 otherwise.
       *
     - * The third and fourth parameters are set to the entry's sha1 and
     - * mode respectively.
    -+ * There are variants of this function depending on what fields in the
    -+ * "struct name_entry" you'd like. You always need a pointer to an
    -+ * appropriate variable to fill in (NULL won't do!):
    ++ * You always need a pointer to an appropriate variable to fill in
    ++ * (NULL won't do!). That variable is:
     + *
    -+ * get_tree_entry_mode(): unsigned int mode
    -+ * get_tree_entry_type(): enum object_type
    ++ * get_tree_entry(): unsigned short mode
       */
    - int get_tree_entry_mode(struct repository *, const struct object_id *, const char *,
    - 			struct object_id *,
    - 			unsigned short *);
    -+int get_tree_entry_type(struct repository *, const struct object_id *, const char *,
    -+			struct object_id *,
    -+			enum object_type *);
    - 
    - /**
    -  * Generate the full pathname of a tree entry based from the root of the
    + int get_tree_entry(struct repository *, const struct object_id *, const char *,
    + 		   struct object_id *,
28:  9e521a3cbf2 ! 15:  adbada0ade8 tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode()
    @@ Commit message
         change is only a search-replacement of the name and indentation of the
         argument lists.
     
    -    A subsequent commits will add get_tree_entry_type() and
    -    get_tree_entry_all() functions. Those changes will be much easier to
    -    read if we do this rename first.
    +    Subsequent commits will add another get_tree_entry_*() function. Those
    +    changes will be much easier to read if we do this rename first.
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
    @@ blame.c: static void verify_working_tree_path(struct repository *r,
      		const struct object_id *commit_oid = &parents->item->object.oid;
      		struct object_id blob_oid;
      		unsigned short mode;
    --		int ret = get_tree_entry(r, commit_oid, path, &blob_oid,
    --					 &mode);
    -+		int ret = get_tree_entry_mode(r, commit_oid, path, &blob_oid,
    -+					      &mode);
    - 
    - 		if (!ret && oid_object_info(r, &blob_oid, NULL) == OBJ_BLOB)
    +-
    +-		if (!get_tree_entry(r, commit_oid, path, &blob_oid, &mode))
    ++		if (!get_tree_entry_mode(r, commit_oid, path, &blob_oid, &mode))
      			return;
    + 	}
    + 
     @@ blame.c: static int fill_blob_sha1_and_mode(struct repository *r,
      {
      	if (!is_null_oid(&origin->blob_oid))
    @@ match-trees.c: void shift_tree_by(struct repository *r,
      	unsigned candidate = 0;
      
      	/* Can hash2 be a tree at shift_prefix in tree hash1? */
    --	if (!get_tree_entry(r, hash1, shift_prefix, &sub1, &mode1) &&
    -+	if (!get_tree_entry_mode(r, hash1, shift_prefix, &sub1, &mode1) &&
    - 	    S_ISDIR(mode1))
    +-	if (!get_tree_entry(r, hash1, shift_prefix, &sub1, &tmp) &&
    ++	if (!get_tree_entry_mode(r, hash1, shift_prefix, &sub1, &tmp) &&
    + 	    S_ISDIR(tmp))
      		candidate |= 1;
      
      	/* Can hash1 be a tree at shift_prefix in tree hash2? */
    --	if (!get_tree_entry(r, hash2, shift_prefix, &sub2, &mode2) &&
    -+	if (!get_tree_entry_mode(r, hash2, shift_prefix, &sub2, &mode2) &&
    - 	    S_ISDIR(mode2))
    +-	if (!get_tree_entry(r, hash2, shift_prefix, &sub2, &tmp) &&
    ++	if (!get_tree_entry_mode(r, hash2, shift_prefix, &sub2, &tmp) &&
    + 	    S_ISDIR(tmp))
      		candidate |= 2;
      
     
    @@ tree-walk.c: static int find_tree_entry(struct repository *r, struct tree_desc *
     
      ## tree-walk.h ##
     @@ tree-walk.h: struct traverse_info {
    -  * The third and fourth parameters are set to the entry's sha1 and
    -  * mode respectively.
    +  * You always need a pointer to an appropriate variable to fill in
    +  * (NULL won't do!). That variable is:
    +  *
    +- * get_tree_entry(): unsigned short mode
    ++ * get_tree_entry_mode(): unsigned short mode
       */
     -int get_tree_entry(struct repository *, const struct object_id *, const char *,
     -		   struct object_id *,
35:  a2a34fd3e2d ! 16:  3ba77fd3a47 tree-walk.h API: add a get_tree_entry_path() function
    @@ Commit message
         tree-walk.h API: add a get_tree_entry_path() function
     
         Add a get_tree_entry_path() variant in addition to
    -    get_tree_entry_path_{mode,type,all}(). This is for those callers that
    -    need neither the mode nor "enum object_type" parameters filled for
    -    them.
    +    get_tree_entry_path_mode(). This is for those callers that don't need
    +    the "mode" filled for them.
     
    -    There are callers here which don't need the "struct object_id" filled;
    -    forcing callers to pass one just requires they create a throwaway
    -    variable.
    +    There are callers here which don't need the "struct object_id" filled
    +    either, but let's leave that for now. I'm focusing downstream code
    +    that depends on "mode" (or "enum object_type").
     
    -    See the following commits for the introduction of such code that's
    -    being modified here:
    +    The code being modified here was introduced in:
     
          - shift_tree(): 68faf68938e (A new merge stragety[sic] 'subtree'.,
             2007-02-15) for the shift_tree()
    @@ Commit message
          - diagnose_invalid_oid_path(): 009fee4774d (Detailed diagnosis when
            parsing an object name fails., 2009-12-07)
     
    -    Those could potentially be refactored too, but I've got to stop at
    -    some point, and right now I'm focusing downstream code that depends on
    -    "mode" (or "enum object_type").
    -
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
      ## match-trees.c ##
    @@ object-name.c: static void diagnose_invalid_oid_path(struct repository *r,
      			    fullname,
     
      ## tree-walk.c ##
    -@@ tree-walk.c: int get_tree_entry_all(struct repository *r,
    +@@ tree-walk.c: int get_tree_entry_mode(struct repository *r,
      	return retval;
      }
      
    @@ tree-walk.c: int get_tree_entry_all(struct repository *r,
     +			struct object_id *oid)
     +{
     +	unsigned short mode;
    -+	enum object_type object_type;
    -+	return get_tree_entry_all(r, tree_oid, name, oid,
    -+				  &mode, &object_type);
    ++	return get_tree_entry_mode(r, tree_oid, name, oid, &mode);
     +}
     +
    - int get_tree_entry_mode(struct repository *r,
    - 			const struct object_id *tree_oid,
    - 			const char *name,
    + /*
    +  * This is Linux's built-in max for the number of symlinks to follow.
    +  * That limit, of course, does not affect git, but it's a reasonable
     
      ## tree-walk.h ##
     @@ tree-walk.h: struct traverse_info {
    -  * "struct name_entry" you'd like. You always need a pointer to an
    -  * appropriate variable to fill in (NULL won't do!):
    +  * You always need a pointer to an appropriate variable to fill in
    +  * (NULL won't do!). That variable is:
       *
     + * get_tree_entry_path(): <no extra argument, just get the common 'path'>
    -  * get_tree_entry_mode(): unsigned int mode
    -  * get_tree_entry_type(): enum object_type
    -  * get_tree_entry_all(): unsigned int mode, enum object_type
    +  * get_tree_entry_mode(): unsigned short mode
       */
     +int get_tree_entry_path(struct repository *, const struct object_id *, const char *,
     +			struct object_id *);
31:  7ab7576cb16 ! 17:  dc895822828 tree-walk.h API: document and format tree_entry_extract()
    @@ Commit message
         tree-walk.h API: document and format tree_entry_extract()
     
         Document and format the argument list of the tree_entry_extract()
    -    function in preparation for adding a sister function.
    +    function in preparation for eventually adding a sister function.
     
         Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
     
    @@ tree-walk.h: struct tree_desc {
     + * "struct name_entry" you'd like. You always need a pointer to an
     + * appropriate variable to fill in (NULL won't do!):
     + *
    -+ * tree_entry_extract_mode(): const char *path, unsigned int mode
    ++ * tree_entry_extract(): const char *path, unsigned int mode
       */
     -static inline const struct object_id *tree_entry_extract(struct tree_desc *desc, const char **pathp, unsigned short *modep)
     +static inline const struct object_id *tree_entry_extract(struct tree_desc *desc,
32:  a1bd81d64aa ! 18:  e961a0e8b5b tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode()
    @@ tree-diff.c: static struct combine_diff_path *emit_path(struct combine_diff_path
      
      		isdir = S_ISDIR(mode);
     
    + ## tree-walk.c ##
    +@@ tree-walk.c: static int find_tree_entry(struct repository *r, struct tree_desc *t,
    + 		struct object_id oid;
    + 		int entrylen, cmp;
    + 
    +-		oidcpy(&oid, tree_entry_extract(t, &entry, mode));
    ++		oidcpy(&oid, tree_entry_extract_mode(t, &entry, mode));
    + 		entrylen = tree_entry_len(&t->entry);
    + 		update_tree_entry(t);
    + 		if (entrylen > namelen)
    +
      ## tree-walk.h ##
     @@ tree-walk.h: struct tree_desc {
    +  * "struct name_entry" you'd like. You always need a pointer to an
    +  * appropriate variable to fill in (NULL won't do!):
       *
    -  * tree_entry_extract_mode(): const char *path, unsigned int mode
    +- * tree_entry_extract(): const char *path, unsigned int mode
    ++ * tree_entry_extract_mode(): const char *path, unsigned int mode
       */
     -static inline const struct object_id *tree_entry_extract(struct tree_desc *desc,
     -							 const char **pathp,
33:  ce7c19ad39c <  -:  ----------- tree-walk.h API: add a tree_entry_extract_all() function
34:  95eec961be8 <  -:  ----------- tree-walk.h API: add get_tree_entry_all()
37:  4d51da4ea39 <  -:  ----------- tree-walk.h API: add a tree_entry_extract_type() function
-- 
2.31.1.474.g72d45d12706


  reply	other threads:[~2021-03-31 19:11 UTC|newest]

Thread overview: 262+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-18  0:29 [PATCH] read_tree(): pass "int stage" as context to read_tree_recursive() Nguyễn Thái Ngọc Duy
2021-03-06 19:34 ` [PATCH 0/7] Move the read_tree() function to its only user Ævar Arnfjörð Bjarmason
2021-03-06 22:06   ` Elijah Newren
2021-03-08  2:21   ` [PATCH v2 0/6] " Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 00/30] tree-walk: mostly "mode" to "enum object_type" Ævar Arnfjörð Bjarmason
2021-03-09  0:10       ` Elijah Newren
2021-03-09 20:41       ` Elijah Newren
2021-03-09 21:48         ` Ævar Arnfjörð Bjarmason
2021-03-12  6:44           ` Elijah Newren
2021-03-16  2:12       ` [PATCH v2 00/29] tree-walk: mostly replace "mode" with " Ævar Arnfjörð Bjarmason
2021-03-16  7:04         ` Elijah Newren
2021-03-16  8:30           ` Ævar Arnfjörð Bjarmason
2021-03-16 15:57         ` [PATCH v3 00/32] " Ævar Arnfjörð Bjarmason
2021-03-16 17:28           ` Elijah Newren
2021-03-21  0:00           ` [PATCH v4 00/29] " Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 01/29] notes & match-trees: use name_entry's "pathlen" member Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 02/29] cache.h: add a comment to object_type() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 03/29] tree-walk.h: add object_type member to name_entry Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 04/29] tree-walk.c: migrate to using new "object_type" field when possible Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 05/29] fast-import tests: test for sorting dir/file foo v.s. foo.txt Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 06/29] mktree tests: test that "mode" is passed when sorting Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 07/29] diff " Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 08/29] cache.h: have base_name_compare() take "is tree?", not "mode" Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 09/29] tree-walk.h users: switch object_type(...) to new .object_type Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 10/29] tree.h: format argument lists of read_tree_recursive() users Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 11/29] tree.h API: make read_tree_fn_t take an "enum object_type" Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 12/29] tree-walk.h users: migrate "p->mode &&" pattern Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 13/29] tree-walk.h users: refactor chained "mode" if/else into switch Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 14/29] tree-walk.h users: migrate miscellaneous "mode" to "object_type" Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 15/29] merge-tree tests: test for the mode comparison in same_entry() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 16/29] merge-ort: correct reference to test in 62fdec17a11 Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 17/29] fsck.c: switch on "object_type" in fsck_walk_tree() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 18/29] tree-walk.h users: use temporary variable(s) for "mode" Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 19/29] tree-walk.h API: formatting changes for subsequent commit Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 20/29] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 21/29] match-trees: use "tmp" for mode in shift_tree_by() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 22/29] tree-walk.h API: add get_tree_entry_type() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 23/29] tree-walk.h API: document and format tree_entry_extract() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 24/29] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode() Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 25/29] tree-walk.h API: add a tree_entry_extract_all() function Ævar Arnfjörð Bjarmason
2021-03-21  0:00             ` [PATCH v4 26/29] tree-walk.h API: add get_tree_entry_all() Ævar Arnfjörð Bjarmason
2021-03-21  0:01             ` [PATCH v4 27/29] tree-walk.h API: add a get_tree_entry_path() function Ævar Arnfjörð Bjarmason
2021-03-21  0:01             ` [PATCH v4 28/29] blame: emit a better error on 'git blame directory' Ævar Arnfjörð Bjarmason
2021-03-21  0:01             ` [PATCH v4 29/29] tree-walk.h API: add a tree_entry_extract_type() function Ævar Arnfjörð Bjarmason
2021-03-21  1:16             ` [PATCH v4 00/29] tree-walk: mostly replace "mode" with "enum object_type" Junio C Hamano
2021-03-21 12:26               ` Ævar Arnfjörð Bjarmason
2021-03-21 12:39                 ` [PATCH 0/2] diff --no-index: fix test blind spots Ævar Arnfjörð Bjarmason
2021-03-21 12:39                   ` [PATCH 1/2] diff --no-index tests: add test for --exit-code Ævar Arnfjörð Bjarmason
2021-03-21 18:33                     ` Ramsay Jones
2021-03-21 21:33                       ` Junio C Hamano
2021-03-21 22:44                         ` Ævar Arnfjörð Bjarmason
2021-03-21 12:39                   ` [PATCH 2/2] diff --no-index tests: test mode normalization Ævar Arnfjörð Bjarmason
2021-03-21 22:36                   ` [PATCH v2 0/2] diff --no-index: fix test blind spots Ævar Arnfjörð Bjarmason
2021-03-21 22:36                     ` [PATCH v2 1/2] diff --no-index tests: add test for --exit-code Ævar Arnfjörð Bjarmason
2021-03-21 22:36                     ` [PATCH v2 2/2] diff --no-index tests: test mode normalization Ævar Arnfjörð Bjarmason
2021-03-22 19:22                       ` Junio C Hamano
2021-03-22  4:27                     ` [PATCH v2 0/2] diff --no-index: fix test blind spots Junio C Hamano
2021-03-23 16:40                     ` [PATCH v3 " Ævar Arnfjörð Bjarmason
2021-03-23 16:40                       ` [PATCH v3 1/2] diff --no-index tests: add test for --exit-code Ævar Arnfjörð Bjarmason
2021-03-23 16:40                       ` [PATCH v3 2/2] diff --no-index tests: test mode normalization Ævar Arnfjörð Bjarmason
2021-03-23 16:47                       ` [PATCH v3 0/2] diff --no-index: fix test blind spots Junio C Hamano
2021-03-21 17:13                 ` [PATCH v4 00/29] tree-walk: mostly replace "mode" with "enum object_type" Junio C Hamano
2021-03-21 18:42                   ` Ævar Arnfjörð Bjarmason
2021-03-31 19:09                     ` Ævar Arnfjörð Bjarmason [this message]
2021-03-31 19:09                       ` [PATCH v5 01/18] cache.h: add a comment to object_type() Ævar Arnfjörð Bjarmason
2021-03-31 22:33                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 02/18] merge-ort: correct reference to test in 62fdec17a11 Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 03/18] cache.h: have base_name_compare() take "is tree?", not "mode" Ævar Arnfjörð Bjarmason
2021-03-31 22:55                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 04/18] fast-import tests: test for sorting dir/file foo v.s. foo.txt Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 05/18] mktree tests: test that "mode" is passed when sorting Ævar Arnfjörð Bjarmason
2021-03-31 23:04                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 06/18] diff " Ævar Arnfjörð Bjarmason
2021-03-31 23:07                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 07/18] merge-tree tests: test for the mode comparison in same_entry() Ævar Arnfjörð Bjarmason
2021-03-31 23:12                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 08/18] blame: emit a better error on 'git blame directory' Ævar Arnfjörð Bjarmason
2021-03-31 23:26                         ` Junio C Hamano
2021-04-02  9:26                           ` Ævar Arnfjörð Bjarmason
2021-04-02 21:08                             ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 09/18] notes & match-trees: use name_entry's "pathlen" member Ævar Arnfjörð Bjarmason
2021-03-31 23:32                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 10/18] tree-walk.h users: use temporary variable(s) for "mode" Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 11/18] match-trees: use "tmp" for mode in shift_tree_by() Ævar Arnfjörð Bjarmason
2021-03-31 23:35                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 12/18] tree.h: format argument lists of read_tree() users Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 13/18] tree-walk.h API: formatting changes for subsequent commit Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 14/18] tree-walk.h API doc: improve documentation of get_tree_entry() Ævar Arnfjörð Bjarmason
2021-04-01 20:30                         ` Junio C Hamano
2021-04-02  9:27                           ` Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 15/18] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode() Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 16/18] tree-walk.h API: add a get_tree_entry_path() function Ævar Arnfjörð Bjarmason
2021-04-01 20:41                         ` Junio C Hamano
2021-04-02  9:41                           ` Ævar Arnfjörð Bjarmason
2021-03-31 19:09                       ` [PATCH v5 17/18] tree-walk.h API: document and format tree_entry_extract() Ævar Arnfjörð Bjarmason
2021-04-01 20:46                         ` Junio C Hamano
2021-03-31 19:09                       ` [PATCH v5 18/18] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode() Ævar Arnfjörð Bjarmason
2021-04-01 20:49                         ` Junio C Hamano
2021-03-16 15:57         ` [PATCH v3 01/32] diff.c: remove redundant canon_mode() call Ævar Arnfjörð Bjarmason
2021-03-16 15:57         ` [PATCH v3 02/32] notes & match-trees: use name_entry's "pathlen" member Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 03/32] cache.h: add a comment to object_type() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 04/32] tree-walk.h: add object_type member to name_entry Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 05/32] tree-walk.c: migrate to using new "object_type" field when possible Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 06/32] fast-import tests: test for sorting dir/file foo v.s. foo.txt Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 07/32] mktree tests: test that "mode" is passed when sorting Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 08/32] diff " Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 09/32] cache.h: have base_name_compare() take "is tree?", not "mode" Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 10/32] tree-walk.h users: switch object_type(...) to new .object_type Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 11/32] tree.h: format argument lists of read_tree_recursive() users Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 12/32] tree.h users: format argument lists in archive.c Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 13/32] archive: get rid of 'stage' parameter Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 14/32] tree.h API: make read_tree_fn_t take an "enum object_type" Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 15/32] tree-walk.h users: migrate "p->mode &&" pattern Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 16/32] tree-walk.h users: refactor chained "mode" if/else into switch Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 17/32] tree-walk.h users: migrate miscellaneous "mode" to "object_type" Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 18/32] merge-tree tests: test for the mode comparison in same_entry() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 19/32] merge-ort: correct reference to test in 62fdec17a11 Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 20/32] fsck.c: switch on "object_type" in fsck_walk_tree() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 21/32] tree-walk.h users: use temporary variable(s) for "mode" Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 22/32] tree-walk.h API: formatting changes for subsequent commit Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 23/32] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 24/32] match-trees: use "tmp" for mode in shift_tree_by() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 25/32] tree-walk.h API: add get_tree_entry_type() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 26/32] tree-walk.h API: document and format tree_entry_extract() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 27/32] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 28/32] tree-walk.h API: add a tree_entry_extract_all() function Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 29/32] tree-walk.h API: add get_tree_entry_all() Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 30/32] tree-walk.h API: add a get_tree_entry_path() function Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 31/32] blame: emit a better error on 'git blame directory' Ævar Arnfjörð Bjarmason
2021-03-16 15:58         ` [PATCH v3 32/32] tree-walk.h API: add a tree_entry_extract_type() function Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 01/29] diff.c: remove redundant canon_mode() call Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 02/29] notes & match-trees: use name_entry's "pathlen" member Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 03/29] cache.h: add a comment to object_type() Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 04/29] tree-walk.h: add object_type member to name_entry Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 05/29] tree-walk.c: migrate to using new "object_type" field when possible Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 06/29] cache.h: have base_name_compare() take "is tree?", not "mode" Ævar Arnfjörð Bjarmason
2021-03-16  5:49         ` Elijah Newren
2021-03-16  2:12       ` [PATCH v2 07/29] tree-walk.h users: switch object_type(...) to new .object_type Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 08/29] tree.h: format argument lists of read_tree_recursive() users Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 09/29] tree.h users: format argument lists in archive.c Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 10/29] archive: get rid of 'stage' parameter Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 11/29] tree.h API: make read_tree_fn_t take an "enum object_type" Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 12/29] tree-walk.h users: migrate "p->mode &&" pattern Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 13/29] tree-walk.h users: refactor chained "mode" if/else into switch Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 14/29] tree-walk.h users: migrate miscellaneous "mode" to "object_type" Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 15/29] merge-tree tests: test for the mode comparison in same_entry() Ævar Arnfjörð Bjarmason
2021-03-16  2:12       ` [PATCH v2 16/29] merge-ort: correct reference to test in 62fdec17a11 Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 17/29] fsck.c: switch on "object_type" in fsck_walk_tree() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 18/29] tree-walk.h users: use temporary variable(s) for "mode" Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 19/29] tree-walk.h API: formatting changes for subsequent commit Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 20/29] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 21/29] tree-walk.h API users: use "tmp" for mode in shift_tree_by() Ævar Arnfjörð Bjarmason
2021-03-16  6:34         ` Elijah Newren
2021-03-16  2:13       ` [PATCH v2 22/29] tree-walk.h API: add get_tree_entry_type() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 23/29] tree-walk.h API: document and format tree_entry_extract() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 24/29] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 25/29] tree-walk.h API: add a tree_entry_extract_all() function Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 26/29] tree-walk.h API: add get_tree_entry_all() Ævar Arnfjörð Bjarmason
2021-03-16  2:13       ` [PATCH v2 27/29] tree-walk.h API: add a get_tree_entry_path() function Ævar Arnfjörð Bjarmason
2021-03-16  6:50         ` Elijah Newren
2021-03-16  2:13       ` [PATCH v2 28/29] blame: emit a better error on 'git blame directory' Ævar Arnfjörð Bjarmason
2021-03-16  6:55         ` Elijah Newren
2021-03-16  2:13       ` [PATCH v2 29/29] tree-walk.h API: add a tree_entry_extract_type() function Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 01/30] diff.c: remove redundant canon_mode() call Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 02/30] notes & match-trees: use name_entry's "pathlen" member Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 03/30] cache.h: add a comment to object_type() Ævar Arnfjörð Bjarmason
2021-03-09 16:40       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 04/30] tree-walk.h: add object_type member to name_entry Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 05/30] tree-walk.c: migrate to using new "object_type" field when possible Ævar Arnfjörð Bjarmason
2021-03-09 16:44       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 06/30] cache.h: have base_name_compare() take "is tree?", not "mode" Ævar Arnfjörð Bjarmason
2021-03-09 16:56       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 07/30] tree-walk.h users: switch object_type(...) to new .object_type Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 08/30] tree.h: format argument lists of read_tree_recursive() users Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 09/30] tree.h users: format argument lists in archive.c Ævar Arnfjörð Bjarmason
2021-03-09 17:04       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 10/30] archive: get rid of 'stage' parameter Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 11/30] tree.h API: make read_tree_fn_t take an "enum object_type" Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 12/30] tree-walk.h users: migrate "p->mode &&" pattern Ævar Arnfjörð Bjarmason
2021-03-09 17:09       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 13/30] tree-walk.h users: refactor chained "mode" if/else into switch Ævar Arnfjörð Bjarmason
2021-03-09 17:11       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 14/30] tree-walk.h users: migrate miscellaneous "mode" to "object_type" Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 15/30] merge-tree tests: test for the mode comparison in same_entry() Ævar Arnfjörð Bjarmason
2021-03-09 17:19       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 16/30] merge-ort: correct reference to test in 62fdec17a11 Ævar Arnfjörð Bjarmason
2021-03-09 17:22       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 17/30] fsck.c: switch on "object_type" in fsck_walk_tree() Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 18/30] tree-walk.h users: use temporary variable(s) for "mode" Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 19/30] tree-walk.h API: formatting changes for subsequent commit Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 20/30] tree-walk.h API: rename get_tree_entry() to get_tree_entry_mode() Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 21/30] tree-walk.h API users: use "tmp" for mode in shift_tree_by() Ævar Arnfjörð Bjarmason
2021-03-09 17:47       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 22/30] tree-walk.h API: Add get_tree_entry_type() Ævar Arnfjörð Bjarmason
2021-03-09 17:56       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 23/30] tree-walk.h API: add a get_tree_entry_path() function Ævar Arnfjörð Bjarmason
2021-03-09 18:17       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 24/30] tree-walk.h API: document and format tree_entry_extract() Ævar Arnfjörð Bjarmason
2021-03-09 18:28       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 25/30] tree-entry.h API: rename tree_entry_extract() to tree_entry_extract_mode() Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 26/30] tree-walk.h API: add a tree_entry_extract_all() function Ævar Arnfjörð Bjarmason
2021-03-09 18:30       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 27/30] tree-walk.h API: add a tree_entry_extract_type() function Ævar Arnfjörð Bjarmason
2021-03-08 15:06     ` [PATCH 28/30] tree-walk.h API users: rename "struct name_entry"'s "mode" to "raw_mode" Ævar Arnfjörð Bjarmason
2021-03-09 18:53       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 29/30] tree.h API users: rename read_tree_fn_t's " Ævar Arnfjörð Bjarmason
2021-03-09 19:02       ` Elijah Newren
2021-03-08 15:06     ` [PATCH 30/30] tree-walk.h API: move canon_mode() back out of decode_tree_entry() Ævar Arnfjörð Bjarmason
2021-03-09 20:23       ` Elijah Newren
2021-03-08 19:18     ` [PATCH v2 0/6] Move the read_tree() function to its only user Elijah Newren
2021-03-15 23:43     ` [PATCH v3 0/9] read_tree() and read_tree_recursive() refactoring Ævar Arnfjörð Bjarmason
2021-03-16  5:37       ` Elijah Newren
2021-03-16 15:52       ` [PATCH v4 " Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 1/9] ls-files tests: add meaningful --with-tree tests Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 2/9] tree.c API: move read_tree() into builtin/ls-files.c Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 3/9] ls-files: don't needlessly pass around stage variable Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 4/9] ls-files: refactor away read_tree() Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 5/9] tree.h API: remove support for starting at prefix != "" Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 6/9] tree.h API: remove "stage" parameter from read_tree_recursive() Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 7/9] tree.h API: rename read_tree_recursive() to read_tree() Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 8/9] show tests: add test for "git show <tree>" Ævar Arnfjörð Bjarmason
2021-03-16 15:52       ` [PATCH v4 9/9] tree.h API: expose read_tree_1() as read_tree_at() Ævar Arnfjörð Bjarmason
2021-03-17 17:38       ` [PATCH v3 0/9] read_tree() and read_tree_recursive() refactoring Junio C Hamano
2021-03-20 22:37         ` [PATCH v5 0/8] " Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 1/8] show tests: add test for "git show <tree>" Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 2/8] ls-files tests: add meaningful --with-tree tests Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 3/8] tree.c API: move read_tree() into builtin/ls-files.c Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 4/8] ls-files: don't needlessly pass around stage variable Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 5/8] ls-files: refactor away read_tree() Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 6/8] archive: stop passing "stage" through read_tree_recursive() Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 7/8] tree.h API: expose read_tree_1() as read_tree_at() Ævar Arnfjörð Bjarmason
2021-03-20 22:37           ` [PATCH v5 8/8] tree.h API: simplify read_tree_recursive() signature Ævar Arnfjörð Bjarmason
2021-03-20 23:08           ` [PATCH v5 0/8] read_tree() and read_tree_recursive() refactoring Junio C Hamano
2021-03-15 23:43     ` [PATCH v3 1/9] ls-files tests: add meaningful --with-tree tests Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 2/9] tree.c API: move read_tree() into builtin/ls-files.c Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 3/9] ls-files: don't needlessly pass around stage variable Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 4/9] ls-files: refactor away read_tree() Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 5/9] tree.h API: remove support for starting at prefix != "" Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 6/9] tree.h API: remove "stage" parameter from read_tree_recursive() Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 7/9] tree.h API: rename read_tree_recursive() to read_tree() Ævar Arnfjörð Bjarmason
2021-03-15 23:43     ` [PATCH v3 8/9] show tests: add test for "git show <tree>" Ævar Arnfjörð Bjarmason
2021-03-16  5:19       ` Elijah Newren
2021-03-15 23:43     ` [PATCH v3 9/9] tree.h API: expose read_tree_1() as read_tree_at() Ævar Arnfjörð Bjarmason
2021-03-08  2:21   ` [PATCH v2 1/6] ls-files tests: add meaningful --with-tree tests Ævar Arnfjörð Bjarmason
2021-03-08  2:21   ` [PATCH v2 2/6] tree.c API: move read_tree() into builtin/ls-files.c Ævar Arnfjörð Bjarmason
2021-03-08 18:06     ` Junio C Hamano
2021-03-12 21:41     ` Junio C Hamano
2021-03-08  2:21   ` [PATCH v2 3/6] ls-files: don't needlessly pass around stage variable Ævar Arnfjörð Bjarmason
2021-03-08 18:18     ` Junio C Hamano
2021-03-08  2:21   ` [PATCH v2 4/6] ls-files: refactor away read_tree() Ævar Arnfjörð Bjarmason
2021-03-08 18:19     ` Junio C Hamano
2021-03-08  2:21   ` [PATCH v2 5/6] tree.h API: remove support for starting at prefix != "" Ævar Arnfjörð Bjarmason
2021-03-08  2:21   ` [PATCH v2 6/6] tree.h API: remove "stage" parameter from read_tree_recursive() Ævar Arnfjörð Bjarmason
2021-03-06 19:34 ` [PATCH 1/7] tree.c API: move read_tree() into builtin/ls-files.c Ævar Arnfjörð Bjarmason
2021-03-06 19:34 ` [PATCH 2/7] ls-files: don't needlessly pass around stage variable Ævar Arnfjörð Bjarmason
2021-03-06 19:34 ` [PATCH 3/7] ls-files: remove cache juggling + sorting Ævar Arnfjörð Bjarmason
2021-03-06 21:37   ` Elijah Newren
2021-03-06 19:34 ` [PATCH 4/7] merge-ort: move cmp_cache_name_compare() from tree.c Ævar Arnfjörð Bjarmason
2021-03-06 19:34 ` [PATCH 5/7] ls-files: refactor read_one_entry_quick() to use a strbuf Ævar Arnfjörð Bjarmason
2021-03-06 19:34 ` [PATCH 6/7] tree.h API: remove support for starting at prefix != "" Ævar Arnfjörð Bjarmason
2021-03-06 21:55   ` Elijah Newren
2021-03-06 19:34 ` [PATCH 7/7] tree.h API: remove "stage" parameter from read_tree_recursive() Ævar Arnfjörð Bjarmason

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover-00.19-00000000000-20210331T190531Z-avarab@gmail.com \
    --to=avarab@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=newren@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).