-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.js
740 lines (589 loc) · 21 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
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
var async = require('async');
var debug = require('debug')('rigger');
var getit = require('getit');
var Stream = require('stream').Stream;
var fs = require('fs');
var path = require('path');
var util = require('util');
var mod = require('module');
var aliases = require('buildjs.core/aliases');
var regexes = require('buildjs.core/regexes');
var formatters = require('buildjs.core/formatters');
var platform = require('buildjs.core/platform');
var _ = require('underscore');
// initialise the default converters
var converters = {};
// initialise the concatenators
var concatenators = {
js: ';' + platform.lineEnding,
default: platform.lineEnding
};
// initialise comments pre and post that will be injected when creating
// additional comment lines
var defaultCommentSyntax = { pre: '//' };
var commentTypes = {
html: { pre: '<!--', post: '-->' },
css: { pre: '/*', post: '*/' },
coffee: { pre: '#' }
};
/**
# Class: Rigger > Stream
Create a new class of Rigger that will be used to parse a input source file and
produce a parsed output file.
## Valid Options
- filetype {String} - (default: js) the type of file that we are processing (js, coffee, css, roy, etc)
- encoding {String} - (default: utf8) file encoding
- cwd {String} - The current working directory
*/
function Rigger(opts) {
// call the inherited Stream constructor
Stream.call(this);
// save a reference to the options
// these options will be passed through to getit calls
opts = this.opts = _.extend({}, opts);
// initialise the base settings that will be passed through to include calls
this.baseSettings = _.extend({}, opts.settings);
// initialise the tolerant setting to false
this.tolerant = opts.tolerant === true;
// initialise the basename from the opts
this.basename = opts.basename;
// initialise the default file format
this.filetype = formatters.normalizeExt(opts.filetype || 'js');
debug('filetype initialized to: ' + this.filetype);
// initialise the concatenator based on the filetype
this.concatenator = concatenators[this.filetype] || concatenators['default'];
// initialise the encoding (default to utf8)
this.encoding = this.opts.encoding || 'utf8';
// initialise the line ending
this.lineEnding = this.opts.lineEnding || platform.lineEnding;
// initialise the cwd (this is also used by getit)
this.cwd = this.opts.cwd || process.cwd();
this.csd = this.opts.csd || this.cwd;
// initiliase the include pattern
this.patterns = this.opts.patterns || regexes.includes[this.filetype] || regexes.includes.js;
// initialise the stream as writable
this.writable = true;
// create a resolving queue to track resolving includes progress
this.activeIncludes = 0;
// initialise the context, if not explicitly defined, match the filetype
this.targetType = formatters.normalizeExt(this.opts.targetType || this.filetype);
// initialise the buffer to empty
this.buffer = '';
// initialise the converters
this.converters = _.defaults(opts.converters || {}, converters);
// create the output array
this.output = [];
// initialise whether directives should be included or not
this.useDirectives = opts.useDirectives || false;
}
util.inherits(Rigger, Stream);
Rigger.prototype.convert = function(conversion, input, opts, callback) {
var steps;
var ii;
// ensure we have options
if (typeof opts == 'function') {
callback = opts;
opts = {};
}
// if we have no conversion required, simply return the input back
if (typeof conversion == 'undefined') return callback(null, input);
// get the converter
steps = [].concat(this.converters[conversion] || []);
// if we don't have a converter, then return an error
if (steps.length === 0) return callback(new Error('Unable to run conversion from ' + conversion));
// add the first step in the waterfall
debug('attempting tp apply conversion of: ' + conversion);
steps.unshift(function(itemCb) {
itemCb(null, input, opts);
});
// bind the steps
for (ii = 0; ii < steps.length; ii++) {
steps[ii] = steps[ii].bind(this);
}
// start the conversion process
async.waterfall(steps, function(err, output) {
if (err) {
debug('recieved error trying to run conversion "' + conversion + '"', err);
return callback(err, '');
}
if (! output) {
debug('running conversion "' + conversion + '" produced no output for input: ', input);
}
// trigger the callback
callback(err, output);
});
};
Rigger.prototype.get = function(getTarget, callback) {
var rigger = this;
var multiMatch = regexes.multiTarget.exec(getTarget);
var targets = [getTarget];
// check whether we have more than one target
if (multiMatch) {
targets = multiMatch[2].split(/\,\s*/).map(function(item) {
return multiMatch[1] + item;
});
}
async.map(
targets,
this._getSingle.bind(this),
function(err, results) {
callback(err, (results || []).join(rigger.lineEnding));
}
);
};
Rigger.prototype.end = function() {
var rigger = this;
// if we have active includes, then wait
if (this.activeIncludes) {
this.once('resume', this.end.bind(this));
}
else if (this.buffer) {
this.once('resume', this.end.bind(this));
this.write('', true);
}
else {
var conversion = this._getConversion(this.filetype);
debug('finished writing to rigger stream, determining if conversion is required');
this.convert(conversion, this.output.join(rigger.lineEnding), function(err, content) {
if (err) {
rigger.emit('error', err);
}
else {
// emit a buffer for the parsed lines
rigger.emit('data', Buffer.from ? Buffer.from(content) : new Buffer(content));
rigger.emit('end');
}
});
}
};
Rigger.prototype.write = function(data, all) {
var rigger = this, lines;
var settings = this.baseSettings;
var previousCSD = this.csd;
var lineno = 0;
// if we have active includes, then wait until we resume before pushing out more data
// otherwise we risk pushing data back not in order (which would be less than ideal)
if (this.activeIncludes) {
this.once('resume', this.write.bind(this, data));
}
// split on line breaks and include the remainder
lines = (this.buffer + data)
.toString(this.encoding)
.split(regexes.lineBreak);
// reset the remainder
this.buffer = '';
// grab everything but the last line
// unless we are building all
if (! all) {
this.buffer = lines.splice(lines.length - 1)[0];
}
// process each of the lines
async.map(
lines,
// expand the known includes
function(line, itemCallback) {
rigger._expandIncludes(settings, line, lineno++, itemCallback);
},
function(err, result) {
// restore the previous current source directory
rigger.csd = previousCSD;
// if we processed everything successfully, emit the data
if (! err) {
rigger.output = (rigger.output || []).concat(result);
// iterate through the settings and emit those settings
for (var key in settings) {
rigger.emit('setting', key, settings[key]);
}
// resume processing the stream
rigger.emit('resume');
}
else {
rigger.emit('error', err);
}
}
);
// pause the stream
this.emit('pause');
};
/* core action handlers */
Rigger.prototype.include = function(match, settings, callback) {
var target;
var targetExt;
var templateText = match[3]
.replace(regexes.trailingDot, '')
.replace(regexes.quotesLeadAndTrail, '');
// initialise the target
try {
target = _.template(templateText, {
interpolate : /\{\{(.+?)\}\}/g
})(settings);
}
catch (e) {
return callback(new Error('Unable to expand variables in include "' + templateText + '"'));
}
// get the target extension
targetExt = path.extname(target);
// update the current context (js, coffee, roy, css, etc)
debug('include: ' + target + ' requested, file ext = ' + targetExt + ', context: ' + this.targetType);
// get the file
debug('including: ' + target);
this.get(target, callback);
};
Rigger.prototype.plugin = function(match, settings, callback) {
var rigger = this;
var pluginName = match[3];
var scope = {
done: callback
};
var basePaths = ['.'].concat(mod._nodeModulePaths('.'), mod.globalPaths);
var paths = mod._nodeModulePaths(this.cwd)
.concat(mod._nodeModulePaths(this.csd))
.concat(basePaths);
// add the module name to the paths
paths = paths.map(function(basePath) {
return path.join(basePath, 'rigger-' + pluginName);
});
// and also add the local plugin folder to the search path
paths.unshift(path.resolve(__dirname, 'plugins', pluginName + '.js'));
async.detect(paths, checkExists, function(pluginPath) {
if (! pluginPath) {
return callback(new Error('Could not load plugin: ' + pluginName));
}
// run the plugin
require(pluginPath).apply(scope, [rigger].concat(match.slice(4)));
});
};
Rigger.prototype.set = function(match, settings, callback) {
var parts = (match[3] || '').split(/\s/);
var err;
try {
debug('found setting: ', parts);
settings[parts[0]] = JSON.parse(parts.slice(1).join(' '));
}
catch (e) {
err = new Error('Could not parse setting: ' + parts[0] + ', value must be valid JSON');
}
callback(err);
};
Rigger.prototype.resolve = function(targetPath) {
var scopeRelative = path.resolve(this.csd, targetPath);
var workingRelative = path.resolve(this.cwd, targetPath);
return fs.existsSync(scopeRelative) ? scopeRelative : workingRelative;
};
/* internal functions */
Rigger.prototype._expandIncludes = function(settings, line, sourceLine, callback) {
var rigger = this;
var ii;
var patterns = this.patterns;
var cacheResults
var match;
var action;
var childLine = sourceLine;
// iterate through the regexes and see if this line is a match
for (ii = patterns.length; (!match) && ii--; ) {
// test for a regex match
match = patterns[ii].exec(line);
// if we have a match, then process the result
if (match) {
match[2] = match[2] || 'include';
break;
}
}
// if we have a target, then get that content and pass that back
if (! match) return callback(null, line);
// increment the number of active includes
this.activeIncludes += 1;
// initialise the action name to the backreference
action = match[2];
// if the action is not defined, default to the plugin action
if (typeof this[action] != 'function') {
action = 'plugin';
match.splice(2, 0, 'plugin');
}
// run the specified action
this[action].call(this, match, settings, function(err, content) {
// reduce the number of active includes
rigger.activeIncludes -=1;
// if we have an error, trigger the callback
if (err) return callback(err);
// parse the lines
async.map(
(content || '').split(regexes.lineBreak),
function(line, itemCallback) {
rigger._expandIncludes(settings, match[1] + line, childLine++, itemCallback);
},
function(err, results) {
callback(err, results.join(rigger.lineEnding));
}
);
});
};
Rigger.prototype._fork = function(files, callback) {
var rigger = this;
// initialise subrigger opts for settings that we want to
// pass through
var subriggerOpts = {
encoding: this.encoding,
csd: this.csd,
targetType: this.filetype,
useDirectives: this.useDirectives
};
// ensure we have an array for files
files = [].concat(files || []);
// iterate through the files and create a subrigger
async.map(
files,
function(file, itemCallback) {
var isRemote = getit.isRemote(file),
subrigger;
// emit the correct event
rigger.emit('include:' + (isRemote ? 'remote' : 'file'), file);
// create the subrigger
debug('subrigging: ' + file);
subrigger = rig(file, subriggerOpts, itemCallback);
// add leader lines to the subrigger
subrigger._writeDirective('INC', { file: file });
// attach the subrigger events
subrigger.on('include:file', rigger.emit.bind(rigger, 'include:file'));
subrigger.on('include:remote', rigger.emit.bind(rigger, 'include:remote'));
},
function(err, results) {
// TODO: process child source map and integrate into main sourcemap
debug('finished subrigging', results);
callback(err, (results || []).join(rigger.lineEnding));
}
);
};
Rigger.prototype._getConversion = function(ext) {
// normalize the extension to the format .ext
ext = formatters.normalizeExt(ext);
// otherwise, check whether a conversion is required
return ext && ext !== this.targetType ? (ext + '2' + this.targetType).replace(/\./g, '') : undefined;
};
Rigger.prototype._getSingle = function(target, callback) {
var rigger = this;
var previousCSD;
var targetOptions = target.split(regexes.fallbackDelim);
var fallbacks = targetOptions.slice(1);
// only use tolerant mode if we have no fallbacks
var tolerant = this.tolerant && fallbacks.length === 0;
var files;
// remap the target to the first target option
target = aliases.expand(targetOptions[0], rigger.opts.aliases);
debug('getting: ' + target);
// create an attempt fallback function that will help with rerunning the getSingle method for alternative options
function attemptFallback(err) {
// if the current operation had an error, and we have fallbacks available
// then attempt the operation with the fallback
if (err && fallbacks.length > 0) {
rigger._getSingle(fallbacks.join(' : '), callback);
}
else {
callback.apply(null, arguments);
}
}
// check if we have a csd (current source directory) that is remote
// and a target that is non remote
if (getit.isRemote(this.csd) && (! getit.isRemote(target))) {
target = this.csd.replace(regexes.trailingSlash) + '/' + target;
}
// if the target is remote, then let getit do it's job
if (getit.isRemote(target)) {
// update the csd to the remote basepath
rigger.csd = path.dirname(target);
// ensure the extension is provided
if (path.extname(target) === '') {
target += '.' + this.filetype;
}
rigger._fork(target, attemptFallback);
}
// otherwise, we'll do a little more work
else {
var testTargets = [
path.resolve(this.csd, target), // the target relative to the last processed include
path.resolve(this.cwd, target) // the target relative to the originally specified working directory
];
// if the test target does not have an extension then add it
// ensure the extension is provided
testTargets.forEach(function(target, index) {
// if no extension is present then include one with a filetype to the end
// of the current test targets
if (path.extname(target) === '') {
// insert the minified version of the library at the start of the
// targets list (will be 2nd preferred after non minified version is added)
testTargets.unshift(target + '.min.' + rigger.filetype);
// insert the default version of the library to the start of the list
testTargets.unshift(target + '.' + rigger.filetype);
}
});
// find the first of the targets that actually exists
async.detect(testTargets, checkExists, function(realTarget) {
if (! realTarget) {
// if the rigger is tolerant, emit the include:error event
if (tolerant) {
rigger.emit('include:error', target);
}
return attemptFallback(tolerant ? null : new Error('Unable to find target for: ' + target));
}
// determine the type of the real target
fs.stat(realTarget, function(err, stats) {
if (err) return attemptFallback(err);
// update the current scope directory
rigger.csd = path.dirname(realTarget);
// if it is a file, then read the file and pass the content back
if (stats.isFile()) {
rigger._fork([realTarget], attemptFallback);
}
// otherwise, if the target is a directory, read the files and then read the
// valid file types from the specified directory
else if (stats.isDirectory()) {
rigger.emit('include:dir', realTarget);
debug('reading directory contents: ' + realTarget);
fs.readdir(realTarget, function(dirErr, files) {
// get only the files that match the current file type
files = (files || []).filter(function(file) {
var ext = path.extname(file).slice(1).toLowerCase(),
valid = ext === rigger.filetype;
// additionally include those files that can be
// converted to the target file type
Object.keys(converters).forEach(function(key) {
valid = valid || key === (ext + '2' + rigger.filetype);
});
debug('found file: ' + file + ' + valid: ' + valid);
return valid;
})
// explicitlly sort the files
.sort()
// turn into the fully resolved path
.map(function(file) {
return path.join(realTarget, file);
});
// fork a subrigger
rigger._fork(files, attemptFallback);
});
}
});
});
}
};
Rigger.prototype._writeDirective = function(name, data) {
var comment = commentTypes[this.targetType] || defaultCommentSyntax;
var lineData = [
comment.pre,
name.toUpperCase() + '>>>',
JSON.stringify(data),
comment.post || ''
];
if (this.useDirectives) {
this.output[this.output.length] = lineData.join(' ');
}
};
var rig = exports = module.exports = function(targetFile, opts, callback) {
var parser;
// if we have no arguments passed to the function, then return a new rigger instance
if (typeof targetFile == 'undefined' || (typeof targetFile == 'object' && (! (targetFile instanceof String)))) {
return new Rigger(targetFile);
}
// remap arguments if required
if (typeof opts == 'function') {
callback = opts;
opts = {};
}
// initialise the options
opts = _.extend({}, opts || {});
// initialise the default encoding
opts.encoding = opts.encoding || 'utf8';
// add the additional rigger options
// initialise the filetype based on the extension of the target file
opts.filetype = opts.filetype || path.extname(targetFile);
// initialise the basename
opts.basename = opts.basename || path.basename(targetFile, opts.filetype);
// pass the rigger the cwd which will be provided to getit
opts.cwd = opts.cwd || path.dirname(targetFile);
// create the parser
parser = new Rigger(opts);
// attach the callback
_attachCallback(parser, opts, callback);
// pipe the input to the parser
debug('loading file contents and passing to a rigger instance: ' + targetFile);
getit(targetFile, parser.opts).pipe(parser);
// return the parser instance
return parser;
};
// export a manual processing helper
exports.process = function(data, opts, callback) {
var rigger;
// remap args if required
if (typeof opts == 'function') {
callback = opts;
opts = {};
}
// create a new rigger
rigger = new Rigger(opts);
// handle the callback appropriately
_attachCallback(rigger, opts, callback);
process.nextTick(function() {
// write the data into the rigger
rigger.write(data);
rigger.end();
});
// return the rigger instance
return rigger;
};
// export the rigger class
exports.Rigger = Rigger;
// expose the regexes for tweaking
exports.regexes = regexes.includes;
// patch in the default converters
fs.readdirSync(path.resolve(__dirname, 'converters')).forEach(function(converterFile) {
converters[path.basename(converterFile, '.js')] = require('./converters/' + converterFile);
});
// map the default converters to the rigger export
exports.converters = converters;
/* private helpers */
function _attachCallback(rigger, opts, callback) {
var output = [];
var settings = {};
var abortOnError = true;
var aborted = false;
// ensure the options are defined
opts = opts || {};
// determine whether we should abort on error
if (typeof opts.abortOnError != 'undefined') {
abortOnError = opts.abortOnError;
}
// if we have a callback, then process the data and handle end and error events
if (callback) {
rigger
.on('data', function(data) {
output[output.length] = data.toString(opts.encoding || 'utf8');
})
.on('setting', function(name, value) {
settings[name] = value;
})
// on error, trigger the callback
.on('error', function(err) {
debug('rigger produced error condition: ', err);
// determine whether the build process is aborted in this condition
aborted = abortOnError;
if (aborted) {
callback(err);
}
})
// on end emit the data
.on('end', function() {
if (callback && (! aborted)) {
callback(
null,
output.map(formatters.stripTrailingWhitespace).join(rigger.lineEnding),
settings
);
}
});
}
}
function checkExists(filename, callback) {
fs.exists(filename, function(exists) {
callback(exists && filename);
});
}