This repository was archived by the owner on Aug 7, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsnapshot-generator.js
185 lines (158 loc) · 8.07 KB
/
snapshot-generator.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
const fs = require("fs");
const { dirname, join } = require("path");
const os = require("os");
const child_process = require("child_process");
const shelljs = require("shelljs");
const { createDirectory, downloadFile } = require("./utils");
const NDK_BUILD_SEED_PATH = join(__dirname, "snapshot-generator-tools/ndk-build");
const BUNDLE_PREAMBLE_PATH = join(__dirname, "snapshot-generator-tools/bundle-preamble.js");
const BUNDLE_ENDING_PATH = join(__dirname, "snapshot-generator-tools/bundle-ending.js");
const INCLUDE_GRADLE_PATH = join(__dirname, "snapshot-generator-tools/include.gradle");
const MKSNAPSHOT_TOOLS_DOWNLOAD_ROOT_URL = "https://raw.githubusercontent.com/NativeScript/mksnapshot-tools/production/";
const SNAPSHOT_BLOB_NAME = "TNSSnapshot";
function shellJsExecuteInDir(dir, action) {
const currentDir = shelljs.pwd();
shelljs.cd(dir);
try {
action();
} finally {
shelljs.cd(currentDir);
}
}
function getHostOS() {
const hostOS = os.type().toLowerCase();
if (hostOS.startsWith("darwin"))
return "darwin";
if (hostOS.startsWith("linux"))
return "linux";
if (hostOS.startsWith("win"))
return "win";
return hostOS;
}
function SnapshotGenerator(options) {
this.buildPath = options.buildPath || join(__dirname, "build");
}
module.exports = SnapshotGenerator;
SnapshotGenerator.SNAPSHOT_PACKAGE_NANE = "nativescript-android-snapshot";
SnapshotGenerator.prototype.preprocessInputFiles = function(inputFiles, outputFile) {
// Make some modifcations on the original bundle and save it on the specified path
const bundlePreambleContent = fs.readFileSync(BUNDLE_PREAMBLE_PATH, "utf8");
const bundleEndingContent = fs.readFileSync(BUNDLE_ENDING_PATH, "utf8");
const inputFilesContent = inputFiles.map(file => fs.readFileSync(file, "utf8")).join("\n");
const snapshotFileContent = bundlePreambleContent + "\n" + inputFilesContent + "\n" + bundleEndingContent;
fs.writeFileSync(outputFile, snapshotFileContent, { encoding: "utf8" });
}
const snapshotToolsDownloads = {};
SnapshotGenerator.prototype.downloadMksnapshotTool = function(snapshotToolsPath, v8Version, targetArch) {
const hostOS = getHostOS();
const mksnapshotToolRelativePath = join("mksnapshot-tools", "v8-v" + v8Version, hostOS + "-" + os.arch(), "mksnapshot-" + targetArch);
const mksnapshotToolPath = join(snapshotToolsPath, mksnapshotToolRelativePath);
if (fs.existsSync(mksnapshotToolPath))
return Promise.resolve(mksnapshotToolPath);
if (snapshotToolsDownloads[mksnapshotToolPath])
return snapshotToolsDownloads[mksnapshotToolPath];
const downloadUrl = MKSNAPSHOT_TOOLS_DOWNLOAD_ROOT_URL + mksnapshotToolRelativePath;
createDirectory(dirname(mksnapshotToolPath));
snapshotToolsDownloads[mksnapshotToolPath] = downloadFile(downloadUrl, mksnapshotToolPath);
return snapshotToolsDownloads[mksnapshotToolPath];
}
SnapshotGenerator.prototype.convertToAndroidArchName = function(archName) {
switch (archName) {
case "arm": return "armeabi-v7a";
case "arm64": return "arm64-v8a";
case "ia32": return "x86";
case "x64": return "x64";
default: return archName;
}
}
SnapshotGenerator.prototype.runMksnapshotTool = function(snapshotToolsPath, inputFile, v8Version, targetArchs, buildCSource, mksnapshotParams) {
// Cleans the snapshot build folder
shelljs.rm("-rf", join(this.buildPath, "snapshots"));
const mksnapshotStdErrPath = join(this.buildPath, "mksnapshot-stderr.txt");
return Promise.all(targetArchs.map((arch) => {
return this.downloadMksnapshotTool(snapshotToolsPath, v8Version, arch).then((currentArchMksnapshotToolPath) => {
if (!fs.existsSync(currentArchMksnapshotToolPath)) {
throw new Error("Can't find mksnapshot tool for " + arch + " at path " + currentArchMksnapshotToolPath);
}
const androidArch = this.convertToAndroidArchName(arch);
console.log("***** Generating snapshot for " + androidArch + " *****");
// Generate .blob file
const currentArchBlobOutputPath = join(this.buildPath, "snapshots/blobs", androidArch);
shelljs.mkdir("-p", currentArchBlobOutputPath);
var params = "--profile_deserialization";
if (mksnapshotParams) {
// Starting from android runtime 5.3.0, the parameters passed to mksnapshot are read from the settings.json file
params = mksnapshotParams;
}
const command = `${currentArchMksnapshotToolPath} ${inputFile} --startup_blob ${join(currentArchBlobOutputPath, `${SNAPSHOT_BLOB_NAME}.blob`)} ${params}`;
return new Promise((resolve, reject) => {
const child = child_process.exec(command, {encoding: "utf8"}, (error, stdout, stderr) => {
const errorHeader = `Target architecture: ${androidArch}\n`;
if (stderr.length) {
const message = `${errorHeader}${stderr}`;
reject(new Error(message));
} else if (error) {
error.message = `${errorHeader}${error.message}`;
reject(error);
} else {
console.log(stdout);
resolve();
}
})
}).then(() => {
// Generate .c file
if (buildCSource) {
const currentArchSrcOutputPath = join(this.buildPath, "snapshots/src", androidArch);
shelljs.mkdir("-p", currentArchSrcOutputPath);
shellJsExecuteInDir(currentArchBlobOutputPath, function() {
shelljs.exec(`xxd -i ${SNAPSHOT_BLOB_NAME}.blob > ${join(currentArchSrcOutputPath, `${SNAPSHOT_BLOB_NAME}.c`)}`);
});
}
});
});
})).then(() => {
console.log("***** Finished generating snapshots. *****");
});
}
SnapshotGenerator.prototype.buildSnapshotLibs = function(androidNdkBuildPath, targetArchs) {
// Compile *.c files to produce *.so libraries with ndk-build tool
const ndkBuildPath = join(this.buildPath, "ndk-build");
const androidArchs = targetArchs.map(arch => this.convertToAndroidArchName(arch));
console.log("Building native libraries for " + androidArchs.join());
shelljs.rm("-rf", ndkBuildPath);
shelljs.cp("-r", NDK_BUILD_SEED_PATH, ndkBuildPath);
fs.writeFileSync(join(ndkBuildPath, "jni/Application.mk"), "APP_ABI := " + androidArchs.join(" ")); // create Application.mk file
shelljs.mv(join(this.buildPath, "snapshots/src/*"), join(ndkBuildPath, "jni"));
shellJsExecuteInDir(ndkBuildPath, function(){
shelljs.exec(androidNdkBuildPath);
});
return join(ndkBuildPath, "libs");
}
SnapshotGenerator.prototype.buildIncludeGradle = function() {
shelljs.cp(INCLUDE_GRADLE_PATH, join(this.buildPath, "include.gradle"));
}
SnapshotGenerator.prototype.generate = function(options) {
// Arguments validation
options = options || {};
if (!options.v8Version) { throw new Error("No v8 version specified."); }
if (!options.snapshotToolsPath) { throw new Error("snapshotToolsPath option is not specified."); }
const preprocessedInputFile = options.preprocessedInputFile || join(this.buildPath, "inputFile.preprocessed");
console.log("***** Starting snapshot generation using V8 version: ", options.v8Version);
this.preprocessInputFiles(options.inputFiles, preprocessedInputFile);
// generates the actual .blob and .c files
return this.runMksnapshotTool(
options.snapshotToolsPath,
preprocessedInputFile,
options.v8Version,
options.targetArchs,
options.useLibs,
options.mksnapshotParams
).then(() => {
this.buildIncludeGradle();
if (options.useLibs) {
const androidNdkBuildPath = options.androidNdkPath ? join(options.androidNdkPath, "ndk-build") : "ndk-build";
this.buildSnapshotLibs(androidNdkBuildPath, options.targetArchs);
}
return this.buildPath;
});
}