forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
103 lines (100 loc) · 2.6 KB
/
utils.js
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
/* utils.js - Public Domain - copyright 2013 - pancake */
var fs = require ('fs');
var exec = require('child_process').exec;
var cmds = 0;
var mkdir_callbacks = {};
var U = module.exports = {
red: "\x1b[31m",
green: "\x1b[32m",
reset: "\x1b[0m",
slurp: function(file) {
return fs.readFileSync (file);;
},
exists: function (f) {
try { return !!fs.statSync (f);
} catch(e) { return false; }
},
exec: function (cmd, cb) {
cmds ++;
exec(cmd,cb);
/*
if (cmds>10) {
setTimeout (function () {
exec(cmd,cb);
//exec (cmd, function() { cb(a,b,c);cmds--; });
}, 300);
} else {
// exec (cmd, function(a,b,c) { cb(a,b,c);cmds--; });
exec(cmd,cb);
}
*/
},
error: function() {
var x = arguments
x[0] = module.exports.red + x[0];
x[x.length-1] = x[x.length-1] + module.exports.reset;
console.log (x[0]);
process.exit (1);
},
print: function() {
var x = arguments
x[0] = module.exports.green + x[0];
x[x.length-1] = x[x.length-1] + module.exports.reset;
console.log (x[0]);
},
load_config: function() {
this.slurp (file)
},
merge: function(I, defaults) {
for (var a in defaults)
I[a] = I[a] || defaults[a];
return I;
},
iterate: function(list, cb, eb) {
if (list && list.length>0) {
var count = list.length;
(function iterate (list, cb, eb) {
if (list.length>0) {
cb (list[0],
function() { iterate (list.slice(1), cb, eb); },
function() { count--; if (eb && count==0) eb(true); }
);
} else if (eb) eb (false);
})(list, cb, eb);
} else {
//if (cb) cb ();
if (eb) eb (false);
}
},
mkdir_p: function (path, mode, cb, position) {
mode = mode || 0755;
position = position || 0;
parts = require ('path').normalize (path).split('/');
if (position == 0) {
if (mkdir_callbacks[path]) {
mkdir_callbacks[path].push (cb);
return;
} else {
mkdir_callbacks[path] = [cb];
}
}
function callbacks(x) {
for (var i in mkdir_callbacks[path])
mkdir_callbacks[path][i](x);
mkdir_callbacks[path] = undefined;
}
if (position >= parts.length)
return callbacks (false); // full path created
var directory = parts.slice (0, position + 1).join('/');
fs.stat (directory, function (err) {
if (err === null) {
return U.mkdir_p (path, mode, cb, position + 1);
}
fs.mkdir (directory, mode, function (err) {
if (err)
return callbacks(true);
U.mkdir_p (path, mode, cb, position + 1);
})
});
}
}