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