2022-03-15 13:33:34 +00:00
|
|
|
// wasm-bindgen and clippy don't play well together yet
|
|
|
|
#![allow(clippy::all)]
|
2022-02-07 02:18:42 +00:00
|
|
|
#![cfg(target_arch = "wasm32")]
|
|
|
|
#![no_std]
|
|
|
|
|
|
|
|
extern crate alloc;
|
2022-03-15 13:33:34 +00:00
|
|
|
use alloc::string::String;
|
|
|
|
use alloc::sync::Arc;
|
2022-06-16 03:29:45 +00:00
|
|
|
use alloc::*;
|
2022-03-15 13:33:34 +00:00
|
|
|
use core::any::{Any, TypeId};
|
|
|
|
use core::cell::RefCell;
|
|
|
|
use futures_util::FutureExt;
|
2022-10-05 23:12:10 +00:00
|
|
|
use gloo_utils::format::JsValueSerdeExt;
|
2022-03-15 13:33:34 +00:00
|
|
|
use js_sys::*;
|
|
|
|
use lazy_static::*;
|
|
|
|
use send_wrapper::*;
|
|
|
|
use serde::*;
|
2022-06-16 03:29:45 +00:00
|
|
|
use tracing::*;
|
|
|
|
use tracing_subscriber::prelude::*;
|
|
|
|
use tracing_subscriber::*;
|
2022-06-16 01:51:38 +00:00
|
|
|
use tracing_wasm::{WASMLayerConfigBuilder, *};
|
2022-03-15 13:33:34 +00:00
|
|
|
use veilid_core::xx::*;
|
|
|
|
use veilid_core::*;
|
|
|
|
use wasm_bindgen_futures::*;
|
2022-02-07 02:18:42 +00:00
|
|
|
|
2022-03-15 13:33:34 +00:00
|
|
|
// Allocator
|
|
|
|
extern crate wee_alloc;
|
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
|
|
|
|
|
|
|
|
static SETUP_ONCE: Once = Once::new();
|
|
|
|
pub fn setup() -> () {
|
|
|
|
SETUP_ONCE.call_once(|| {});
|
|
|
|
}
|
|
|
|
|
2022-06-16 03:29:45 +00:00
|
|
|
// API Singleton
|
2022-03-15 13:33:34 +00:00
|
|
|
lazy_static! {
|
|
|
|
static ref VEILID_API: SendWrapper<RefCell<Option<veilid_core::VeilidAPI>>> =
|
|
|
|
SendWrapper::new(RefCell::new(None));
|
2022-07-01 16:13:52 +00:00
|
|
|
static ref FILTERS: SendWrapper<RefCell<BTreeMap<&'static str, veilid_core::VeilidLayerFilter>>> =
|
|
|
|
SendWrapper::new(RefCell::new(BTreeMap::new()));
|
2022-11-26 19:16:02 +00:00
|
|
|
static ref ROUTING_CONTEXTS: SendWrapper<RefCell<BTreeMap<u32, veilid_core::RoutingContext>>> =
|
|
|
|
SendWrapper::new(RefCell::new(BTreeMap::new()));
|
2022-03-15 13:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn get_veilid_api() -> Result<veilid_core::VeilidAPI, veilid_core::VeilidAPIError> {
|
|
|
|
(*VEILID_API)
|
|
|
|
.borrow()
|
|
|
|
.clone()
|
|
|
|
.ok_or(veilid_core::VeilidAPIError::NotInitialized)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn take_veilid_api() -> Result<veilid_core::VeilidAPI, veilid_core::VeilidAPIError> {
|
|
|
|
(**VEILID_API)
|
|
|
|
.take()
|
|
|
|
.ok_or(veilid_core::VeilidAPIError::NotInitialized)
|
|
|
|
}
|
|
|
|
|
2022-11-26 19:16:02 +00:00
|
|
|
// JSON Helpers for WASM
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn to_json<T: Serialize>(val: T) -> JsValue {
|
|
|
|
JsValue::from_str(&serialize_json(val))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn from_json<T: de::DeserializeOwned>(val: JsValue) -> Result<T, veilid_core::VeilidAPIError> {
|
|
|
|
let s = val
|
|
|
|
.as_string()
|
|
|
|
.ok_or_else(|| veilid_core::VeilidAPIError::ParseError {
|
|
|
|
message: "Value is not String".to_owned(),
|
|
|
|
value: String::new(),
|
|
|
|
})?;
|
|
|
|
deserialize_json(&s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Utility types for async API results
|
|
|
|
type APIResult<T> = Result<T, veilid_core::VeilidAPIError>;
|
|
|
|
const APIRESULT_UNDEFINED: APIResult<()> = APIResult::Ok(());
|
|
|
|
|
|
|
|
pub fn wrap_api_future<F, T>(future: F) -> Promise
|
|
|
|
where
|
|
|
|
F: Future<Output = APIResult<T>> + 'static,
|
|
|
|
T: Serialize + 'static,
|
|
|
|
{
|
|
|
|
future_to_promise(future.map(|res| {
|
|
|
|
res.map(|v| {
|
|
|
|
if TypeId::of::<()>() == v.type_id() {
|
|
|
|
JsValue::UNDEFINED
|
|
|
|
} else {
|
|
|
|
to_json(v)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.map_err(|e| to_json(e))
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
/////////////////////////////////////////
|
2022-11-26 19:16:02 +00:00
|
|
|
// WASM-specific
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidWASMConfigLoggingPerformance {
|
|
|
|
pub enabled: bool,
|
2022-07-01 20:20:43 +00:00
|
|
|
pub level: veilid_core::VeilidConfigLogLevel,
|
2022-06-16 01:51:38 +00:00
|
|
|
pub logs_in_timings: bool,
|
|
|
|
pub logs_in_console: bool,
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidWASMConfigLoggingAPI {
|
|
|
|
pub enabled: bool,
|
2022-07-01 20:20:43 +00:00
|
|
|
pub level: veilid_core::VeilidConfigLogLevel,
|
2022-07-01 16:13:52 +00:00
|
|
|
}
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidWASMConfigLogging {
|
|
|
|
pub performance: VeilidWASMConfigLoggingPerformance,
|
2022-07-01 16:13:52 +00:00
|
|
|
pub api: VeilidWASMConfigLoggingAPI,
|
2022-06-16 01:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidWASMConfig {
|
|
|
|
pub logging: VeilidWASMConfigLogging,
|
|
|
|
}
|
|
|
|
|
2022-11-26 19:16:02 +00:00
|
|
|
#[derive(Debug, Deserialize, Serialize)]
|
|
|
|
pub struct VeilidFFIKeyBlob {
|
|
|
|
pub key: veilid_core::DHTKey,
|
|
|
|
#[serde(with = "veilid_core::json_as_base64")]
|
|
|
|
pub blob: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
2022-03-15 13:33:34 +00:00
|
|
|
// WASM Bindings
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn initialize_veilid_wasm() {
|
|
|
|
console_error_panic_hook::set_once();
|
|
|
|
}
|
|
|
|
|
2022-06-16 01:51:38 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-07-01 20:20:43 +00:00
|
|
|
pub fn initialize_veilid_core(platform_config: String) {
|
2022-06-16 03:29:45 +00:00
|
|
|
let platform_config: VeilidWASMConfig = veilid_core::deserialize_json(&platform_config)
|
2022-07-01 20:20:43 +00:00
|
|
|
.expect("failed to deserialize platform config json");
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
// Set up subscriber and layers
|
|
|
|
let subscriber = Registry::default();
|
2022-07-01 16:13:52 +00:00
|
|
|
let mut layers = Vec::new();
|
2022-07-01 20:20:43 +00:00
|
|
|
let mut filters = (*FILTERS).borrow_mut();
|
2022-06-16 01:51:38 +00:00
|
|
|
|
|
|
|
// Performance logger
|
2022-07-01 16:13:52 +00:00
|
|
|
if platform_config.logging.performance.enabled {
|
|
|
|
let filter =
|
|
|
|
veilid_core::VeilidLayerFilter::new(platform_config.logging.performance.level, None);
|
|
|
|
let layer = WASMLayer::new(
|
|
|
|
WASMLayerConfigBuilder::new()
|
|
|
|
.set_report_logs_in_timings(platform_config.logging.performance.logs_in_timings)
|
|
|
|
.set_console_config(if platform_config.logging.performance.logs_in_console {
|
|
|
|
ConsoleConfig::ReportWithConsoleColor
|
|
|
|
} else {
|
|
|
|
ConsoleConfig::NoReporting
|
|
|
|
})
|
|
|
|
.build(),
|
2022-06-16 01:51:38 +00:00
|
|
|
)
|
2022-07-01 16:13:52 +00:00
|
|
|
.with_filter(filter.clone());
|
2022-07-01 20:20:43 +00:00
|
|
|
filters.insert("performance", filter);
|
2022-07-01 16:13:52 +00:00
|
|
|
layers.push(layer.boxed());
|
|
|
|
};
|
2022-06-16 01:51:38 +00:00
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
// API logger
|
|
|
|
if platform_config.logging.api.enabled {
|
|
|
|
let filter = veilid_core::VeilidLayerFilter::new(platform_config.logging.api.level, None);
|
|
|
|
let layer = veilid_core::ApiTracingLayer::get().with_filter(filter.clone());
|
2022-07-01 20:20:43 +00:00
|
|
|
filters.insert("api", filter);
|
2022-07-01 16:13:52 +00:00
|
|
|
layers.push(layer.boxed());
|
|
|
|
}
|
2022-06-16 01:51:38 +00:00
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
let subscriber = subscriber.with(layers);
|
2022-06-16 01:51:38 +00:00
|
|
|
subscriber
|
|
|
|
.try_init()
|
|
|
|
.map_err(|e| format!("failed to initialize logging: {}", e))
|
|
|
|
.expect("failed to initalize WASM platform");
|
|
|
|
}
|
|
|
|
|
2022-07-01 16:13:52 +00:00
|
|
|
#[wasm_bindgen()]
|
|
|
|
pub fn change_log_level(layer: String, log_level: String) {
|
|
|
|
let layer = if layer == "all" { "".to_owned() } else { layer };
|
|
|
|
let log_level: veilid_core::VeilidConfigLogLevel = deserialize_json(&log_level).unwrap();
|
|
|
|
let filters = (*FILTERS).borrow();
|
|
|
|
if layer.is_empty() {
|
|
|
|
// Change all layers
|
|
|
|
for f in filters.values() {
|
|
|
|
f.set_max_level(log_level);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Change a specific layer
|
|
|
|
let f = filters.get(layer.as_str()).unwrap();
|
|
|
|
f.set_max_level(log_level);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-08-25 00:59:09 +00:00
|
|
|
pub fn startup_veilid_core(update_callback_js: Function, json_config: String) -> Promise {
|
|
|
|
let update_callback_js = SendWrapper::new(update_callback_js);
|
2022-03-15 13:33:34 +00:00
|
|
|
wrap_api_future(async move {
|
|
|
|
let update_callback = Arc::new(move |update: VeilidUpdate| {
|
|
|
|
let _ret =
|
2022-08-25 00:59:09 +00:00
|
|
|
match Function::call1(&update_callback_js, &JsValue::UNDEFINED, &to_json(update)) {
|
2022-03-15 13:33:34 +00:00
|
|
|
Ok(v) => v,
|
|
|
|
Err(e) => {
|
|
|
|
error!("calling update callback failed: {:?}", e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
if VEILID_API.borrow().is_some() {
|
|
|
|
return Err(veilid_core::VeilidAPIError::AlreadyInitialized);
|
|
|
|
}
|
|
|
|
|
|
|
|
let veilid_api = veilid_core::api_startup_json(update_callback, json_config).await?;
|
|
|
|
VEILID_API.replace(Some(veilid_api));
|
|
|
|
APIRESULT_UNDEFINED
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn get_veilid_state() -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let veilid_api = get_veilid_api()?;
|
|
|
|
let core_state = veilid_api.get_state().await?;
|
|
|
|
Ok(core_state)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-09-06 22:59:41 +00:00
|
|
|
#[wasm_bindgen()]
|
|
|
|
pub fn attach() -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let veilid_api = get_veilid_api()?;
|
|
|
|
veilid_api.attach().await?;
|
|
|
|
APIRESULT_UNDEFINED
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[wasm_bindgen()]
|
|
|
|
pub fn detach() -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let veilid_api = get_veilid_api()?;
|
|
|
|
veilid_api.detach().await?;
|
|
|
|
APIRESULT_UNDEFINED
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn shutdown_veilid_core() -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let veilid_api = take_veilid_api()?;
|
|
|
|
veilid_api.shutdown().await;
|
|
|
|
APIRESULT_UNDEFINED
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn debug(command: String) -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let veilid_api = get_veilid_api()?;
|
|
|
|
let out = veilid_api.debug(command).await?;
|
|
|
|
Ok(out)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-10-01 02:37:55 +00:00
|
|
|
#[wasm_bindgen()]
|
|
|
|
pub fn app_call_reply(id: String, message: String) -> Promise {
|
|
|
|
wrap_api_future(async move {
|
|
|
|
let id = match id.parse() {
|
|
|
|
Ok(v) => v,
|
|
|
|
Err(e) => {
|
|
|
|
return APIResult::Err(veilid_core::VeilidAPIError::invalid_argument(e, "id", id))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let message = data_encoding::BASE64URL_NOPAD
|
|
|
|
.decode(message.as_bytes())
|
|
|
|
.map_err(|e| veilid_core::VeilidAPIError::invalid_argument(e, "message", message))?;
|
|
|
|
let veilid_api = get_veilid_api()?;
|
|
|
|
let out = veilid_api.app_call_reply(id, message).await?;
|
|
|
|
Ok(out)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn veilid_version_string() -> String {
|
|
|
|
veilid_core::veilid_version_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize)]
|
|
|
|
pub struct VeilidVersion {
|
|
|
|
pub major: u32,
|
|
|
|
pub minor: u32,
|
|
|
|
pub patch: u32,
|
|
|
|
}
|
|
|
|
|
2022-03-16 03:02:24 +00:00
|
|
|
#[wasm_bindgen()]
|
2022-03-15 13:33:34 +00:00
|
|
|
pub fn veilid_version() -> JsValue {
|
|
|
|
let (major, minor, patch) = veilid_core::veilid_version();
|
|
|
|
let vv = VeilidVersion {
|
|
|
|
major,
|
|
|
|
minor,
|
|
|
|
patch,
|
|
|
|
};
|
2022-10-05 23:12:10 +00:00
|
|
|
<JsValue as JsValueSerdeExt>::from_serde(&vv).unwrap()
|
2022-03-15 13:33:34 +00:00
|
|
|
}
|