Files
nym/wasm/client/src/helpers.rs
T
Jędrzej Stuczyński a2322d6cdf feature: nym topology revamp (#5271)
* revamped NymTopology

* wip

* working e2e client

* updated nym-api

* updated nym-node

* updated rest of non-test code

* updated the rest of the codebase

* additional tweaks

* linux clippy fixes + adding additional dummy ipr types for better linting on non-linux targets
2024-12-19 10:44:34 +00:00

165 lines
5.6 KiB
Rust

// Copyright 2022-2023 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: Apache-2.0
use js_sys::Promise;
use std::sync::Arc;
use wasm_bindgen::JsValue;
use wasm_bindgen_futures::future_to_promise;
use wasm_client_core::client::base_client::{ClientInput, ClientState};
use wasm_client_core::client::inbound_messages::InputMessage;
use wasm_client_core::error::WasmCoreError;
use wasm_client_core::topology::{Role, WasmFriendlyNymTopology};
use wasm_client_core::NymTopology;
use wasm_utils::error::simple_js_error;
use wasm_utils::{check_promise_result, console_log};
#[cfg(feature = "node-tester")]
use nym_node_tester_wasm::types::{NodeTestMessage, WasmTestMessageExt};
#[cfg(feature = "node-tester")]
use wasm_bindgen::prelude::wasm_bindgen;
#[cfg(feature = "node-tester")]
pub(crate) const DEFAULT_TEST_PACKETS: u32 = 20;
#[cfg(feature = "node-tester")]
#[wasm_bindgen]
pub struct NymClientTestRequest {
// serialized NodeTestMessage
pub(crate) test_msgs: Vec<Vec<u8>>,
// specially constructed network topology that only contains the target
// node on the tested layer
pub(crate) testable_topology: NymTopology,
}
#[cfg(feature = "node-tester")]
#[wasm_bindgen]
impl NymClientTestRequest {
pub fn injectable_topology(&self) -> WasmFriendlyNymTopology {
self.testable_topology.clone().into()
}
}
// defining helper trait as we could directly call the method on the wrapper
pub(crate) trait InputSender {
fn send_message(&self, message: InputMessage) -> Promise;
fn send_messages(&self, messages: Vec<InputMessage>) -> Promise;
}
impl InputSender for Arc<ClientInput> {
fn send_message(&self, message: InputMessage) -> Promise {
let this = Arc::clone(self);
future_to_promise(async move {
match this.input_sender.send(message).await {
Ok(_) => Ok(JsValue::null()),
Err(_) => Err(simple_js_error(
"InputMessageReceiver has stopped receiving!",
)),
}
})
}
fn send_messages(&self, messages: Vec<InputMessage>) -> Promise {
let this = Arc::clone(self);
future_to_promise(async move {
for message in messages {
if this.input_sender.send(message).await.is_err() {
return Err(simple_js_error(
"InputMessageReceiver has stopped receiving!",
));
}
}
Ok(JsValue::null())
})
}
}
pub(crate) trait WasmTopologyExt {
/// Changes the current network topology to the provided value.
fn change_hardcoded_topology(&self, topology: WasmFriendlyNymTopology) -> Promise;
/// Returns the current network topology.
fn current_topology(&self) -> Promise;
}
#[cfg(feature = "node-tester")]
pub(crate) trait WasmTopologyTestExt {
/// Creates a `NymClientTestRequest` with a variant of `this` topology where the target node is the only one on its layer.
fn mix_test_request(
&self,
test_id: u32,
mixnode_identity: String,
num_test_packets: Option<u32>,
) -> Promise;
}
impl WasmTopologyExt for Arc<ClientState> {
fn change_hardcoded_topology(&self, topology: WasmFriendlyNymTopology) -> Promise {
let nym_topology: NymTopology = check_promise_result!(topology.try_into());
let this = Arc::clone(self);
future_to_promise(async move {
console_log!("changing topology to {nym_topology:?}");
this.topology_accessor
.manually_change_topology(nym_topology)
.await;
Ok(JsValue::null())
})
}
fn current_topology(&self) -> Promise {
let this = Arc::clone(self);
future_to_promise(async move {
match this.topology_accessor.current_route_provider().await {
Some(route_provider) => Ok(serde_wasm_bindgen::to_value(
&WasmFriendlyNymTopology::from(route_provider.topology.clone()),
)
.expect("WasmFriendlyNymTopology failed serialization")),
None => Err(WasmCoreError::UnavailableNetworkTopology.into()),
}
})
}
}
#[cfg(feature = "node-tester")]
impl WasmTopologyTestExt for Arc<ClientState> {
fn mix_test_request(
&self,
test_id: u32,
mixnode_identity: String,
num_test_packets: Option<u32>,
) -> Promise {
let num_test_packets = num_test_packets.unwrap_or(DEFAULT_TEST_PACKETS);
let this = Arc::clone(self);
future_to_promise(async move {
let Some(current_topology) = this.topology_accessor.current_route_provider().await
else {
return Err(WasmCoreError::UnavailableNetworkTopology.into());
};
let Ok(node_identity) = mixnode_identity.parse() else {
return Err(WasmCoreError::NonExistentMixnode { mixnode_identity }.into());
};
let Some(mix) = current_topology.node_by_identity(node_identity) else {
return Err(WasmCoreError::NonExistentMixnode { mixnode_identity }.into());
};
let mut updated = current_topology.topology.clone();
updated.set_testable_node(Role::Layer2, mix.clone());
let ext = WasmTestMessageExt::new(test_id);
let test_msgs = NodeTestMessage::mix_plaintexts(mix, num_test_packets, ext)
.map_err(crate::error::WasmClientError::from)?;
Ok(JsValue::from(NymClientTestRequest {
test_msgs,
testable_topology: updated,
}))
})
}
}