1
1
# This file is a part of Julia. License is MIT: http://julialang.org/license
2
2
3
- """ Traverse the entries in a tree and its subtrees in post or preorder.
3
+ """
4
+ Traverse the entries in a tree and its subtrees in post or pre order.
4
5
5
6
Function parameter should have following signature:
6
7
@@ -15,77 +16,21 @@ function treewalk(f::Function, tree::GitTree, payload=Any[], post::Bool = false)
15
16
return cbf_payload
16
17
end
17
18
18
- " Returns a file name, as a `String`, of a tree entry."
19
19
function filename (te:: GitTreeEntry )
20
20
str = ccall ((:git_tree_entry_name , :libgit2 ), Cstring, (Ptr{Void},), te. ptr)
21
- str == C_NULL && throw (Error. GitError (Error. Tree,
22
- LibGit2. Error. ENOTFOUND, " filename not found" ))
23
- return unsafe_string (str)
21
+ str != C_NULL && return unsafe_string (str)
22
+ return nothing
24
23
end
25
24
26
- " Returns UNIX file attributes, as a `Cint`, of a tree entry."
27
25
function filemode (te:: GitTreeEntry )
28
26
return ccall ((:git_tree_entry_filemode , :libgit2 ), Cint, (Ptr{Void},), te. ptr)
29
27
end
30
28
31
- " Returns a `GitAnyObject` which is referenced by a tree entry. "
29
+
32
30
function object (repo:: GitRepo , te:: GitTreeEntry )
33
31
obj_ptr_ptr = Ref {Ptr{Void}} (C_NULL )
34
32
@check ccall ((:git_tree_entry_to_object , :libgit2 ), Cint,
35
33
(Ptr{Ptr{Void}}, Ptr{Void}, Ref{Void}),
36
34
obj_ptr_ptr, repo. ptr, te. ptr)
37
35
return GitAnyObject (obj_ptr_ptr[])
38
36
end
39
-
40
- " Returns an object identifier, as a `Oid`, of a tree entry."
41
- function oid (te:: GitTreeEntry )
42
- oid_ptr = ccall ((:git_tree_entry_id , :libgit2 ), Ptr{Oid}, (Ptr{Void},), te. ptr)
43
- oid_ptr == C_NULL && throw (Error. GitError (Error. Tree,
44
- LibGit2. Error. ENOTFOUND, " oid not found" ))
45
- return Oid (oid_ptr)
46
- end
47
-
48
- """ Retrieve a tree entry contained in a tree or in any of its subtrees, given its relative path.
49
-
50
- The returned tree entry is owned by the user and must be freed explicitly.
51
- """
52
- function GitTreeEntry (tree:: GitTree , tepath:: AbstractString )
53
- te_ptr_ptr = Ref {Ptr{Void}} (C_NULL )
54
- err = ccall ((:git_tree_entry_bypath , :libgit2 ), Cint,
55
- (Ptr{Ptr{Void}}, Ref{Void}, Cstring),
56
- te_ptr_ptr, tree. ptr, tepath)
57
- if err == Cint (Error. ENOTFOUND)
58
- return Nullable {GitTreeEntry} ()
59
- elseif err != Cint (Error. GIT_OK)
60
- if te_ptr_ptr[] != C_NULL
61
- finalize (GitTreeEntry (te_ptr_ptr[]))
62
- end
63
- throw (Error. GitError (err))
64
- end
65
- return Nullable (GitTreeEntry (te_ptr_ptr[]))
66
- end
67
-
68
- """ Lookup a tree entry by SHA value.
69
-
70
- This returns a `GitTreeEntry` that is owned by the `GitTree`.
71
- You don't have to free it, but you must not use it after the `GitTree` is released.
72
- """
73
- function GitTreeEntry (tree:: GitTree , teoid:: Oid )
74
- res = ccall ((:git_tree_entry_byid , :libgit2 ), Ptr{Void},
75
- (Ref{Void}, Ref{Oid}),
76
- tree. ptr, Ref (teoid))
77
- res == C_NULL && return Nullable {GitTreeEntry} ()
78
- return Nullable (GitTreeEntry (res))
79
- end
80
-
81
- """ Lookup a tree entry by its file name.
82
-
83
- This returns a `GitTreeEntry` that is owned by the `GitTree`.
84
- You don't have to free it, but you must not use it after the `GitTree` is released.
85
- """
86
- function lookup (tree:: GitTree , fname:: AbstractString )
87
- res = ccall ((:git_tree_entry_byname , :libgit2 ), Ptr{Void},
88
- (Ref{Void}, Cstring), tree. ptr, fname)
89
- res == C_NULL && return Nullable {GitTreeEntry} ()
90
- return Nullable (GitTreeEntry (res))
91
- end
0 commit comments