2005-04-18 20:39:48 +02:00
|
|
|
#ifndef OBJECT_H
|
|
|
|
#define OBJECT_H
|
|
|
|
|
|
|
|
struct object_list {
|
|
|
|
struct object *item;
|
|
|
|
struct object_list *next;
|
2005-06-27 00:26:05 +02:00
|
|
|
const char *name;
|
2005-04-18 20:39:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct object {
|
|
|
|
unsigned parsed : 1;
|
|
|
|
unsigned used : 1;
|
|
|
|
unsigned int flags;
|
|
|
|
unsigned char sha1[20];
|
|
|
|
const char *type;
|
|
|
|
struct object_list *refs;
|
2005-06-06 17:39:40 +02:00
|
|
|
void *util;
|
2005-04-18 20:39:48 +02:00
|
|
|
};
|
|
|
|
|
2005-09-16 23:55:33 +02:00
|
|
|
extern int track_object_refs;
|
2005-05-11 00:58:16 +02:00
|
|
|
extern int nr_objs;
|
|
|
|
extern struct object **objs;
|
2005-04-18 20:39:48 +02:00
|
|
|
|
2005-06-22 02:35:10 +02:00
|
|
|
/** Internal only **/
|
2005-06-03 17:05:39 +02:00
|
|
|
struct object *lookup_object(const unsigned char *sha1);
|
2005-04-18 20:39:48 +02:00
|
|
|
|
2005-06-22 02:35:10 +02:00
|
|
|
/** Returns the object, having looked it up as being the given type. **/
|
|
|
|
struct object *lookup_object_type(const unsigned char *sha1, const char *type);
|
|
|
|
|
2005-06-03 17:05:39 +02:00
|
|
|
void created_object(const unsigned char *sha1, struct object *obj);
|
2005-04-18 20:39:48 +02:00
|
|
|
|
2005-04-28 16:46:33 +02:00
|
|
|
/** Returns the object, having parsed it to find out what it is. **/
|
2005-06-03 17:05:39 +02:00
|
|
|
struct object *parse_object(const unsigned char *sha1);
|
2005-04-28 16:46:33 +02:00
|
|
|
|
2005-08-03 01:45:48 +02:00
|
|
|
/** Returns the object, with potentially excess memory allocated. **/
|
|
|
|
struct object *lookup_unknown_object(const unsigned char *sha1);
|
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
void add_ref(struct object *refer, struct object *target);
|
|
|
|
|
|
|
|
void mark_reachable(struct object *obj, unsigned int mask);
|
|
|
|
|
2005-08-03 01:45:48 +02:00
|
|
|
struct object_list *object_list_insert(struct object *item,
|
|
|
|
struct object_list **list_p);
|
|
|
|
|
2005-09-05 08:04:18 +02:00
|
|
|
void object_list_append(struct object *item,
|
|
|
|
struct object_list **list_p);
|
|
|
|
|
2005-08-03 01:45:48 +02:00
|
|
|
unsigned object_list_length(struct object_list *list);
|
|
|
|
|
|
|
|
int object_list_contains(struct object_list *list, struct object *obj);
|
|
|
|
|
2005-04-18 20:39:48 +02:00
|
|
|
#endif /* OBJECT_H */
|