7 const char *tag_type = "tag";
9 struct object *deref_tag(struct object *o, const char *warn, int warnlen)
11 while (o && o->type == OBJ_TAG)
12 if (((struct tag *)o)->tagged)
13 o = parse_object(((struct tag *)o)->tagged->sha1);
18 warnlen = strlen(warn);
19 error("missing object referenced by '%.*s'", warnlen, warn);
24 struct tag *lookup_tag(const unsigned char *sha1)
26 struct object *obj = lookup_object(sha1);
28 return create_object(sha1, OBJ_TAG, alloc_tag_node());
31 if (obj->type != OBJ_TAG) {
32 error("Object %s is a %s, not a tag",
33 sha1_to_hex(sha1), typename(obj->type));
36 return (struct tag *) obj;
39 int parse_tag_buffer(struct tag *item, void *data, unsigned long size)
42 unsigned char sha1[20];
43 const char *type_line, *tag_line, *sig_line;
45 const char *start = data;
47 if (item->object.parsed)
49 item->object.parsed = 1;
53 if (memcmp("object ", data, 7) || get_sha1_hex((char *) data + 7, sha1))
56 type_line = (char *) data + 48;
57 if (memcmp("\ntype ", type_line-1, 6))
60 tag_line = memchr(type_line, '\n', size - (type_line - start));
61 if (!tag_line || memcmp("tag ", ++tag_line, 4))
64 sig_line = memchr(tag_line, '\n', size - (tag_line - start));
69 typelen = tag_line - type_line - strlen("type \n");
72 memcpy(type, type_line + 5, typelen);
74 taglen = sig_line - tag_line - strlen("tag \n");
75 item->tag = xmemdupz(tag_line + 4, taglen);
77 if (!strcmp(type, blob_type)) {
78 item->tagged = &lookup_blob(sha1)->object;
79 } else if (!strcmp(type, tree_type)) {
80 item->tagged = &lookup_tree(sha1)->object;
81 } else if (!strcmp(type, commit_type)) {
82 item->tagged = &lookup_commit(sha1)->object;
83 } else if (!strcmp(type, tag_type)) {
84 item->tagged = &lookup_tag(sha1)->object;
86 error("Unknown type %s", type);
93 int parse_tag(struct tag *item)
95 enum object_type type;
100 if (item->object.parsed)
102 data = read_sha1_file(item->object.sha1, &type, &size);
104 return error("Could not read %s",
105 sha1_to_hex(item->object.sha1));
106 if (type != OBJ_TAG) {
108 return error("Object %s not a tag",
109 sha1_to_hex(item->object.sha1));
111 ret = parse_tag_buffer(item, data, size);