rhizomedb_wasm/
lib.rs

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
#![cfg_attr(docsrs, feature(doc_cfg))]
#![warn(missing_debug_implementations, rust_2018_idioms)]
#![deny(unreachable_pub, private_in_public)]

//! rhizome

use futures::{sink::unfold, StreamExt};

use js_sys::AsyncIterator;
use rhizomedb::{runtime::ClientEvent, tuple::Tuple, value::Val};
use serde::{Deserialize, Serialize};
use wasm_bindgen::{prelude::wasm_bindgen, JsValue};
use wasm_bindgen_downcast::DowncastJS;
use wasm_bindgen_futures::{spawn_local, stream::JsStream};

pub mod builder;
pub mod tuple;

use std::{cell::RefCell, rc::Rc};

use crate::{builder::ProgramBuilder, tuple::InputTuple};

#[wasm_bindgen]
#[derive(Debug, Clone, Copy, Serialize, Deserialize, DowncastJS)]
pub struct Cid(cid::Cid);

impl Cid {
    pub fn inner(&self) -> cid::Cid {
        self.0
    }
}

#[wasm_bindgen]
#[derive(Debug, Clone, DowncastJS)]
pub struct Rhizome {
    client: Rc<RefCell<rhizomedb::runtime::client::Client>>,
}

#[wasm_bindgen]
impl Rhizome {
    #[wasm_bindgen(constructor)]
    pub fn new(on_fixedpoint: js_sys::Function, f: js_sys::Function) -> Self {
        let (client, mut rx, reactor) = rhizomedb::runtime::client::Client::new();

        spawn_local(async move {
            reactor
                .async_run(move |p| {
                    let builder = ProgramBuilder::new(p).unwrap();
                    let f_builder = builder.clone();

                    f.call1(&JsValue::NULL, &JsValue::from(f_builder)).unwrap();

                    Ok(builder.take())
                })
                .await
                .unwrap();
        });

        spawn_local(async move {
            loop {
                match rx.next().await {
                    Some(ClientEvent::ReachedFixedpoint(_, new_epoch)) => on_fixedpoint
                        .call1(
                            &JsValue::NULL,
                            &serde_wasm_bindgen::to_value(&Cid(new_epoch)).unwrap(),
                        )
                        .unwrap(),
                    None => continue,
                };
            }
        });

        Self {
            client: Rc::new(RefCell::new(client)),
        }
    }

    pub async fn flush(&self) -> Result<(), JsValue> {
        self.client.borrow_mut().flush().await.map_or_else(
            |err: anyhow::Error| Err(serde_wasm_bindgen::to_value(&err.to_string())?),
            |_| Ok(()),
        )
    }

    #[wasm_bindgen(js_name = registerStream)]
    pub async fn register_stream(
        &self,
        id: &str,
        async_iterator: AsyncIterator,
    ) -> Result<(), JsValue> {
        self.client
            .borrow_mut()
            .register_stream(
                id,
                Box::new(move || {
                    Box::new(JsStream::from(async_iterator).map(|tuple| {
                        let tuple = tuple.unwrap();
                        let tuple = InputTuple::downcast_js_ref(&tuple).unwrap();

                        tuple.clone().into_inner()
                    }))
                }),
            )
            .await
            .map_or_else(
                |err: anyhow::Error| Err(serde_wasm_bindgen::to_value(&err.to_string())?),
                |_| Ok(()),
            )
    }

    #[wasm_bindgen(js_name = registerSink)]
    pub async fn register_sink(&self, id: &str, f: js_sys::Function) -> Result<(), JsValue> {
        self.client
            .borrow_mut()
            .register_sink(
                id,
                Box::new(move || {
                    Box::new(unfold(f, move |f, tuple: Tuple| async move {
                        let js_tuple = js_sys::Object::new();

                        for col in tuple.cols() {
                            match tuple.col(&col).unwrap() {
                                Val::Bool(v) => js_sys::Reflect::set(
                                    &js_tuple,
                                    &col.resolve().into(),
                                    &serde_wasm_bindgen::to_value(&v).unwrap(),
                                )
                                .unwrap(),
                                Val::S64(v) => js_sys::Reflect::set(
                                    &js_tuple,
                                    &col.resolve().into(),
                                    &serde_wasm_bindgen::to_value(&v).unwrap(),
                                )
                                .unwrap(),
                                Val::String(v) => js_sys::Reflect::set(
                                    &js_tuple,
                                    &col.resolve().into(),
                                    &serde_wasm_bindgen::to_value(&v).unwrap(),
                                )
                                .unwrap(),
                                Val::Cid(v) => js_sys::Reflect::set(
                                    &js_tuple,
                                    &col.resolve().into(),
                                    &serde_wasm_bindgen::to_value(&Cid(v)).unwrap(),
                                )
                                .unwrap(),
                                _ => panic!("unsupported type"),
                            };
                        }

                        f.call1(&JsValue::NULL, &js_tuple).unwrap();

                        Ok(f)
                    }))
                }),
            )
            .await
            .map_or_else(
                |err: anyhow::Error| Err(serde_wasm_bindgen::to_value(&err.to_string())?),
                |_| Ok(()),
            )
    }

    #[wasm_bindgen(js_name = rewindEpoch)]
    pub async fn rewind_epoch(&self) -> Result<(), JsValue> {
        self.client.borrow_mut().rewind_epoch().await.map_or_else(
            |err: anyhow::Error| Err(serde_wasm_bindgen::to_value(&err.to_string())?),
            |_| Ok(()),
        )
    }

    #[wasm_bindgen(js_name = replayEpoch)]
    pub async fn replay_epoch(&self) -> Result<(), JsValue> {
        self.client.borrow_mut().replay_epoch().await.map_or_else(
            |err: anyhow::Error| Err(serde_wasm_bindgen::to_value(&err.to_string())?),
            |_| Ok(()),
        )
    }
}

//------------------------------------------------------------------------------
// Utilities
//------------------------------------------------------------------------------

/// Panic hook lets us get better error messages if our Rust code ever panics.
///
/// For more details see
/// <https://github.com/rustwasm/console_error_panic_hook#readme>
#[wasm_bindgen(js_name = "setPanicHook")]
pub fn set_panic_hook() {
    #[cfg(feature = "console_error_panic_hook")]
    console_error_panic_hook::set_once();
}

#[wasm_bindgen]
extern "C" {
    // For alerting
    pub(crate) fn alert(s: &str);
    // For logging in the console.
    #[wasm_bindgen(js_namespace = console)]
    pub fn log(s: &str);
}

//------------------------------------------------------------------------------
// Macros
//------------------------------------------------------------------------------

/// Return a representation of an object owned by JS.
#[macro_export]
macro_rules! value {
    ($value:expr) => {
        wasm_bindgen::JsValue::from($value)
    };
}

/// Calls the wasm_bindgen console.log.
#[macro_export]
macro_rules! console_log {
    ($($t:tt)*) => ($crate::log(&format_args!($($t)*).to_string()))
}