-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
implementation.js
114 lines (96 loc) · 3.48 KB
/
implementation.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
'use strict';
var forEach = require('for-each');
var isES5 = typeof Object.defineProperty === 'function';
var gPO = Object.getPrototypeOf;
var sPO = Object.setPrototypeOf;
var hasProto = require('has-proto')() || (typeof gPO === 'function' && gPO([]) === Array.prototype);
if (!isES5 || !hasProto) {
throw new TypeError('util.promisify requires a true ES5+ environment, that also supports `__proto__` and/or `Object.getPrototypeOf`');
}
var getOwnPropertyDescriptors = require('object.getownpropertydescriptors');
if (typeof Promise !== 'function') {
throw new TypeError('`Promise` must be globally available for util.promisify to work.');
}
var oDP = Object.defineProperty;
var $Promise = Promise;
var $TypeError = TypeError;
var safeConcat = require('safe-array-concat');
var callBound = require('call-bind/callBound');
var $slice = callBound('Array.prototype.slice');
var hasSymbols = require('has-symbols/shams')();
// eslint-disable-next-line no-restricted-properties
var kCustomPromisifiedSymbol = hasSymbols ? Symbol['for']('nodejs.util.promisify.custom') : null;
var kCustomPromisifyArgsSymbol = hasSymbols ? Symbol('customPromisifyArgs') : null;
module.exports = function promisify(orig) {
if (typeof orig !== 'function') {
var error = new $TypeError('The "original" argument must be of type function');
error.code = 'ERR_INVALID_ARG_TYPE';
error.toString = function value() {
return this.name + '[' + this.code + ']: ' + this.message;
};
throw error;
}
if (hasSymbols && orig[kCustomPromisifiedSymbol]) {
var customFunction = orig[kCustomPromisifiedSymbol];
if (typeof customFunction !== 'function') {
var customError = $TypeError('The [util.promisify.custom] property must be of type function.');
customError.code = 'ERR_INVALID_ARG_TYPE';
customError.toString = function value() {
return this.name + '[' + this.code + ']: ' + this.message;
};
throw customError;
}
oDP(customFunction, kCustomPromisifiedSymbol, {
configurable: true,
enumerable: false,
value: customFunction,
writable: false
});
return customFunction;
}
// Names to create an object from in case the callback receives multiple
// arguments, e.g. ['stdout', 'stderr'] for child_process.exec.
var argumentNames = orig[kCustomPromisifyArgsSymbol];
var promisified = function fn() {
var args = $slice(arguments);
var self = this; // eslint-disable-line no-invalid-this
return new $Promise(function (resolve, reject) {
orig.apply(self, safeConcat(args, function (err) {
var values = arguments.length > 1 ? $slice(arguments, 1) : [];
if (err) {
reject(err);
} else if (typeof argumentNames !== 'undefined' && values.length > 1) {
var obj = {};
forEach(argumentNames, function (name, index) {
obj[name] = values[index];
});
resolve(obj);
} else {
resolve(values[0]);
}
}));
});
};
if (typeof sPO === 'function' && typeof gPO === 'function') {
sPO(promisified, gPO(orig));
} else {
promisified.__proto__ = orig.__proto__; // eslint-disable-line no-proto
}
oDP(promisified, kCustomPromisifiedSymbol, {
configurable: true,
enumerable: false,
value: promisified,
writable: false
});
var descriptors = getOwnPropertyDescriptors(orig);
forEach(descriptors, function (k, v) {
try {
oDP(promisified, k, v);
} catch (e) {
// handle nonconfigurable function properties
}
});
return promisified;
};
module.exports.custom = kCustomPromisifiedSymbol;
module.exports.customPromisifyArgs = kCustomPromisifyArgsSymbol;