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
#![allow(non_snake_case)]

use anyhow::Result;
use client::{AuraeConfig, Client};
use deno_core::{self, op2, OpState, Resource, ResourceId};
use std::{cell::RefCell, rc::Rc};

// `AuraeConfig` `try_default`
#[op2(fast)]
#[smi]
pub(crate) fn as__aurae_config__try_default(
    op_state: &mut OpState,
) -> Result<ResourceId> {
    let config = AuraeConfig::try_default()?;
    let rid = op_state.resource_table.add(AuraeScriptConfig(config));
    Ok(rid)
}

// `AuraeConfig` `from_options`
#[op2(fast)]
#[smi]
pub(crate) fn as__aurae_config__from_options(
    op_state: &mut OpState,
    #[string] ca_crt: String,
    #[string] client_crt: String,
    #[string] client_key: String,
    #[string] socket: String,
) -> ResourceId {
    let config =
        AuraeConfig::from_options(ca_crt, client_crt, client_key, socket);
    op_state.resource_table.add(AuraeScriptConfig(config))
}

// `AuraeConfig` `parse_from_file`
#[op2(fast)]
#[smi]
pub(crate) fn as__aurae_config__parse_from_file(
    op_state: &mut OpState,
    #[string] path: String,
) -> Result<ResourceId> {
    let config = AuraeConfig::parse_from_toml_file(path)?;
    let rid = op_state.resource_table.add(AuraeScriptConfig(config));
    Ok(rid)
}

// Re export AuraeConfig in auraescript to be able to impl Resource on it
pub(crate) struct AuraeScriptConfig(pub AuraeConfig);

impl Resource for AuraeScriptConfig {} // Blank impl

// Create a `Client` with given `AuraeConfig`
#[op2(async)]
#[smi]
pub(crate) async fn as__client_new(
    op_state: Rc<RefCell<OpState>>,
    #[smi] config: ResourceId,
) -> Result<ResourceId> {
    let config = {
        let op_state = &op_state.borrow();
        let rt = &op_state.resource_table; // get `ResourceTable` from JsRuntime `OpState`
        rt.get::<AuraeScriptConfig>(config)?.0.clone() // get `Config` from its rid
    };
    let client = Client::new(config).await?;
    let mut op_state = op_state.borrow_mut();
    let rid = op_state.resource_table.add(AuraeScriptClient(client));
    Ok(rid)
}

pub(crate) fn op_decls() -> Vec<::deno_core::OpDecl> {
    vec![
        as__aurae_config__try_default(),
        as__aurae_config__from_options(),
        as__aurae_config__parse_from_file(),
        as__client_new(),
    ]
}

// Re export client in auraescript to be able
// to impl Resource on it
pub(crate) struct AuraeScriptClient(pub Client);

impl Resource for AuraeScriptClient {} // Blank impl