forked from pupitetris/cesium-webxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
1208 lines (1044 loc) · 36.2 KB
/
build.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
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*eslint-env node*/
import child_process from "child_process";
import { existsSync, readFileSync, statSync } from "fs";
import { readFile, writeFile } from "fs/promises";
import { EOL } from "os";
import path from "path";
import { createRequire } from "module";
import esbuild from "esbuild";
import { globby } from "globby";
import glslStripComments from "glsl-strip-comments";
import gulp from "gulp";
import { rimraf } from "rimraf";
import { rollup } from "rollup";
import rollupPluginStripPragma from "rollup-plugin-strip-pragma";
import terser from "@rollup/plugin-terser";
import rollupCommonjs from "@rollup/plugin-commonjs";
import rollupResolve from "@rollup/plugin-node-resolve";
import streamToPromise from "stream-to-promise";
import { mkdirp } from "mkdirp";
// Determines the scope of the workspace packages. If the scope is set to cesium, the workspaces should be @cesium/engine.
// This should match the scope of the dependencies of the root level package.json.
const scope = "cesium";
const require = createRequire(import.meta.url);
const packageJson = require("./package.json");
let version = packageJson.version;
if (/\.0$/.test(version)) {
version = version.substring(0, version.length - 2);
}
const copyrightHeaderTemplate = readFileSync(
path.join("Source", "copyrightHeader.js"),
"utf8"
);
const combinedCopyrightHeader = copyrightHeaderTemplate.replace(
"${version}",
version
);
function escapeCharacters(token) {
return token.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
}
function constructRegex(pragma, exclusive) {
const prefix = exclusive ? "exclude" : "include";
pragma = escapeCharacters(pragma);
const s =
`[\\t ]*\\/\\/>>\\s?${prefix}Start\\s?\\(\\s?(["'])${pragma}\\1\\s?,\\s?pragmas\\.${pragma}\\s?\\)\\s?;?` +
// multiline code block
`[\\s\\S]*?` +
// end comment
`[\\t ]*\\/\\/>>\\s?${prefix}End\\s?\\(\\s?(["'])${pragma}\\2\\s?\\)\\s?;?\\s?[\\t ]*\\n?`;
return new RegExp(s, "gm");
}
const pragmas = {
debug: false,
};
const stripPragmaPlugin = {
name: "strip-pragmas",
setup: (build) => {
build.onLoad({ filter: /\.js$/ }, async (args) => {
let source = await readFile(args.path, { encoding: "utf8" });
try {
for (const key in pragmas) {
if (pragmas.hasOwnProperty(key)) {
source = source.replace(constructRegex(key, pragmas[key]), "");
}
}
return { contents: source };
} catch (e) {
return {
errors: {
text: e.message,
},
};
}
});
},
};
// Print an esbuild warning
function printBuildWarning({ location, text }) {
const { column, file, line, lineText, suggestion } = location;
let message = `\n
> ${file}:${line}:${column}: warning: ${text}
${lineText}
`;
if (suggestion && suggestion !== "") {
message += `\n${suggestion}`;
}
console.log(message);
}
// Ignore `eval` warnings in third-party code we don't have control over
function handleBuildWarnings(result) {
for (const warning of result.warnings) {
if (
!warning.location.file.includes("protobufjs.js") &&
!warning.location.file.includes("Build/Cesium")
) {
printBuildWarning(warning);
}
}
}
export const defaultESBuildOptions = () => {
return {
bundle: true,
color: true,
legalComments: `inline`,
logLimit: 0,
target: `es2020`,
};
};
export async function getFilesFromWorkspaceGlobs(workspaceGlobs) {
let files = [];
// Iterate over each workspace and generate declarations for each file.
for (const workspace of Object.keys(workspaceGlobs)) {
// Since workspace source files are provided relative to the workspace,
// the workspace path needs to be prepended.
const workspacePath = `packages/${workspace.replace(`${scope}/`, ``)}`;
const filesPaths = workspaceGlobs[workspace].map((glob) => {
if (glob.indexOf(`!`) === 0) {
return `!`.concat(workspacePath, `/`, glob.replace(`!`, ``));
}
return workspacePath.concat("/", glob);
});
files = files.concat(await globby(filesPaths));
}
return files;
}
/**
* @typedef {object} CesiumBundles
* @property {object} esm The ESM bundle.
* @property {object} iife The IIFE bundle, for use in browsers.
* @property {object} node The CommonJS bundle, for use in NodeJS.
*/
/**
* Bundles all individual modules, optionally minifying and stripping out debug pragmas.
* @param {object} options
* @param {string} options.path Directory where build artifacts are output
* @param {boolean} [options.minify=false] true if the output should be minified
* @param {boolean} [options.removePragmas=false] true if the output should have debug pragmas stripped out
* @param {boolean} [options.sourcemap=false] true if an external sourcemap should be generated
* @param {boolean} [options.iife=false] true if an IIFE style module should be built
* @param {boolean} [options.node=false] true if a CJS style node module should be built
* @param {boolean} [options.incremental=false] true if build output should be cached for repeated builds
* @param {boolean} [options.write=true] true if build output should be written to disk. If false, the files that would have been written as in-memory buffers
* @returns {Promise<CesiumBundles>}
*/
export async function bundleCesiumJs(options) {
const buildConfig = defaultESBuildOptions();
buildConfig.entryPoints = ["Source/Cesium.js"];
buildConfig.minify = options.minify;
buildConfig.sourcemap = options.sourcemap;
buildConfig.external = ["https", "http", "url", "zlib"];
buildConfig.plugins = options.removePragmas ? [stripPragmaPlugin] : undefined;
buildConfig.write = options.write;
buildConfig.banner = {
js: combinedCopyrightHeader,
};
// print errors immediately, and collect warnings so we can filter out known ones
buildConfig.logLevel = "info";
const contexts = {};
const incremental = options.incremental;
let build = esbuild.build;
if (incremental) {
build = esbuild.context;
}
// Build ESM
const esm = await build({
...buildConfig,
format: "esm",
outfile: path.join(options.path, "index.js"),
});
if (incremental) {
contexts.esm = esm;
} else {
handleBuildWarnings(esm);
}
// Build IIFE
if (options.iife) {
const iife = await build({
...buildConfig,
format: "iife",
globalName: "Cesium",
outfile: path.join(options.path, "Cesium.js"),
});
if (incremental) {
contexts.iife = iife;
} else {
handleBuildWarnings(iife);
}
}
if (options.node) {
const node = await build({
...buildConfig,
format: "cjs",
platform: "node",
define: {
// TransformStream is a browser-only implementation depended on by zip.js
TransformStream: "null",
},
outfile: path.join(options.path, "index.cjs"),
});
if (incremental) {
contexts.node = node;
} else {
handleBuildWarnings(node);
}
}
return contexts;
}
function filePathToModuleId(moduleId) {
return moduleId.substring(0, moduleId.lastIndexOf(".")).replace(/\\/g, "/");
}
const workspaceSourceFiles = {
engine: [
"packages/engine/Source/**/*.js",
"!packages/engine/Source/*.js",
"!packages/engine/Source/Workers/**",
"!packages/engine/Source/WorkersES6/**",
"packages/engine/Source/WorkersES6/createTaskProcessorWorker.js",
"!packages/engine/Source/ThirdParty/Workers/**",
"!packages/engine/Source/ThirdParty/google-earth-dbroot-parser.js",
"!packages/engine/Source/ThirdParty/_*",
],
widgets: ["packages/widgets/Source/**/*.js"],
};
/**
* Generates export declaration from a file from a workspace.
*
* @param {string} workspace The workspace the file belongs to.
* @param {string} file The file.
* @returns {string} The export declaration.
*/
function generateDeclaration(workspace, file) {
let assignmentName = path.basename(file, path.extname(file));
let moduleId = file;
moduleId = filePathToModuleId(moduleId);
if (moduleId.indexOf("Source/Shaders") > -1) {
assignmentName = `_shaders${assignmentName}`;
}
assignmentName = assignmentName.replace(/(\.|-)/g, "_");
return `export { ${assignmentName} } from '@${scope}/${workspace}';`;
}
/**
* Creates a single entry point file, Cesium.js, which imports all individual modules exported from the Cesium API.
* @returns {Buffer} contents
*/
export async function createCesiumJs() {
let contents = `export const VERSION = '${version}';\n`;
// Iterate over each workspace and generate declarations for each file.
for (const workspace of Object.keys(workspaceSourceFiles)) {
const files = await globby(workspaceSourceFiles[workspace]);
const declarations = files.map((file) =>
generateDeclaration(workspace, file)
);
contents += declarations.join(`${EOL}`);
contents += "\n";
}
await writeFile("Source/Cesium.js", contents, { encoding: "utf-8" });
return contents;
}
const workspaceSpecFiles = {
engine: ["packages/engine/Specs/**/*Spec.js"],
widgets: ["packages/widgets/Specs/**/*Spec.js"],
};
/**
* Creates a single entry point file, Specs/SpecList.js, which imports all individual spec files.
* @returns {Buffer} contents
*/
export async function createCombinedSpecList() {
let contents = `export const VERSION = '${version}';\n`;
for (const workspace of Object.keys(workspaceSpecFiles)) {
const files = await globby(workspaceSpecFiles[workspace]);
for (const file of files) {
contents += `import '../${file}';\n`;
}
}
await writeFile(path.join("Specs", "SpecList.js"), contents, {
encoding: "utf-8",
});
return contents;
}
function rollupWarning(message) {
// Ignore eval warnings in third-party code we don't have control over
if (message.code === "EVAL" && /protobufjs/.test(message.loc.file)) {
return;
}
console.log(message);
}
/**
* @param {object} options
* @param {boolean} [options.minify=false] true if the worker output should be minified
* @param {boolean} [options.removePragmas=false] true if debug pragma should be removed
* @param {boolean} [options.sourcemap=false] true if an external sourcemap should be generated
* @param {string} options.path output directory
*/
export async function bundleCombinedWorkers(options) {
// Bundle non ES6 workers.
const workers = await globby(["packages/engine/Source/Workers/**"]);
const workerConfig = defaultESBuildOptions();
workerConfig.bundle = false;
workerConfig.banner = {
js: combinedCopyrightHeader,
};
workerConfig.entryPoints = workers;
workerConfig.outdir = options.path;
workerConfig.minify = options.minify;
workerConfig.outbase = "packages/engine/Source";
await esbuild.build(workerConfig);
// Copy ThirdParty workers
const thirdPartyWorkers = await globby([
"packages/engine/Source/ThirdParty/Workers/**",
]);
const thirdPartyWorkerConfig = defaultESBuildOptions();
thirdPartyWorkerConfig.bundle = false;
thirdPartyWorkerConfig.entryPoints = thirdPartyWorkers;
thirdPartyWorkerConfig.outdir = options.path;
thirdPartyWorkerConfig.minify = options.minify;
thirdPartyWorkerConfig.outbase = "packages/engine/Source";
await esbuild.build(thirdPartyWorkerConfig);
// Bundle ES6 workers.
const es6Workers = await globby([`packages/engine/Source/WorkersES6/*.js`]);
const plugins = [rollupResolve({ preferBuiltins: true }), rollupCommonjs()];
if (options.removePragmas) {
plugins.push(
rollupPluginStripPragma({
pragmas: ["debug"],
})
);
}
if (options.minify) {
plugins.push(terser());
}
const bundle = await rollup({
input: es6Workers,
plugins: plugins,
onwarn: rollupWarning,
});
return bundle.write({
dir: path.join(options.path, "Workers"),
format: "amd",
// Rollup cannot generate a sourcemap when pragmas are removed
sourcemap: options.sourcemap && !options.removePragmas,
// SAMTODO: Add copyrightBanner
});
}
/**
* Bundles the workers and outputs the result to the specified directory
* @param {object} options
* @param {boolean} [options.minify=false] true if the worker output should be minified
* @param {boolean} [options.removePragmas=false] true if debug pragma should be removed
* @param {boolean} [options.sourcemap=false] true if an external sourcemap should be generated
* @param {string[]} options.input The worker globs.
* @param {string[]} options.inputES6 The ES6 worker globs.
* @param {string} options.path output directory
* @param {string} options.copyrightHeader The copyright header to add to worker bundles
* @returns {Promise<any>}
*/
export async function bundleWorkers(options) {
// Copy existing workers
const workers = await globby(options.input);
const workerConfig = defaultESBuildOptions();
workerConfig.bundle = false;
workerConfig.banner = {
js: combinedCopyrightHeader,
};
workerConfig.entryPoints = workers;
workerConfig.outdir = options.path;
workerConfig.outbase = `packages/engine/Source`; // Maintain existing file paths
workerConfig.minify = options.minify;
await esbuild.build(workerConfig);
// Use rollup to build the workers:
// 1) They can be built as AMD style modules
// 2) They can be built using code-splitting, resulting in smaller modules
const files = await globby(options.inputES6);
const plugins = [rollupResolve({ preferBuiltins: true }), rollupCommonjs()];
if (options.removePragmas) {
plugins.push(
rollupPluginStripPragma({
pragmas: ["debug"],
})
);
}
if (options.minify) {
plugins.push(terser());
}
const bundle = await rollup({
input: files,
plugins: plugins,
onwarn: rollupWarning,
});
return bundle.write({
dir: path.join(options.path, "Workers"),
format: "amd",
// Rollup cannot generate a sourcemap when pragmas are removed
sourcemap: options.sourcemap && !options.removePragmas,
banner: options.copyrightHeader,
});
}
const shaderFiles = [
"packages/engine/Source/Shaders/**/*.glsl",
"packages/engine/Source/ThirdParty/Shaders/*.glsl",
];
export async function glslToJavaScript(minify, minifyStateFilePath, workspace) {
await writeFile(minifyStateFilePath, minify.toString());
const minifyStateFileLastModified = existsSync(minifyStateFilePath)
? statSync(minifyStateFilePath).mtime.getTime()
: 0;
// collect all currently existing JS files into a set, later we will remove the ones
// we still are using from the set, then delete any files remaining in the set.
const leftOverJsFiles = {};
const files = await globby([
`packages/${workspace}/Source/Shaders/**/*.js`,
`packages/${workspace}/Source/ThirdParty/Shaders/*.js`,
]);
files.forEach(function (file) {
leftOverJsFiles[path.normalize(file)] = true;
});
const builtinFunctions = [];
const builtinConstants = [];
const builtinStructs = [];
const glslFiles = await globby(shaderFiles);
await Promise.all(
glslFiles.map(async function (glslFile) {
glslFile = path.normalize(glslFile);
const baseName = path.basename(glslFile, ".glsl");
const jsFile = `${path.join(path.dirname(glslFile), baseName)}.js`;
// identify built in functions, structs, and constants
const baseDir = path.join(
`packages/${workspace}/`,
"Source",
"Shaders",
"Builtin"
);
if (
glslFile.indexOf(path.normalize(path.join(baseDir, "Functions"))) === 0
) {
builtinFunctions.push(baseName);
} else if (
glslFile.indexOf(path.normalize(path.join(baseDir, "Constants"))) === 0
) {
builtinConstants.push(baseName);
} else if (
glslFile.indexOf(path.normalize(path.join(baseDir, "Structs"))) === 0
) {
builtinStructs.push(baseName);
}
delete leftOverJsFiles[jsFile];
const jsFileExists = existsSync(jsFile);
const jsFileModified = jsFileExists
? statSync(jsFile).mtime.getTime()
: 0;
const glslFileModified = statSync(glslFile).mtime.getTime();
if (
jsFileExists &&
jsFileModified > glslFileModified &&
jsFileModified > minifyStateFileLastModified
) {
return;
}
let contents = await readFile(glslFile, { encoding: "utf8" });
contents = contents.replace(/\r\n/gm, "\n");
let copyrightComments = "";
const extractedCopyrightComments = contents.match(
/\/\*\*(?:[^*\/]|\*(?!\/)|\n)*?@license(?:.|\n)*?\*\//gm
);
if (extractedCopyrightComments) {
copyrightComments = `${extractedCopyrightComments.join("\n")}\n`;
}
if (minify) {
contents = glslStripComments(contents);
contents = contents
.replace(/\s+$/gm, "")
.replace(/^\s+/gm, "")
.replace(/\n+/gm, "\n");
contents += "\n";
}
contents = contents.split('"').join('\\"').replace(/\n/gm, "\\n\\\n");
contents = `${copyrightComments}\
//This file is automatically rebuilt by the Cesium build process.\n\
export default "${contents}";\n`;
return writeFile(jsFile, contents);
})
);
// delete any left over JS files from old shaders
Object.keys(leftOverJsFiles).forEach(function (filepath) {
rimraf.sync(filepath);
});
const generateBuiltinContents = function (contents, builtins, path) {
for (let i = 0; i < builtins.length; i++) {
const builtin = builtins[i];
contents.imports.push(
`import czm_${builtin} from './${path}/${builtin}.js'`
);
contents.builtinLookup.push(`czm_${builtin} : ` + `czm_${builtin}`);
}
};
//generate the JS file for Built-in GLSL Functions, Structs, and Constants
const contents = {
imports: [],
builtinLookup: [],
};
generateBuiltinContents(contents, builtinConstants, "Constants");
generateBuiltinContents(contents, builtinStructs, "Structs");
generateBuiltinContents(contents, builtinFunctions, "Functions");
const fileContents = `//This file is automatically rebuilt by the Cesium build process.\n${contents.imports.join(
"\n"
)}\n\nexport default {\n ${contents.builtinLookup.join(",\n ")}\n};\n`;
return writeFile(
path.join(
`packages/${workspace}/`,
"Source",
"Shaders",
"Builtin",
"CzmBuiltins.js"
),
fileContents
);
}
const externalResolvePlugin = {
name: "external-cesium",
setup: (build) => {
// In Specs, when we import files from the source files, we import
// them from the index.js files. This plugin replaces those imports
// with the IIFE Cesium.js bundle that's loaded in the browser
// in SpecRunner.html.
build.onResolve({ filter: new RegExp(`index\.js$`) }, () => {
return {
path: "Cesium",
namespace: "external-cesium",
};
});
build.onResolve({ filter: /@cesium/ }, () => {
return {
path: "Cesium",
namespace: "external-cesium",
};
});
build.onLoad(
{
filter: new RegExp(`^Cesium$`),
namespace: "external-cesium",
},
() => {
const contents = `module.exports = Cesium`;
return {
contents,
};
}
);
},
};
/**
* Creates a template html file in the Sandcastle app listing the gallery of demos
* @param {boolean} [noDevelopmentGallery=false] true if the development gallery should not be included in the list
* @returns {Promise<any>}
*/
export async function createGalleryList(noDevelopmentGallery) {
const demoObjects = [];
const demoJSONs = [];
const output = path.join("Apps", "Sandcastle", "gallery", "gallery-index.js");
const fileList = ["Apps/Sandcastle/gallery/**/*.html"];
if (noDevelopmentGallery) {
fileList.push("!Apps/Sandcastle/gallery/development/**/*.html");
}
// On travis, the version is set to something like '1.43.0-branch-name-travisBuildNumber'
// We need to extract just the Major.Minor version
const majorMinor = packageJson.version.match(/^(.*)\.(.*)\./);
const major = majorMinor[1];
const minor = Number(majorMinor[2]) - 1; // We want the last release, not current release
const tagVersion = `${major}.${minor}`;
// Get an array of demos that were added since the last release.
// This includes newly staged local demos as well.
let newDemos = [];
try {
newDemos = child_process
.execSync(
`git diff --name-only --diff-filter=A ${tagVersion} Apps/Sandcastle/gallery/*.html`,
{ stdio: ["pipe", "pipe", "ignore"] }
)
.toString()
.trim()
.split("\n");
} catch (e) {
// On a Cesium fork, tags don't exist so we can't generate the list.
}
let helloWorld;
const files = await globby(fileList);
files.forEach(function (file) {
const demo = filePathToModuleId(
path.relative("Apps/Sandcastle/gallery", file)
);
const demoObject = {
name: demo,
isNew: newDemos.includes(file),
};
if (existsSync(`${file.replace(".html", "")}.jpg`)) {
demoObject.img = `${demo}.jpg`;
}
demoObjects.push(demoObject);
if (demo === "Hello World") {
helloWorld = demoObject;
}
});
demoObjects.sort(function (a, b) {
if (a.name < b.name) {
return -1;
} else if (a.name > b.name) {
return 1;
}
return 0;
});
const helloWorldIndex = Math.max(demoObjects.indexOf(helloWorld), 0);
for (let i = 0; i < demoObjects.length; ++i) {
demoJSONs[i] = JSON.stringify(demoObjects[i], null, 2);
}
const contents = `\
// This file is automatically rebuilt by the Cesium build process.\n\
const hello_world_index = ${helloWorldIndex};\n\
const VERSION = '${version}';\n\
const gallery_demos = [${demoJSONs.join(", ")}];\n\
const has_new_gallery_demos = ${newDemos.length > 0 ? "true;" : "false;"}\n`;
await writeFile(output, contents);
// Compile CSS for Sandcastle
return esbuild.build({
entryPoints: [
path.join("Apps", "Sandcastle", "templates", "bucketRaw.css"),
],
minify: true,
banner: {
css:
"/* This file is automatically rebuilt by the Cesium build process. */\n",
},
outfile: path.join("Apps", "Sandcastle", "templates", "bucket.css"),
});
}
/**
* Helper function to copy files.
*
* @param {string[]} globs The file globs to be copied.
* @param {string} destination The path to copy the files to.
* @param {string} base The base path to omit from the globs when files are copied. Defaults to "".
* @returns {Promise<Buffer>} A promise containing the stream output as a buffer.
*/
export async function copyFiles(globs, destination, base) {
const stream = gulp
.src(globs, { nodir: true, base: base ?? "" })
.pipe(gulp.dest(destination));
return streamToPromise(stream);
}
/**
* Copy assets from engine.
*
* @param {string} destination The path to copy files to.
* @returns {Promise<void>} A promise that completes when all assets are copied to the destination.
*/
export async function copyEngineAssets(destination) {
const engineStaticAssets = [
"packages/engine/Source/**",
"!packages/engine/Source/Workers/package.json",
"!packages/engine/Source/**/*.js",
"!packages/engine/Source/**/*.glsl",
"!packages/engine/Source/**/*.css",
"!packages/engine/Source/**/*.md",
];
await copyFiles(engineStaticAssets, destination, "packages/engine/Source");
// Since the CesiumWidget was part of the Widgets folder, the files must be manually
// copied over to the right directory.
await copyFiles(
["packages/engine/Source/Widget/**", "!packages/engine/Source/Widget/*.js"],
path.join(destination, "Widgets/CesiumWidget"),
"packages/engine/Source/Widget"
);
}
/**
* Copy assets from widgets.
*
* @param {string} destination The path to copy files to.
* @returns {Promise<void>} A promise that completes when all assets are copied to the destination.
*/
export async function copyWidgetsAssets(destination) {
const widgetsStaticAssets = [
"packages/widgets/Source/**",
"!packages/widgets/Source/**/*.js",
"!packages/widgets/Source/**/*.css",
"!packages/widgets/Source/**/*.glsl",
"!packages/widgets/Source/**/*.md",
];
await copyFiles(widgetsStaticAssets, destination, "packages/widgets/Source");
}
/**
* Creates .jshintrc for use in Sandcastle
* @returns {Buffer} contents
*/
export async function createJsHintOptions() {
const jshintrc = JSON.parse(
await readFile(path.join("Apps", "Sandcastle", ".jshintrc"), {
encoding: "utf8",
})
);
const contents = `\
// This file is automatically rebuilt by the Cesium build process.\n\
const sandcastleJsHintOptions = ${JSON.stringify(jshintrc, null, 4)};\n`;
await writeFile(
path.join("Apps", "Sandcastle", "jsHintOptions.js"),
contents
);
return contents;
}
/**
* Bundles spec files for testing in the browser and on the command line with karma.
* @param {object} options
* @param {boolean} [options.incremental=false] true if the build should be cached for repeated rebuilds
* @param {boolean} [options.write=false] true if build output should be written to disk. If false, the files that would have been written as in-memory buffers
* @returns {Promise<any>}
*/
export function bundleCombinedSpecs(options) {
options = options || {};
let build = esbuild.build;
if (options.incremental) {
build = esbuild.context;
}
return build({
entryPoints: [
"Specs/spec-main.js",
"Specs/SpecList.js",
"Specs/karma-main.js",
],
bundle: true,
format: "esm",
sourcemap: true,
target: "es2020",
outdir: path.join("Build", "Specs"),
plugins: [externalResolvePlugin],
external: [`http`, `https`, `url`, `zlib`],
write: options.write,
});
}
/**
* Creates the index.js for a package.
*
* @param {string} workspace The workspace to create the index.js for.
* @returns
*/
export async function createIndexJs(workspace) {
let contents = `globalThis.CESIUM_VERSION = "${version}";\n`;
// Iterate over all provided source files for the workspace and export the assignment based on file name.
const workspaceSources = workspaceSourceFiles[workspace];
if (!workspaceSources) {
console.error(`Unable to find source files for workspace: ${workspace}`);
process.exit(-1);
}
const files = await globby(workspaceSources);
files.forEach(function (file) {
file = path.relative(`packages/${workspace}`, file);
let moduleId = file;
moduleId = filePathToModuleId(moduleId);
// Rename shader files, such that ViewportQuadFS.glsl is exported as _shadersViewportQuadFS in JS.
let assignmentName = path.basename(file, path.extname(file));
if (moduleId.indexOf(`Source/Shaders/`) === 0) {
assignmentName = `_shaders${assignmentName}`;
}
assignmentName = assignmentName.replace(/(\.|-)/g, "_");
contents += `export { default as ${assignmentName} } from './${moduleId}.js';${EOL}`;
});
await writeFile(`packages/${workspace}/index.js`, contents, {
encoding: "utf-8",
});
return contents;
}
/**
* Creates a single entry point file by importing all individual spec files.
* @param {string[]} files The individual spec files.
* @param {string} workspace The workspace.
* @param {string} outputPath The path the file is written to.
*/
async function createSpecListForWorkspace(files, workspace, outputPath) {
let contents = "";
files.forEach(function (file) {
contents += `import './${filePathToModuleId(file).replace(
`packages/${workspace}/Specs/`,
""
)}.js';\n`;
});
await writeFile(outputPath, contents, {
encoding: "utf-8",
});
return contents;
}
/**
* Bundles CSS files.
*
* @param {object} options
* @param {string[]} options.filePaths The file paths to bundle.
* @param {boolean} options.sourcemap
* @param {boolean} options.minify
* @param {string} options.outdir The output directory.
* @param {string} options.outbase The
*/
async function bundleCSS(options) {
// Configure options for esbuild.
const esBuildOptions = defaultESBuildOptions();
esBuildOptions.entryPoints = await globby(options.filePaths);
esBuildOptions.loader = {
".gif": "text",
".png": "text",
};
esBuildOptions.sourcemap = options.sourcemap;
esBuildOptions.minify = options.minify;
esBuildOptions.outdir = options.outdir;
esBuildOptions.outbase = options.outbase;
await esbuild.build(esBuildOptions);
}
const workspaceCssFiles = {
engine: ["packages/engine/Source/**/*.css"],
widgets: ["packages/widgets/Source/**/*.css"],
};
/**
* Bundles spec files for testing in the browser.
*
* @param {object} options
* @param {boolean} [options.incremental=false] True if builds should be generated incrementally.
* @param {string} options.outbase The base path the output files are relative to.
* @param {string} options.outdir The directory to place the output in.
* @param {string} options.specListFile The path to the SpecList.js file
* @param {boolean} [options.write=true] True if bundles generated are written to files instead of in-memory buffers.
* @returns {object} The bundle generated from Specs.
*/
async function bundleSpecs(options) {
const incremental = options.incremental ?? true;
const write = options.write ?? true;
const buildOptions = {
bundle: true,
format: "esm",
outdir: options.outdir,
sourcemap: true,
external: ["https", "http", "zlib", "url"],
target: "es2020",
write: write,
};
let build = esbuild.build;
if (incremental) {
build = esbuild.context;
}
// When bundling specs for a workspace, the spec-main.js and karma-main.js
// are bundled separately since they use a different outbase than the workspace's SpecList.js.
await build({
...buildOptions,
entryPoints: ["Specs/spec-main.js", "Specs/karma-main.js"],
});
return build({
...buildOptions,
entryPoints: [options.specListFile],
outbase: options.outbase,
});
}
/**
* Builds the engine workspace.
*
* @param {object} options
* @param {boolean} [options.incremental=false] True if builds should be generated incrementally.
* @param {boolean} [options.minify=false] True if bundles should be minified.
* @param {boolean} [options.write=true] True if bundles generated are written to files instead of in-memory buffers.
*/
export const buildEngine = async (options) => {
options = options || {};
const incremental = options.incremental ?? false;
const minify = options.minify ?? false;
const write = options.write ?? true;