]> git.ipfire.org Git - thirdparty/git.git/blob - tree.c
Merge branch 'maint-2.1' into maint
[thirdparty/git.git] / tree.c
1 #include "cache.h"
2 #include "cache-tree.h"
3 #include "tree.h"
4 #include "blob.h"
5 #include "commit.h"
6 #include "tag.h"
7 #include "tree-walk.h"
8
9 const char *tree_type = "tree";
10
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)
12 {
13 int len;
14 unsigned int size;
15 struct cache_entry *ce;
16
17 if (S_ISDIR(mode))
18 return READ_TREE_RECURSIVE;
19
20 len = strlen(pathname);
21 size = cache_entry_size(baselen + len);
22 ce = xcalloc(1, size);
23
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);
31 }
32
33 static int read_one_entry(const unsigned char *sha1, const char *base, int baselen, const char *pathname, unsigned mode, int stage, void *context)
34 {
35 return read_one_entry_opt(sha1, base, baselen, pathname, mode, stage,
36 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
37 }
38
39 /*
40 * This is used when the caller knows there is no existing entries at
41 * the stage that will conflict with the entry being added.
42 */
43 static int read_one_entry_quick(const unsigned char *sha1, const char *base, int baselen, const char *pathname, unsigned mode, int stage, void *context)
44 {
45 return read_one_entry_opt(sha1, base, baselen, pathname, mode, stage,
46 ADD_CACHE_JUST_APPEND);
47 }
48
49 static int read_tree_1(struct tree *tree, struct strbuf *base,
50 int stage, const struct pathspec *pathspec,
51 read_tree_fn_t fn, void *context)
52 {
53 struct tree_desc desc;
54 struct name_entry entry;
55 unsigned char sha1[20];
56 int len, oldlen = base->len;
57 enum interesting retval = entry_not_interesting;
58
59 if (parse_tree(tree))
60 return -1;
61
62 init_tree_desc(&desc, tree->buffer, tree->size);
63
64 while (tree_entry(&desc, &entry)) {
65 if (retval != all_entries_interesting) {
66 retval = tree_entry_interesting(&entry, base, 0, pathspec);
67 if (retval == all_entries_not_interesting)
68 break;
69 if (retval == entry_not_interesting)
70 continue;
71 }
72
73 switch (fn(entry.sha1, base->buf, base->len,
74 entry.path, entry.mode, stage, context)) {
75 case 0:
76 continue;
77 case READ_TREE_RECURSIVE:
78 break;
79 default:
80 return -1;
81 }
82
83 if (S_ISDIR(entry.mode))
84 hashcpy(sha1, entry.sha1);
85 else if (S_ISGITLINK(entry.mode)) {
86 struct commit *commit;
87
88 commit = lookup_commit(entry.sha1);
89 if (!commit)
90 die("Commit %s in submodule path %s%s not found",
91 sha1_to_hex(entry.sha1),
92 base->buf, entry.path);
93
94 if (parse_commit(commit))
95 die("Invalid commit %s in submodule path %s%s",
96 sha1_to_hex(entry.sha1),
97 base->buf, entry.path);
98
99 hashcpy(sha1, commit->tree->object.sha1);
100 }
101 else
102 continue;
103
104 len = tree_entry_len(&entry);
105 strbuf_add(base, entry.path, len);
106 strbuf_addch(base, '/');
107 retval = read_tree_1(lookup_tree(sha1),
108 base, stage, pathspec,
109 fn, context);
110 strbuf_setlen(base, oldlen);
111 if (retval)
112 return -1;
113 }
114 return 0;
115 }
116
117 int read_tree_recursive(struct tree *tree,
118 const char *base, int baselen,
119 int stage, const struct pathspec *pathspec,
120 read_tree_fn_t fn, void *context)
121 {
122 struct strbuf sb = STRBUF_INIT;
123 int ret;
124
125 strbuf_add(&sb, base, baselen);
126 ret = read_tree_1(tree, &sb, stage, pathspec, fn, context);
127 strbuf_release(&sb);
128 return ret;
129 }
130
131 static int cmp_cache_name_compare(const void *a_, const void *b_)
132 {
133 const struct cache_entry *ce1, *ce2;
134
135 ce1 = *((const struct cache_entry **)a_);
136 ce2 = *((const struct cache_entry **)b_);
137 return cache_name_stage_compare(ce1->name, ce1->ce_namelen, ce_stage(ce1),
138 ce2->name, ce2->ce_namelen, ce_stage(ce2));
139 }
140
141 int read_tree(struct tree *tree, int stage, struct pathspec *match)
142 {
143 read_tree_fn_t fn = NULL;
144 int i, err;
145
146 /*
147 * Currently the only existing callers of this function all
148 * call it with stage=1 and after making sure there is nothing
149 * at that stage; we could always use read_one_entry_quick().
150 *
151 * But when we decide to straighten out git-read-tree not to
152 * use unpack_trees() in some cases, this will probably start
153 * to matter.
154 */
155
156 /*
157 * See if we have cache entry at the stage. If so,
158 * do it the original slow way, otherwise, append and then
159 * sort at the end.
160 */
161 for (i = 0; !fn && i < active_nr; i++) {
162 const struct cache_entry *ce = active_cache[i];
163 if (ce_stage(ce) == stage)
164 fn = read_one_entry;
165 }
166
167 if (!fn)
168 fn = read_one_entry_quick;
169 err = read_tree_recursive(tree, "", 0, stage, match, fn, NULL);
170 if (fn == read_one_entry || err)
171 return err;
172
173 /*
174 * Sort the cache entry -- we need to nuke the cache tree, though.
175 */
176 cache_tree_free(&active_cache_tree);
177 qsort(active_cache, active_nr, sizeof(active_cache[0]),
178 cmp_cache_name_compare);
179 return 0;
180 }
181
182 struct tree *lookup_tree(const unsigned char *sha1)
183 {
184 struct object *obj = lookup_object(sha1);
185 if (!obj)
186 return create_object(sha1, alloc_tree_node());
187 return object_as_type(obj, OBJ_TREE, 0);
188 }
189
190 int parse_tree_buffer(struct tree *item, void *buffer, unsigned long size)
191 {
192 if (item->object.parsed)
193 return 0;
194 item->object.parsed = 1;
195 item->buffer = buffer;
196 item->size = size;
197
198 return 0;
199 }
200
201 int parse_tree(struct tree *item)
202 {
203 enum object_type type;
204 void *buffer;
205 unsigned long size;
206
207 if (item->object.parsed)
208 return 0;
209 buffer = read_sha1_file(item->object.sha1, &type, &size);
210 if (!buffer)
211 return error("Could not read %s",
212 sha1_to_hex(item->object.sha1));
213 if (type != OBJ_TREE) {
214 free(buffer);
215 return error("Object %s not a tree",
216 sha1_to_hex(item->object.sha1));
217 }
218 return parse_tree_buffer(item, buffer, size);
219 }
220
221 void free_tree_buffer(struct tree *tree)
222 {
223 free(tree->buffer);
224 tree->buffer = NULL;
225 tree->size = 0;
226 tree->object.parsed = 0;
227 }
228
229 struct tree *parse_tree_indirect(const unsigned char *sha1)
230 {
231 struct object *obj = parse_object(sha1);
232 do {
233 if (!obj)
234 return NULL;
235 if (obj->type == OBJ_TREE)
236 return (struct tree *) obj;
237 else if (obj->type == OBJ_COMMIT)
238 obj = &(((struct commit *) obj)->tree->object);
239 else if (obj->type == OBJ_TAG)
240 obj = ((struct tag *) obj)->tagged;
241 else
242 return NULL;
243 if (!obj->parsed)
244 parse_object(obj->sha1);
245 } while (1);
246 }