forked from plasma-umass/browsix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
563 lines (488 loc) · 17.6 KB
/
gulpfile.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
'use strict';
var browserify = require('browserify');
var gulp = require('gulp');
var gutil = require('gulp-util');
var copy = require('gulp-copy');
var rename = require('gulp-rename');
var merge = require('merge2');
var ts = require('gulp-typescript');
var lint = require('gulp-tslint');
var mocha = require('gulp-mocha');
var browserSync = require('browser-sync');
var reload = browserSync.reload;
var source = require('vinyl-source-stream');
var buffer = require('vinyl-buffer');
var karma = require('karma');
var run = require('gulp-run');
var chmod = require('gulp-chmod');
var url = require('url');
var extend = require('util')._extend;
var $ = require('gulp-load-plugins')();
var del = require('del');
var path = require('path');
var fs = require('fs');
var historyApiFallback = require('connect-history-api-fallback');
var addShebang = require('./gulp-plugins/add-shebang');
// don't do anything when seeing use of several node builtins -- we
// handle this ourselves.
var globalVars = {
'RELEASE': function() { return 'false'; },
'buffer': function() { return 'require("browserfs-browsix-tmp").BFSRequire("buffer")'; },
'Buffer': function() { return 'require("browserfs-browsix-tmp").BFSRequire("buffer").Buffer'; },
'process': function() { return "" },
'setImmediate' : undefined,
'clearImmediate' : undefined,
};
var builtins = {
// 'process': function() { return "" },
// 'Buffer': function() { return "" },
// 'buffer': require.resolve('bfs-buffer'),
'path': require.resolve('bfs-path'),
};
// each user of our tsconfig.json setup needs a different instance of
// the 'ts project', as gulp-typescript seems to use it as a dumping
// ground for mutable state.
function project(extraLibs) {
let configFile = fs.readFileSync('tsconfig.json');
let config = JSON.parse(configFile).compilerOptions;
config.lib = [
"DOM",
"DOM.Iterable",
"ScriptHost",
"es2016",
"es2017.sharedmemory",
];
if (extraLibs)
libs.concat(extraLibs);
return ts(config);
}
function tsPipeline(src, dst, extraLibs) {
return function() {
let build = gulp.src(src)
.pipe(project(extraLibs));
return merge([
build.dts.pipe(gulp.dest(dst)),
build.js.pipe(gulp.dest(dst)),
]);
}
}
// creates tasks representing the build lifecycle of a typescript package:
// - lint (optional)
// - build w/ tsc
// - dist w/ browserify
function tsTask(subdir, options) {
options = options || {};
var noBuffer = options.noBuffer;
var noGlobal = options.noGlobal;
var buildDeps = options.buildDeps || [];
var otherSources = options.otherSources || [];
var sources = ['src/'+subdir+'/*.ts', 'src/'+subdir+'/**/*.ts'].concat(otherSources);
gulp.task('lint-'+subdir, function() {
return gulp.src(['src/'+subdir+'/*.ts', 'src/'+subdir+'/*/*.ts'])
.pipe(lint({
formatter: "verbose",
}))
.pipe(lint.report());
});
// run lint by default, but if lint is specified as 'false' skip it
if (!options.hasOwnProperty('lint') || options.lint)
buildDeps = buildDeps.concat(['lint-'+subdir]);
gulp.task('build-'+subdir, buildDeps, tsPipeline(sources, 'lib/'+subdir, options.extraLibs));
var globals = extend({}, globalVars);
if (noGlobal)
globals['global'] = function() { return ""; };
if (noBuffer) {
globals['buffer'] = function() { return ""; };
globals['Buffer'] = function() { return ""; };
}
gulp.task('dist-'+subdir, ['build-'+subdir], function() {
var b = browserify({
entries: ['./lib/'+subdir+'/'+subdir+'.js'],
builtins: builtins,
insertGlobalVars: globals,
});
b.exclude('webworker-threads');
return b.bundle()
.pipe(source('./lib/'+subdir+'/'+subdir+'.js'))
.pipe(buffer())
.on('error', gutil.log)
.pipe(gulp.dest('./lib-dist/'));
});
}
gulp.task('copy-node-kernel', function() {
return gulp.src([
'node-modified/lib/binding/http_parser.js',
]).pipe(copy('./lib/kernel/', {prefix: 3}));
});
gulp.task('copy-node', function() {
return gulp.src([
'node/lib/internal/util.js',
'node/lib/internal/freelist.js',
'node-modified/lib/binding/http_parser.js',
'node-modified/lib/internal/child_process.js',
'node/lib/_linklist.js',
'node/lib/_stream_*.js',
'node/lib/events.js',
'node/lib/constants.js',
'node/lib/path.js',
'node/lib/stream.js',
'node/lib/string_decoder.js',
'node/lib/util.js',
'node/lib/buffer.js',
'node/lib/assert.js',
'node/lib/fs.js',
'node/lib/vm.js',
'node/lib/readline.js',
'node/lib/domain.js',
'node/lib/timers.js',
'node/lib/string_decoder.js',
'node/lib/child_process.js',
'node/lib/dns.js',
'node/lib/dgram.js',
'node/lib/cluster.js',
'node/lib/net.js',
'node/lib/querystring.js',
'node/lib/punycode.js',
'node/lib/url.js',
'node/lib/_http_agent.js',
'node/lib/_http_common.js',
'node/lib/_http_incoming.js',
'node/lib/_http_outgoing.js',
'node/lib/_http_client.js',
'node/lib/_http_server.js',
'node/lib/http.js',
]).pipe(copy('./lib/browser-node/', {prefix: 2}));
});
// the kernel directly uses BrowserFS's typescript modules - we need
// to explicitly exclude tests and the browserify main here to avoid
// confusing tsc :\
tsTask('kernel', {buildDeps: ['copy-node-kernel', 'copy-node']});
tsTask('browser-node', {buildDeps: ['copy-node'], noBuffer: true});
tsTask('bin');
tsTask('syscall-api', {buildDeps: ['build-browser-node'], noGlobal: true});
tsTask('hello-sync', {noGlobal: true});
// next, we need to collect the various pieces we've built, and put
// then in a sane directory hierarchy. There is no dist step needed
// for our binaries - they are self contained and meant to be run
// directly from node or browser-node.
gulp.task('build-fs-pre', ['dist-kernel', 'dist-browser-node', 'build-bin', 'dist-syscall-api'], function() {
var copyKernel = gulp.src('lib-dist/lib/kernel/kernel.js')
.pipe(copy('./fs/boot/', {prefix: 3}));
var copyNode = gulp.src('lib-dist/lib/browser-node/browser-node.js')
.pipe(rename(function(path) { path.basename = 'node'; path.extname = ''; }))
.pipe(gulp.dest('./fs/usr/bin/'));
var copyBin = gulp.src('lib/bin/*.js')
.pipe(rename(function(path) { path.extname = ''; }))
.pipe(addShebang('#!/usr/bin/env node\n'))
.pipe(chmod(755))
.pipe(gulp.dest('./fs/usr/bin/'));
var copyLd = gulp.src('src/ld.js')
.pipe(rename(function(path) { path.extname = ''; }))
.pipe(chmod(755))
.pipe(gulp.dest('./fs/usr/bin/'));
return merge(copyKernel, copyNode, copyBin, copyLd);
});
gulp.task('build-fs', ['build-fs-pre'], function() {
var copyDash1 = gulp.src('src/dash.js')
.pipe(rename(function(path) { path.basename = 'sh'; path.extname = ''; }))
.pipe(gulp.dest('./fs/bin/'));
// FIXME: we should just look in 2 dirs on the path
var copyDash2 = gulp.src('src/dash.js')
.pipe(rename(function(path) { path.basename = 'sh'; path.extname = ''; }))
.pipe(gulp.dest('./fs/usr/bin/'));
return merge(copyDash1, copyDash2);
});
// finally, we create an index.json file so that BrowserFS can see
// everything in our nice hierarchy
gulp.task('index-fs', ['build-fs'], function() {
return run('./xhrfs-index fs').exec()
.pipe(rename(function(path) {
path.basename = 'index';
path.extname = '.json';
}))
.pipe(gulp.dest('./fs'));
});
gulp.task('copy-dash', [], function() {
});
gulp.task('index-benchfs', [], function() {
return run('./xhrfs-index benchfs').exec()
.pipe(rename(function(path) {
path.basename = 'index';
path.extname = '.json';
}))
.pipe(gulp.dest('./benchfs'));
});
gulp.task('build-test', ['index-fs'], function() {
return gulp.src('test/*.ts')
.pipe(project()).js
.pipe(gulp.dest('test'));
});
gulp.task('build-bench', ['index-benchfs'], function() {
return gulp.src('bench/*.ts')
.pipe(project()).js
.pipe(gulp.dest('bench'));
});
// we compile all our tests into a single javascript file because
// that is how browserify likes to work :\
gulp.task('dist-test', ['build-test'], function() {
var testMain = './test/test-all.js';
var b = browserify({
entries: [testMain],
builtins: false,
insertGlobalVars: globalVars,
});
b.exclude('webworker-threads');
return b.bundle()
.pipe(source(testMain))
.pipe(buffer())
.on('error', gutil.log)
.pipe(gulp.dest('./lib-dist/'));
});
gulp.task('dist-bench', ['build-bench', 'index-benchfs'], function() {
var testMain = './bench/bench.js';
var b = browserify({
entries: [testMain],
builtins: false,
insertGlobalVars: globalVars,
});
b.exclude('webworker-threads');
return b.bundle()
.pipe(source(testMain))
.pipe(buffer())
.on('error', gutil.log)
.pipe(gulp.dest('./lib-dist/'));
});
// this starts karma & rebuild everything on change
gulp.task('test-browser', ['dist-test'], function(done) {
new karma.Server({
configFile: __dirname + '/karma.conf.js',
singleRun: false,
autoWatchBatchDelay: 1000,
}, done).start();
gulp.watch(['src/**/*.ts', 'test/*.ts'], ['dist-test']);
});
// this runs karma once, exiting gulp on completion or failure
gulp.task('bench', ['dist-bench'], function(done) {
new karma.Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true,
concurrency: 1,
colors: false,
browserNoActivityTimeout: 100000, // ms
reporters: ['dots'],
browsers: ['Firefox', 'Chrome'],
files: [
'lib-dist/bench/bench.js',
{
pattern: 'benchfs/**/*',
included: false,
nocache: true,
},
],
}, done).start();
});
// this runs karma once, exiting gulp on completion or failure
gulp.task('default', ['dist-test'], function(done) {
new karma.Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true,
browsers: ['Firefox'],
}, done).start();
});
// from this point on is the config for the Terminal web app, written
// using Polymer.
var AUTOPREFIXER_BROWSERS = [
'ie >= 10',
'ie_mob >= 10',
'ff >= 30',
'chrome >= 34',
'safari >= 7',
'opera >= 23',
'ios >= 7',
'android >= 4.4',
'bb >= 10'
];
var styleTask = function (stylesPath, srcs) {
return gulp.src(srcs.map(function(src) {
return path.join('app', stylesPath, src);
}))
.pipe($.changed(stylesPath, {extension: '.css'}))
.pipe($.autoprefixer(AUTOPREFIXER_BROWSERS))
.pipe(gulp.dest('.tmp/' + stylesPath))
.pipe($.cssmin())
.pipe(gulp.dest('dist/' + stylesPath))
.pipe($.size({title: stylesPath}));
};
var imageOptimizeTask = function (src, dest) {
return gulp.src(src)
.pipe($.cache($.imagemin({
progressive: true,
interlaced: true
})))
.pipe(gulp.dest(dest))
.pipe($.size({title: 'images'}));
};
var optimizeHtmlTask = function (src, dest) {
return gulp.src(src)
// Replace path for vulcanized assets
.pipe($.if('*.html', $.replace('elements/elements.html', 'elements/elements.vulcanized.html')))
// In case you are still using useref build blocks
.pipe($.if('*.css', $.cssmin()))
.pipe($.useref())
// Minify any HTML
.pipe($.if('*.html', $.minifyHtml({
quotes: true,
empty: true,
spare: true
})))
// Output files
.pipe(gulp.dest(dest))
.pipe($.size({title: 'html'}));
};
function gulp_app_tasks (app_path) {
// Compile and automatically prefix stylesheets
gulp.task(app_path+':styles', function () {
return styleTask('styles', ['**/*.css']);
});
gulp.task(app_path+':elements', [app_path+':build', app_path+':copy', app_path+':styles'], function () {
return styleTask('elements', ['**/*.css']);
});
// Optimize images
gulp.task(app_path+':images', function () {
return imageOptimizeTask(app_path+'/images/**/*', 'dist/images');
});
// Copy all files at the root level (app)
gulp.task(app_path+':copy', ['index-fs'], function () {
var app = gulp.src([
app_path+'/*',
'!'+app_path+'/test',
'!'+app_path+'/cache-config.json',
], {
dot: true
}).pipe(gulp.dest('dist'));
var bower = gulp.src([
'bower_components/**/*'
]).pipe(gulp.dest('dist/bower_components'));
var elements = gulp.src([
app_path+'/elements/**/*.html',
app_path+'/elements/**/*.css',
app_path+'/elements/**/*.js',
])
.pipe(gulp.dest('dist/elements'));
var swBootstrap = gulp.src(['bower_components/platinum-sw/bootstrap/*.js'])
.pipe(gulp.dest('dist/elements/bootstrap'));
var swToolbox = gulp.src(['bower_components/sw-toolbox/*.js'])
.pipe(gulp.dest('dist/sw-toolbox'));
var vulcanized = gulp.src([app_path+'/elements/elements.html'])
.pipe($.rename('elements.vulcanized.html'))
.pipe(gulp.dest('dist/elements'));
var fs = gulp.src(['fs/**/*'])
.pipe(gulp.dest('dist/fs'));
return merge(app, bower, elements, vulcanized, swBootstrap, swToolbox, fs)
.pipe($.size({title: 'copy'}));
});
// Copy web fonts to dist
gulp.task(app_path+':fonts', function () {
return gulp.src(['app/fonts/**'])
.pipe(gulp.dest('dist/fonts'))
.pipe($.size({title: 'fonts'}));
});
// Scan your HTML for assets & optimize them
gulp.task(app_path+':html', [app_path+':elements'], function () {
return optimizeHtmlTask(
[app_path+'/**/*.html', '!'+app_path+'app/{elements,test}/**/*.html'],
'dist');
});
// Vulcanize granular configuration
gulp.task(app_path+':vulcanize', [app_path+':images', app_path+':fonts', app_path+':html'], function () {
var DEST_DIR = 'dist/elements';
return gulp.src('dist/elements/elements.vulcanized.html')
.pipe($.vulcanize({
stripComments: true,
inlineCss: true,
inlineScripts: true
}))
.pipe(gulp.dest(DEST_DIR))
.pipe($.size({title: 'vulcanize'}));
});
// Clean output directory
gulp.task(app_path+':clean', function (cb) {
del(['.tmp', 'dist'], cb);
});
gulp.task(app_path+':build', ['index-fs'], function (cb) {
return gulp.src([
app_path+'/elements/**/*.ts',
])
.pipe(project()).js
.pipe(gulp.dest(app_path+'/elements'));
});
}
gulp_app_tasks ('app');
gulp_app_tasks ('app-spec');
gulp.task ('copy-spec-bins', [], function (cb) {
return gulp.src (['spec-bins',]).pipe (gulp.dest ('fs/usr/bin/'));
});
gulp.task ('create-spec-dirs', [], function (cb) {
return gulp.src("*.js", {read:false}).pipe (gulp.dest ('fs/spec/cpu2006_asmjs/benchspec/CPU2006/'));
});
gulp.task ('browsix-spec', ['copy-spec-bins', 'create-spec-dirs', 'app-spec:build', 'app-spec:styles', 'app-spec:elements', 'app-spec:images']);
// Watch files for changes & reload
gulp.task('serve', ['app:build', 'app:styles', 'app:elements', 'app:images'], function () {
browserSync({
port: 5000,
notify: false,
ghostMode: false,
logPrefix: 'browsix',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function (snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: {
baseDir: ['.tmp', 'app'],
routes: {
'/bower_components': 'bower_components',
'/fs': 'fs',
'/benchfs': 'benchfs',
},
middleware: [],
}
});
gulp.watch(['src/kernel/*.ts'], ['dist-kernel', reload]);
gulp.watch(['app/**/*.html'], reload);
gulp.watch(['app/styles/**/*.css'], ['app:styles', reload]);
gulp.watch(['app/elements/**/*.css'], ['app:elements', reload]);
gulp.watch(['app/{scripts,elements}/**/*.ts'], ['app:build']);
gulp.watch(['app/images/**/*'], reload);
});
// Build and serve the output from the dist build
gulp.task('serve:dist', ['build:dist'], function () {
browserSync({
port: 5001,
notify: false,
logPrefix: 'browsix',
snippetOptions: {
rule: {
match: '<span id="browser-sync-binding"></span>',
fn: function (snippet) {
return snippet;
}
}
},
// Run as an https by uncommenting 'https: true'
// Note: this uses an unsigned certificate which on first access
// will present a certificate warning in the browser.
// https: true,
server: 'dist',
middleware: [ historyApiFallback() ]
});
});
// Build production files, the default task
gulp.task('build:dist', ['app:vulcanize']);