4 #include "cache-tree.h"
10 struct cache_tree *cache_tree(void)
12 struct cache_tree *it = xcalloc(1, sizeof(struct cache_tree));
17 void cache_tree_free(struct cache_tree **it_p)
20 struct cache_tree *it = *it_p;
24 for (i = 0; i < it->subtree_nr; i++)
26 cache_tree_free(&it->down[i]->cache_tree);
32 static int subtree_name_cmp(const char *one, int onelen,
33 const char *two, int twolen)
39 return memcmp(one, two, onelen);
42 static int subtree_pos(struct cache_tree *it, const char *path, int pathlen)
44 struct cache_tree_sub **down = it->down;
49 int mi = (lo + hi) / 2;
50 struct cache_tree_sub *mdl = down[mi];
51 int cmp = subtree_name_cmp(path, pathlen,
52 mdl->name, mdl->namelen);
63 static struct cache_tree_sub *find_subtree(struct cache_tree *it,
68 struct cache_tree_sub *down;
69 int pos = subtree_pos(it, path, pathlen);
76 if (it->subtree_alloc <= it->subtree_nr) {
77 it->subtree_alloc = alloc_nr(it->subtree_alloc);
78 it->down = xrealloc(it->down, it->subtree_alloc *
83 down = xmalloc(sizeof(*down) + pathlen + 1);
84 down->cache_tree = NULL;
85 down->namelen = pathlen;
86 memcpy(down->name, path, pathlen);
87 down->name[pathlen] = 0;
89 if (pos < it->subtree_nr)
90 memmove(it->down + pos + 1,
92 sizeof(down) * (it->subtree_nr - pos - 1));
97 struct cache_tree_sub *cache_tree_sub(struct cache_tree *it, const char *path)
99 int pathlen = strlen(path);
100 return find_subtree(it, path, pathlen, 1);
103 void cache_tree_invalidate_path(struct cache_tree *it, const char *path)
106 * ==> invalidate self
107 * ==> find "a", have it invalidate "b/c"
109 * ==> invalidate self
110 * ==> if "a" exists as a subtree, remove it.
114 struct cache_tree_sub *down;
117 fprintf(stderr, "cache-tree invalidate <%s>\n", path);
122 slash = strchr(path, '/');
123 it->entry_count = -1;
126 namelen = strlen(path);
127 pos = subtree_pos(it, path, namelen);
129 cache_tree_free(&it->down[pos]->cache_tree);
134 * move 4 and 5 up one place (2 entries)
135 * 2 = 6 - 3 - 1 = subtree_nr - pos - 1
137 memmove(it->down+pos, it->down+pos+1,
138 sizeof(struct cache_tree_sub *) *
139 (it->subtree_nr - pos - 1));
144 namelen = slash - path;
145 down = find_subtree(it, path, namelen, 0);
147 cache_tree_invalidate_path(down->cache_tree, slash + 1);
150 static int verify_cache(struct cache_entry **cache,
155 /* Verify that the tree is merged */
157 for (i = 0; i < entries; i++) {
158 struct cache_entry *ce = cache[i];
161 fprintf(stderr, "...\n");
164 fprintf(stderr, "%s: unmerged (%s)\n",
165 ce->name, sha1_to_hex(ce->sha1));
171 /* Also verify that the cache does not have path and path/file
172 * at the same time. At this point we know the cache has only
176 for (i = 0; i < entries - 1; i++) {
177 /* path/file always comes after path because of the way
178 * the cache is sorted. Also path can appear only once,
179 * which means conflicting one would immediately follow.
181 const char *this_name = cache[i]->name;
182 const char *next_name = cache[i+1]->name;
183 int this_len = strlen(this_name);
184 if (this_len < strlen(next_name) &&
185 strncmp(this_name, next_name, this_len) == 0 &&
186 next_name[this_len] == '/') {
188 fprintf(stderr, "...\n");
191 fprintf(stderr, "You have both %s and %s\n",
192 this_name, next_name);
200 static void discard_unused_subtrees(struct cache_tree *it)
202 struct cache_tree_sub **down = it->down;
203 int nr = it->subtree_nr;
205 for (dst = src = 0; src < nr; src++) {
206 struct cache_tree_sub *s = down[src];
210 cache_tree_free(&s->cache_tree);
217 int cache_tree_fully_valid(struct cache_tree *it)
222 if (it->entry_count < 0 || !has_sha1_file(it->sha1))
224 for (i = 0; i < it->subtree_nr; i++) {
225 if (!cache_tree_fully_valid(it->down[i]->cache_tree))
231 static int update_one(struct cache_tree *it,
232 struct cache_entry **cache,
239 struct strbuf buffer;
242 if (0 <= it->entry_count && has_sha1_file(it->sha1))
243 return it->entry_count;
246 * We first scan for subtrees and update them; we start by
247 * marking existing subtrees -- the ones that are unmarked
248 * should not be in the result.
250 for (i = 0; i < it->subtree_nr; i++)
251 it->down[i]->used = 0;
254 * Find the subtrees and update them.
256 for (i = 0; i < entries; i++) {
257 struct cache_entry *ce = cache[i];
258 struct cache_tree_sub *sub;
259 const char *path, *slash;
260 int pathlen, sublen, subcnt;
263 pathlen = ce_namelen(ce);
264 if (pathlen <= baselen || memcmp(base, path, baselen))
265 break; /* at the end of this level */
267 slash = strchr(path + baselen, '/');
271 * a/bbb/c (base = a/, slash = /c)
273 * path+baselen = bbb/c, sublen = 3
275 sublen = slash - (path + baselen);
276 sub = find_subtree(it, path + baselen, sublen, 1);
277 if (!sub->cache_tree)
278 sub->cache_tree = cache_tree();
279 subcnt = update_one(sub->cache_tree,
280 cache + i, entries - i,
282 baselen + sublen + 1,
291 discard_unused_subtrees(it);
294 * Then write out the tree object for this level.
296 strbuf_init(&buffer);
297 strbuf_grow(&buffer, 8192);
299 for (i = 0; i < entries; i++) {
300 struct cache_entry *ce = cache[i];
301 struct cache_tree_sub *sub;
302 const char *path, *slash;
304 const unsigned char *sha1;
308 pathlen = ce_namelen(ce);
309 if (pathlen <= baselen || memcmp(base, path, baselen))
310 break; /* at the end of this level */
312 slash = strchr(path + baselen, '/');
314 entlen = slash - (path + baselen);
315 sub = find_subtree(it, path + baselen, entlen, 0);
317 die("cache-tree.c: '%.*s' in '%s' not found",
318 entlen, path + baselen, path);
319 i += sub->cache_tree->entry_count - 1;
320 sha1 = sub->cache_tree->sha1;
325 mode = ntohl(ce->ce_mode);
326 entlen = pathlen - baselen;
328 if (mode != S_IFGITLINK && !missing_ok && !has_sha1_file(sha1))
329 return error("invalid object %s", sha1_to_hex(sha1));
332 continue; /* entry being removed */
334 strbuf_grow(&buffer, entlen + 100);
335 strbuf_addf(&buffer, "%o %.*s%c", mode, entlen, path + baselen, '\0');
336 strbuf_add(&buffer, sha1, 20);
339 fprintf(stderr, "cache-tree update-one %o %.*s\n",
340 mode, entlen, path + baselen);
345 hash_sha1_file(buffer.buf, buffer.len, tree_type, it->sha1);
347 write_sha1_file(buffer.buf, buffer.len, tree_type, it->sha1);
348 strbuf_release(&buffer);
351 fprintf(stderr, "cache-tree update-one (%d ent, %d subtree) %s\n",
352 it->entry_count, it->subtree_nr,
353 sha1_to_hex(it->sha1));
358 int cache_tree_update(struct cache_tree *it,
359 struct cache_entry **cache,
365 i = verify_cache(cache, entries);
368 i = update_one(it, cache, entries, "", 0, missing_ok, dryrun);
374 static void write_one(struct cache_tree *it,
377 struct strbuf *buffer)
381 /* One "cache-tree" entry consists of the following:
382 * path (NUL terminated)
383 * entry_count, subtree_nr ("%d %d\n")
384 * tree-sha1 (missing if invalid)
385 * subtree_nr "cache-tree" entries for subtrees.
387 strbuf_grow(buffer, pathlen + 100);
388 strbuf_add(buffer, path, pathlen);
389 strbuf_addf(buffer, "%c%d %d\n", 0, it->entry_count, it->subtree_nr);
392 if (0 <= it->entry_count)
393 fprintf(stderr, "cache-tree <%.*s> (%d ent, %d subtree) %s\n",
394 pathlen, path, it->entry_count, it->subtree_nr,
395 sha1_to_hex(it->sha1));
397 fprintf(stderr, "cache-tree <%.*s> (%d subtree) invalid\n",
398 pathlen, path, it->subtree_nr);
401 if (0 <= it->entry_count) {
402 strbuf_add(buffer, it->sha1, 20);
404 for (i = 0; i < it->subtree_nr; i++) {
405 struct cache_tree_sub *down = it->down[i];
407 struct cache_tree_sub *prev = it->down[i-1];
408 if (subtree_name_cmp(down->name, down->namelen,
409 prev->name, prev->namelen) <= 0)
410 die("fatal - unsorted cache subtree");
412 write_one(down->cache_tree, down->name, down->namelen, buffer);
416 void *cache_tree_write(struct cache_tree *root, unsigned long *size_p)
419 struct strbuf buffer;
422 strbuf_init(&buffer);
423 write_one(root, path, 0, &buffer);
424 *size_p = buffer.len;
425 return strbuf_detach(&buffer);
428 static struct cache_tree *read_one(const char **buffer, unsigned long *size_p)
430 const char *buf = *buffer;
431 unsigned long size = *size_p;
434 struct cache_tree *it;
438 /* skip name, but make sure name exists */
439 while (size && *buf) {
449 it->entry_count = strtol(cp, &ep, 10);
453 subtree_nr = strtol(cp, &ep, 10);
456 while (size && *buf && *buf != '\n') {
463 if (0 <= it->entry_count) {
466 hashcpy(it->sha1, (const unsigned char*)buf);
472 if (0 <= it->entry_count)
473 fprintf(stderr, "cache-tree <%s> (%d ent, %d subtree) %s\n",
474 *buffer, it->entry_count, subtree_nr,
475 sha1_to_hex(it->sha1));
477 fprintf(stderr, "cache-tree <%s> (%d subtrees) invalid\n",
478 *buffer, subtree_nr);
482 * Just a heuristic -- we do not add directories that often but
483 * we do not want to have to extend it immediately when we do,
486 it->subtree_alloc = subtree_nr + 2;
487 it->down = xcalloc(it->subtree_alloc, sizeof(struct cache_tree_sub *));
488 for (i = 0; i < subtree_nr; i++) {
489 /* read each subtree */
490 struct cache_tree *sub;
491 struct cache_tree_sub *subtree;
492 const char *name = buf;
494 sub = read_one(&buf, &size);
497 subtree = cache_tree_sub(it, name);
498 subtree->cache_tree = sub;
500 if (subtree_nr != it->subtree_nr)
501 die("cache-tree: internal error");
507 cache_tree_free(&it);
511 struct cache_tree *cache_tree_read(const char *buffer, unsigned long size)
514 return NULL; /* not the whole tree */
515 return read_one(&buffer, &size);
518 struct cache_tree *cache_tree_find(struct cache_tree *it, const char *path)
522 struct cache_tree_sub *sub;
524 slash = strchr(path, '/');
526 slash = path + strlen(path);
527 /* between path and slash is the name of the
528 * subtree to look for.
530 sub = find_subtree(it, path, slash - path, 0);
533 it = sub->cache_tree;
535 while (*slash && *slash == '/')
537 if (!slash || !*slash)
538 return it; /* prefix ended with slashes */