2005-04-18 11:39:48 -07:00
|
|
|
#ifndef OBJECT_H
|
|
|
|
#define OBJECT_H
|
|
|
|
|
|
|
|
struct object_list {
|
|
|
|
struct object *item;
|
|
|
|
struct object_list *next;
|
2005-06-26 15:26:05 -07:00
|
|
|
const char *name;
|
2005-04-18 11:39:48 -07: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 15:39:40 +00:00
|
|
|
void *util;
|
2005-04-18 11:39:48 -07:00
|
|
|
};
|
|
|
|
|
2005-05-11 00:58:16 +02:00
|
|
|
extern int nr_objs;
|
|
|
|
extern struct object **objs;
|
2005-04-18 11:39:48 -07:00
|
|
|
|
2005-06-21 20:35:10 -04:00
|
|
|
/** Internal only **/
|
2005-06-03 11:05:39 -04:00
|
|
|
struct object *lookup_object(const unsigned char *sha1);
|
2005-04-18 11:39:48 -07:00
|
|
|
|
2005-06-21 20:35:10 -04: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 11:05:39 -04:00
|
|
|
void created_object(const unsigned char *sha1, struct object *obj);
|
2005-04-18 11:39:48 -07:00
|
|
|
|
2005-04-28 07:46:33 -07:00
|
|
|
/** Returns the object, having parsed it to find out what it is. **/
|
2005-06-03 11:05:39 -04:00
|
|
|
struct object *parse_object(const unsigned char *sha1);
|
2005-04-28 07:46:33 -07:00
|
|
|
|
2005-08-02 19:45:48 -04:00
|
|
|
/** Returns the object, with potentially excess memory allocated. **/
|
|
|
|
struct object *lookup_unknown_object(const unsigned char *sha1);
|
|
|
|
|
2005-04-18 11:39:48 -07:00
|
|
|
void add_ref(struct object *refer, struct object *target);
|
|
|
|
|
|
|
|
void mark_reachable(struct object *obj, unsigned int mask);
|
|
|
|
|
2005-08-02 19:45:48 -04:00
|
|
|
struct object_list *object_list_insert(struct object *item,
|
|
|
|
struct object_list **list_p);
|
|
|
|
|
2005-09-05 02:04:18 -04:00
|
|
|
void object_list_append(struct object *item,
|
|
|
|
struct object_list **list_p);
|
|
|
|
|
2005-08-02 19:45:48 -04:00
|
|
|
unsigned object_list_length(struct object_list *list);
|
|
|
|
|
|
|
|
int object_list_contains(struct object_list *list, struct object *obj);
|
|
|
|
|
2005-04-18 11:39:48 -07:00
|
|
|
#endif /* OBJECT_H */
|