ferrijs-std 0.2.3

Node and web standard library for the ferrijs QuickJS runtime: WHATWG Streams, Events, AbortController, Buffer, crypto, fs, os, url, zlib and the capability model they enforce (partly derived from awslabs/llrt, Apache-2.0).
Documentation
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
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![allow(clippy::uninlined_format_args)]

use std::env;

use crate::utils::{
    module::{export_default, ModuleInfo},
    sysinfo::{ARCH, PLATFORM},
};
use rquickjs::{
    module::{Declarations, Exports, ModuleDef},
    prelude::Func,
    Ctx, Exception, Object, Result,
};

#[cfg(feature = "system")]
use sysinfo::System;

#[cfg(unix)]
use self::unix::{
    get_priority, get_release, get_type, get_user_info, get_version, set_priority, DEV_NULL, EOL,
};

#[cfg(unix)]
mod unix;

#[cfg(windows)]
use self::windows::{
    get_priority, get_release, get_type, get_user_info, get_version, set_priority, DEV_NULL, EOL,
};

#[cfg(windows)]
mod windows;

#[cfg(feature = "network")]
use self::network::get_network_interfaces;
#[cfg(feature = "statistics")]
use self::statistics::{get_cpus, get_free_mem, get_total_mem};

#[cfg(feature = "network")]
mod network;
#[cfg(feature = "statistics")]
mod statistics;

fn get_available_parallelism() -> usize {
    num_cpus::get()
}

fn get_endianness() -> &'static str {
    #[cfg(target_endian = "little")]
    {
        "LE"
    }
    #[cfg(target_endian = "big")]
    {
        "BE"
    }
}

fn get_home_dir(ctx: Ctx<'_>) -> Result<String> {
    home::home_dir()
        .map(|val| val.to_string_lossy().into_owned())
        .ok_or_else(|| Exception::throw_message(&ctx, "Could not determine home directory"))
}

#[cfg(feature = "system")]
fn get_host_name(ctx: Ctx<'_>) -> Result<String> {
    System::host_name().ok_or_else(|| Exception::throw_reference(&ctx, "System::host_name"))
}

#[cfg(feature = "system")]
fn get_load_avg() -> Vec<f64> {
    let load_avg = System::load_average();

    vec![load_avg.one, load_avg.five, load_avg.fifteen]
}

#[cfg(feature = "system")]
fn get_machine() -> String {
    System::cpu_arch()
}

fn get_tmp_dir() -> String {
    env::temp_dir().to_string_lossy().to_string()
}

#[cfg(feature = "system")]
fn get_uptime() -> u64 {
    System::uptime()
}

pub struct OsModule;

impl ModuleDef for OsModule {
    fn declare(declare: &Declarations) -> Result<()> {
        declare.declare("arch")?;
        declare.declare("availableParallelism")?;
        declare.declare("devNull")?;
        declare.declare("endianness")?;
        declare.declare("EOL")?;
        declare.declare("getPriority")?;
        declare.declare("homedir")?;
        declare.declare("platform")?;
        declare.declare("release")?;
        declare.declare("setPriority")?;
        declare.declare("tmpdir")?;
        declare.declare("type")?;
        declare.declare("userInfo")?;
        declare.declare("version")?;

        #[cfg(feature = "network")]
        {
            declare.declare("networkInterfaces")?;
        }

        #[cfg(feature = "statistics")]
        {
            declare.declare("cpus")?;
            declare.declare("freemem")?;
            declare.declare("totalmem")?;
        }
        #[cfg(feature = "system")]
        {
            declare.declare("hostname")?;
            declare.declare("loadavg")?;
            declare.declare("machine")?;
            declare.declare("uptime")?;
        }
        declare.declare("default")?;
        Ok(())
    }

    fn evaluate<'js>(ctx: &Ctx<'js>, exports: &Exports<'js>) -> Result<()> {
        export_default(ctx, exports, |default| {
            fill(default)?;
            Ok(())
        })
    }
}

/// Every `os` export on one object.
///
/// Local delta: upstream fills the module's default export inline. The
/// embedding runtime serves the same surface twice — as an ES module and
/// as a synchronous `require('os')` namespace — and both must read from one
/// place, so the body moved into a function.
pub fn fill(target: &Object<'_>) -> Result<()> {
    // LOCAL DELTA: every member that reveals something about the host
    // asks the realm's `sys` grant first (see `crate::permissions`).
    // `arch` / `platform` / `EOL` / `devNull` / `endianness` / `type` /
    // `tmpdir` / `availableParallelism` describe the binary rather than
    // the machine it runs on and stay open.
    use crate::permissions::check_sys;
    use ferrijs_permissions::SysInfo;
    use rquickjs::{function::Opt, Value};

    target.set("arch", Func::from(|| ARCH))?;
    target.set(
        "availableParallelism",
        Func::from(get_available_parallelism),
    )?;
    target.set("devNull", DEV_NULL)?;
    target.set("endianness", Func::from(get_endianness))?;
    target.set("EOL", EOL)?;
    target.set(
        "getPriority",
        Func::from(|ctx: Ctx<'_>, who: Opt<u32>| -> Result<i32> {
            check_sys(&ctx, SysInfo::Priority)?;
            Ok(get_priority(who))
        }),
    )?;
    target.set(
        "homedir",
        Func::from(|ctx: Ctx<'_>| -> Result<String> {
            check_sys(&ctx, SysInfo::HomeDir)?;
            get_home_dir(ctx)
        }),
    )?;
    target.set("platform", Func::from(|| PLATFORM))?;
    target.set(
        "release",
        Func::from(|ctx: Ctx<'_>| -> Result<&'static str> {
            check_sys(&ctx, SysInfo::OsRelease)?;
            Ok(get_release())
        }),
    )?;
    target.set(
        "setPriority",
        Func::from(|ctx: Ctx<'_>, args: rquickjs::function::Rest<Value<'_>>| -> Result<()> {
            check_sys(&ctx, SysInfo::Priority)?;
            set_priority(ctx, args)
        }),
    )?;
    target.set("tmpdir", Func::from(get_tmp_dir))?;
    target.set("type", Func::from(get_type))?;
    target.set("userInfo", Func::from(user_info_guarded))?;
    target.set(
        "version",
        Func::from(|ctx: Ctx<'_>| -> Result<&'static str> {
            check_sys(&ctx, SysInfo::OsRelease)?;
            Ok(get_version())
        }),
    )?;
    #[cfg(feature = "network")]
    {
        target.set("networkInterfaces", Func::from(network_interfaces_guarded))?;
    }

    #[cfg(feature = "statistics")]
    {
        target.set("cpus", Func::from(cpus_guarded))?;
        target.set(
            "freemem",
            Func::from(|ctx: Ctx<'_>| -> Result<u64> {
                check_sys(&ctx, SysInfo::SystemMemory)?;
                Ok(get_free_mem())
            }),
        )?;
        target.set(
            "totalmem",
            Func::from(|ctx: Ctx<'_>| -> Result<u64> {
                check_sys(&ctx, SysInfo::SystemMemory)?;
                Ok(get_total_mem())
            }),
        )?;
    }
    #[cfg(feature = "system")]
    {
        target.set(
            "hostname",
            Func::from(|ctx: Ctx<'_>| -> Result<String> {
                check_sys(&ctx, SysInfo::Hostname)?;
                get_host_name(ctx)
            }),
        )?;
        target.set(
            "loadavg",
            Func::from(|ctx: Ctx<'_>| -> Result<Vec<f64>> {
                check_sys(&ctx, SysInfo::LoadAvg)?;
                Ok(get_load_avg())
            }),
        )?;
        target.set(
            "machine",
            Func::from(|ctx: Ctx<'_>| -> Result<String> {
                check_sys(&ctx, SysInfo::OsRelease)?;
                Ok(get_machine())
            }),
        )?;
        target.set(
            "uptime",
            Func::from(|ctx: Ctx<'_>| -> Result<u64> {
                check_sys(&ctx, SysInfo::OsUptime)?;
                Ok(get_uptime())
            }),
        )?;
    }
    Ok(())
}

fn user_info_guarded<'js>(ctx: Ctx<'js>, options: rquickjs::function::Opt<rquickjs::Value<'js>>) -> Result<Object<'js>> {
    crate::permissions::check_sys(&ctx, ferrijs_permissions::SysInfo::Username)?;
    get_user_info(ctx, options)
}

#[cfg(feature = "network")]
fn network_interfaces_guarded<'js>(
    ctx: Ctx<'js>,
) -> Result<std::collections::HashMap<String, Vec<Object<'js>>>> {
    crate::permissions::check_sys(&ctx, ferrijs_permissions::SysInfo::NetworkInterfaces)?;
    get_network_interfaces(ctx)
}

#[cfg(feature = "statistics")]
fn cpus_guarded<'js>(ctx: Ctx<'js>) -> Result<Vec<Object<'js>>> {
    crate::permissions::check_sys(&ctx, ferrijs_permissions::SysInfo::Cpus)?;
    get_cpus(ctx)
}

/// A fresh object carrying every `os` export, for the `require` path.
pub fn os_object<'js>(ctx: &Ctx<'js>) -> Result<Object<'js>> {
    let obj = Object::new(ctx.clone())?;
    fill(&obj)?;
    Ok(obj)
}

impl From<OsModule> for ModuleInfo<OsModule> {
    fn from(val: OsModule) -> Self {
        ModuleInfo {
            name: "os",
            module: val,
        }
    }
}

#[cfg(test)]
mod tests {
    use crate::test::{call_test, test_async_with, ModuleEvaluator};
    use rquickjs::{Ctx, Value};

    use super::*;

    async fn run_test_return_string(
        ctx: &Ctx<'_>,
        name: &str,
        is_function: bool,
        expected_assertion: impl Fn(String),
    ) {
        ModuleEvaluator::eval_rust::<OsModule>(ctx.clone(), "os")
            .await
            .unwrap();

        let brackets = if is_function { "()" } else { "" };
        let module = ModuleEvaluator::eval_js(
            ctx.clone(),
            "test",
            &format!(
                r#"
                    import {{ {} }} from 'os';

                    export async function test() {{
                        return {}{}
                    }}
                "#,
                name, name, brackets
            ),
        )
        .await
        .unwrap();

        let result = call_test::<String, _>(ctx, &module, ()).await;
        expected_assertion(result);
    }

    async fn run_test_return_number(ctx: &Ctx<'_>, name: &str, expected_assertion: impl Fn(Value)) {
        ModuleEvaluator::eval_rust::<OsModule>(ctx.clone(), "os")
            .await
            .unwrap();

        let module = ModuleEvaluator::eval_js(
            ctx.clone(),
            "test",
            &format!(
                r#"
                    import {{ {} }} from 'os';

                    export async function test() {{
                        return {}()
                    }}
                "#,
                name, name
            ),
        )
        .await
        .unwrap();

        let result = call_test::<Value, _>(ctx, &module, ()).await;
        expected_assertion(result);
    }

    #[tokio::test]
    async fn test_available_parallelism() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_number(&ctx, "availableParallelism", |result| {
                    assert!(result.is_number()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_arch() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "type", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_devnull() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "devNull", false, |result| {
                    assert_eq!(result, DEV_NULL);
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_endianness() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "endianness", true, |result| {
                    let endianness = if cfg!(target_endian = "little") {
                        "LE".to_string()
                    } else {
                        "BE".to_string()
                    };
                    assert_eq!(result, endianness);
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_eol() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "EOL", false, |result| {
                    assert_eq!(result, EOL);
                })
                .await;
            })
        })
        .await;
    }

    #[cfg(feature = "statistics")]
    #[tokio::test]
    async fn test_freemem() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_number(&ctx, "freemem", |result| {
                    assert!(result.is_number()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_homedir() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "homedir", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[cfg(feature = "system")]
    #[tokio::test]
    async fn test_hostname() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "hostname", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[cfg(feature = "system")]
    #[tokio::test]
    async fn test_machine() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "machine", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_platform() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "platform", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_release() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "release", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_tmpdir() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "tmpdir", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[cfg(feature = "statistics")]
    #[tokio::test]
    async fn test_totalmem() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_number(&ctx, "totalmem", |result| {
                    assert!(result.is_number()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_type() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "type", true, |result| {
                    assert!(result == "Linux" || result == "Windows_NT" || result == "Darwin");
                })
                .await;
            })
        })
        .await;
    }

    #[cfg(feature = "system")]
    #[tokio::test]
    async fn test_uptime() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_number(&ctx, "uptime", |result| {
                    assert!(result.is_number()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }

    #[tokio::test]
    async fn test_version() {
        test_async_with(|ctx| {
            Box::pin(async move {
                run_test_return_string(&ctx, "version", true, |result| {
                    assert!(!result.is_empty()); // platform dependant
                })
                .await;
            })
        })
        .await;
    }
}