/* * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, * as published by the Free Software Foundation. * * In addition to the permissions in the GNU General Public License, * the authors give you unlimited permission to link the compiled * version of this file into combinations with other programs, * and to distribute those combinations without any restriction * coming from the use of this file. (The General Public License * restrictions do apply in other respects; for example, they cover * modification of the file, and distribution when not linked into * a combined executable.) * * This file is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #include "common.h" #include "commit.h" #include "tag.h" #include "signature.h" #include "git2/object.h" #include "git2/repository.h" #include "git2/signature.h" void git_tag__free(git_tag *tag) { git_signature_free(tag->tagger); free(tag->message); free(tag->tag_name); free(tag); } const git_oid *git_tag_id(git_tag *c) { return git_object_id((git_object *)c); } int git_tag_target(git_object **target, git_tag *t) { assert(t); return git_object_lookup(target, t->object.repo, &t->target, t->type); } const git_oid *git_tag_target_oid(git_tag *t) { assert(t); return &t->target; } git_otype git_tag_type(git_tag *t) { assert(t); return t->type; } const char *git_tag_name(git_tag *t) { assert(t); return t->tag_name; } const git_signature *git_tag_tagger(git_tag *t) { return t->tagger; } const char *git_tag_message(git_tag *t) { assert(t); return t->message; } static int parse_tag_buffer(git_tag *tag, char *buffer, const char *buffer_end) { static const char *tag_types[] = { NULL, "commit\n", "tree\n", "blob\n", "tag\n" }; unsigned int i, text_len; char *search; int error; if ((error = git__parse_oid(&tag->target, &buffer, buffer_end, "object ")) < 0) return error; if (buffer + 5 >= buffer_end) return GIT_EOBJCORRUPTED; if (memcmp(buffer, "type ", 5) != 0) return GIT_EOBJCORRUPTED; buffer += 5; tag->type = GIT_OBJ_BAD; for (i = 1; i < ARRAY_SIZE(tag_types); ++i) { size_t type_length = strlen(tag_types[i]); if (buffer + type_length >= buffer_end) return GIT_EOBJCORRUPTED; if (memcmp(buffer, tag_types[i], type_length) == 0) { tag->type = i; buffer += type_length; break; } } if (tag->type == GIT_OBJ_BAD) return GIT_EOBJCORRUPTED; if (buffer + 4 >= buffer_end) return GIT_EOBJCORRUPTED; if (memcmp(buffer, "tag ", 4) != 0) return GIT_EOBJCORRUPTED; buffer += 4; search = memchr(buffer, '\n', buffer_end - buffer); if (search == NULL) return GIT_EOBJCORRUPTED; text_len = search - buffer; if (tag->tag_name != NULL) free(tag->tag_name); tag->tag_name = git__malloc(text_len + 1); memcpy(tag->tag_name, buffer, text_len); tag->tag_name[text_len] = '\0'; buffer = search + 1; tag->tagger = git__malloc(sizeof(git_signature)); if ((error = git_signature__parse(tag->tagger, &buffer, buffer_end, "tagger ")) != 0) return error; text_len = buffer_end - ++buffer; tag->message = git__malloc(text_len + 1); memcpy(tag->message, buffer, text_len); tag->message[text_len] = '\0'; return GIT_SUCCESS; } int git_tag_create_o( git_oid *oid, git_repository *repo, const char *tag_name, const git_object *target, const git_signature *tagger, const char *message) { return git_tag_create( oid, repo, tag_name, git_object_id(target), git_object_type(target), tagger, message); } int git_tag_create( git_oid *oid, git_repository *repo, const char *tag_name, const git_oid *target, git_otype target_type, const git_signature *tagger, const char *message) { size_t final_size = 0; git_odb_stream *stream; const char *type_str; char *tagger_str; int type_str_len, tag_name_len, tagger_str_len, message_len; int error; type_str = git_object_type2string(target_type); tagger_str_len = git_signature__write(&tagger_str, "tagger", tagger); type_str_len = strlen(type_str); tag_name_len = strlen(tag_name); message_len = strlen(message); final_size += GIT_OID_LINE_LENGTH("object"); final_size += STRLEN("type ") + type_str_len + 1; final_size += STRLEN("tag ") + tag_name_len + 1; final_size += tagger_str_len; final_size += 1 + message_len; if ((error = git_odb_open_wstream(&stream, repo->db, final_size, GIT_OBJ_TAG)) < GIT_SUCCESS) return error; git__write_oid(stream, "object", target); stream->write(stream, "type ", STRLEN("type ")); stream->write(stream, type_str, type_str_len); stream->write(stream, "\ntag ", STRLEN("\ntag ")); stream->write(stream, tag_name, tag_name_len); stream->write(stream, "\n", 1); stream->write(stream, tagger_str, tagger_str_len); free(tagger_str); stream->write(stream, "\n", 1); stream->write(stream, message, message_len); error = stream->finalize_write(oid, stream); stream->free(stream); if (error == GIT_SUCCESS) { char ref_name[512]; git_reference *new_ref; git__joinpath(ref_name, GIT_REFS_TAGS_DIR, tag_name); error = git_reference_create_oid(&new_ref, repo, ref_name, oid); } return error; } int git_tag__parse(git_tag *tag, git_odb_object *obj) { assert(tag); return parse_tag_buffer(tag, obj->raw.data, (char *)obj->raw.data + obj->raw.len); }