mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-25 21:54:24 +00:00
Tree: Added a function that returns the type of a tree entry.
This commit is contained in:
parent
f9213015fd
commit
ff9a4c130d
@ -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.
|
||||
*
|
||||
|
@ -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))
|
||||
{
|
||||
|
12
src/tree.c
12
src/tree.c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user