object.c 5.1 KB
Newer Older
1
#include "cache.h"
2
#include "object.h"
3 4 5 6
#include "blob.h"
#include "tree.h"
#include "commit.h"
#include "tag.h"
7

L
Linus Torvalds 已提交
8 9
static struct object **obj_hash;
static int nr_objs, obj_hash_size;
10 11 12

unsigned int get_max_object_index(void)
{
L
Linus Torvalds 已提交
13
	return obj_hash_size;
14 15 16 17
}

struct object *get_indexed_object(unsigned int idx)
{
L
Linus Torvalds 已提交
18
	return obj_hash[idx];
19
}
20

L
Linus Torvalds 已提交
21
const char *type_names[] = {
22 23
	"none", "commit", "tree", "blob", "tag",
	"bad type 5", "bad type 6", "delta", "bad",
L
Linus Torvalds 已提交
24 25
};

L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
static unsigned int hash_obj(struct object *obj, unsigned int n)
{
	unsigned int hash = *(unsigned int *)obj->sha1;
	return hash % n;
}

static void insert_obj_hash(struct object *obj, struct object **hash, unsigned int size)
{
	int j = hash_obj(obj, size);

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

44 45
static int hashtable_index(const unsigned char *sha1)
{
46 47
	unsigned int i;
	memcpy(&i, sha1, sizeof(unsigned int));
L
Linus Torvalds 已提交
48
	return (int)(i % obj_hash_size);
49 50
}

L
Linus Torvalds 已提交
51
struct object *lookup_object(const unsigned char *sha1)
52
{
53
	int i;
L
Linus Torvalds 已提交
54
	struct object *obj;
55

L
Linus Torvalds 已提交
56 57
	if (!obj_hash)
		return NULL;
58

59
	i = hashtable_index(sha1);
L
Linus Torvalds 已提交
60 61 62
	while ((obj = obj_hash[i]) != NULL) {
		if (!memcmp(sha1, obj->sha1, 20))
			break;
63
		i++;
L
Linus Torvalds 已提交
64
		if (i == obj_hash_size)
65 66
			i = 0;
	}
L
Linus Torvalds 已提交
67
	return obj;
68 69
}

L
Linus Torvalds 已提交
70
static void grow_object_hash(void)
71
{
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85
	int i;
	int new_hash_size = obj_hash_size < 32 ? 32 : 2 * obj_hash_size;
	struct object **new_hash;

	new_hash = calloc(new_hash_size, sizeof(struct object *));
	for (i = 0; i < obj_hash_size; i++) {
		struct object *obj = obj_hash[i];
		if (!obj)
			continue;
		insert_obj_hash(obj, new_hash, new_hash_size);
	}
	free(obj_hash);
	obj_hash = new_hash;
	obj_hash_size = new_hash_size;
86 87
}

88
void created_object(const unsigned char *sha1, struct object *obj)
89 90 91
{
	obj->parsed = 0;
	obj->used = 0;
92
	obj->type = OBJ_NONE;
L
Linus Torvalds 已提交
93 94
	obj->flags = 0;
	memcpy(obj->sha1, sha1, 20);
95

L
Linus Torvalds 已提交
96 97
	if (obj_hash_size - 1 <= nr_objs * 2)
		grow_object_hash();
98

L
Linus Torvalds 已提交
99
	insert_obj_hash(obj, obj_hash, obj_hash_size);
100 101 102
	nr_objs++;
}

103 104
struct object *lookup_object_type(const unsigned char *sha1, const char *type)
{
105 106 107
	if (!type) {
		return lookup_unknown_object(sha1);
	} else if (!strcmp(type, blob_type)) {
108 109 110 111 112 113 114 115 116 117 118 119 120
		return &lookup_blob(sha1)->object;
	} else if (!strcmp(type, tree_type)) {
		return &lookup_tree(sha1)->object;
	} else if (!strcmp(type, commit_type)) {
		return &lookup_commit(sha1)->object;
	} else if (!strcmp(type, tag_type)) {
		return &lookup_tag(sha1)->object;
	} else {
		error("Unknown type %s", type);
		return NULL;
	}
}

121 122 123 124 125 126 127 128 129 130 131 132
union any_object {
	struct object object;
	struct commit commit;
	struct tree tree;
	struct blob blob;
	struct tag tag;
};

struct object *lookup_unknown_object(const unsigned char *sha1)
{
	struct object *obj = lookup_object(sha1);
	if (!obj) {
133
		union any_object *ret = xcalloc(1, sizeof(*ret));
134
		created_object(sha1, &ret->object);
135
		ret->object.type = OBJ_NONE;
136 137 138 139 140
		return &ret->object;
	}
	return obj;
}

141
struct object *parse_object(const unsigned char *sha1)
142
{
143 144 145 146
	unsigned long size;
	char type[20];
	void *buffer = read_sha1_file(sha1, type, &size);
	if (buffer) {
147
		struct object *obj;
148
		if (check_sha1_signature(sha1, buffer, size, type) < 0)
149
			printf("sha1 mismatch %s\n", sha1_to_hex(sha1));
150
		if (!strcmp(type, blob_type)) {
151 152 153
			struct blob *blob = lookup_blob(sha1);
			parse_blob_buffer(blob, buffer, size);
			obj = &blob->object;
154
		} else if (!strcmp(type, tree_type)) {
155 156
			struct tree *tree = lookup_tree(sha1);
			obj = &tree->object;
157 158 159 160
			if (!tree->object.parsed) {
				parse_tree_buffer(tree, buffer, size);
				buffer = NULL;
			}
161
		} else if (!strcmp(type, commit_type)) {
162 163
			struct commit *commit = lookup_commit(sha1);
			parse_commit_buffer(commit, buffer, size);
164 165 166 167
			if (!commit->buffer) {
				commit->buffer = buffer;
				buffer = NULL;
			}
168
			obj = &commit->object;
169
		} else if (!strcmp(type, tag_type)) {
170 171 172
			struct tag *tag = lookup_tag(sha1);
			parse_tag_buffer(tag, buffer, size);
			obj = &tag->object;
173
		} else {
174
			obj = NULL;
175
		}
176 177
		free(buffer);
		return obj;
178 179 180
	}
	return NULL;
}
181 182 183 184 185 186 187 188 189 190 191

struct object_list *object_list_insert(struct object *item,
				       struct object_list **list_p)
{
	struct object_list *new_list = xmalloc(sizeof(struct object_list));
        new_list->item = item;
        new_list->next = *list_p;
        *list_p = new_list;
        return new_list;
}

192 193 194 195 196 197 198 199 200 201 202
void object_list_append(struct object *item,
			struct object_list **list_p)
{
	while (*list_p) {
		list_p = &((*list_p)->next);
	}
	*list_p = xmalloc(sizeof(struct object_list));
	(*list_p)->next = NULL;
	(*list_p)->item = item;
}

203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
unsigned object_list_length(struct object_list *list)
{
	unsigned ret = 0;
	while (list) {
		list = list->next;
		ret++;
	}
	return ret;
}

int object_list_contains(struct object_list *list, struct object *obj)
{
	while (list) {
		if (list->item == obj)
			return 1;
		list = list->next;
	}
	return 0;
}
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238

void add_object_array(struct object *obj, const char *name, struct object_array *array)
{
	unsigned nr = array->nr;
	unsigned alloc = array->alloc;
	struct object_array_entry *objects = array->objects;

	if (nr >= alloc) {
		alloc = (alloc + 32) * 2;
		objects = xrealloc(objects, alloc * sizeof(*objects));
		array->alloc = alloc;
		array->objects = objects;
	}
	objects[nr].item = obj;
	objects[nr].name = name;
	array->nr = ++nr;
}