4 const char *tag_type
= "tag";
6 struct tag
*lookup_tag(const unsigned char *sha1
)
8 struct object
*obj
= lookup_object(sha1
);
10 struct tag
*ret
= xmalloc(sizeof(struct tag
));
11 memset(ret
, 0, sizeof(struct tag
));
12 created_object(sha1
, &ret
->object
);
13 ret
->object
.type
= tag_type
;
18 if (obj
->type
!= tag_type
) {
19 error("Object %s is a %s, not a tree",
20 sha1_to_hex(sha1
), obj
->type
);
23 return (struct tag
*) obj
;
26 int parse_tag_buffer(struct tag
*item
, void *data
, unsigned long size
)
29 unsigned char object
[20];
30 const char *type_line
, *tag_line
, *sig_line
;
33 if (item
->object
.parsed
)
35 item
->object
.parsed
= 1;
39 if (memcmp("object ", data
, 7) || get_sha1_hex(data
+ 7, object
))
42 type_line
= data
+ 48;
43 if (memcmp("\ntype ", type_line
-1, 6))
46 tag_line
= strchr(type_line
, '\n');
47 if (!tag_line
|| memcmp("tag ", ++tag_line
, 4))
50 sig_line
= strchr(tag_line
, '\n');
55 typelen
= tag_line
- type_line
- strlen("type \n");
58 memcpy(type
, type_line
+ 5, typelen
);
60 taglen
= sig_line
- tag_line
- strlen("tag \n");
61 item
->tag
= xmalloc(taglen
+ 1);
62 memcpy(item
->tag
, tag_line
+ 4, taglen
);
63 item
->tag
[taglen
] = '\0';
65 item
->tagged
= lookup_object_type(object
, type
);
67 add_ref(&item
->object
, item
->tagged
);
72 int parse_tag(struct tag
*item
)
79 if (item
->object
.parsed
)
81 data
= read_sha1_file(item
->object
.sha1
, type
, &size
);
83 return error("Could not read %s",
84 sha1_to_hex(item
->object
.sha1
));
85 if (strcmp(type
, tag_type
)) {
87 return error("Object %s not a tag",
88 sha1_to_hex(item
->object
.sha1
));
90 ret
= parse_tag_buffer(item
, data
, size
);