object.c 13.1 KB
Newer Older
1
#include "cache.h"
2
#include "object.h"
3
#include "replace-object.h"
4
#include "object-store.h"
5 6 7 8
#include "blob.h"
#include "tree.h"
#include "commit.h"
#include "tag.h"
9
#include "alloc.h"
10
#include "object-store.h"
11
#include "packfile.h"
12

13 14
unsigned int get_max_object_index(void)
{
15
	return the_repository->parsed_objects->obj_hash_size;
16 17 18 19
}

struct object *get_indexed_object(unsigned int idx)
{
20
	return the_repository->parsed_objects->obj_hash[idx];
21
}
22

23 24 25 26 27 28
static const char *object_type_strings[] = {
	NULL,		/* OBJ_NONE = 0 */
	"commit",	/* OBJ_COMMIT = 1 */
	"tree",		/* OBJ_TREE = 2 */
	"blob",		/* OBJ_BLOB = 3 */
	"tag",		/* OBJ_TAG = 4 */
L
Linus Torvalds 已提交
29 30
};

31
const char *type_name(unsigned int type)
32 33 34 35 36 37
{
	if (type >= ARRAY_SIZE(object_type_strings))
		return NULL;
	return object_type_strings[type];
}

38
int type_from_string_gently(const char *str, ssize_t len, int gentle)
39 40 41
{
	int i;

42 43 44
	if (len < 0)
		len = strlen(str);

45
	for (i = 1; i < ARRAY_SIZE(object_type_strings); i++)
46 47
		if (!strncmp(str, object_type_strings[i], len) &&
		    object_type_strings[i][len] == '\0')
48
			return i;
49 50 51 52

	if (gentle)
		return -1;

53 54 55
	die("invalid object type \"%s\"", str);
}

56 57 58 59 60
/*
 * Return a numerical hash value between 0 and n-1 for the object with
 * the specified sha1.  n must be a power of 2.  Please note that the
 * return value is *not* consistent across computer architectures.
 */
61
static unsigned int hash_obj(const unsigned char *sha1, unsigned int n)
L
Linus Torvalds 已提交
62
{
63
	return sha1hash(sha1) & (n - 1);
L
Linus Torvalds 已提交
64 65
}

66 67 68 69 70
/*
 * Insert obj into the hash table hash, which has length size (which
 * must be a power of 2).  On collisions, simply overflow to the next
 * empty bucket.
 */
L
Linus Torvalds 已提交
71 72
static void insert_obj_hash(struct object *obj, struct object **hash, unsigned int size)
{
B
brian m. carlson 已提交
73
	unsigned int j = hash_obj(obj->oid.hash, size);
L
Linus Torvalds 已提交
74 75 76 77 78 79 80 81 82

	while (hash[j]) {
		j++;
		if (j >= size)
			j = 0;
	}
	hash[j] = obj;
}

83 84 85 86
/*
 * Look up the record for the given sha1 in the hash map stored in
 * obj_hash.  Return NULL if it was not found.
 */
L
Linus Torvalds 已提交
87
struct object *lookup_object(const unsigned char *sha1)
88
{
89
	unsigned int i, first;
L
Linus Torvalds 已提交
90
	struct object *obj;
91

92
	if (!the_repository->parsed_objects->obj_hash)
L
Linus Torvalds 已提交
93
		return NULL;
94

95 96 97
	first = i = hash_obj(sha1,
			     the_repository->parsed_objects->obj_hash_size);
	while ((obj = the_repository->parsed_objects->obj_hash[i]) != NULL) {
B
brian m. carlson 已提交
98
		if (!hashcmp(sha1, obj->oid.hash))
L
Linus Torvalds 已提交
99
			break;
100
		i++;
101
		if (i == the_repository->parsed_objects->obj_hash_size)
102 103
			i = 0;
	}
104 105 106 107 108 109
	if (obj && i != first) {
		/*
		 * Move object to where we started to look for it so
		 * that we do not need to walk the hash table the next
		 * time we look for it.
		 */
110 111
		SWAP(the_repository->parsed_objects->obj_hash[i],
		     the_repository->parsed_objects->obj_hash[first]);
112
	}
L
Linus Torvalds 已提交
113
	return obj;
114 115
}

116 117 118 119 120
/*
 * Increase the size of the hash map stored in obj_hash to the next
 * power of 2 (but at least 32).  Copy the existing values to the new
 * hash map.
 */
121
static void grow_object_hash(struct repository *r)
122
{
L
Linus Torvalds 已提交
123
	int i;
124 125 126 127
	/*
	 * Note that this size must always be power-of-2 to match hash_obj
	 * above.
	 */
128
	int new_hash_size = r->parsed_objects->obj_hash_size < 32 ? 32 : 2 * r->parsed_objects->obj_hash_size;
L
Linus Torvalds 已提交
129 130
	struct object **new_hash;

J
Jonas Fonseca 已提交
131
	new_hash = xcalloc(new_hash_size, sizeof(struct object *));
132 133 134
	for (i = 0; i < r->parsed_objects->obj_hash_size; i++) {
		struct object *obj = r->parsed_objects->obj_hash[i];

L
Linus Torvalds 已提交
135 136 137 138
		if (!obj)
			continue;
		insert_obj_hash(obj, new_hash, new_hash_size);
	}
139 140 141
	free(r->parsed_objects->obj_hash);
	r->parsed_objects->obj_hash = new_hash;
	r->parsed_objects->obj_hash_size = new_hash_size;
142 143
}

144
void *create_object(struct repository *r, const unsigned char *sha1, void *o)
145
{
146 147
	struct object *obj = o;

148
	obj->parsed = 0;
L
Linus Torvalds 已提交
149
	obj->flags = 0;
B
brian m. carlson 已提交
150
	hashcpy(obj->oid.hash, sha1);
151

152 153
	if (r->parsed_objects->obj_hash_size - 1 <= r->parsed_objects->nr_objs * 2)
		grow_object_hash(r);
154

155 156 157
	insert_obj_hash(obj, r->parsed_objects->obj_hash,
			r->parsed_objects->obj_hash_size);
	r->parsed_objects->nr_objs++;
158
	return obj;
159 160
}

161 162 163 164 165
void *object_as_type(struct object *obj, enum object_type type, int quiet)
{
	if (obj->type == type)
		return obj;
	else if (obj->type == OBJ_NONE) {
J
Jeff King 已提交
166
		if (type == OBJ_COMMIT)
167
			((struct commit *)obj)->index = alloc_commit_index(the_repository);
168 169 170 171 172 173
		obj->type = type;
		return obj;
	}
	else {
		if (!quiet)
			error("object %s is a %s, not a %s",
174
			      oid_to_hex(&obj->oid),
175
			      type_name(obj->type), type_name(type));
176 177 178 179
		return NULL;
	}
}

180 181 182
struct object *lookup_unknown_object(const unsigned char *sha1)
{
	struct object *obj = lookup_object(sha1);
183
	if (!obj)
184
		obj = create_object(the_repository, sha1,
185
				    alloc_object_node(the_repository));
186 187 188
	return obj;
}

189
struct object *parse_object_buffer(const struct object_id *oid, enum object_type type, unsigned long size, void *buffer, int *eaten_p)
190 191
{
	struct object *obj;
192
	*eaten_p = 0;
193

194
	obj = NULL;
195
	if (type == OBJ_BLOB) {
196
		struct blob *blob = lookup_blob(oid);
197
		if (blob) {
198 199
			if (parse_blob_buffer(blob, buffer, size))
				return NULL;
200 201
			obj = &blob->object;
		}
202
	} else if (type == OBJ_TREE) {
203
		struct tree *tree = lookup_tree(oid);
204 205
		if (tree) {
			obj = &tree->object;
206 207
			if (!tree->buffer)
				tree->object.parsed = 0;
208
			if (!tree->object.parsed) {
209 210
				if (parse_tree_buffer(tree, buffer, size))
					return NULL;
211
				*eaten_p = 1;
212
			}
213
		}
214
	} else if (type == OBJ_COMMIT) {
215
		struct commit *commit = lookup_commit(oid);
216
		if (commit) {
217
			if (parse_commit_buffer(commit, buffer, size, 1))
218
				return NULL;
219 220
			if (!get_cached_commit_buffer(commit, NULL)) {
				set_commit_buffer(commit, buffer, size);
221
				*eaten_p = 1;
222 223
			}
			obj = &commit->object;
224
		}
225
	} else if (type == OBJ_TAG) {
226
		struct tag *tag = lookup_tag(oid);
227
		if (tag) {
228 229
			if (parse_tag_buffer(tag, buffer, size))
			       return NULL;
230 231
			obj = &tag->object;
		}
232
	} else {
233
		warning("object %s has unknown type id %d", oid_to_hex(oid), type);
234 235 236 237 238
		obj = NULL;
	}
	return obj;
}

239
struct object *parse_object_or_die(const struct object_id *oid,
240 241
				   const char *name)
{
242
	struct object *o = parse_object(the_repository, oid);
243 244 245
	if (o)
		return o;

246
	die(_("unable to parse object: %s"), name ? name : oid_to_hex(oid));
247 248
}

249
struct object *parse_object_the_repository(const struct object_id *oid)
250
{
251
	unsigned long size;
252
	enum object_type type;
253
	int eaten;
254
	const struct object_id *repl = lookup_replace_object(the_repository, oid);
255 256 257
	void *buffer;
	struct object *obj;

258
	obj = lookup_object(oid->hash);
259 260
	if (obj && obj->parsed)
		return obj;
261

262
	if ((obj && obj->type == OBJ_BLOB && has_object_file(oid)) ||
263
	    (!obj && has_object_file(oid) &&
264
	     oid_object_info(the_repository, oid, NULL) == OBJ_BLOB)) {
265
		if (check_object_signature(repl, NULL, 0, NULL) < 0) {
266
			error("sha1 mismatch %s", oid_to_hex(oid));
267 268
			return NULL;
		}
269 270
		parse_blob_buffer(lookup_blob(oid), NULL, 0);
		return lookup_object(oid->hash);
271 272
	}

273
	buffer = read_object_file(oid, &type, &size);
274
	if (buffer) {
275
		if (check_object_signature(repl, buffer, size, type_name(type)) < 0) {
276
			free(buffer);
277
			error("sha1 mismatch %s", oid_to_hex(repl));
278 279
			return NULL;
		}
280

281
		obj = parse_object_buffer(oid, type, size, buffer, &eaten);
282 283
		if (!eaten)
			free(buffer);
284
		return obj;
285 286 287
	}
	return NULL;
}
288 289 290 291 292

struct object_list *object_list_insert(struct object *item,
				       struct object_list **list_p)
{
	struct object_list *new_list = xmalloc(sizeof(struct object_list));
J
Jared Hance 已提交
293 294 295 296
	new_list->item = item;
	new_list->next = *list_p;
	*list_p = new_list;
	return new_list;
297 298 299 300 301 302 303 304 305 306 307
}

int object_list_contains(struct object_list *list, struct object *obj)
{
	while (list) {
		if (list->item == obj)
			return 1;
		list = list->next;
	}
	return 0;
}
308

309 310 311 312 313 314
/*
 * A zero-length string to which object_array_entry::name can be
 * initialized without requiring a malloc/free.
 */
static char object_array_slopbuf[1];

315 316 317
void add_object_array_with_path(struct object *obj, const char *name,
				struct object_array *array,
				unsigned mode, const char *path)
318 319 320 321
{
	unsigned nr = array->nr;
	unsigned alloc = array->alloc;
	struct object_array_entry *objects = array->objects;
322
	struct object_array_entry *entry;
323 324 325

	if (nr >= alloc) {
		alloc = (alloc + 32) * 2;
326
		REALLOC_ARRAY(objects, alloc);
327 328 329
		array->alloc = alloc;
		array->objects = objects;
	}
330 331 332 333 334 335 336 337 338 339
	entry = &objects[nr];
	entry->item = obj;
	if (!name)
		entry->name = NULL;
	else if (!*name)
		/* Use our own empty string instead of allocating one: */
		entry->name = object_array_slopbuf;
	else
		entry->name = xstrdup(name);
	entry->mode = mode;
340 341 342 343
	if (path)
		entry->path = xstrdup(path);
	else
		entry->path = NULL;
344 345
	array->nr = ++nr;
}
346

347 348
void add_object_array(struct object *obj, const char *name, struct object_array *array)
{
J
Jeff King 已提交
349
	add_object_array_with_path(obj, name, array, S_IFINVALID, NULL);
350 351
}

352 353 354 355 356 357 358 359
/*
 * Free all memory associated with an entry; the result is
 * in an unspecified state and should not be examined.
 */
static void object_array_release_entry(struct object_array_entry *ent)
{
	if (ent->name != object_array_slopbuf)
		free(ent->name);
360
	free(ent->path);
361 362
}

363 364 365 366 367 368 369 370 371 372 373 374 375
struct object *object_array_pop(struct object_array *array)
{
	struct object *ret;

	if (!array->nr)
		return NULL;

	ret = array->objects[array->nr - 1].item;
	object_array_release_entry(&array->objects[array->nr - 1]);
	array->nr--;
	return ret;
}

376 377
void object_array_filter(struct object_array *array,
			 object_array_each_func_t want, void *cb_data)
378
{
379
	unsigned nr = array->nr, src, dst;
380 381
	struct object_array_entry *objects = array->objects;

382 383
	for (src = dst = 0; src < nr; src++) {
		if (want(&objects[src], cb_data)) {
384 385 386
			if (src != dst)
				objects[dst] = objects[src];
			dst++;
387
		} else {
388
			object_array_release_entry(&objects[src]);
389 390 391 392 393
		}
	}
	array->nr = dst;
}

J
Jeff King 已提交
394 395 396 397 398
void object_array_clear(struct object_array *array)
{
	int i;
	for (i = 0; i < array->nr; i++)
		object_array_release_entry(&array->objects[i]);
399
	FREE_AND_NULL(array->objects);
J
Jeff King 已提交
400 401 402
	array->nr = array->alloc = 0;
}

403 404 405 406 407 408 409 410 411 412 413 414 415 416
/*
 * Return true iff array already contains an entry with name.
 */
static int contains_name(struct object_array *array, const char *name)
{
	unsigned nr = array->nr, i;
	struct object_array_entry *object = array->objects;

	for (i = 0; i < nr; i++, object++)
		if (!strcmp(object->name, name))
			return 1;
	return 0;
}

417 418
void object_array_remove_duplicates(struct object_array *array)
{
419
	unsigned nr = array->nr, src;
420 421
	struct object_array_entry *objects = array->objects;

422 423 424 425 426 427
	array->nr = 0;
	for (src = 0; src < nr; src++) {
		if (!contains_name(array, objects[src].name)) {
			if (src != array->nr)
				objects[array->nr] = objects[src];
			array->nr++;
428
		} else {
429
			object_array_release_entry(&objects[src]);
430 431 432
		}
	}
}
433 434 435 436 437

void clear_object_flags(unsigned flags)
{
	int i;

438 439
	for (i=0; i < the_repository->parsed_objects->obj_hash_size; i++) {
		struct object *obj = the_repository->parsed_objects->obj_hash[i];
440 441 442 443
		if (obj)
			obj->flags &= ~flags;
	}
}
444 445 446 447 448

void clear_commit_marks_all(unsigned int flags)
{
	int i;

449 450
	for (i = 0; i < the_repository->parsed_objects->obj_hash_size; i++) {
		struct object *obj = the_repository->parsed_objects->obj_hash[i];
451 452 453 454
		if (obj && obj->type == OBJ_COMMIT)
			obj->flags &= ~flags;
	}
}
455

456 457 458 459
struct parsed_object_pool *parsed_object_pool_new(void)
{
	struct parsed_object_pool *o = xmalloc(sizeof(*o));
	memset(o, 0, sizeof(*o));
460 461 462 463 464 465 466

	o->blob_state = allocate_alloc_state();
	o->tree_state = allocate_alloc_state();
	o->commit_state = allocate_alloc_state();
	o->tag_state = allocate_alloc_state();
	o->object_state = allocate_alloc_state();

467 468 469
	o->is_shallow = -1;
	o->shallow_stat = xcalloc(1, sizeof(*o->shallow_stat));

470 471 472
	return o;
}

473 474 475 476 477
struct raw_object_store *raw_object_store_new(void)
{
	struct raw_object_store *o = xmalloc(sizeof(*o));

	memset(o, 0, sizeof(*o));
478
	INIT_LIST_HEAD(&o->packed_git_mru);
479 480
	return o;
}
S
Stefan Beller 已提交
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

static void free_alt_odb(struct alternate_object_database *alt)
{
	strbuf_release(&alt->scratch);
	oid_array_clear(&alt->loose_objects_cache);
	free(alt);
}

static void free_alt_odbs(struct raw_object_store *o)
{
	while (o->alt_odb_list) {
		struct alternate_object_database *next;

		next = o->alt_odb_list->next;
		free_alt_odb(o->alt_odb_list);
		o->alt_odb_list = next;
	}
}

500 501 502 503
void raw_object_store_clear(struct raw_object_store *o)
{
	FREE_AND_NULL(o->objectdir);
	FREE_AND_NULL(o->alternate_db);
504 505

	oidmap_free(o->replace_map, 1);
506
	FREE_AND_NULL(o->replace_map);
S
Stefan Beller 已提交
507 508 509

	free_alt_odbs(o);
	o->alt_odb_tail = NULL;
510 511

	INIT_LIST_HEAD(&o->packed_git_mru);
512 513
	close_all_packs(o);
	o->packed_git = NULL;
514
}
515 516 517 518 519 520

void parsed_object_pool_clear(struct parsed_object_pool *o)
{
	/*
	 * As objects are allocated in slabs (see alloc.c), we do
	 * not need to free each object, but each slab instead.
521 522 523
	 *
	 * Before doing so, we need to free any additional memory
	 * the objects may hold.
524
	 */
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
	unsigned i;

	for (i = 0; i < o->obj_hash_size; i++) {
		struct object *obj = o->obj_hash[i];

		if (!obj)
			continue;

		if (obj->type == OBJ_TREE)
			free_tree_buffer((struct tree*)obj);
		else if (obj->type == OBJ_COMMIT)
			release_commit_memory((struct commit*)obj);
		else if (obj->type == OBJ_TAG)
			release_tag_memory((struct tag*)obj);
	}

	FREE_AND_NULL(o->obj_hash);
	o->obj_hash_size = 0;

	clear_alloc_state(o->blob_state);
	clear_alloc_state(o->tree_state);
	clear_alloc_state(o->commit_state);
	clear_alloc_state(o->tag_state);
	clear_alloc_state(o->object_state);
	FREE_AND_NULL(o->blob_state);
	FREE_AND_NULL(o->tree_state);
	FREE_AND_NULL(o->commit_state);
	FREE_AND_NULL(o->tag_state);
	FREE_AND_NULL(o->object_state);
554
}