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 o = parse_object(((struct tag *)o)->tagged->sha1);
15 warnlen = strlen(warn);
16 error("missing object referenced by '%.*s'", warnlen, warn);
21 struct tag *lookup_tag(const unsigned char *sha1)
23 struct object *obj = lookup_object(sha1);
25 struct tag *ret = alloc_tag_node();
26 created_object(sha1, &ret->object);
27 ret->object.type = OBJ_TAG;
32 if (obj->type != OBJ_TAG) {
33 error("Object %s is a %s, not a tree",
34 sha1_to_hex(sha1), typename(obj->type));
37 return (struct tag *) obj;
40 int parse_tag_buffer(struct tag *item, void *data, unsigned long size)
43 unsigned char sha1[20];
44 const char *type_line, *tag_line, *sig_line;
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 = strchr(type_line, '\n');
61 if (!tag_line || memcmp("tag ", ++tag_line, 4))
64 sig_line = strchr(tag_line, '\n');
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 = xmalloc(taglen + 1);
76 memcpy(item->tag, tag_line + 4, taglen);
77 item->tag[taglen] = '\0';
79 if (!strcmp(type, blob_type)) {
80 item->tagged = &lookup_blob(sha1)->object;
81 } else if (!strcmp(type, tree_type)) {
82 item->tagged = &lookup_tree(sha1)->object;
83 } else if (!strcmp(type, commit_type)) {
84 item->tagged = &lookup_commit(sha1)->object;
85 } else if (!strcmp(type, tag_type)) {
86 item->tagged = &lookup_tag(sha1)->object;
88 error("Unknown type %s", type);
92 if (item->tagged && track_object_refs) {
93 struct object_refs *refs = alloc_object_refs(1);
94 refs->ref[0] = item->tagged;
95 set_object_refs(&item->object, refs);
101 int parse_tag(struct tag *item)
103 enum object_type type;
108 if (item->object.parsed)
110 data = read_sha1_file(item->object.sha1, &type, &size);
112 return error("Could not read %s",
113 sha1_to_hex(item->object.sha1));
114 if (type != OBJ_TAG) {
116 return error("Object %s not a tag",
117 sha1_to_hex(item->object.sha1));
119 ret = parse_tag_buffer(item, data, size);