Blame object.h

Packit 4511e4
#ifndef OBJECT_H
Packit 4511e4
#define OBJECT_H
Packit 4511e4
Packit 4511e4
struct object_list {
Packit 4511e4
	struct object *item;
Packit 4511e4
	struct object_list *next;
Packit 4511e4
};
Packit 4511e4
Packit 4511e4
struct object_array {
Packit 4511e4
	unsigned int nr;
Packit 4511e4
	unsigned int alloc;
Packit 4511e4
	struct object_array_entry {
Packit 4511e4
		struct object *item;
Packit 4511e4
		/*
Packit 4511e4
		 * name or NULL.  If non-NULL, the memory pointed to
Packit 4511e4
		 * is owned by this object *except* if it points at
Packit 4511e4
		 * object_array_slopbuf, which is a static copy of the
Packit 4511e4
		 * empty string.
Packit 4511e4
		 */
Packit 4511e4
		char *name;
Packit 4511e4
		char *path;
Packit 4511e4
		unsigned mode;
Packit 4511e4
	} *objects;
Packit 4511e4
};
Packit 4511e4
Packit 4511e4
#define OBJECT_ARRAY_INIT { 0, 0, NULL }
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * object flag allocation:
Packit 4511e4
 * revision.h:               0---------10                                26
Packit 4511e4
 * fetch-pack.c:             0----5
Packit 4511e4
 * walker.c:                 0-2
Packit 4511e4
 * upload-pack.c:                4       11----------------19
Packit 4511e4
 * builtin/blame.c:                        12-13
Packit 4511e4
 * bisect.c:                                        16
Packit 4511e4
 * bundle.c:                                        16
Packit 4511e4
 * http-push.c:                                     16-----19
Packit 4511e4
 * commit.c:                                        16-----19
Packit 4511e4
 * sha1-name.c:                                              20
Packit 4511e4
 * list-objects-filter.c:                                      21
Packit 4511e4
 * builtin/fsck.c:           0--3
Packit 4511e4
 * builtin/index-pack.c:                                     2021
Packit 4511e4
 * builtin/pack-objects.c:                                   20
Packit 4511e4
 * builtin/reflog.c:                   10--12
Packit 4511e4
 * builtin/unpack-objects.c:                                 2021
Packit 4511e4
 */
Packit 4511e4
#define FLAG_BITS  27
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * The object type is stored in 3 bits.
Packit 4511e4
 */
Packit 4511e4
struct object {
Packit 4511e4
	unsigned parsed : 1;
Packit 4511e4
	unsigned type : TYPE_BITS;
Packit 4511e4
	unsigned flags : FLAG_BITS;
Packit 4511e4
	struct object_id oid;
Packit 4511e4
};
Packit 4511e4
Packit 4511e4
extern const char *type_name(unsigned int type);
Packit 4511e4
extern int type_from_string_gently(const char *str, ssize_t, int gentle);
Packit 4511e4
#define type_from_string(str) type_from_string_gently(str, -1, 0)
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Return the current number of buckets in the object hashmap.
Packit 4511e4
 */
Packit 4511e4
extern unsigned int get_max_object_index(void);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Return the object from the specified bucket in the object hashmap.
Packit 4511e4
 */
Packit 4511e4
extern struct object *get_indexed_object(unsigned int);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * This can be used to see if we have heard of the object before, but
Packit 4511e4
 * it can return "yes we have, and here is a half-initialised object"
Packit 4511e4
 * for an object that we haven't loaded/parsed yet.
Packit 4511e4
 *
Packit 4511e4
 * When parsing a commit to create an in-core commit object, its
Packit 4511e4
 * parents list holds commit objects that represent its parents, but
Packit 4511e4
 * they are expected to be lazily initialized and do not know what
Packit 4511e4
 * their trees or parents are yet.  When this function returns such a
Packit 4511e4
 * half-initialised objects, the caller is expected to initialize them
Packit 4511e4
 * by calling parse_object() on them.
Packit 4511e4
 */
Packit 4511e4
struct object *lookup_object(const unsigned char *sha1);
Packit 4511e4
Packit 4511e4
extern void *create_object(const unsigned char *sha1, void *obj);
Packit 4511e4
Packit 4511e4
void *object_as_type(struct object *obj, enum object_type type, int quiet);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Returns the object, having parsed it to find out what it is.
Packit 4511e4
 *
Packit 4511e4
 * Returns NULL if the object is missing or corrupt.
Packit 4511e4
 */
Packit 4511e4
struct object *parse_object(const struct object_id *oid);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Like parse_object, but will die() instead of returning NULL. If the
Packit 4511e4
 * "name" parameter is not NULL, it is included in the error message
Packit 4511e4
 * (otherwise, the hex object ID is given).
Packit 4511e4
 */
Packit 4511e4
struct object *parse_object_or_die(const struct object_id *oid, const char *name);
Packit 4511e4
Packit 4511e4
/* Given the result of read_sha1_file(), returns the object after
Packit 4511e4
 * parsing it.  eaten_p indicates if the object has a borrowed copy
Packit 4511e4
 * of buffer and the caller should not free() it.
Packit 4511e4
 */
Packit 4511e4
struct object *parse_object_buffer(const struct object_id *oid, enum object_type type, unsigned long size, void *buffer, int *eaten_p);
Packit 4511e4
Packit 4511e4
/** Returns the object, with potentially excess memory allocated. **/
Packit 4511e4
struct object *lookup_unknown_object(const unsigned  char *sha1);
Packit 4511e4
Packit 4511e4
struct object_list *object_list_insert(struct object *item,
Packit 4511e4
				       struct object_list **list_p);
Packit 4511e4
Packit 4511e4
int object_list_contains(struct object_list *list, struct object *obj);
Packit 4511e4
Packit 4511e4
/* Object array handling .. */
Packit 4511e4
void add_object_array(struct object *obj, const char *name, struct object_array *array);
Packit 4511e4
void add_object_array_with_path(struct object *obj, const char *name, struct object_array *array, unsigned mode, const char *path);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Returns NULL if the array is empty. Otherwise, returns the last object
Packit 4511e4
 * after removing its entry from the array. Other resources associated
Packit 4511e4
 * with that object are left in an unspecified state and should not be
Packit 4511e4
 * examined.
Packit 4511e4
 */
Packit 4511e4
struct object *object_array_pop(struct object_array *array);
Packit 4511e4
Packit 4511e4
typedef int (*object_array_each_func_t)(struct object_array_entry *, void *);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Apply want to each entry in array, retaining only the entries for
Packit 4511e4
 * which the function returns true.  Preserve the order of the entries
Packit 4511e4
 * that are retained.
Packit 4511e4
 */
Packit 4511e4
void object_array_filter(struct object_array *array,
Packit 4511e4
			 object_array_each_func_t want, void *cb_data);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Remove from array all but the first entry with a given name.
Packit 4511e4
 * Warning: this function uses an O(N^2) algorithm.
Packit 4511e4
 */
Packit 4511e4
void object_array_remove_duplicates(struct object_array *array);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Remove any objects from the array, freeing all used memory; afterwards
Packit 4511e4
 * the array is ready to store more objects with add_object_array().
Packit 4511e4
 */
Packit 4511e4
void object_array_clear(struct object_array *array);
Packit 4511e4
Packit 4511e4
void clear_object_flags(unsigned flags);
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Clear the specified object flags from all in-core commit objects.
Packit 4511e4
 */
Packit 4511e4
extern void clear_commit_marks_all(unsigned int flags);
Packit 4511e4
Packit 4511e4
#endif /* OBJECT_H */