The sixteenth batch
[git/gitster.git] / object.c
blobc1553ee4330c89533f4e09f842f40264777e1372
1 #define DISABLE_SIGN_COMPARE_WARNINGS
3 #include "git-compat-util.h"
4 #include "gettext.h"
5 #include "hex.h"
6 #include "object.h"
7 #include "replace-object.h"
8 #include "object-file.h"
9 #include "blob.h"
10 #include "statinfo.h"
11 #include "tree.h"
12 #include "commit.h"
13 #include "tag.h"
14 #include "alloc.h"
15 #include "commit-graph.h"
17 unsigned int get_max_object_index(const struct repository *repo)
19 return repo->parsed_objects->obj_hash_size;
22 struct object *get_indexed_object(const struct repository *repo,
23 unsigned int idx)
25 return repo->parsed_objects->obj_hash[idx];
28 static const char *object_type_strings[] = {
29 NULL, /* OBJ_NONE = 0 */
30 "commit", /* OBJ_COMMIT = 1 */
31 "tree", /* OBJ_TREE = 2 */
32 "blob", /* OBJ_BLOB = 3 */
33 "tag", /* OBJ_TAG = 4 */
36 const char *type_name(unsigned int type)
38 if (type >= ARRAY_SIZE(object_type_strings))
39 return NULL;
40 return object_type_strings[type];
43 int type_from_string_gently(const char *str, ssize_t len, int gentle)
45 int i;
47 if (len < 0)
48 len = strlen(str);
50 for (i = 1; i < ARRAY_SIZE(object_type_strings); i++)
51 if (!xstrncmpz(object_type_strings[i], str, len))
52 return i;
54 if (gentle)
55 return -1;
57 die(_("invalid object type \"%s\""), str);
61 * Return a numerical hash value between 0 and n-1 for the object with
62 * the specified sha1. n must be a power of 2. Please note that the
63 * return value is *not* consistent across computer architectures.
65 static unsigned int hash_obj(const struct object_id *oid, unsigned int n)
67 return oidhash(oid) & (n - 1);
71 * Insert obj into the hash table hash, which has length size (which
72 * must be a power of 2). On collisions, simply overflow to the next
73 * empty bucket.
75 static void insert_obj_hash(struct object *obj, struct object **hash, unsigned int size)
77 unsigned int j = hash_obj(&obj->oid, size);
79 while (hash[j]) {
80 j++;
81 if (j >= size)
82 j = 0;
84 hash[j] = obj;
88 * Look up the record for the given sha1 in the hash map stored in
89 * obj_hash. Return NULL if it was not found.
91 struct object *lookup_object(struct repository *r, const struct object_id *oid)
93 unsigned int i, first;
94 struct object *obj;
96 if (!r->parsed_objects->obj_hash)
97 return NULL;
99 first = i = hash_obj(oid, r->parsed_objects->obj_hash_size);
100 while ((obj = r->parsed_objects->obj_hash[i]) != NULL) {
101 if (oideq(oid, &obj->oid))
102 break;
103 i++;
104 if (i == r->parsed_objects->obj_hash_size)
105 i = 0;
107 if (obj && i != first) {
109 * Move object to where we started to look for it so
110 * that we do not need to walk the hash table the next
111 * time we look for it.
113 SWAP(r->parsed_objects->obj_hash[i],
114 r->parsed_objects->obj_hash[first]);
116 return obj;
120 * Increase the size of the hash map stored in obj_hash to the next
121 * power of 2 (but at least 32). Copy the existing values to the new
122 * hash map.
124 static void grow_object_hash(struct repository *r)
126 int i;
128 * Note that this size must always be power-of-2 to match hash_obj
129 * above.
131 int new_hash_size = r->parsed_objects->obj_hash_size < 32 ? 32 : 2 * r->parsed_objects->obj_hash_size;
132 struct object **new_hash;
134 CALLOC_ARRAY(new_hash, new_hash_size);
135 for (i = 0; i < r->parsed_objects->obj_hash_size; i++) {
136 struct object *obj = r->parsed_objects->obj_hash[i];
138 if (!obj)
139 continue;
140 insert_obj_hash(obj, new_hash, new_hash_size);
142 free(r->parsed_objects->obj_hash);
143 r->parsed_objects->obj_hash = new_hash;
144 r->parsed_objects->obj_hash_size = new_hash_size;
147 void *create_object(struct repository *r, const struct object_id *oid, void *o)
149 struct object *obj = o;
151 obj->parsed = 0;
152 obj->flags = 0;
153 oidcpy(&obj->oid, oid);
155 if (r->parsed_objects->obj_hash_size - 1 <= r->parsed_objects->nr_objs * 2)
156 grow_object_hash(r);
158 insert_obj_hash(obj, r->parsed_objects->obj_hash,
159 r->parsed_objects->obj_hash_size);
160 r->parsed_objects->nr_objs++;
161 return obj;
164 void *object_as_type(struct object *obj, enum object_type type, int quiet)
166 if (obj->type == type)
167 return obj;
168 else if (obj->type == OBJ_NONE) {
169 if (type == OBJ_COMMIT)
170 init_commit_node((struct commit *) obj);
171 else
172 obj->type = type;
173 return obj;
175 else {
176 if (!quiet)
177 error(_("object %s is a %s, not a %s"),
178 oid_to_hex(&obj->oid),
179 type_name(obj->type), type_name(type));
180 return NULL;
184 struct object *lookup_unknown_object(struct repository *r, const struct object_id *oid)
186 struct object *obj = lookup_object(r, oid);
187 if (!obj)
188 obj = create_object(r, oid, alloc_object_node(r));
189 return obj;
192 struct object *lookup_object_by_type(struct repository *r,
193 const struct object_id *oid,
194 enum object_type type)
196 switch (type) {
197 case OBJ_COMMIT:
198 return (struct object *)lookup_commit(r, oid);
199 case OBJ_TREE:
200 return (struct object *)lookup_tree(r, oid);
201 case OBJ_TAG:
202 return (struct object *)lookup_tag(r, oid);
203 case OBJ_BLOB:
204 return (struct object *)lookup_blob(r, oid);
205 default:
206 BUG("unknown object type %d", type);
210 enum peel_status peel_object(struct repository *r,
211 const struct object_id *name,
212 struct object_id *oid)
214 struct object *o = lookup_unknown_object(r, name);
216 if (o->type == OBJ_NONE) {
217 int type = odb_read_object_info(r->objects, name, NULL);
218 if (type < 0 || !object_as_type(o, type, 0))
219 return PEEL_INVALID;
222 if (o->type != OBJ_TAG)
223 return PEEL_NON_TAG;
225 o = deref_tag_noverify(r, o);
226 if (!o)
227 return PEEL_INVALID;
229 oidcpy(oid, &o->oid);
230 return PEEL_PEELED;
233 struct object *parse_object_buffer(struct repository *r, const struct object_id *oid, enum object_type type, unsigned long size, void *buffer, int *eaten_p)
235 struct object *obj;
236 *eaten_p = 0;
238 obj = NULL;
239 if (type == OBJ_BLOB) {
240 struct blob *blob = lookup_blob(r, oid);
241 if (blob) {
242 parse_blob_buffer(blob);
243 obj = &blob->object;
245 } else if (type == OBJ_TREE) {
246 struct tree *tree = lookup_tree(r, oid);
247 if (tree) {
248 obj = &tree->object;
249 if (!tree->buffer)
250 tree->object.parsed = 0;
251 if (!tree->object.parsed) {
252 if (parse_tree_buffer(tree, buffer, size))
253 return NULL;
254 *eaten_p = 1;
257 } else if (type == OBJ_COMMIT) {
258 struct commit *commit = lookup_commit(r, oid);
259 if (commit) {
260 if (parse_commit_buffer(r, commit, buffer, size, 1))
261 return NULL;
262 if (save_commit_buffer &&
263 !get_cached_commit_buffer(r, commit, NULL)) {
264 set_commit_buffer(r, commit, buffer, size);
265 *eaten_p = 1;
267 obj = &commit->object;
269 } else if (type == OBJ_TAG) {
270 struct tag *tag = lookup_tag(r, oid);
271 if (tag) {
272 if (parse_tag_buffer(r, tag, buffer, size))
273 return NULL;
274 obj = &tag->object;
276 } else {
277 warning(_("object %s has unknown type id %d"), oid_to_hex(oid), type);
278 obj = NULL;
280 return obj;
283 struct object *parse_object_or_die(struct repository *repo,
284 const struct object_id *oid,
285 const char *name)
287 struct object *o = parse_object(repo, oid);
288 if (o)
289 return o;
291 die(_("unable to parse object: %s"), name ? name : oid_to_hex(oid));
294 struct object *parse_object_with_flags(struct repository *r,
295 const struct object_id *oid,
296 enum parse_object_flags flags)
298 int skip_hash = !!(flags & PARSE_OBJECT_SKIP_HASH_CHECK);
299 int discard_tree = !!(flags & PARSE_OBJECT_DISCARD_TREE);
300 unsigned long size;
301 enum object_type type;
302 int eaten;
303 const struct object_id *repl = lookup_replace_object(r, oid);
304 void *buffer;
305 struct object *obj;
307 obj = lookup_object(r, oid);
308 if (obj && obj->parsed)
309 return obj;
311 if (skip_hash) {
312 struct commit *commit = lookup_commit_in_graph(r, repl);
313 if (commit)
314 return &commit->object;
317 if ((!obj || obj->type == OBJ_BLOB) &&
318 odb_read_object_info(r->objects, oid, NULL) == OBJ_BLOB) {
319 if (!skip_hash && stream_object_signature(r, repl) < 0) {
320 error(_("hash mismatch %s"), oid_to_hex(oid));
321 return NULL;
323 parse_blob_buffer(lookup_blob(r, oid));
324 return lookup_object(r, oid);
328 * If the caller does not care about the tree buffer and does not
329 * care about checking the hash, we can simply verify that we
330 * have the on-disk object with the correct type.
332 if (skip_hash && discard_tree &&
333 (!obj || obj->type == OBJ_TREE) &&
334 odb_read_object_info(r->objects, oid, NULL) == OBJ_TREE) {
335 return &lookup_tree(r, oid)->object;
338 buffer = odb_read_object(r->objects, oid, &type, &size);
339 if (buffer) {
340 if (!skip_hash &&
341 check_object_signature(r, repl, buffer, size, type) < 0) {
342 free(buffer);
343 error(_("hash mismatch %s"), oid_to_hex(repl));
344 return NULL;
347 obj = parse_object_buffer(r, oid, type, size,
348 buffer, &eaten);
349 if (!eaten)
350 free(buffer);
351 if (discard_tree && type == OBJ_TREE)
352 free_tree_buffer((struct tree *)obj);
353 return obj;
355 return NULL;
358 struct object *parse_object(struct repository *r, const struct object_id *oid)
360 return parse_object_with_flags(r, oid, 0);
363 struct object_list *object_list_insert(struct object *item,
364 struct object_list **list_p)
366 struct object_list *new_list = xmalloc(sizeof(struct object_list));
367 new_list->item = item;
368 new_list->next = *list_p;
369 *list_p = new_list;
370 return new_list;
373 int object_list_contains(struct object_list *list, struct object *obj)
375 while (list) {
376 if (list->item == obj)
377 return 1;
378 list = list->next;
380 return 0;
383 void object_list_free(struct object_list **list)
385 while (*list) {
386 struct object_list *p = *list;
387 *list = p->next;
388 free(p);
393 * A zero-length string to which object_array_entry::name can be
394 * initialized without requiring a malloc/free.
396 static char object_array_slopbuf[1];
398 void object_array_init(struct object_array *array)
400 struct object_array blank = OBJECT_ARRAY_INIT;
401 memcpy(array, &blank, sizeof(*array));
404 void add_object_array_with_path(struct object *obj, const char *name,
405 struct object_array *array,
406 unsigned mode, const char *path)
408 unsigned nr = array->nr;
409 unsigned alloc = array->alloc;
410 struct object_array_entry *objects = array->objects;
411 struct object_array_entry *entry;
413 if (nr >= alloc) {
414 alloc = (alloc + 32) * 2;
415 REALLOC_ARRAY(objects, alloc);
416 array->alloc = alloc;
417 array->objects = objects;
419 entry = &objects[nr];
420 entry->item = obj;
421 if (!name)
422 entry->name = NULL;
423 else if (!*name)
424 /* Use our own empty string instead of allocating one: */
425 entry->name = object_array_slopbuf;
426 else
427 entry->name = xstrdup(name);
428 entry->mode = mode;
429 if (path)
430 entry->path = xstrdup(path);
431 else
432 entry->path = NULL;
433 array->nr = ++nr;
436 void add_object_array(struct object *obj, const char *name, struct object_array *array)
438 add_object_array_with_path(obj, name, array, S_IFINVALID, NULL);
442 * Free all memory associated with an entry; the result is
443 * in an unspecified state and should not be examined.
445 static void object_array_release_entry(struct object_array_entry *ent)
447 if (ent->name != object_array_slopbuf)
448 free(ent->name);
449 free(ent->path);
452 struct object *object_array_pop(struct object_array *array)
454 struct object *ret;
456 if (!array->nr)
457 return NULL;
459 ret = array->objects[array->nr - 1].item;
460 object_array_release_entry(&array->objects[array->nr - 1]);
461 array->nr--;
462 return ret;
465 void object_array_filter(struct object_array *array,
466 object_array_each_func_t want, void *cb_data)
468 unsigned nr = array->nr, src, dst;
469 struct object_array_entry *objects = array->objects;
471 for (src = dst = 0; src < nr; src++) {
472 if (want(&objects[src], cb_data)) {
473 if (src != dst)
474 objects[dst] = objects[src];
475 dst++;
476 } else {
477 object_array_release_entry(&objects[src]);
480 array->nr = dst;
483 void object_array_clear(struct object_array *array)
485 int i;
486 for (i = 0; i < array->nr; i++)
487 object_array_release_entry(&array->objects[i]);
488 FREE_AND_NULL(array->objects);
489 array->nr = array->alloc = 0;
492 void clear_object_flags(struct repository *repo, unsigned flags)
494 int i;
496 for (i = 0; i < repo->parsed_objects->obj_hash_size; i++) {
497 struct object *obj = repo->parsed_objects->obj_hash[i];
498 if (obj)
499 obj->flags &= ~flags;
503 void repo_clear_commit_marks(struct repository *r, unsigned int flags)
505 int i;
507 for (i = 0; i < r->parsed_objects->obj_hash_size; i++) {
508 struct object *obj = r->parsed_objects->obj_hash[i];
509 if (obj && obj->type == OBJ_COMMIT)
510 obj->flags &= ~flags;
514 struct parsed_object_pool *parsed_object_pool_new(struct repository *repo)
516 struct parsed_object_pool *o = xmalloc(sizeof(*o));
517 memset(o, 0, sizeof(*o));
519 o->repo = repo;
520 o->blob_state = allocate_alloc_state();
521 o->tree_state = allocate_alloc_state();
522 o->commit_state = allocate_alloc_state();
523 o->tag_state = allocate_alloc_state();
524 o->object_state = allocate_alloc_state();
526 o->is_shallow = -1;
527 CALLOC_ARRAY(o->shallow_stat, 1);
529 o->buffer_slab = allocate_commit_buffer_slab();
531 return o;
534 void parsed_object_pool_reset_commit_grafts(struct parsed_object_pool *o)
536 for (int i = 0; i < o->grafts_nr; i++) {
537 unparse_commit(o->repo, &o->grafts[i]->oid);
538 free(o->grafts[i]);
540 o->grafts_nr = 0;
541 o->commit_graft_prepared = 0;
544 void parsed_object_pool_clear(struct parsed_object_pool *o)
547 * As objects are allocated in slabs (see alloc.c), we do
548 * not need to free each object, but each slab instead.
550 * Before doing so, we need to free any additional memory
551 * the objects may hold.
553 unsigned i;
555 for (i = 0; i < o->obj_hash_size; i++) {
556 struct object *obj = o->obj_hash[i];
558 if (!obj)
559 continue;
561 if (obj->type == OBJ_TREE)
562 free_tree_buffer((struct tree*)obj);
563 else if (obj->type == OBJ_COMMIT)
564 release_commit_memory(o, (struct commit*)obj);
565 else if (obj->type == OBJ_TAG)
566 release_tag_memory((struct tag*)obj);
569 FREE_AND_NULL(o->obj_hash);
570 o->obj_hash_size = 0;
572 free_commit_buffer_slab(o->buffer_slab);
573 o->buffer_slab = NULL;
575 parsed_object_pool_reset_commit_grafts(o);
576 clear_alloc_state(o->blob_state);
577 clear_alloc_state(o->tree_state);
578 clear_alloc_state(o->commit_state);
579 clear_alloc_state(o->tag_state);
580 clear_alloc_state(o->object_state);
581 stat_validity_clear(o->shallow_stat);
582 FREE_AND_NULL(o->blob_state);
583 FREE_AND_NULL(o->tree_state);
584 FREE_AND_NULL(o->commit_state);
585 FREE_AND_NULL(o->tag_state);
586 FREE_AND_NULL(o->object_state);
587 FREE_AND_NULL(o->shallow_stat);