git-archimport: support empty summaries, put summary on a single line.
[git/dscho.git] / tree-walk.c
blob70f899957e8ce511f0f5a470e8b6927d58d1b63e
1 #include "cache.h"
2 #include "tree-walk.h"
3 #include "tree.h"
5 void *fill_tree_descriptor(struct tree_desc *desc, const unsigned char *sha1)
7 unsigned long size = 0;
8 void *buf = NULL;
10 if (sha1) {
11 buf = read_object_with_reference(sha1, tree_type, &size, NULL);
12 if (!buf)
13 die("unable to read tree %s", sha1_to_hex(sha1));
15 desc->size = size;
16 desc->buf = buf;
17 return buf;
20 static int entry_compare(struct name_entry *a, struct name_entry *b)
22 return base_name_compare(
23 a->path, a->pathlen, a->mode,
24 b->path, b->pathlen, b->mode);
27 static void entry_clear(struct name_entry *a)
29 memset(a, 0, sizeof(*a));
32 static void entry_extract(struct tree_desc *t, struct name_entry *a)
34 a->sha1 = tree_entry_extract(t, &a->path, &a->mode);
35 a->pathlen = strlen(a->path);
38 void update_tree_entry(struct tree_desc *desc)
40 const void *buf = desc->buf;
41 unsigned long size = desc->size;
42 int len = strlen(buf) + 1 + 20;
44 if (size < len)
45 die("corrupt tree file");
46 desc->buf = (char *) buf + len;
47 desc->size = size - len;
50 static const char *get_mode(const char *str, unsigned int *modep)
52 unsigned char c;
53 unsigned int mode = 0;
55 while ((c = *str++) != ' ') {
56 if (c < '0' || c > '7')
57 return NULL;
58 mode = (mode << 3) + (c - '0');
60 *modep = mode;
61 return str;
64 const unsigned char *tree_entry_extract(struct tree_desc *desc, const char **pathp, unsigned int *modep)
66 const void *tree = desc->buf;
67 unsigned long size = desc->size;
68 int len = strlen(tree)+1;
69 const unsigned char *sha1 = (unsigned char *) tree + len;
70 const char *path;
71 unsigned int mode;
73 path = get_mode(tree, &mode);
74 if (!path || size < len + 20)
75 die("corrupt tree file");
76 *pathp = path;
77 *modep = canon_mode(mode);
78 return sha1;
81 int tree_entry(struct tree_desc *desc, struct name_entry *entry)
83 const void *tree = desc->buf;
84 const char *path;
85 unsigned long len, size = desc->size;
87 if (!size)
88 return 0;
90 path = get_mode(tree, &entry->mode);
91 if (!path)
92 die("corrupt tree file");
94 entry->path = path;
95 len = strlen(path);
96 entry->pathlen = len;
98 path += len + 1;
99 entry->sha1 = (const unsigned char *) path;
101 path += 20;
102 len = path - (char *) tree;
103 if (len > size)
104 die("corrupt tree file");
106 desc->buf = path;
107 desc->size = size - len;
108 return 1;
111 void traverse_trees(int n, struct tree_desc *t, const char *base, traverse_callback_t callback)
113 struct name_entry *entry = xmalloc(n*sizeof(*entry));
115 for (;;) {
116 unsigned long mask = 0;
117 int i, last;
119 last = -1;
120 for (i = 0; i < n; i++) {
121 if (!t[i].size)
122 continue;
123 entry_extract(t+i, entry+i);
124 if (last >= 0) {
125 int cmp = entry_compare(entry+i, entry+last);
128 * Is the new name bigger than the old one?
129 * Ignore it
131 if (cmp > 0)
132 continue;
134 * Is the new name smaller than the old one?
135 * Ignore all old ones
137 if (cmp < 0)
138 mask = 0;
140 mask |= 1ul << i;
141 last = i;
143 if (!mask)
144 break;
147 * Update the tree entries we've walked, and clear
148 * all the unused name-entries.
150 for (i = 0; i < n; i++) {
151 if (mask & (1ul << i)) {
152 update_tree_entry(t+i);
153 continue;
155 entry_clear(entry + i);
157 callback(n, mask, entry, base);
159 free(entry);
162 static int find_tree_entry(struct tree_desc *t, const char *name, unsigned char *result, unsigned *mode)
164 int namelen = strlen(name);
165 while (t->size) {
166 const char *entry;
167 const unsigned char *sha1;
168 int entrylen, cmp;
170 sha1 = tree_entry_extract(t, &entry, mode);
171 update_tree_entry(t);
172 entrylen = strlen(entry);
173 if (entrylen > namelen)
174 continue;
175 cmp = memcmp(name, entry, entrylen);
176 if (cmp > 0)
177 continue;
178 if (cmp < 0)
179 break;
180 if (entrylen == namelen) {
181 hashcpy(result, sha1);
182 return 0;
184 if (name[entrylen] != '/')
185 continue;
186 if (!S_ISDIR(*mode))
187 break;
188 if (++entrylen == namelen) {
189 hashcpy(result, sha1);
190 return 0;
192 return get_tree_entry(sha1, name + entrylen, result, mode);
194 return -1;
197 int get_tree_entry(const unsigned char *tree_sha1, const char *name, unsigned char *sha1, unsigned *mode)
199 int retval;
200 void *tree;
201 struct tree_desc t;
202 unsigned char root[20];
204 tree = read_object_with_reference(tree_sha1, tree_type, &t.size, root);
205 if (!tree)
206 return -1;
208 if (name[0] == '\0') {
209 hashcpy(sha1, root);
210 return 0;
213 t.buf = tree;
214 retval = find_tree_entry(&t, name, sha1, mode);
215 free(tree);
216 return retval;