2 #include "cache-tree.h"
4 #include "object-store.h"
10 #include "repository.h"
12 const char *tree_type = "tree";
14 static int read_one_entry_opt(struct index_state *istate,
15 const struct object_id *oid,
16 const char *base, int baselen,
18 unsigned mode, int stage, int opt)
21 struct cache_entry *ce;
24 return READ_TREE_RECURSIVE;
26 len = strlen(pathname);
27 ce = make_empty_cache_entry(istate, baselen + len);
29 ce->ce_mode = create_ce_mode(mode);
30 ce->ce_flags = create_ce_flags(stage);
31 ce->ce_namelen = baselen + len;
32 memcpy(ce->name, base, baselen);
33 memcpy(ce->name + baselen, pathname, len+1);
34 oidcpy(&ce->oid, oid);
35 return add_index_entry(istate, ce, opt);
38 static int read_one_entry(const struct object_id *oid, struct strbuf *base,
39 const char *pathname, unsigned mode, int stage,
42 struct index_state *istate = context;
43 return read_one_entry_opt(istate, oid, base->buf, base->len, pathname,
45 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
49 * This is used when the caller knows there is no existing entries at
50 * the stage that will conflict with the entry being added.
52 static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
53 const char *pathname, unsigned mode, int stage,
56 struct index_state *istate = context;
57 return read_one_entry_opt(istate, oid, base->buf, base->len, pathname,
59 ADD_CACHE_JUST_APPEND);
62 static int read_tree_1(struct repository *r,
63 struct tree *tree, struct strbuf *base,
64 int stage, const struct pathspec *pathspec,
65 read_tree_fn_t fn, void *context)
67 struct tree_desc desc;
68 struct name_entry entry;
70 int len, oldlen = base->len;
71 enum interesting retval = entry_not_interesting;
76 init_tree_desc(&desc, tree->buffer, tree->size);
78 while (tree_entry(&desc, &entry)) {
79 if (retval != all_entries_interesting) {
80 retval = tree_entry_interesting(r->index, &entry,
82 if (retval == all_entries_not_interesting)
84 if (retval == entry_not_interesting)
88 switch (fn(&entry.oid, base,
89 entry.path, entry.mode, stage, context)) {
92 case READ_TREE_RECURSIVE:
98 if (S_ISDIR(entry.mode))
99 oidcpy(&oid, &entry.oid);
100 else if (S_ISGITLINK(entry.mode)) {
101 struct commit *commit;
103 commit = lookup_commit(r, &entry.oid);
105 die("Commit %s in submodule path %s%s not found",
106 oid_to_hex(&entry.oid),
107 base->buf, entry.path);
109 if (parse_commit(commit))
110 die("Invalid commit %s in submodule path %s%s",
111 oid_to_hex(&entry.oid),
112 base->buf, entry.path);
114 oidcpy(&oid, get_commit_tree_oid(commit));
119 len = tree_entry_len(&entry);
120 strbuf_add(base, entry.path, len);
121 strbuf_addch(base, '/');
122 retval = read_tree_1(r, lookup_tree(r, &oid),
123 base, stage, pathspec,
125 strbuf_setlen(base, oldlen);
132 int read_tree_recursive(struct repository *r,
134 const char *base, int baselen,
135 int stage, const struct pathspec *pathspec,
136 read_tree_fn_t fn, void *context)
138 struct strbuf sb = STRBUF_INIT;
141 strbuf_add(&sb, base, baselen);
142 ret = read_tree_1(r, tree, &sb, stage, pathspec, fn, context);
147 static int cmp_cache_name_compare(const void *a_, const void *b_)
149 const struct cache_entry *ce1, *ce2;
151 ce1 = *((const struct cache_entry **)a_);
152 ce2 = *((const struct cache_entry **)b_);
153 return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
154 ce2->name, ce2->ce_namelen, ce_stage(ce2));
157 int read_tree(struct repository *r, struct tree *tree, int stage,
158 struct pathspec *match, struct index_state *istate)
160 read_tree_fn_t fn = NULL;
164 * Currently the only existing callers of this function all
165 * call it with stage=1 and after making sure there is nothing
166 * at that stage; we could always use read_one_entry_quick().
168 * But when we decide to straighten out git-read-tree not to
169 * use unpack_trees() in some cases, this will probably start
174 * See if we have cache entry at the stage. If so,
175 * do it the original slow way, otherwise, append and then
178 for (i = 0; !fn && i < istate->cache_nr; i++) {
179 const struct cache_entry *ce = istate->cache[i];
180 if (ce_stage(ce) == stage)
185 fn = read_one_entry_quick;
186 err = read_tree_recursive(r, tree, "", 0, stage, match, fn, istate);
187 if (fn == read_one_entry || err)
191 * Sort the cache entry -- we need to nuke the cache tree, though.
193 cache_tree_free(&istate->cache_tree);
194 QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
198 struct tree *lookup_tree(struct repository *r, const struct object_id *oid)
200 struct object *obj = lookup_object(r, oid->hash);
202 return create_object(r, oid->hash,
204 return object_as_type(r, obj, OBJ_TREE, 0);
207 int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
209 if (item->object.parsed)
211 item->object.parsed = 1;
212 item->buffer = buffer;
218 int parse_tree_gently(struct tree *item, int quiet_on_missing)
220 enum object_type type;
224 if (item->object.parsed)
226 buffer = read_object_file(&item->object.oid, &type, &size);
228 return quiet_on_missing ? -1 :
229 error("Could not read %s",
230 oid_to_hex(&item->object.oid));
231 if (type != OBJ_TREE) {
233 return error("Object %s not a tree",
234 oid_to_hex(&item->object.oid));
236 return parse_tree_buffer(item, buffer, size);
239 void free_tree_buffer(struct tree *tree)
241 FREE_AND_NULL(tree->buffer);
243 tree->object.parsed = 0;
246 struct tree *parse_tree_indirect(const struct object_id *oid)
248 struct object *obj = parse_object(the_repository, oid);
252 if (obj->type == OBJ_TREE)
253 return (struct tree *) obj;
254 else if (obj->type == OBJ_COMMIT)
255 obj = &(get_commit_tree(((struct commit *)obj))->object);
256 else if (obj->type == OBJ_TAG)
257 obj = ((struct tag *) obj)->tagged;
261 parse_object(the_repository, &obj->oid);