forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree_entry.js
More file actions
105 lines (89 loc) · 2.2 KB
/
Copy pathtree_entry.js
File metadata and controls
105 lines (89 loc) · 2.2 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
var path = require("path");
var NodeGit = require("../");
var TreeEntry = NodeGit.TreeEntry;
// Backwards compatibility.
Object.defineProperty(TreeEntry.prototype, "name", {
value: TreeEntry.prototype.filename,
enumerable: false
});
/**
* Refer to vendor/libgit2/include/git2/types.h for filemode definitions.
*
* @readonly
* @enum {Integer}
*/
TreeEntry.FileMode = {
/** 0000000 */ New: 0,
/** 0040000 */ Tree: 16384,
/** 0100644 */ Blob: 33188,
/** 0100755 */ Executable: 33261,
/** 0120000 */ Link: 40960,
/** 0160000 */ Commit: 57344
};
/**
* Is this TreeEntry a blob? (i.e., a file)
* @return {Boolean}
*/
TreeEntry.prototype.isFile = function() {
return this.attr() === TreeEntry.FileMode.Blob ||
this.attr() === TreeEntry.FileMode.Executable;
};
/**
* Is this TreeEntry a tree? (i.e., a directory)
* @return {Boolean}
*/
TreeEntry.prototype.isTree = function() {
return this.attr() === TreeEntry.FileMode.Tree;
};
/**
* Is this TreeEntry a directory? Alias for `isTree`
* @return {Boolean}
*/
TreeEntry.prototype.isDirectory = TreeEntry.prototype.isTree;
/**
* Is this TreeEntry a blob? Alias for `isFile`
* @return {Boolean}
*/
TreeEntry.prototype.isBlob = TreeEntry.prototype.isFile;
/**
* Retrieve the SHA for this TreeEntry.
* @return {String}
*/
TreeEntry.prototype.sha = function() {
return this.oid().toString();
};
/**
* Retrieve the tree for this entry. Make sure to call `isTree` first!
* @return {Tree}
*/
TreeEntry.prototype.getTree = function(callback) {
var entry = this;
return this.parent.repo.getTree(this.oid()).then(function(tree) {
tree.entry = entry;
if (typeof callback === "function") {
callback(null, tree);
}
return tree;
}, callback);
};
/**
* Retrieve the tree for this entry. Make sure to call `isTree` first!
* @return {Blob}
*/
TreeEntry.prototype.getBlob = function() {
return this.parent.repo.getBlob(this.oid());
};
/**
* Returns the path for this entry.
* @return {String}
*/
TreeEntry.prototype.path = function(callback) {
return path.join(this.parent.path(), this.name());
};
/**
* Alias for `path`
*/
TreeEntry.prototype.toString = function() {
return this.path();
};
module.exports = TreeEntry;