2 #include "cache-tree.h"
9 const char *tree_type
= "tree";
11 static int read_one_entry_opt(const unsigned char *sha1
, const char *base
, int baselen
, const char *pathname
, unsigned mode
, int stage
, int opt
)
15 struct cache_entry
*ce
;
18 return READ_TREE_RECURSIVE
;
20 len
= strlen(pathname
);
21 size
= cache_entry_size(baselen
+ len
);
22 ce
= xcalloc(1, size
);
24 ce
->ce_mode
= create_ce_mode(mode
);
25 ce
->ce_flags
= create_ce_flags(stage
);
26 ce
->ce_namelen
= baselen
+ len
;
27 memcpy(ce
->name
, base
, baselen
);
28 memcpy(ce
->name
+ baselen
, pathname
, len
+1);
29 hashcpy(ce
->sha1
, sha1
);
30 return add_cache_entry(ce
, opt
);
33 static int read_one_entry(const unsigned char *sha1
, struct strbuf
*base
,
34 const char *pathname
, unsigned mode
, int stage
,
37 return read_one_entry_opt(sha1
, base
->buf
, base
->len
, pathname
,
39 ADD_CACHE_OK_TO_ADD
|ADD_CACHE_SKIP_DFCHECK
);
43 * This is used when the caller knows there is no existing entries at
44 * the stage that will conflict with the entry being added.
46 static int read_one_entry_quick(const unsigned char *sha1
, struct strbuf
*base
,
47 const char *pathname
, unsigned mode
, int stage
,
50 return read_one_entry_opt(sha1
, base
->buf
, base
->len
, pathname
,
52 ADD_CACHE_JUST_APPEND
);
55 static int read_tree_1(struct tree
*tree
, struct strbuf
*base
,
56 int stage
, const struct pathspec
*pathspec
,
57 read_tree_fn_t fn
, void *context
)
59 struct tree_desc desc
;
60 struct name_entry entry
;
61 unsigned char sha1
[20];
62 int len
, oldlen
= base
->len
;
63 enum interesting retval
= entry_not_interesting
;
68 init_tree_desc(&desc
, tree
->buffer
, tree
->size
);
70 while (tree_entry(&desc
, &entry
)) {
71 if (retval
!= all_entries_interesting
) {
72 retval
= tree_entry_interesting(&entry
, base
, 0, pathspec
);
73 if (retval
== all_entries_not_interesting
)
75 if (retval
== entry_not_interesting
)
79 switch (fn(entry
.sha1
, base
,
80 entry
.path
, entry
.mode
, stage
, context
)) {
83 case READ_TREE_RECURSIVE
:
89 if (S_ISDIR(entry
.mode
))
90 hashcpy(sha1
, entry
.sha1
);
91 else if (S_ISGITLINK(entry
.mode
)) {
92 struct commit
*commit
;
94 commit
= lookup_commit(entry
.sha1
);
96 die("Commit %s in submodule path %s%s not found",
97 sha1_to_hex(entry
.sha1
),
98 base
->buf
, entry
.path
);
100 if (parse_commit(commit
))
101 die("Invalid commit %s in submodule path %s%s",
102 sha1_to_hex(entry
.sha1
),
103 base
->buf
, entry
.path
);
105 hashcpy(sha1
, commit
->tree
->object
.sha1
);
110 len
= tree_entry_len(&entry
);
111 strbuf_add(base
, entry
.path
, len
);
112 strbuf_addch(base
, '/');
113 retval
= read_tree_1(lookup_tree(sha1
),
114 base
, stage
, pathspec
,
116 strbuf_setlen(base
, oldlen
);
123 int read_tree_recursive(struct tree
*tree
,
124 const char *base
, int baselen
,
125 int stage
, const struct pathspec
*pathspec
,
126 read_tree_fn_t fn
, void *context
)
128 struct strbuf sb
= STRBUF_INIT
;
131 strbuf_add(&sb
, base
, baselen
);
132 ret
= read_tree_1(tree
, &sb
, stage
, pathspec
, fn
, context
);
137 static int cmp_cache_name_compare(const void *a_
, const void *b_
)
139 const struct cache_entry
*ce1
, *ce2
;
141 ce1
= *((const struct cache_entry
**)a_
);
142 ce2
= *((const struct cache_entry
**)b_
);
143 return cache_name_stage_compare(ce1
->name
, ce1
->ce_namelen
, ce_stage(ce1
),
144 ce2
->name
, ce2
->ce_namelen
, ce_stage(ce2
));
147 int read_tree(struct tree
*tree
, int stage
, struct pathspec
*match
)
149 read_tree_fn_t fn
= NULL
;
153 * Currently the only existing callers of this function all
154 * call it with stage=1 and after making sure there is nothing
155 * at that stage; we could always use read_one_entry_quick().
157 * But when we decide to straighten out git-read-tree not to
158 * use unpack_trees() in some cases, this will probably start
163 * See if we have cache entry at the stage. If so,
164 * do it the original slow way, otherwise, append and then
167 for (i
= 0; !fn
&& i
< active_nr
; i
++) {
168 const struct cache_entry
*ce
= active_cache
[i
];
169 if (ce_stage(ce
) == stage
)
174 fn
= read_one_entry_quick
;
175 err
= read_tree_recursive(tree
, "", 0, stage
, match
, fn
, NULL
);
176 if (fn
== read_one_entry
|| err
)
180 * Sort the cache entry -- we need to nuke the cache tree, though.
182 cache_tree_free(&active_cache_tree
);
183 qsort(active_cache
, active_nr
, sizeof(active_cache
[0]),
184 cmp_cache_name_compare
);
188 struct tree
*lookup_tree(const unsigned char *sha1
)
190 struct object
*obj
= lookup_object(sha1
);
192 return create_object(sha1
, alloc_tree_node());
193 return object_as_type(obj
, OBJ_TREE
, 0);
196 int parse_tree_buffer(struct tree
*item
, void *buffer
, unsigned long size
)
198 if (item
->object
.parsed
)
200 item
->object
.parsed
= 1;
201 item
->buffer
= buffer
;
207 int parse_tree_gently(struct tree
*item
, int quiet_on_missing
)
209 enum object_type type
;
213 if (item
->object
.parsed
)
215 buffer
= read_sha1_file(item
->object
.sha1
, &type
, &size
);
217 return quiet_on_missing
? -1 :
218 error("Could not read %s",
219 sha1_to_hex(item
->object
.sha1
));
220 if (type
!= OBJ_TREE
) {
222 return error("Object %s not a tree",
223 sha1_to_hex(item
->object
.sha1
));
225 return parse_tree_buffer(item
, buffer
, size
);
228 void free_tree_buffer(struct tree
*tree
)
233 tree
->object
.parsed
= 0;
236 struct tree
*parse_tree_indirect(const unsigned char *sha1
)
238 struct object
*obj
= parse_object(sha1
);
242 if (obj
->type
== OBJ_TREE
)
243 return (struct tree
*) obj
;
244 else if (obj
->type
== OBJ_COMMIT
)
245 obj
= &(((struct commit
*) obj
)->tree
->object
);
246 else if (obj
->type
== OBJ_TAG
)
247 obj
= ((struct tag
*) obj
)->tagged
;
251 parse_object(obj
->sha1
);