cache,tree: move basic name compare functions from read-cache to tree
None of base_name_compare(), df_name_compare(), or name_compare() depended upon a cache_entry or index_state in any way. By moving these functions to tree.h, half a dozen other files can stop depending upon cache.h (though that change will be made in a later commit). Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
aabc5617cd
commit
53dca334d6
5
cache.h
5
cache.h
@ -557,11 +557,6 @@ extern int verify_ce_order;
|
|||||||
#define DATA_CHANGED 0x0020
|
#define DATA_CHANGED 0x0020
|
||||||
#define TYPE_CHANGED 0x0040
|
#define TYPE_CHANGED 0x0040
|
||||||
|
|
||||||
int base_name_compare(const char *name1, size_t len1, int mode1,
|
|
||||||
const char *name2, size_t len2, int mode2);
|
|
||||||
int df_name_compare(const char *name1, size_t len1, int mode1,
|
|
||||||
const char *name2, size_t len2, int mode2);
|
|
||||||
int name_compare(const char *name1, size_t len1, const char *name2, size_t len2);
|
|
||||||
int cmp_cache_name_compare(const void *a_, const void *b_);
|
int cmp_cache_name_compare(const void *a_, const void *b_);
|
||||||
|
|
||||||
/* add */
|
/* add */
|
||||||
|
68
read-cache.c
68
read-cache.c
@ -499,74 +499,6 @@ int ie_modified(struct index_state *istate,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int base_name_compare(const char *name1, size_t len1, int mode1,
|
|
||||||
const char *name2, size_t len2, int mode2)
|
|
||||||
{
|
|
||||||
unsigned char c1, c2;
|
|
||||||
size_t len = len1 < len2 ? len1 : len2;
|
|
||||||
int cmp;
|
|
||||||
|
|
||||||
cmp = memcmp(name1, name2, len);
|
|
||||||
if (cmp)
|
|
||||||
return cmp;
|
|
||||||
c1 = name1[len];
|
|
||||||
c2 = name2[len];
|
|
||||||
if (!c1 && S_ISDIR(mode1))
|
|
||||||
c1 = '/';
|
|
||||||
if (!c2 && S_ISDIR(mode2))
|
|
||||||
c2 = '/';
|
|
||||||
return (c1 < c2) ? -1 : (c1 > c2) ? 1 : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* df_name_compare() is identical to base_name_compare(), except it
|
|
||||||
* compares conflicting directory/file entries as equal. Note that
|
|
||||||
* while a directory name compares as equal to a regular file, they
|
|
||||||
* then individually compare _differently_ to a filename that has
|
|
||||||
* a dot after the basename (because '\0' < '.' < '/').
|
|
||||||
*
|
|
||||||
* This is used by routines that want to traverse the git namespace
|
|
||||||
* but then handle conflicting entries together when possible.
|
|
||||||
*/
|
|
||||||
int df_name_compare(const char *name1, size_t len1, int mode1,
|
|
||||||
const char *name2, size_t len2, int mode2)
|
|
||||||
{
|
|
||||||
unsigned char c1, c2;
|
|
||||||
size_t len = len1 < len2 ? len1 : len2;
|
|
||||||
int cmp;
|
|
||||||
|
|
||||||
cmp = memcmp(name1, name2, len);
|
|
||||||
if (cmp)
|
|
||||||
return cmp;
|
|
||||||
/* Directories and files compare equal (same length, same name) */
|
|
||||||
if (len1 == len2)
|
|
||||||
return 0;
|
|
||||||
c1 = name1[len];
|
|
||||||
if (!c1 && S_ISDIR(mode1))
|
|
||||||
c1 = '/';
|
|
||||||
c2 = name2[len];
|
|
||||||
if (!c2 && S_ISDIR(mode2))
|
|
||||||
c2 = '/';
|
|
||||||
if (c1 == '/' && !c2)
|
|
||||||
return 0;
|
|
||||||
if (c2 == '/' && !c1)
|
|
||||||
return 0;
|
|
||||||
return c1 - c2;
|
|
||||||
}
|
|
||||||
|
|
||||||
int name_compare(const char *name1, size_t len1, const char *name2, size_t len2)
|
|
||||||
{
|
|
||||||
size_t min_len = (len1 < len2) ? len1 : len2;
|
|
||||||
int cmp = memcmp(name1, name2, min_len);
|
|
||||||
if (cmp)
|
|
||||||
return cmp;
|
|
||||||
if (len1 < len2)
|
|
||||||
return -1;
|
|
||||||
if (len1 > len2)
|
|
||||||
return 1;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int cache_name_stage_compare(const char *name1, int len1, int stage1,
|
static int cache_name_stage_compare(const char *name1, int len1, int stage1,
|
||||||
const char *name2, int len2, int stage2)
|
const char *name2, int len2, int stage2)
|
||||||
{
|
{
|
||||||
|
68
tree.c
68
tree.c
@ -94,6 +94,74 @@ int read_tree(struct repository *r,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int base_name_compare(const char *name1, size_t len1, int mode1,
|
||||||
|
const char *name2, size_t len2, int mode2)
|
||||||
|
{
|
||||||
|
unsigned char c1, c2;
|
||||||
|
size_t len = len1 < len2 ? len1 : len2;
|
||||||
|
int cmp;
|
||||||
|
|
||||||
|
cmp = memcmp(name1, name2, len);
|
||||||
|
if (cmp)
|
||||||
|
return cmp;
|
||||||
|
c1 = name1[len];
|
||||||
|
c2 = name2[len];
|
||||||
|
if (!c1 && S_ISDIR(mode1))
|
||||||
|
c1 = '/';
|
||||||
|
if (!c2 && S_ISDIR(mode2))
|
||||||
|
c2 = '/';
|
||||||
|
return (c1 < c2) ? -1 : (c1 > c2) ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* df_name_compare() is identical to base_name_compare(), except it
|
||||||
|
* compares conflicting directory/file entries as equal. Note that
|
||||||
|
* while a directory name compares as equal to a regular file, they
|
||||||
|
* then individually compare _differently_ to a filename that has
|
||||||
|
* a dot after the basename (because '\0' < '.' < '/').
|
||||||
|
*
|
||||||
|
* This is used by routines that want to traverse the git namespace
|
||||||
|
* but then handle conflicting entries together when possible.
|
||||||
|
*/
|
||||||
|
int df_name_compare(const char *name1, size_t len1, int mode1,
|
||||||
|
const char *name2, size_t len2, int mode2)
|
||||||
|
{
|
||||||
|
unsigned char c1, c2;
|
||||||
|
size_t len = len1 < len2 ? len1 : len2;
|
||||||
|
int cmp;
|
||||||
|
|
||||||
|
cmp = memcmp(name1, name2, len);
|
||||||
|
if (cmp)
|
||||||
|
return cmp;
|
||||||
|
/* Directories and files compare equal (same length, same name) */
|
||||||
|
if (len1 == len2)
|
||||||
|
return 0;
|
||||||
|
c1 = name1[len];
|
||||||
|
if (!c1 && S_ISDIR(mode1))
|
||||||
|
c1 = '/';
|
||||||
|
c2 = name2[len];
|
||||||
|
if (!c2 && S_ISDIR(mode2))
|
||||||
|
c2 = '/';
|
||||||
|
if (c1 == '/' && !c2)
|
||||||
|
return 0;
|
||||||
|
if (c2 == '/' && !c1)
|
||||||
|
return 0;
|
||||||
|
return c1 - c2;
|
||||||
|
}
|
||||||
|
|
||||||
|
int name_compare(const char *name1, size_t len1, const char *name2, size_t len2)
|
||||||
|
{
|
||||||
|
size_t min_len = (len1 < len2) ? len1 : len2;
|
||||||
|
int cmp = memcmp(name1, name2, min_len);
|
||||||
|
if (cmp)
|
||||||
|
return cmp;
|
||||||
|
if (len1 < len2)
|
||||||
|
return -1;
|
||||||
|
if (len1 > len2)
|
||||||
|
return 1;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
struct tree *lookup_tree(struct repository *r, const struct object_id *oid)
|
struct tree *lookup_tree(struct repository *r, const struct object_id *oid)
|
||||||
{
|
{
|
||||||
struct object *obj = lookup_object(r, oid);
|
struct object *obj = lookup_object(r, oid);
|
||||||
|
9
tree.h
9
tree.h
@ -29,6 +29,15 @@ void free_tree_buffer(struct tree *tree);
|
|||||||
/* Parses and returns the tree in the given ent, chasing tags and commits. */
|
/* Parses and returns the tree in the given ent, chasing tags and commits. */
|
||||||
struct tree *parse_tree_indirect(const struct object_id *oid);
|
struct tree *parse_tree_indirect(const struct object_id *oid);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Functions for comparing pathnames
|
||||||
|
*/
|
||||||
|
int base_name_compare(const char *name1, size_t len1, int mode1,
|
||||||
|
const char *name2, size_t len2, int mode2);
|
||||||
|
int df_name_compare(const char *name1, size_t len1, int mode1,
|
||||||
|
const char *name2, size_t len2, int mode2);
|
||||||
|
int name_compare(const char *name1, size_t len1,
|
||||||
|
const char *name2, size_t len2);
|
||||||
|
|
||||||
#define READ_TREE_RECURSIVE 1
|
#define READ_TREE_RECURSIVE 1
|
||||||
typedef int (*read_tree_fn_t)(const struct object_id *, struct strbuf *, const char *, unsigned int, void *);
|
typedef int (*read_tree_fn_t)(const struct object_id *, struct strbuf *, const char *, unsigned int, void *);
|
||||||
|
Reference in New Issue
Block a user