Hash :
f8758044
Author :
Date :
2010-08-07T01:02:20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
#ifndef INCLUDE_git_tag_h__
#define INCLUDE_git_tag_h__
#include "common.h"
#include "oid.h"
#include "tree.h"
/**
* @file git/tag.h
* @brief Git tag parsing routines
* @defgroup git_tag Git tag management
* @ingroup Git
* @{
*/
GIT_BEGIN_DECL
/** Parsed representation of a tag object. */
typedef struct git_tag git_tag;
/**
* Locate a reference to a tag without loading it.
* The generated tag object is owned by the revision
* pool and shall not be freed by the user.
*
* @param pool the pool to use when locating the tag.
* @param id identity of the tag to locate.
* @return the tag; NULL if the tag could not be created
*/
GIT_EXTERN(git_tag *) git_tag_lookup(git_revpool *pool, const git_oid *id);
/**
* Locate a reference to a tag, and try to load and parse it it from
* the object cache or the object database.
* The generated tag object is owned by the revision
* pool and shall not be freed by the user.
*
* @param pool the pool to use when parsing/caching the tag.
* @param id identity of the tag to locate.
* @return the tag; NULL if the tag does not exist in the
* pool's git_odb, or if the tag is present but is
* too malformed to be parsed successfully.
*/
GIT_EXTERN(git_tag *) git_tag_parse(git_revpool *pool, const git_oid *id);
/**
* Get the id of a tag.
* @param tag a previously loaded tag.
* @return object identity for the tag.
*/
GIT_EXTERN(const git_oid *) git_tag_id(git_tag *tag);
/**
* Get the tagged object of a tag
* @param tag a previously loaded tag.
* @return reference to a repository object
*/
GIT_EXTERN(const git_repository_object *) git_tag_target(git_tag *t);
/**
* Get the type of a tag's tagged object
* @param tag a previously loaded tag.
* @return type of the tagged object
*/
GIT_EXTERN(git_otype) git_tag_type(git_tag *t);
/**
* Get the name of a tag
* @param tag a previously loaded tag.
* @return name of the tag
*/
GIT_EXTERN(const char *) git_tag_name(git_tag *t);
/**
* Get the tagger (author) of a tag
* @param tag a previously loaded tag.
* @return reference to the tag's author
*/
GIT_EXTERN(const git_person *) git_tag_tagger(git_tag *t);
/**
* Get the message of a tag
* @param tag a previously loaded tag.
* @return message of the tag
*/
GIT_EXTERN(const char *) git_tag_message(git_tag *t);
/** @} */
GIT_END_DECL
#endif