-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
executable file
·325 lines (289 loc) · 6.75 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
const fs = require('fs')
const {promisify} = require('util')
/**
* Timer class
*/
class Timer{
constructor() {
this.times = {}
}
/**
* Save the hrtime to start a timer
*
* @param {String} id Timer id
*/
start(id) {
this.times[id] = process.hrtime()
}
/**
* Get a timer eslaped time
*
* @param {String} id Timer id
*
* @returns {String}
*/
getTime (id, precision = 3) {
if(!this.times[id])
throw new Error('invalid timer id')
let hrtime = process.hrtime(this.times[id])
let ms = hrtime[1] / 1000000 // divide by a million to get nano to milli
const s = hrtime[0]
const elapsed = s*1000 + ms
return elapsed.toFixed(precision)
}
}
/**
* Check if it an object
* @param {*} o
*/
function isObject(o) {
return o instanceof Object && o.constructor === Object
}
/*
* Recursively merge properties of two objects
*/
function assignRecursive(obj1, obj2) {
for (const p in obj2) {
try {
// Property in destination object set; update its value.
if (obj2[p].constructor == Object) {
if (!obj1[p]) obj1[p] = {}
obj1[p] = assignRecursive(obj1[p], obj2[p])
} else {
obj1[p] = obj2[p]
}
} catch(e) {
// Property in destination object not set; create it and set its value.
obj1[p] = obj2[p]
}
}
return obj1
}
/**
* object -> Array
* promise all
* Array -> object
* @param {*} object
*/
let objectPromises = async (object) => {
//object -> Array
const promises = []
for (const key in object) {
promises.push(object[key])
}
return Promise.all(promises).then((result) => {
//Array -> object
const resultObject = {}
let i = 0
for (const key in object) {
resultObject[key] = result[i]
i++
}
return resultObject
}).catch((e) => {
throw new Error(e)
})
}
async function asyncForEach(array, callback) {
for (let index = 0; index < array.length; index++) {
await callback(array[index], index, array);
}
}
/**
* Async map can return Array or object
*
* @param {Array} array Input array
* @param {function} callback Function called on each item
* @param {boolean} object Flag if return object or array
*
* @return {Array|Object}
*/
function asyncMap (array, callback, object = false) {
let promises = []
for (const key in array) {
/**
* call the callback and push the promise
*/
promises.push(callback(array[key], key, array))
}
return Promise.all(promises).then(async (result) => {
//init result var
const ouput = []
let promises = []
let keys = []
for (const key in result) {
if (result[key] === null || result[key] === undefined) continue
if (object) {
if (result[key].value === null || result[key] === undefined) continue
keys.push(result[key].key)
promises.push(result[key].value)
} else {
ouput.push(result[key])
}
}
if (!object) {
return ouput
} else {
return Promise.all(promises).then(async (result) => {
const output = {}
for (const key in result) {
if (result[key] === null || result[key] === undefined) continue
output[keys[key]] = result[key]
}
return output
})
}
})
}
/*!
* lstat | MIT (c) Shinnosuke Watanabe
* https://github.com/shinnn/lstat
*/
const fsLstat = require('fs').lstat;
const {inspect} = require('util');
function asyncLstat(...args) {
const argLen = args.length;
return new Promise((resolve, reject) => {
if (argLen !== 1) {
throw new TypeError(`Expected 1 argument (string), but got ${
argLen === 0 ? 'no' : argLen
} arguments instead.`);
}
const [path] = args;
if (typeof path !== 'string') {
throw new TypeError(`Expected a file path (string), but got a non-string value ${inspect(path)}.`);
}
if (path.length === 0) {
throw new Error('Expected a file path, but got \'\' (empty string).');
}
fsLstat(path, (err, result) => {
if (err) {
reject(err);
return;
}
resolve(result);
});
});
};
/**
* Read object propertie by string path
* @param {*} o
* @param {*} s
*/
const objectByString = function(o, s) {
s = s.replace(/\[(\w+)\]/g, '.$1'); // convert indexes to properties
s = s.replace(/^\./, ''); // strip a leading dot
var a = s.split('.');
for (var i = 0, n = a.length; i < n; ++i) {
var k = a[i];
if (o && k in o) {
o = o[k]
} else {
return null
}
}
return o;
}
function _asyncAccess(filepath, mode) {
return new Promise((resolve, reject) => {
fs.access(filepath, mode, error => {
resolve(!error);
})
})
}
/**
* Async file exists
*
* @param {*} filepath
*/
const asyncFileExists = function (filepath) {
return _asyncAccess(filepath, fs.F_OK)
}
/**
* Async file exists
*
* @param {*} filepath
*/
const asyncIsWritable = function (filepath) {
return _asyncAccess(filepath, fs.W_OK)
}
/**
* async rmdir recurise
* @param {*} path
*/
function asyncRmDir (path) {
//check dir exists
return asyncFileExists(path).then((exists) => {
if (exists) {
//readdir
return promisify(fs.readdir)(path).then((dir) => {
//list dir async
return asyncMap(dir, async (file) => {
let curPath = path + '/' + file
//check if dir or file
return asyncLstat(curPath).then((stat) => {
//if is dir rm it
if (stat.isDirectory()) {
return asyncRmDir(curPath)
} else {
//if file unlink
return promisify(fs.unlink)(curPath)
}
})
})
//then all subs are delete
}).then(() => {
//rm dir
return promisify(fs.rmdir)(path).then(() => {
return true
})
})
} else {
return false
}
})
}
//promisify mkdirSync
function asyncMkdir(...args) {
return promisify(fs.mkdirSync)(...args)
}
//require() Promise
function asyncRequire(path) {
return new Promise((resolve, reject) => {
try {
resolve(require(path))
} catch (error) {
reject(error)
}
})
}
//require.resolve() Promise
function asyncRequireResolve(path) {
return new Promise((resolve, reject) => {
try {
resolve(require.resolve(path))
} catch (error) {
reject(error)
}
})
}
module.exports = {
assignRecursive,
objectPromises,
asyncForEach,
asyncMap,
timer: new Timer,
isObject,
objectByString,
asyncFileExists,
asyncIsWritable,
asyncLstat,
asyncRmDir,
asyncMkdir: promisify(fs.mkdir),
asyncStat: promisify(fs.stat),
asyncReaddir: promisify(fs.readdir),
asyncWriteFile: promisify(fs.writeFile),
asyncReadFile: promisify(fs.readFile),
asyncRequire,
asyncRequireResolve
}