index.js
6.64 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
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
var undeclaredIdentifiers = require('undeclared-identifiers');
var through = require('through2');
var merge = require('xtend');
var parse = require('acorn-node').parse;
var path = require('path');
var isAbsolute = path.isAbsolute || require('path-is-absolute');
var processPath = require.resolve('process/browser.js');
var isbufferPath = require.resolve('is-buffer')
var combineSourceMap = require('combine-source-map');
function getRelativeRequirePath(fullPath, fromPath) {
var relpath = path.relative(path.dirname(fromPath), fullPath);
// If fullPath is in the same directory or a subdirectory of fromPath,
// relpath will result in something like "index.js", "src/abc.js".
// require() needs "./" prepended to these paths.
if (!/^\./.test(relpath) && !isAbsolute(relpath)) {
relpath = "./" + relpath;
}
// On Windows: Convert path separators to what require() expects
if (path.sep === '\\') {
relpath = relpath.replace(/\\/g, '/');
}
return relpath;
}
var defaultVars = {
process: function (file) {
var relpath = getRelativeRequirePath(processPath, file);
return 'require(' + JSON.stringify(relpath) + ')';
},
global: function () {
return 'typeof global !== "undefined" ? global : '
+ 'typeof self !== "undefined" ? self : '
+ 'typeof window !== "undefined" ? window : {}'
;
},
'Buffer.isBuffer': function (file) {
var relpath = getRelativeRequirePath(isbufferPath, file);
return 'require(' + JSON.stringify(relpath) + ')';
},
Buffer: function () {
return 'require("buffer").Buffer';
},
setImmediate: function () {
return 'require("timers").setImmediate';
},
clearImmediate: function () {
return 'require("timers").clearImmediate';
},
__filename: function (file, basedir) {
var relpath = path.relative(basedir, file);
// standardize path separators, use slash in Windows too
if ( path.sep === '\\' ) {
relpath = relpath.replace(/\\/g, '/');
}
var filename = '/' + relpath;
return JSON.stringify(filename);
},
__dirname: function (file, basedir) {
var relpath = path.relative(basedir, file);
// standardize path separators, use slash in Windows too
if ( path.sep === '\\' ) {
relpath = relpath.replace(/\\/g, '/');
}
var dir = path.dirname('/' + relpath );
return JSON.stringify(dir);
}
};
module.exports = function (file, opts) {
if (/\.json$/i.test(file)) return through();
if (!opts) opts = {};
var basedir = opts.basedir || '/';
var vars = merge(defaultVars, opts.vars);
var varNames = Object.keys(vars).filter(function(name) {
return typeof vars[name] === 'function';
});
var quick = RegExp(varNames.map(function (name) {
return '\\b' + name + '\\b';
}).join('|'));
var chunks = [];
return through(write, end);
function write (chunk, enc, next) { chunks.push(chunk); next() }
function end () {
var self = this;
var source = Buffer.isBuffer(chunks[0])
? Buffer.concat(chunks).toString('utf8')
: chunks.join('')
;
source = source
.replace(/^\ufeff/, '')
.replace(/^#![^\n]*\n/, '\n');
if (opts.always !== true && !quick.test(source)) {
this.push(source);
this.push(null);
return;
}
try {
var undeclared = opts.always
? { identifiers: varNames, properties: [] }
: undeclaredIdentifiers(parse(source), { wildcard: true })
;
}
catch (err) {
var e = new SyntaxError(
(err.message || err) + ' while parsing ' + file
);
e.type = 'syntax';
e.filename = file;
return this.emit('error', e);
}
var globals = {};
varNames.forEach(function (name) {
if (!/\./.test(name)) return;
var parts = name.split('.')
var prop = undeclared.properties.indexOf(name)
if (prop === -1 || countprops(undeclared.properties, parts[0]) > 1) return;
var value = vars[name](file, basedir);
if (!value) return;
globals[parts[0]] = '{'
+ JSON.stringify(parts[1]) + ':' + value + '}';
self.emit('global', name);
});
varNames.forEach(function (name) {
if (/\./.test(name)) return;
if (globals[name]) return;
if (undeclared.identifiers.indexOf(name) < 0) return;
var value = vars[name](file, basedir);
if (!value) return;
globals[name] = value;
self.emit('global', name);
});
this.push(closeOver(globals, source, file, opts));
this.push(null);
}
};
module.exports.vars = defaultVars;
function closeOver (globals, src, file, opts) {
var keys = Object.keys(globals);
if (keys.length === 0) return src;
var values = keys.map(function (key) { return globals[key] });
// we double-wrap the source in IIFEs to prevent code like
// (function(Buffer){ const Buffer = null }())
// which causes a parse error.
var wrappedSource = '(function (){\n' + src + '\n}).call(this)';
if (keys.length <= 3) {
wrappedSource = '(function (' + keys.join(',') + '){'
+ wrappedSource + '}).call(this,' + values.join(',') + ')'
;
}
else {
// necessary to make arguments[3..6] still work for workerify etc
// a,b,c,arguments[3..6],d,e,f...
var extra = [ '__argument0', '__argument1', '__argument2', '__argument3' ];
var names = keys.slice(0,3).concat(extra).concat(keys.slice(3));
values.splice(3, 0,
'arguments[3]','arguments[4]',
'arguments[5]','arguments[6]'
);
wrappedSource = '(function (' + names.join(',') + '){'
+ wrappedSource + '}).call(this,' + values.join(',') + ')';
}
// Generate source maps if wanted. Including the right offset for
// the wrapped source.
if (!opts.debug) {
return wrappedSource;
}
var sourceFile = path.relative(opts.basedir, file)
.replace(/\\/g, '/');
var sourceMap = combineSourceMap.create().addFile(
{ sourceFile: sourceFile, source: src},
{ line: 1 });
return combineSourceMap.removeComments(wrappedSource) + "\n"
+ sourceMap.comment();
}
function countprops (props, name) {
return props.filter(function (prop) {
return prop.slice(0, name.length + 1) === name + '.';
}).length;
}