]> git.proxmox.com Git - libgit2.git/blob - src/oid.c
portability: Improve x86/amd64 compatibility
[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_cmp(const git_oid *a, const git_oid *b)
165 {
166 return memcmp(a->id, b->id, sizeof(a->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 fucking
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