deno_lib 2.0.9

Provides the deno library
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
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

use std::env;
use std::path::PathBuf;

use deno_runtime::*;

mod ts {
    use std::env;

    use deno_core::error::custom_error;
    use deno_core::error::AnyError;
    use deno_core::op2;
    use deno_core::snapshot::*;
    use deno_core::OpState;
    use serde::Serialize;
    use std::collections::HashMap;
    use std::io::Write;
    use std::path::Path;
    use std::path::PathBuf;

    // use deno_webgpu_get_declaration from the external context
    use crate::deno_webgpu_get_declaration;

    #[derive(Debug, Serialize)]
    #[serde(rename_all = "camelCase")]
    struct BuildInfoResponse {
        build_specifier: String,
        libs: Vec<String>,
    }

    #[op2]
    #[serde]
    fn op_build_info(state: &mut OpState) -> BuildInfoResponse {
        let build_specifier = "asset:///bootstrap.ts".to_string();
        let build_libs = state
            .borrow::<Vec<&str>>()
            .iter()
            .map(|s| s.to_string())
            .collect();
        BuildInfoResponse {
            build_specifier,
            libs: build_libs,
        }
    }

    #[op2(fast)]
    fn op_is_node_file() -> bool {
        false
    }

    #[op2]
    #[string]
    fn op_script_version(
        _state: &mut OpState,
        #[string] _arg: &str,
    ) -> Result<Option<String>, AnyError> {
        Ok(Some("1".to_string()))
    }

    #[derive(Debug, Serialize)]
    #[serde(rename_all = "camelCase")]
    struct LoadResponse {
        data: String,
        version: String,
        script_kind: i32,
    }

    #[op2]
    #[serde]
    // using the same op that is used in `src.rs` for loading modules and reading
    // files, but a slightly different implementation at build time.
    fn op_load(
        state: &mut OpState,
        #[string] load_specifier: &str,
    ) -> Result<LoadResponse, AnyError> {
        let op_crate_libs = state.borrow::<HashMap<&str, PathBuf>>();
        let path_dts = state.borrow::<PathBuf>();
        let re_asset = lazy_regex::regex!(r"asset:/{3}lib\.(\S+)\.d\.ts");
        let build_specifier = "asset:///bootstrap.ts";

        // we need a basic file to send to src to warm it up.
        if load_specifier == build_specifier {
            Ok(LoadResponse {
                data: r#"Deno.writeTextFile("hello.txt", "hello deno!");"#.to_string(),
                version: "1".to_string(),
                // this corresponds to `ts.ScriptKind.TypeScript`
                script_kind: 3,
            })
            // specifiers come across as `asset:///lib.{lib_name}.d.ts` and we need to
            // parse out just the name so we can lookup the asset.
        } else if let Some(caps) = re_asset.captures(load_specifier) {
            if let Some(lib) = caps.get(1).map(|m| m.as_str()) {
                // if it comes from an op crate, we were supplied with the path to the
                // file.
                let path = if let Some(op_crate_lib) = op_crate_libs.get(lib) {
                    PathBuf::from(op_crate_lib).canonicalize()?
                    // otherwise we will generate the path ourself
                } else {
                    path_dts.join(format!("lib.{lib}.d.ts"))
                };
                let data = std::fs::read_to_string(path)?;
                Ok(LoadResponse {
                    data,
                    version: "1".to_string(),
                    // this corresponds to `ts.ScriptKind.TypeScript`
                    script_kind: 3,
                })
            } else {
                Err(custom_error(
                    "InvalidSpecifier",
                    format!("An invalid specifier was requested: {}", load_specifier),
                ))
            }
        } else {
            Err(custom_error(
                "InvalidSpecifier",
                format!("An invalid specifier was requested: {}", load_specifier),
            ))
        }
    }

    deno_core::extension!(deno_tsc,
      ops = [op_build_info, op_is_node_file, op_load, op_script_version],
      js = [
        dir "tsc",
        "00_typescript.js",
        "99_main_compiler.js",
      ],
      options = {
        op_crate_libs: HashMap<&'static str, PathBuf>,
        build_libs: Vec<&'static str>,
        path_dts: PathBuf,
      },
      state = |state, options| {
        state.put(options.op_crate_libs);
        state.put(options.build_libs);
        state.put(options.path_dts);
      },
    );

    pub fn create_compiler_snapshot(snapshot_path: PathBuf, cwd: &Path) {
        // libs that are being provided by op crates.
        let mut op_crate_libs = HashMap::new();
        op_crate_libs.insert("deno.cache", deno_cache::get_declaration());
        op_crate_libs.insert("deno.console", deno_console::get_declaration());
        op_crate_libs.insert("deno.url", deno_url::get_declaration());
        op_crate_libs.insert("deno.web", deno_web::get_declaration());
        op_crate_libs.insert("deno.fetch", deno_fetch::get_declaration());
        op_crate_libs.insert("deno.webgpu", deno_webgpu_get_declaration());
        op_crate_libs.insert("deno.websocket", deno_websocket::get_declaration());
        op_crate_libs.insert("deno.webstorage", deno_webstorage::get_declaration());
        op_crate_libs.insert("deno.canvas", deno_canvas::get_declaration());
        op_crate_libs.insert("deno.crypto", deno_crypto::get_declaration());
        op_crate_libs.insert(
            "deno.broadcast_channel",
            deno_broadcast_channel::get_declaration(),
        );
        op_crate_libs.insert("deno.net", deno_net::get_declaration());

        // ensure we invalidate the build properly.
        for (_, path) in op_crate_libs.iter() {
            println!("cargo:rerun-if-changed={}", path.display());
        }

        // libs that should be loaded into the isolate before snapshotting.
        let libs = vec![
            // Deno custom type libraries
            "deno.window",
            "deno.worker",
            "deno.shared_globals",
            "deno.ns",
            "deno.unstable",
            // Deno built-in type libraries
            "decorators",
            "decorators.legacy",
            "es5",
            "es2015.collection",
            "es2015.core",
            "es2015",
            "es2015.generator",
            "es2015.iterable",
            "es2015.promise",
            "es2015.proxy",
            "es2015.reflect",
            "es2015.symbol",
            "es2015.symbol.wellknown",
            "es2016.array.include",
            "es2016.intl",
            "es2016",
            "es2017",
            "es2017.date",
            "es2017.intl",
            "es2017.object",
            "es2017.sharedmemory",
            "es2017.string",
            "es2017.typedarrays",
            "es2018.asyncgenerator",
            "es2018.asynciterable",
            "es2018",
            "es2018.intl",
            "es2018.promise",
            "es2018.regexp",
            "es2019.array",
            "es2019",
            "es2019.intl",
            "es2019.object",
            "es2019.string",
            "es2019.symbol",
            "es2020.bigint",
            "es2020",
            "es2020.date",
            "es2020.intl",
            "es2020.number",
            "es2020.promise",
            "es2020.sharedmemory",
            "es2020.string",
            "es2020.symbol.wellknown",
            "es2021",
            "es2021.intl",
            "es2021.promise",
            "es2021.string",
            "es2021.weakref",
            "es2022",
            "es2022.array",
            "es2022.error",
            "es2022.intl",
            "es2022.object",
            "es2022.regexp",
            "es2022.sharedmemory",
            "es2022.string",
            "es2023",
            "es2023.array",
            "es2023.collection",
            "es2023.intl",
            "esnext",
            "esnext.array",
            "esnext.collection",
            "esnext.decorators",
            "esnext.disposable",
            "esnext.intl",
            "esnext.iterator",
            "esnext.object",
            "esnext.promise",
            "esnext.regexp",
            "esnext.string",
        ];

        let path_dts = cwd.join("tsc/dts");
        // ensure we invalidate the build properly.
        for name in libs.iter() {
            println!(
                "cargo:rerun-if-changed={}",
                path_dts.join(format!("lib.{name}.d.ts")).display()
            );
        }

        // create a copy of the vector that includes any op crate libs to be passed
        // to the JavaScript compiler to build into the snapshot
        let mut build_libs = libs.clone();
        for (op_lib, _) in op_crate_libs.iter() {
            build_libs.push(op_lib.to_owned());
        }

        // used in the tests to verify that after snapshotting it has the same number
        // of lib files loaded and hasn't included any ones lazily loaded from Rust
        std::fs::write(
            PathBuf::from(env::var_os("OUT_DIR").unwrap()).join("lib_file_names.json"),
            serde_json::to_string(&build_libs).unwrap(),
        )
        .unwrap();

        let output = create_snapshot(
            CreateSnapshotOptions {
                cargo_manifest_dir: env!("CARGO_MANIFEST_DIR"),
                startup_snapshot: None,
                extensions: vec![deno_tsc::init_ops_and_esm(
                    op_crate_libs,
                    build_libs,
                    path_dts,
                )],
                extension_transpiler: None,
                with_runtime_cb: None,
                skip_op_registration: false,
            },
            None,
        )
        .unwrap();

        // NOTE(bartlomieju): Compressing the snapshot in debug build took
        // ~45s on M1 MacBook Pro; without compression it took ~1s.
        // Thus we're not using compressed snapshot, trading off
        // a lot of build time for some startup time in debug build.
        let mut file = std::fs::File::create(snapshot_path).unwrap();
        if cfg!(debug_assertions) {
            file.write_all(&output.output).unwrap();
        } else {
            let mut vec = Vec::with_capacity(output.output.len());
            vec.extend((output.output.len() as u32).to_le_bytes());
            vec.extend_from_slice(
                &zstd::bulk::compress(&output.output, 22).expect("snapshot compression failed"),
            );
            file.write_all(&vec).unwrap();
        }

        for path in output.files_loaded_during_snapshot {
            println!("cargo:rerun-if-changed={}", path.display());
        }
    }

    pub(crate) fn version() -> String {
        let file_text = std::fs::read_to_string("tsc/00_typescript.js").unwrap();
        let version_text = " version = \"";
        for line in file_text.lines() {
            if let Some(index) = line.find(version_text) {
                let remaining_line = &line[index + version_text.len()..];
                return remaining_line[..remaining_line.find('"').unwrap()].to_string();
            }
        }
        panic!("Could not find ts version.")
    }
}

#[cfg(not(feature = "hmr"))]
fn create_cli_snapshot(snapshot_path: PathBuf) {
    use deno_runtime::ops::bootstrap::SnapshotOptions;

    let snapshot_options = SnapshotOptions {
        ts_version: ts::version(),
        v8_version: deno_core::v8::VERSION_STRING,
        target: std::env::var("TARGET").unwrap(),
    };

    deno_runtime::snapshot::create_runtime_snapshot(snapshot_path, snapshot_options, vec![]);
}

fn git_commit_hash() -> String {
    if let Ok(output) = std::process::Command::new("git")
        .arg("rev-list")
        .arg("-1")
        .arg("HEAD")
        .output()
    {
        if output.status.success() {
            std::str::from_utf8(&output.stdout[..40])
                .unwrap()
                .to_string()
        } else {
            // When not in git repository
            // (e.g. when the user install by `cargo install deno`)
            "UNKNOWN".to_string()
        }
    } else {
        // When there is no git command for some reason
        "UNKNOWN".to_string()
    }
}

fn main() {
    // Skip building from docs.rs.
    if env::var_os("DOCS_RS").is_some() {
        return;
    }

    // Disable this temporarily
    // deno_napi::print_linker_flags("deno");
    // deno_napi::print_linker_flags("denort");

    // Host snapshots won't work when cross compiling.
    let target = env::var("TARGET").unwrap();
    let host = env::var("HOST").unwrap();
    let skip_cross_check = env::var("DENO_SKIP_CROSS_BUILD_CHECK").map_or(false, |v| v == "1");
    if !skip_cross_check && target != host {
        panic!("Cross compiling with snapshot is not supported.");
    }

    // To debug snapshot issues uncomment:
    // op_fetch_asset::trace_serializer();

    if let Ok(c) = env::var("DENO_CANARY") {
        println!("cargo:rustc-env=DENO_CANARY={c}");
    }
    println!("cargo:rerun-if-env-changed=DENO_CANARY");

    println!("cargo:rustc-env=GIT_COMMIT_HASH={}", git_commit_hash());
    println!("cargo:rerun-if-env-changed=GIT_COMMIT_HASH");
    println!(
        "cargo:rustc-env=GIT_COMMIT_HASH_SHORT={}",
        &git_commit_hash()[..7]
    );

    let ts_version = ts::version();
    debug_assert_eq!(ts_version, "5.6.2"); // bump this assertion when it changes
    println!("cargo:rustc-env=TS_VERSION={}", ts_version);
    println!("cargo:rerun-if-env-changed=TS_VERSION");

    println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
    println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());

    let c = PathBuf::from(env::var_os("CARGO_MANIFEST_DIR").unwrap());
    let o = PathBuf::from(env::var_os("OUT_DIR").unwrap());

    let compiler_snapshot_path = o.join("COMPILER_SNAPSHOT.bin");
    ts::create_compiler_snapshot(compiler_snapshot_path, &c);

    #[cfg(not(feature = "hmr"))]
    {
        let cli_snapshot_path = o.join("CLI_SNAPSHOT.bin");
        create_cli_snapshot(cli_snapshot_path);
    }

    #[cfg(target_os = "windows")]
    {
        let mut res = winres::WindowsResource::new();
        res.set_icon("deno.ico");
        res.set_language(winapi::um::winnt::MAKELANGID(
            winapi::um::winnt::LANG_ENGLISH,
            winapi::um::winnt::SUBLANG_ENGLISH_US,
        ));
        res.compile().unwrap();
    }
}

fn deno_webgpu_get_declaration() -> PathBuf {
    let manifest_dir = std::path::Path::new(env!("CARGO_MANIFEST_DIR"));
    manifest_dir
        .join("tsc")
        .join("dts")
        .join("lib.deno_webgpu.d.ts")
}