]> git.proxmox.com Git - libgit2.git/blob - src/oid.c
Merge pull request #833 from carlosmn/odb-one
[libgit2.git] / src / oid.c
1 /*
2 * Copyright (C) 2009-2012 the libgit2 contributors
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #include "common.h"
9 #include "git2/oid.h"
10 #include "repository.h"
11 #include <string.h>
12 #include <limits.h>
13
14 static char to_hex[] = "0123456789abcdef";
15
16 static int oid_error_invalid(const char *msg)
17 {
18 giterr_set(GITERR_INVALID, "Unable to parse OID - %s", msg);
19 return -1;
20 }
21
22 int git_oid_fromstrn(git_oid *out, const char *str, size_t length)
23 {
24 size_t p;
25 int v;
26
27 if (length < 4)
28 return oid_error_invalid("input too short");
29
30 if (length > GIT_OID_HEXSZ)
31 length = GIT_OID_HEXSZ;
32
33 for (p = 0; p < length - 1; p += 2) {
34 v = (git__fromhex(str[p + 0]) << 4)
35 | git__fromhex(str[p + 1]);
36
37 if (v < 0)
38 return oid_error_invalid("contains invalid characters");
39
40 out->id[p / 2] = (unsigned char)v;
41 }
42
43 if (length % 2) {
44 v = (git__fromhex(str[p + 0]) << 4);
45 if (v < 0)
46 return oid_error_invalid("contains invalid characters");
47
48 out->id[p / 2] = (unsigned char)v;
49 p += 2;
50 }
51
52 memset(out->id + p / 2, 0, (GIT_OID_HEXSZ - p) / 2);
53
54 return 0;
55 }
56
57 int git_oid_fromstr(git_oid *out, const char *str)
58 {
59 return git_oid_fromstrn(out, str, GIT_OID_HEXSZ);
60 }
61
62 GIT_INLINE(char) *fmt_one(char *str, unsigned int val)
63 {
64 *str++ = to_hex[val >> 4];
65 *str++ = to_hex[val & 0xf];
66 return str;
67 }
68
69 void git_oid_fmt(char *str, const git_oid *oid)
70 {
71 size_t i;
72
73 for (i = 0; i < sizeof(oid->id); i++)
74 str = fmt_one(str, oid->id[i]);
75 }
76
77 void git_oid_pathfmt(char *str, const git_oid *oid)
78 {
79 size_t i;
80
81 str = fmt_one(str, oid->id[0]);
82 *str++ = '/';
83 for (i = 1; i < sizeof(oid->id); i++)
84 str = fmt_one(str, oid->id[i]);
85 }
86
87 char *git_oid_allocfmt(const git_oid *oid)
88 {
89 char *str = git__malloc(GIT_OID_HEXSZ + 1);
90 if (!str)
91 return NULL;
92 git_oid_fmt(str, oid);
93 str[GIT_OID_HEXSZ] = '\0';
94 return str;
95 }
96
97 char *git_oid_tostr(char *out, size_t n, const git_oid *oid)
98 {
99 char str[GIT_OID_HEXSZ];
100
101 if (!out || n == 0 || !oid)
102 return "";
103
104 n--; /* allow room for terminating NUL */
105
106 if (n > 0) {
107 git_oid_fmt(str, oid);
108 if (n > GIT_OID_HEXSZ)
109 n = GIT_OID_HEXSZ;
110 memcpy(out, str, n);
111 }
112
113 out[n] = '\0';
114
115 return out;
116 }
117
118 int git_oid__parse(
119 git_oid *oid, const char **buffer_out,
120 const char *buffer_end, const char *header)
121 {
122 const size_t sha_len = GIT_OID_HEXSZ;
123 const size_t header_len = strlen(header);
124
125 const char *buffer = *buffer_out;
126
127 if (buffer + (header_len + sha_len + 1) > buffer_end)
128 return -1;
129
130 if (memcmp(buffer, header, header_len) != 0)
131 return -1;
132
133 if (buffer[header_len + sha_len] != '\n')
134 return -1;
135
136 if (git_oid_fromstr(oid, buffer + header_len) < 0)
137 return -1;
138
139 *buffer_out = buffer + (header_len + sha_len + 1);
140
141 return 0;
142 }
143
144 void git_oid__writebuf(git_buf *buf, const char *header, const git_oid *oid)
145 {
146 char hex_oid[GIT_OID_HEXSZ];
147
148 git_oid_fmt(hex_oid, oid);
149 git_buf_puts(buf, header);
150 git_buf_put(buf, hex_oid, GIT_OID_HEXSZ);
151 git_buf_putc(buf, '\n');
152 }
153
154 void git_oid_fromraw(git_oid *out, const unsigned char *raw)
155 {
156 memcpy(out->id, raw, sizeof(out->id));
157 }
158
159 void git_oid_cpy(git_oid *out, const git_oid *src)
160 {
161 memcpy(out->id, src->id, sizeof(out->id));
162 }
163
164 int git_oid_ncmp(const git_oid *oid_a, const git_oid *oid_b, unsigned int len)
165 {
166 const unsigned char *a = oid_a->id;
167 const unsigned char *b = oid_b->id;
168
169 do {
170 if (*a != *b)
171 return 1;
172 a++;
173 b++;
174 len -= 2;
175 } while (len > 1);
176
177 if (len)
178 if ((*a ^ *b) & 0xf0)
179 return 1;
180
181 return 0;
182 }
183
184 int git_oid_streq(const git_oid *a, const char *str)
185 {
186 git_oid id;
187
188 if (git_oid_fromstr(&id, str) < 0)
189 return -1;
190
191 return git_oid_cmp(a, &id) == 0 ? 0 : -1;
192 }
193
194 int git_oid_iszero(const git_oid *oid_a)
195 {
196 const unsigned char *a = oid_a->id;
197 unsigned int i;
198 for (i = 0; i < GIT_OID_RAWSZ; ++i, ++a)
199 if (*a != 0)
200 return 0;
201 return 1;
202 }
203
204 typedef short node_index;
205
206 typedef union {
207 const char *tail;
208 node_index children[16];
209 } trie_node;
210
211 struct git_oid_shorten {
212 trie_node *nodes;
213 size_t node_count, size;
214 int min_length, full;
215 };
216
217 static int resize_trie(git_oid_shorten *self, size_t new_size)
218 {
219 self->nodes = git__realloc(self->nodes, new_size * sizeof(trie_node));
220 GITERR_CHECK_ALLOC(self->nodes);
221
222 if (new_size > self->size) {
223 memset(&self->nodes[self->size], 0x0, (new_size - self->size) * sizeof(trie_node));
224 }
225
226 self->size = new_size;
227 return 0;
228 }
229
230 static trie_node *push_leaf(git_oid_shorten *os, node_index idx, int push_at, const char *oid)
231 {
232 trie_node *node, *leaf;
233 node_index idx_leaf;
234
235 if (os->node_count >= os->size) {
236 if (resize_trie(os, os->size * 2) < 0)
237 return NULL;
238 }
239
240 idx_leaf = (node_index)os->node_count++;
241
242 if (os->node_count == SHRT_MAX)
243 os->full = 1;
244
245 node = &os->nodes[idx];
246 node->children[push_at] = -idx_leaf;
247
248 leaf = &os->nodes[idx_leaf];
249 leaf->tail = oid;
250
251 return node;
252 }
253
254 git_oid_shorten *git_oid_shorten_new(size_t min_length)
255 {
256 git_oid_shorten *os;
257
258 assert((size_t)((int)min_length) == min_length);
259
260 os = git__calloc(1, sizeof(git_oid_shorten));
261 if (os == NULL)
262 return NULL;
263
264 if (resize_trie(os, 16) < 0) {
265 git__free(os);
266 return NULL;
267 }
268
269 os->node_count = 1;
270 os->min_length = (int)min_length;
271
272 return os;
273 }
274
275 void git_oid_shorten_free(git_oid_shorten *os)
276 {
277 git__free(os->nodes);
278 git__free(os);
279 }
280
281
282 /*
283 * What wizardry is this?
284 *
285 * This is just a memory-optimized trie: basically a very fancy
286 * 16-ary tree, which is used to store the prefixes of the OID
287 * strings.
288 *
289 * Read more: http://en.wikipedia.org/wiki/Trie
290 *
291 * Magic that happens in this method:
292 *
293 * - Each node in the trie is an union, so it can work both as
294 * a normal node, or as a leaf.
295 *
296 * - Each normal node points to 16 children (one for each possible
297 * character in the oid). This is *not* stored in an array of
298 * pointers, because in a 64-bit arch this would be sucking
299 * 16*sizeof(void*) = 128 bytes of memory per node, which is fucking
300 * insane. What we do is store Node Indexes, and use these indexes
301 * to look up each node in the om->index array. These indexes are
302 * signed shorts, so this limits the amount of unique OIDs that
303 * fit in the structure to about 20000 (assuming a more or less uniform
304 * distribution).
305 *
306 * - All the nodes in om->index array are stored contiguously in
307 * memory, and each of them is 32 bytes, so we fit 2x nodes per
308 * cache line. Convenient for speed.
309 *
310 * - To differentiate the leafs from the normal nodes, we store all
311 * the indexes towards a leaf as a negative index (indexes to normal
312 * nodes are positives). When we find that one of the children for
313 * a node has a negative value, that means it's going to be a leaf.
314 * This reduces the amount of indexes we have by two, but also reduces
315 * the size of each node by 1-4 bytes (the amount we would need to
316 * add a `is_leaf` field): this is good because it allows the nodes
317 * to fit cleanly in cache lines.
318 *
319 * - Once we reach an empty children, instead of continuing to insert
320 * new nodes for each remaining character of the OID, we store a pointer
321 * to the tail in the leaf; if the leaf is reached again, we turn it
322 * into a normal node and use the tail to create a new leaf.
323 *
324 * This is a pretty good balance between performance and memory usage.
325 */
326 int git_oid_shorten_add(git_oid_shorten *os, const char *text_oid)
327 {
328 int i;
329 bool is_leaf;
330 node_index idx;
331
332 if (os->full)
333 return -1;
334
335 if (text_oid == NULL)
336 return os->min_length;
337
338 idx = 0;
339 is_leaf = false;
340
341 for (i = 0; i < GIT_OID_HEXSZ; ++i) {
342 int c = git__fromhex(text_oid[i]);
343 trie_node *node;
344
345 if (c == -1) {
346 giterr_set(GITERR_INVALID, "Unable to shorten OID - invalid hex value");
347 return -1;
348 }
349
350 node = &os->nodes[idx];
351
352 if (is_leaf) {
353 const char *tail;
354
355 tail = node->tail;
356 node->tail = NULL;
357
358 node = push_leaf(os, idx, git__fromhex(tail[0]), &tail[1]);
359 GITERR_CHECK_ALLOC(node);
360 }
361
362 if (node->children[c] == 0) {
363 if (push_leaf(os, idx, c, &text_oid[i + 1]) == NULL)
364 return -1;
365 break;
366 }
367
368 idx = node->children[c];
369 is_leaf = false;
370
371 if (idx < 0) {
372 node->children[c] = idx = -idx;
373 is_leaf = true;
374 }
375 }
376
377 if (++i > os->min_length)
378 os->min_length = i;
379
380 return os->min_length;
381 }
382