X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=object.h;h=caee733cdeda28b1679848fa9be4be870420b54a;hb=c4431d380c20b4c05c373980c600798fc02e79b0;hp=733faac4ccd1c9a8bb4ed1fc67986b369d9442b3;hpb=2dcb927f37976ef5185cef5452516b170b14cd6c;p=git.git diff --git a/object.h b/object.h index 733faac4c..caee733cd 100644 --- a/object.h +++ b/object.h @@ -27,17 +27,6 @@ struct object_array { /* * The object type is stored in 3 bits. */ -enum object_type { - OBJ_NONE = 0, - OBJ_COMMIT = 1, - OBJ_TREE = 2, - OBJ_BLOB = 3, - OBJ_TAG = 4, - /* 5/6 for future expansion */ - OBJ_DELTA = 7, - OBJ_BAD, -}; - struct object { unsigned parsed : 1; unsigned used : 1; @@ -70,6 +59,12 @@ void created_object(const unsigned char *sha1, struct object *obj); /** Returns the object, having parsed it to find out what it is. **/ struct object *parse_object(const unsigned char *sha1); +/* Given the result of read_sha1_file(), returns the object after + * parsing it. eaten_p indicates if the object has a borrowed copy + * of buffer and the caller should not free() it. + */ +struct object *parse_object_buffer(const unsigned char *sha1, const char *type, unsigned long size, void *buffer, int *eaten_p); + /** Returns the object, with potentially excess memory allocated. **/ struct object *lookup_unknown_object(const unsigned char *sha1);