l10n: de.po: translate 68 new messages
[git/mingw.git] / object.c
blob584f7acb36b68d17678b3fd6251105241794ea48
1 #include "cache.h"
2 #include "object.h"
3 #include "blob.h"
4 #include "tree.h"
5 #include "commit.h"
6 #include "tag.h"
8 static struct object **obj_hash;
9 static int nr_objs, obj_hash_size;
11 unsigned int get_max_object_index(void)
13 return obj_hash_size;
16 struct object *get_indexed_object(unsigned int idx)
18 return obj_hash[idx];
21 static const char *object_type_strings[] = {
22 NULL, /* OBJ_NONE = 0 */
23 "commit", /* OBJ_COMMIT = 1 */
24 "tree", /* OBJ_TREE = 2 */
25 "blob", /* OBJ_BLOB = 3 */
26 "tag", /* OBJ_TAG = 4 */
29 const char *typename(unsigned int type)
31 if (type >= ARRAY_SIZE(object_type_strings))
32 return NULL;
33 return object_type_strings[type];
36 int type_from_string(const char *str)
38 int i;
40 for (i = 1; i < ARRAY_SIZE(object_type_strings); i++)
41 if (!strcmp(str, object_type_strings[i]))
42 return i;
43 die("invalid object type \"%s\"", str);
46 static unsigned int hash_obj(const unsigned char *sha1, unsigned int n)
48 unsigned int hash;
49 memcpy(&hash, sha1, sizeof(unsigned int));
50 /* Assumes power-of-2 hash sizes in grow_object_hash */
51 return hash & (n - 1);
54 static void insert_obj_hash(struct object *obj, struct object **hash, unsigned int size)
56 unsigned int j = hash_obj(obj->sha1, size);
58 while (hash[j]) {
59 j++;
60 if (j >= size)
61 j = 0;
63 hash[j] = obj;
66 struct object *lookup_object(const unsigned char *sha1)
68 unsigned int i, first;
69 struct object *obj;
71 if (!obj_hash)
72 return NULL;
74 first = i = hash_obj(sha1, obj_hash_size);
75 while ((obj = obj_hash[i]) != NULL) {
76 if (!hashcmp(sha1, obj->sha1))
77 break;
78 i++;
79 if (i == obj_hash_size)
80 i = 0;
82 if (obj && i != first) {
84 * Move object to where we started to look for it so
85 * that we do not need to walk the hash table the next
86 * time we look for it.
88 struct object *tmp = obj_hash[i];
89 obj_hash[i] = obj_hash[first];
90 obj_hash[first] = tmp;
92 return obj;
95 static void grow_object_hash(void)
97 int i;
99 * Note that this size must always be power-of-2 to match hash_obj
100 * above.
102 int new_hash_size = obj_hash_size < 32 ? 32 : 2 * obj_hash_size;
103 struct object **new_hash;
105 new_hash = xcalloc(new_hash_size, sizeof(struct object *));
106 for (i = 0; i < obj_hash_size; i++) {
107 struct object *obj = obj_hash[i];
108 if (!obj)
109 continue;
110 insert_obj_hash(obj, new_hash, new_hash_size);
112 free(obj_hash);
113 obj_hash = new_hash;
114 obj_hash_size = new_hash_size;
117 void *create_object(const unsigned char *sha1, int type, void *o)
119 struct object *obj = o;
121 obj->parsed = 0;
122 obj->used = 0;
123 obj->type = type;
124 obj->flags = 0;
125 hashcpy(obj->sha1, sha1);
127 if (obj_hash_size - 1 <= nr_objs * 2)
128 grow_object_hash();
130 insert_obj_hash(obj, obj_hash, obj_hash_size);
131 nr_objs++;
132 return obj;
135 struct object *lookup_unknown_object(const unsigned char *sha1)
137 struct object *obj = lookup_object(sha1);
138 if (!obj)
139 obj = create_object(sha1, OBJ_NONE, alloc_object_node());
140 return obj;
143 struct object *parse_object_buffer(const unsigned char *sha1, enum object_type type, unsigned long size, void *buffer, int *eaten_p)
145 struct object *obj;
146 *eaten_p = 0;
148 obj = NULL;
149 if (type == OBJ_BLOB) {
150 struct blob *blob = lookup_blob(sha1);
151 if (blob) {
152 if (parse_blob_buffer(blob, buffer, size))
153 return NULL;
154 obj = &blob->object;
156 } else if (type == OBJ_TREE) {
157 struct tree *tree = lookup_tree(sha1);
158 if (tree) {
159 obj = &tree->object;
160 if (!tree->buffer)
161 tree->object.parsed = 0;
162 if (!tree->object.parsed) {
163 if (parse_tree_buffer(tree, buffer, size))
164 return NULL;
165 *eaten_p = 1;
168 } else if (type == OBJ_COMMIT) {
169 struct commit *commit = lookup_commit(sha1);
170 if (commit) {
171 if (parse_commit_buffer(commit, buffer, size))
172 return NULL;
173 if (!commit->buffer) {
174 commit->buffer = buffer;
175 *eaten_p = 1;
177 obj = &commit->object;
179 } else if (type == OBJ_TAG) {
180 struct tag *tag = lookup_tag(sha1);
181 if (tag) {
182 if (parse_tag_buffer(tag, buffer, size))
183 return NULL;
184 obj = &tag->object;
186 } else {
187 warning("object %s has unknown type id %d", sha1_to_hex(sha1), type);
188 obj = NULL;
190 if (obj && obj->type == OBJ_NONE)
191 obj->type = type;
192 return obj;
195 struct object *parse_object_or_die(const unsigned char *sha1,
196 const char *name)
198 struct object *o = parse_object(sha1);
199 if (o)
200 return o;
202 die(_("unable to parse object: %s"), name ? name : sha1_to_hex(sha1));
205 struct object *parse_object(const unsigned char *sha1)
207 unsigned long size;
208 enum object_type type;
209 int eaten;
210 const unsigned char *repl = lookup_replace_object(sha1);
211 void *buffer;
212 struct object *obj;
214 obj = lookup_object(sha1);
215 if (obj && obj->parsed)
216 return obj;
218 if ((obj && obj->type == OBJ_BLOB) ||
219 (!obj && has_sha1_file(sha1) &&
220 sha1_object_info(sha1, NULL) == OBJ_BLOB)) {
221 if (check_sha1_signature(repl, NULL, 0, NULL) < 0) {
222 error("sha1 mismatch %s", sha1_to_hex(repl));
223 return NULL;
225 parse_blob_buffer(lookup_blob(sha1), NULL, 0);
226 return lookup_object(sha1);
229 buffer = read_sha1_file(sha1, &type, &size);
230 if (buffer) {
231 if (check_sha1_signature(repl, buffer, size, typename(type)) < 0) {
232 free(buffer);
233 error("sha1 mismatch %s", sha1_to_hex(repl));
234 return NULL;
237 obj = parse_object_buffer(sha1, type, size, buffer, &eaten);
238 if (!eaten)
239 free(buffer);
240 return obj;
242 return NULL;
245 struct object_list *object_list_insert(struct object *item,
246 struct object_list **list_p)
248 struct object_list *new_list = xmalloc(sizeof(struct object_list));
249 new_list->item = item;
250 new_list->next = *list_p;
251 *list_p = new_list;
252 return new_list;
255 int object_list_contains(struct object_list *list, struct object *obj)
257 while (list) {
258 if (list->item == obj)
259 return 1;
260 list = list->next;
262 return 0;
266 * A zero-length string to which object_array_entry::name can be
267 * initialized without requiring a malloc/free.
269 static char object_array_slopbuf[1];
271 static void add_object_array_with_mode_context(struct object *obj, const char *name,
272 struct object_array *array,
273 unsigned mode,
274 struct object_context *context)
276 unsigned nr = array->nr;
277 unsigned alloc = array->alloc;
278 struct object_array_entry *objects = array->objects;
279 struct object_array_entry *entry;
281 if (nr >= alloc) {
282 alloc = (alloc + 32) * 2;
283 objects = xrealloc(objects, alloc * sizeof(*objects));
284 array->alloc = alloc;
285 array->objects = objects;
287 entry = &objects[nr];
288 entry->item = obj;
289 if (!name)
290 entry->name = NULL;
291 else if (!*name)
292 /* Use our own empty string instead of allocating one: */
293 entry->name = object_array_slopbuf;
294 else
295 entry->name = xstrdup(name);
296 entry->mode = mode;
297 entry->context = context;
298 array->nr = ++nr;
301 void add_object_array(struct object *obj, const char *name, struct object_array *array)
303 add_object_array_with_mode(obj, name, array, S_IFINVALID);
306 void add_object_array_with_mode(struct object *obj, const char *name, struct object_array *array, unsigned mode)
308 add_object_array_with_mode_context(obj, name, array, mode, NULL);
311 void add_object_array_with_context(struct object *obj, const char *name, struct object_array *array, struct object_context *context)
313 if (context)
314 add_object_array_with_mode_context(obj, name, array, context->mode, context);
315 else
316 add_object_array_with_mode_context(obj, name, array, S_IFINVALID, context);
319 void object_array_filter(struct object_array *array,
320 object_array_each_func_t want, void *cb_data)
322 unsigned nr = array->nr, src, dst;
323 struct object_array_entry *objects = array->objects;
325 for (src = dst = 0; src < nr; src++) {
326 if (want(&objects[src], cb_data)) {
327 if (src != dst)
328 objects[dst] = objects[src];
329 dst++;
330 } else {
331 if (objects[src].name != object_array_slopbuf)
332 free(objects[src].name);
335 array->nr = dst;
339 * Return true iff array already contains an entry with name.
341 static int contains_name(struct object_array *array, const char *name)
343 unsigned nr = array->nr, i;
344 struct object_array_entry *object = array->objects;
346 for (i = 0; i < nr; i++, object++)
347 if (!strcmp(object->name, name))
348 return 1;
349 return 0;
352 void object_array_remove_duplicates(struct object_array *array)
354 unsigned nr = array->nr, src;
355 struct object_array_entry *objects = array->objects;
357 array->nr = 0;
358 for (src = 0; src < nr; src++) {
359 if (!contains_name(array, objects[src].name)) {
360 if (src != array->nr)
361 objects[array->nr] = objects[src];
362 array->nr++;
363 } else {
364 if (objects[src].name != object_array_slopbuf)
365 free(objects[src].name);
370 void clear_object_flags(unsigned flags)
372 int i;
374 for (i=0; i < obj_hash_size; i++) {
375 struct object *obj = obj_hash[i];
376 if (obj)
377 obj->flags &= ~flags;