Files
bft-crdt-experiment/side-node/src/main.rs

46 lines
1.4 KiB
Rust
Raw Normal View History

use bft_json_crdt::json_crdt::BaseCrdt;
2024-06-06 19:32:29 +01:00
use cli::{parse_args, Commands};
2024-06-07 18:42:28 +01:00
use crdt::TransactionList;
2024-06-07 17:35:38 +01:00
use fastcrypto::ed25519::Ed25519KeyPair;
use node::SideNode;
use websocket::WebSocketClient;
2024-05-29 12:44:52 +01:00
2024-05-29 13:17:16 +01:00
pub(crate) mod cli;
2024-06-07 18:42:28 +01:00
pub(crate) mod crdt;
2024-05-29 16:47:35 +01:00
pub(crate) mod init;
pub(crate) mod keys;
pub(crate) mod node;
pub(crate) mod utils;
pub(crate) mod websocket;
2024-05-29 13:17:16 +01:00
2024-05-29 12:44:52 +01:00
#[tokio::main]
async fn main() {
let args = parse_args();
2024-05-29 12:44:52 +01:00
match &args.command {
Some(Commands::Init { name }) => {
2024-06-06 15:54:33 +01:00
let config = init::config::SideNodeConfig {
name: name.to_string(),
2024-06-06 15:54:33 +01:00
};
let _ = init::init(utils::home(name), config);
}
Some(Commands::Run { name }) => {
2024-06-07 17:35:38 +01:00
let (crdt, websocket_client, keys) = setup(name);
let side_node = &mut SideNode::new(websocket_client, crdt, keys);
side_node.start().await;
}
2024-05-29 16:47:35 +01:00
None => println!("No command provided. Exiting. See --help for more information."),
2024-05-29 12:44:52 +01:00
}
2024-05-29 08:32:40 +01:00
}
2024-06-07 17:18:46 +01:00
/// Wire everything up outside the application so we can test more easily later
2024-06-07 17:35:38 +01:00
fn setup(name: &String) -> (BaseCrdt<TransactionList>, WebSocketClient, Ed25519KeyPair) {
let side_dir = utils::home(name);
let keys = keys::load_from_file(side_dir);
let websocket_client = WebSocketClient::new();
let crdt = BaseCrdt::<TransactionList>::new(&keys);
2024-06-07 17:35:38 +01:00
(crdt, websocket_client, keys)
}