-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.js
205 lines (177 loc) · 4.3 KB
/
index.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
var util = require('util');
var colors = require('ansi-colors');
var nonEnum = ['message', 'name', 'stack'];
var ignored = new Set(
nonEnum.concat([
'__safety',
'_stack',
'plugin',
'showProperties',
'showStack',
'domain',
'domainEmitter',
'domainThrown',
])
);
var props = [
'fileName',
'lineNumber',
'message',
'name',
'plugin',
'showProperties',
'showStack',
'stack',
];
function PluginError(plugin, message, options) {
if (!(this instanceof PluginError)) {
return new PluginError(plugin, message, options);
}
Error.call(this);
var opts = setDefaults(plugin, message, options);
var self = this;
// If opts has an error, get details from it
if (typeof opts.error === 'object') {
var keys = new Set(Object.keys(opts.error).concat(nonEnum));
// These properties are not enumerable, so we have to add them explicitly.
keys.forEach(function (prop) {
self[prop] = opts.error[prop];
});
}
// Opts object can override
props.forEach(function (prop) {
if (prop in opts) {
this[prop] = opts[prop];
}
}, this);
// Defaults
if (!this.stack) {
/**
* `Error.captureStackTrace` appends a stack property which
* relies on the toString method of the object it is applied to.
*
* Since we are using our own toString method which controls when
* to display the stack trace, if we don't go through this safety
* object we'll get stack overflow problems.
*/
var safety = {};
safety.toString = function () {
return this._messageWithDetails() + '\nStack:';
}.bind(this);
Error.captureStackTrace(safety, arguments.callee || this.constructor);
this.__safety = safety;
}
if (!this.plugin) {
throw new Error('Missing plugin name');
}
if (!this.message) {
throw new Error('Missing error message');
}
}
util.inherits(PluginError, Error);
/**
* Output a formatted message with details
*/
PluginError.prototype._messageWithDetails = function () {
var msg = 'Message:\n ' + this.message;
var details = this._messageDetails();
if (details !== '') {
msg += '\n' + details;
}
return msg;
};
/**
* Output actual message details
*/
PluginError.prototype._messageDetails = function () {
if (!this.showProperties) {
return '';
}
var props = Object.keys(this).filter(function (key) {
return !ignored.has(key);
});
var len = props.length;
if (len === 0) {
return '';
}
var res = '';
var i = 0;
while (len--) {
var prop = props[i++];
res += ' ';
res += prop + ': ' + this[prop];
res += '\n';
}
return 'Details:\n' + res;
};
/**
* Override the `toString` method
*/
PluginError.prototype.toString = function () {
var detailsWithStack = function (stack) {
return this._messageWithDetails() + '\nStack:\n' + stack;
}.bind(this);
var msg = '';
if (this.showStack) {
// If there is no wrapped error, use the stack captured in the PluginError ctor
if (this.__safety) {
msg = this.__safety.stack;
} else if (this._stack) {
msg = detailsWithStack(this._stack);
} else {
// Stack from wrapped error
msg = detailsWithStack(this.stack);
}
return message(msg, this);
}
msg = this._messageWithDetails();
return message(msg, this);
};
// Format the output message
function message(msg, thisArg) {
var sig = colors.red(thisArg.name);
sig += ' in plugin ';
sig += '"' + colors.cyan(thisArg.plugin) + '"';
sig += '\n';
sig += msg;
return sig;
}
/**
* Set default options based on arguments.
*/
function setDefaults(plugin, message, opts) {
if (typeof plugin === 'object') {
return defaults(plugin);
}
if (message instanceof Error) {
opts = Object.assign({}, opts, { error: message });
} else if (typeof message === 'object') {
opts = Object.assign({}, message);
} else {
opts = Object.assign({}, opts, { message: message });
}
opts.plugin = plugin;
return defaults(opts);
}
/**
* Extend default options with:
*
* - `showStack`: default=false
* - `showProperties`: default=true
*
* @param {Object} `opts` Options to extend
* @return {Object}
*/
function defaults(opts) {
return Object.assign(
{
showStack: false,
showProperties: true,
},
opts
);
}
/**
* Expose `PluginError`
*/
module.exports = PluginError;