wrap assigning local/global IDs into struct to avoid things getting out of sync

This commit is contained in:
James Wilson
2021-06-21 14:18:44 +01:00
parent 486418e5e9
commit 20524ac8ae
11 changed files with 125 additions and 26 deletions
+13 -3
View File
@@ -1,4 +1,4 @@
use common::{internal_messages::{self, LocalId}, node};
use common::{internal_messages::{GlobalId, LocalId}, node, assign_id::AssignId};
use std::{str::FromStr, sync::Arc};
use std::sync::atomic::AtomicU64;
use futures::channel::{ mpsc, oneshot };
@@ -6,6 +6,7 @@ use futures::{ Sink, SinkExt, StreamExt };
use tokio::net::TcpStream;
use tokio_util::compat::{ TokioAsyncReadCompatExt };
use std::collections::{ HashMap, HashSet };
use crate::state::State;
/// A unique Id is assigned per websocket connection (or more accurately,
/// per feed socket and per shard socket). This can be combined with the
@@ -137,6 +138,12 @@ impl Aggregator {
// any more, this task will gracefully end.
async fn handle_messages(mut rx_from_external: mpsc::Receiver<ToAggregator>, denylist: Vec<String>) {
let mut nodes_state = State::new();
// Maintain mappings from the shard connection ID and local ID of messages to a global ID
// that uniquely identifies nodes in our node state.
let mut to_global_id = AssignId::new();
// Temporary: if we drop channels to shards, they will be booted:
let mut to_shards = vec![];
@@ -162,10 +169,13 @@ impl Aggregator {
to_shards.push(channel);
},
ToAggregator::FromShardWebsocket(shard_conn_id, FromShardWebsocket::Add { local_id, ip, node }) => {
let global_id = to_global_id.assign_id((shard_conn_id, local_id));
},
ToAggregator::FromShardWebsocket(shard_conn_id, FromShardWebsocket::Update { local_id, payload }) => {
let global_id = match to_global_id.get_id(&(shard_conn_id, local_id)) {
Some(id) => id,
None => continue
};
},
}
}
+1 -2
View File
@@ -1,6 +1,5 @@
mod aggregator;
mod feed_message;
mod node;
mod state;
use std::net::SocketAddr;
use std::str::FromStr;
+3
View File
@@ -0,0 +1,3 @@
pub struct Chain {
}
@@ -5,7 +5,7 @@ use serde::ser::{SerializeTuple, Serializer};
use serde::Serialize;
use std::mem;
use crate::node::Node;
use super::node::Node;
use serde_json::to_writer;
use common::types::{
Address, BlockDetails, BlockHash, BlockNumber, NodeHardware, NodeIO, NodeId, NodeStats,
+7
View File
@@ -0,0 +1,7 @@
mod node;
mod chain;
mod feed_message;
mod state;
pub use state::State;
+14
View File
@@ -0,0 +1,14 @@
use super::chain::Chain;
use std::collections::HashMap;
pub struct State {
chains: HashMap<Box<str>, Chain>
}
impl State {
pub fn new() -> State {
State {
chains: HashMap::new()
}
}
}