Tree: Added a function that returns the type of a tree entry.

This commit is contained in:
Romain Geissler 2011-06-06 17:14:30 +02:00
parent f9213015fd
commit ff9a4c130d
3 changed files with 23 additions and 0 deletions

View File

@ -128,6 +128,14 @@ GIT_EXTERN(const char *) git_tree_entry_name(const git_tree_entry *entry);
*/
GIT_EXTERN(const git_oid *) git_tree_entry_id(const git_tree_entry *entry);
/**
* Get the type of the object pointed by the entry
*
* @param entry a tree entry
* @return the type of the pointed object
*/
GIT_EXTERN(git_otype) git_tree_entry_type(const git_tree_entry *entry);
/**
* Convert a tree entry to the git_object it points too.
*

View File

@ -20,6 +20,9 @@
#define GIT_PLATFORM_PATH_SEP '/'
#endif
#define S_IFGITLINK 0160000
#define S_ISGITLINK(m) (((m) & S_IFMT) == S_IFGITLINK)
#ifdef GIT_WIN32
GIT_INLINE(int) link(const char *GIT_UNUSED(old), const char *GIT_UNUSED(new))
{

View File

@ -100,6 +100,18 @@ const git_oid *git_tree_entry_id(const git_tree_entry *entry)
return &entry->oid;
}
git_otype git_tree_entry_type(const git_tree_entry *entry)
{
assert(entry);
if (S_ISGITLINK(entry->attr))
return GIT_OBJ_COMMIT;
else if (S_ISDIR(entry->attr))
return GIT_OBJ_TREE;
else
return GIT_OBJ_BLOB;
}
int git_tree_entry_2object(git_object **object_out, git_repository *repo, const git_tree_entry *entry)
{
assert(entry && object_out);