forked from AssemblyScript/assemblyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasinit
More file actions
255 lines (240 loc) Β· 8.65 KB
/
asinit
File metadata and controls
255 lines (240 loc) Β· 8.65 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
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
#!/usr/bin/env node
const fs = require("fs");
const path = require("path");
const colors = require("../cli/util/colors");
const version = require("../package.json").version;
if (process.argv.length != 3 || process.argv[2] == "--help" || process.argv[2] == "-h") printHelp();
function printHelp() {
console.log([
"Sets up a new AssemblyScript project or updates an existing one.",
"For example, to create a new project in the current directory:",
"",
" " + colors.cyan("asinit") + " .",
].join("\n"));
process.exit(0);
}
const rl = require("readline").createInterface({
input: process.stdin,
output: process.stdout
});
const projectDir = path.resolve(process.argv[2]);
const compilerDir = path.join(__dirname, "..");
const compilerVersion = require(path.join(compilerDir, "package.json")).version;
const assemblyDir = path.join(projectDir, "assembly");
const tsconfigFile = path.join(assemblyDir, "tsconfig.json");
const tsconfigBase = path.relative(assemblyDir, path.join(compilerDir, "std", "assembly.json"));
const entryFile = path.join(assemblyDir, "index.ts");
const buildDir = path.join(projectDir, "build");
const gitignoreFile = path.join(buildDir, ".gitignore");
const packageFile = path.join(projectDir, "package.json");
const indexFile = path.join(projectDir, "index.js");
console.log([
"Version: " + version,
"",
colors.white([
"This command will make sure that the following files exist in the project",
"directory '" + projectDir + "':"
].join("\n")),
"",
colors.cyan(" ./assembly"),
" Directory holding the AssemblyScript sources being compiled to WebAssembly.",
"",
colors.cyan(" ./assembly/tsconfig.json"),
" TypeScript configuration inheriting recommended AssemblyScript settings.",
"",
colors.cyan(" ./assembly/index.ts"),
" Exemplary entry file being compiled to WebAssembly to get you started.",
"",
colors.cyan(" ./build"),
" Build artifact directory where compiled WebAssembly files are stored.",
"",
colors.cyan(" ./build/.gitignore"),
" Git configuration that excludes compiled binaries from source control.",
"",
colors.cyan(" ./index.js"),
" Main file loading the WebAssembly module and exporting its exports.",
"",
colors.cyan(" ./package.json"),
" Package info containing the necessary commands to compile to WebAssembly.",
"",
"The command will try to update existing files to match the correct settings",
"for this instance of the compiler in '" + compilerDir + "'.",
""
].join("\n"));
rl.question(colors.white("Do you want to proceed?") + " [Y/n] ", answer => {
if (!/^y?$/i.test(answer)) {
process.exit(1);
return;
}
console.log();
ensureProjectDirectory();
ensureAssemblyDirectory();
ensureTsconfigJson();
ensureEntryFile();
ensureBuildDirectory();
ensureGitignore();
ensurePackageJson();
ensureIndexJs();
console.log([
colors.green("Done!"),
"",
"To edit the entry file, open '" + colors.cyan("assembly/index.ts") + "' in your editor of choice.",
"Create as many additional files as necessary and use them as imports.",
"",
"To build the entry file to WebAssembly when you are ready, run:",
"",
colors.white(" npm run asbuild"),
"",
"Running the command above creates the following binaries incl. their respective",
"text format representations and source maps:",
"",
colors.cyan(" ./build/untouched.wasm"),
colors.cyan(" ./build/untouched.wasm.map"),
colors.cyan(" ./build/untouched.wat"),
"",
" ^ The untouched WebAssembly module as generated by the compiler.",
" This one matches your sources exactly, without any optimizations.",
"",
colors.cyan(" ./build/optimized.wasm"),
colors.cyan(" ./build/optimized.wasm.map"),
colors.cyan(" ./build/optimized.wat"),
"",
" ^ The optimized WebAssembly module using default optimization settings (-O2s).",
" You can change the optimization settings in '" + colors.cyan("package.json")+ "'.",
"",
colors.white("Additional documentation is available at the AssemblyScript wiki:"),
"",
" https://github.com/AssemblyScript/assemblyscript/wiki",
"",
"Have a nice day!"
].join("\n"));
rl.close();
});
function ensureProjectDirectory() {
console.log("- Making sure that the project directory exists...");
if (!fs.existsSync(projectDir)) {
fs.mkdirSync(projectDir);
console.log(colors.green(" Created: ") + projectDir);
} else {
console.log(colors.yellow(" Exists: ") + projectDir);
}
console.log();
}
function ensureAssemblyDirectory() {
console.log("- Making sure that the 'assembly' directory exists...");
if (!fs.existsSync(assemblyDir)) {
fs.mkdirSync(assemblyDir);
console.log(colors.green(" Created: ") + assemblyDir);
} else {
console.log(colors.yellow(" Exists: ") + assemblyDir);
}
console.log();
}
function ensureTsconfigJson() {
console.log("- Making sure that 'assembly/tsconfig.json' is set up...");
const base = tsconfigBase.replace(/\\/g, "/");
if (!fs.existsSync(tsconfigFile)) {
fs.writeFileSync(tsconfigFile, JSON.stringify({
"extends": base,
"include": [
"./**/*.ts"
]
}, null, 2));
console.log(colors.green(" Created: ") + tsconfigFile);
} else {
let tsconfig = JSON.parse(fs.readFileSync(tsconfigFile, "utf8"));
tsconfig["extends"] = base;
fs.writeFileSync(tsconfigFile, JSON.stringify(tsconfig, null, 2));
console.log(colors.green(" Updated: ") + tsconfigFile);
}
console.log();
}
function ensureEntryFile() {
console.log("- Making sure that 'assembly/index.ts' exists...");
if (!fs.existsSync(entryFile)) {
fs.writeFileSync(entryFile, [
"// The entry file of your WebAssembly module.",
"",
"export function add(a: i32, b: i32): i32 {",
" return a + b;",
"}"
].join("\n") + "\n");
console.log(colors.green(" Created: ") + entryFile);
} else {
console.log(colors.yellow(" Exists: ") + entryFile);
}
console.log();
}
function ensureBuildDirectory() {
console.log("- Making sure that the 'build' directory exists...");
if (!fs.existsSync(buildDir)) {
fs.mkdirSync(buildDir);
console.log(colors.green(" Created: ") + buildDir);
} else {
console.log(colors.yellow(" Exists: ") + buildDir);
}
console.log();
}
function ensureGitignore() {
console.log("- Making sure that 'build/.gitignore' is set up...");
if (!fs.existsSync(gitignoreFile)) {
fs.writeFileSync(gitignoreFile, [
"*.wasm",
"*.wasm.map",
"*.asm.js"
].join("\n") + "\n");
console.log(colors.green(" Created: ") + gitignoreFile);
} else {
console.log(colors.yellow(" Exists: ") + gitignoreFile);
}
console.log();
}
function ensurePackageJson() {
console.log("- Making sure that 'package.json' contains the build commands...")
const entryPath = path.relative(projectDir, entryFile).replace(/\\/g, "/");
const buildUntouched = "asc " + entryPath + " -b build/untouched.wasm -t build/untouched.wat --sourceMap --validate --debug";
const buildOptimized = "asc " + entryPath + " -b build/optimized.wasm -t build/optimized.wat --sourceMap --validate --optimize";
const buildAll = "npm run asbuild:untouched && npm run asbuild:optimized";
if (!fs.existsSync(packageFile)) {
fs.writeFileSync(packageFile, JSON.stringify({
"scripts": {
"asbuild:untouched": buildUntouched,
"asbuild:optimized": buildOptimized,
"asbuild": buildAll
}
}, null, 2));
console.log(colors.green(" Created: ") + packageFile);
} else {
let pkg = JSON.parse(fs.readFileSync(packageFile));
let scripts = pkg["scripts"];
if (!scripts) scripts = {};
if (!scripts["asbuild"]) {
scripts["asbuild:untouched"] = buildUntouched;
scripts["asbuild:optimized"] = buildOptimized;
scripts["asbuild"] = buildAll;
pkg["scripts"] = scripts;
fs.writeFileSync(packageFile, JSON.stringify(pkg, null, 2));
console.log(colors.green(" Updated: ") + packageFile);
} else {
console.log(colors.yellow(" Exists: ") + packageFile);
}
}
console.log();
}
function ensureIndexJs() {
console.log("- Making sure that 'index.js' exists...");
if (!fs.existsSync(indexFile)) {
fs.writeFileSync(indexFile, [
"const fs = require(\"fs\");",
"const compiled = new WebAssembly.Module(fs.readFileSync(__dirname + \"/build/optimized.wasm\"));",
"const imports = {};",
"Object.defineProperty(module, \"exports\", {",
" get: () => new WebAssembly.Instance(compiled, imports).exports",
"});",
].join("\n") + "\n");
console.log(colors.green(" Created: ") + indexFile);
} else {
console.log(colors.yellow(" Exists: ") + indexFile);
}
console.log();
}