1 #define DISABLE_SIGN_COMPARE_WARNINGS
3 #include "git-compat-util.h"
7 #include "replace-object.h"
8 #include "object-file.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
,
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
))
40 return object_type_strings
[type
];
43 int type_from_string_gently(const char *str
, ssize_t len
, int gentle
)
50 for (i
= 1; i
< ARRAY_SIZE(object_type_strings
); i
++)
51 if (!xstrncmpz(object_type_strings
[i
], str
, len
))
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
75 static void insert_obj_hash(struct object
*obj
, struct object
**hash
, unsigned int size
)
77 unsigned int j
= hash_obj(&obj
->oid
, size
);
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
;
96 if (!r
->parsed_objects
->obj_hash
)
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
))
104 if (i
== r
->parsed_objects
->obj_hash_size
)
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
]);
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
124 static void grow_object_hash(struct repository
*r
)
128 * Note that this size must always be power-of-2 to match hash_obj
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
];
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
;
153 oidcpy(&obj
->oid
, oid
);
155 if (r
->parsed_objects
->obj_hash_size
- 1 <= r
->parsed_objects
->nr_objs
* 2)
158 insert_obj_hash(obj
, r
->parsed_objects
->obj_hash
,
159 r
->parsed_objects
->obj_hash_size
);
160 r
->parsed_objects
->nr_objs
++;
164 void *object_as_type(struct object
*obj
, enum object_type type
, int quiet
)
166 if (obj
->type
== type
)
168 else if (obj
->type
== OBJ_NONE
) {
169 if (type
== OBJ_COMMIT
)
170 init_commit_node((struct commit
*) obj
);
177 error(_("object %s is a %s, not a %s"),
178 oid_to_hex(&obj
->oid
),
179 type_name(obj
->type
), type_name(type
));
184 struct object
*lookup_unknown_object(struct repository
*r
, const struct object_id
*oid
)
186 struct object
*obj
= lookup_object(r
, oid
);
188 obj
= create_object(r
, oid
, alloc_object_node(r
));
192 struct object
*lookup_object_by_type(struct repository
*r
,
193 const struct object_id
*oid
,
194 enum object_type type
)
198 return (struct object
*)lookup_commit(r
, oid
);
200 return (struct object
*)lookup_tree(r
, oid
);
202 return (struct object
*)lookup_tag(r
, oid
);
204 return (struct object
*)lookup_blob(r
, oid
);
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))
222 if (o
->type
!= OBJ_TAG
)
225 o
= deref_tag_noverify(r
, o
);
229 oidcpy(oid
, &o
->oid
);
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
)
239 if (type
== OBJ_BLOB
) {
240 struct blob
*blob
= lookup_blob(r
, oid
);
242 parse_blob_buffer(blob
);
245 } else if (type
== OBJ_TREE
) {
246 struct tree
*tree
= lookup_tree(r
, oid
);
250 tree
->object
.parsed
= 0;
251 if (!tree
->object
.parsed
) {
252 if (parse_tree_buffer(tree
, buffer
, size
))
257 } else if (type
== OBJ_COMMIT
) {
258 struct commit
*commit
= lookup_commit(r
, oid
);
260 if (parse_commit_buffer(r
, commit
, buffer
, size
, 1))
262 if (save_commit_buffer
&&
263 !get_cached_commit_buffer(r
, commit
, NULL
)) {
264 set_commit_buffer(r
, commit
, buffer
, size
);
267 obj
= &commit
->object
;
269 } else if (type
== OBJ_TAG
) {
270 struct tag
*tag
= lookup_tag(r
, oid
);
272 if (parse_tag_buffer(r
, tag
, buffer
, size
))
277 warning(_("object %s has unknown type id %d"), oid_to_hex(oid
), type
);
283 struct object
*parse_object_or_die(struct repository
*repo
,
284 const struct object_id
*oid
,
287 struct object
*o
= parse_object(repo
, oid
);
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
);
301 enum object_type type
;
303 const struct object_id
*repl
= lookup_replace_object(r
, oid
);
307 obj
= lookup_object(r
, oid
);
308 if (obj
&& obj
->parsed
)
312 struct commit
*commit
= lookup_commit_in_graph(r
, repl
);
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
));
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
);
341 check_object_signature(r
, repl
, buffer
, size
, type
) < 0) {
343 error(_("hash mismatch %s"), oid_to_hex(repl
));
347 obj
= parse_object_buffer(r
, oid
, type
, size
,
351 if (discard_tree
&& type
== OBJ_TREE
)
352 free_tree_buffer((struct tree
*)obj
);
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
;
373 int object_list_contains(struct object_list
*list
, struct object
*obj
)
376 if (list
->item
== obj
)
383 void object_list_free(struct object_list
**list
)
386 struct object_list
*p
= *list
;
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
;
414 alloc
= (alloc
+ 32) * 2;
415 REALLOC_ARRAY(objects
, alloc
);
416 array
->alloc
= alloc
;
417 array
->objects
= objects
;
419 entry
= &objects
[nr
];
424 /* Use our own empty string instead of allocating one: */
425 entry
->name
= object_array_slopbuf
;
427 entry
->name
= xstrdup(name
);
430 entry
->path
= xstrdup(path
);
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
)
452 struct object
*object_array_pop(struct object_array
*array
)
459 ret
= array
->objects
[array
->nr
- 1].item
;
460 object_array_release_entry(&array
->objects
[array
->nr
- 1]);
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
)) {
474 objects
[dst
] = objects
[src
];
477 object_array_release_entry(&objects
[src
]);
483 void object_array_clear(struct object_array
*array
)
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
)
496 for (i
= 0; i
< repo
->parsed_objects
->obj_hash_size
; i
++) {
497 struct object
*obj
= repo
->parsed_objects
->obj_hash
[i
];
499 obj
->flags
&= ~flags
;
503 void repo_clear_commit_marks(struct repository
*r
, unsigned int flags
)
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
));
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();
527 CALLOC_ARRAY(o
->shallow_stat
, 1);
529 o
->buffer_slab
= allocate_commit_buffer_slab();
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
);
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.
555 for (i
= 0; i
< o
->obj_hash_size
; i
++) {
556 struct object
*obj
= o
->obj_hash
[i
];
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
);