object.c 4.7 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 8

struct object **objs;
9 10
static int nr_objs;
int obj_allocs;
11

L
Linus Torvalds 已提交
12 13 14 15
const char *type_names[] = {
	"none", "blob", "tree", "commit", "bad"
};

16 17
static int hashtable_index(const unsigned char *sha1)
{
18 19
	unsigned int i;
	memcpy(&i, sha1, sizeof(unsigned int));
20 21 22
	return (int)(i % obj_allocs);
}

23
static int find_object(const unsigned char *sha1)
24
{
25
	int i;
26

27 28
	if (!objs)
		return -1;
29

30
	i = hashtable_index(sha1);
31 32 33 34 35 36 37 38
	while (objs[i]) {
		if (memcmp(sha1, objs[i]->sha1, 20) == 0)
			return i;
		i++;
		if (i == obj_allocs)
			i = 0;
	}
	return -1 - i;
39 40
}

41
struct object *lookup_object(const unsigned char *sha1)
42 43 44 45 46 47 48
{
	int pos = find_object(sha1);
	if (pos >= 0)
		return objs[pos];
	return NULL;
}

49
void created_object(const unsigned char *sha1, struct object *obj)
50
{
51
	int pos;
52 53 54

	obj->parsed = 0;
	memcpy(obj->sha1, sha1, 20);
L
Linus Torvalds 已提交
55
	obj->type = TYPE_NONE;
56 57
	obj->used = 0;

58 59 60
	if (obj_allocs - 1 <= nr_objs * 2) {
		int i, count = obj_allocs;
		obj_allocs = (obj_allocs < 32 ? 32 : 2 * obj_allocs);
61
		objs = xrealloc(objs, obj_allocs * sizeof(struct object *));
62 63
		memset(objs + count, 0, (obj_allocs - count)
				* sizeof(struct object *));
L
Linus Torvalds 已提交
64
		for (i = 0; i < obj_allocs; i++)
65 66 67 68 69 70 71 72
			if (objs[i]) {
				int j = find_object(objs[i]->sha1);
				if (j != i) {
					j = -1 - j;
					objs[j] = objs[i];
					objs[i] = NULL;
				}
			}
73 74
	}

75 76 77 78
	pos = find_object(sha1);
	if (pos >= 0)
		die("Inserting %s twice\n", sha1_to_hex(sha1));
	pos = -pos-1;
79 80 81 82 83

	objs[pos] = obj;
	nr_objs++;
}

84 85
struct object *lookup_object_type(const unsigned char *sha1, const char *type)
{
86 87 88
	if (!type) {
		return lookup_unknown_object(sha1);
	} else if (!strcmp(type, blob_type)) {
89 90 91 92 93 94 95 96 97 98 99 100 101
		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;
	}
}

102 103 104 105 106 107 108 109 110 111 112 113
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) {
114
		union any_object *ret = xcalloc(1, sizeof(*ret));
115
		created_object(sha1, &ret->object);
L
Linus Torvalds 已提交
116
		ret->object.type = TYPE_NONE;
117 118 119 120 121
		return &ret->object;
	}
	return obj;
}

122
struct object *parse_object(const unsigned char *sha1)
123
{
124 125 126 127
	unsigned long size;
	char type[20];
	void *buffer = read_sha1_file(sha1, type, &size);
	if (buffer) {
128
		struct object *obj;
129
		if (check_sha1_signature(sha1, buffer, size, type) < 0)
130
			printf("sha1 mismatch %s\n", sha1_to_hex(sha1));
131
		if (!strcmp(type, blob_type)) {
132 133 134
			struct blob *blob = lookup_blob(sha1);
			parse_blob_buffer(blob, buffer, size);
			obj = &blob->object;
135
		} else if (!strcmp(type, tree_type)) {
136 137
			struct tree *tree = lookup_tree(sha1);
			obj = &tree->object;
138 139 140 141
			if (!tree->object.parsed) {
				parse_tree_buffer(tree, buffer, size);
				buffer = NULL;
			}
142
		} else if (!strcmp(type, commit_type)) {
143 144
			struct commit *commit = lookup_commit(sha1);
			parse_commit_buffer(commit, buffer, size);
145 146 147 148
			if (!commit->buffer) {
				commit->buffer = buffer;
				buffer = NULL;
			}
149
			obj = &commit->object;
150
		} else if (!strcmp(type, tag_type)) {
151 152 153
			struct tag *tag = lookup_tag(sha1);
			parse_tag_buffer(tag, buffer, size);
			obj = &tag->object;
154
		} else {
155
			obj = NULL;
156
		}
157 158
		free(buffer);
		return obj;
159 160 161
	}
	return NULL;
}
162 163 164 165 166 167 168 169 170 171 172

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;
}

173 174 175 176 177 178 179 180 181 182 183
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;
}

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
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;
}
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

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;
}