|
@@ -1,3 +1,5 @@
|
|
|
+use rand::prelude::*;
|
|
|
+
|
|
|
use std::{rc::Rc, collections::{HashMap, HashSet}, cell::{RefCell, Ref}};
|
|
|
|
|
|
use super::Service;
|
|
@@ -37,32 +39,74 @@ impl<'l, T> std::ops::Deref for InnerRef<'l, T> {
|
|
|
#[derive(Default)]
|
|
|
pub struct Node {
|
|
|
addr: Option<std::net::SocketAddr>,
|
|
|
- pubkey: Option<PublicKey>,
|
|
|
+ pubkey: RefCell<Option<PublicKey>>,
|
|
|
keypair: RefCell<Option<Keypair>>,
|
|
|
}
|
|
|
|
|
|
impl Node {
|
|
|
- pub fn pubkey(&self) -> Option<&PublicKey> {
|
|
|
- self.pubkey.as_ref()
|
|
|
+ pub fn build_with_addr(addr: std::net::SocketAddr) -> Self {
|
|
|
+ Self {
|
|
|
+ addr: Some(addr),
|
|
|
+ ..Default::default()
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn addr(&self) -> Option<std::net::SocketAddr> {
|
|
|
+ self.addr
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn pubkey(&self) -> Option<InnerRef<'_, PublicKey>> {
|
|
|
+ InnerRef::build(self.pubkey.borrow())
|
|
|
}
|
|
|
pub(crate) fn keypair(&self) -> Option<InnerRef<'_, Keypair>> {
|
|
|
InnerRef::build(self.keypair.borrow())
|
|
|
}
|
|
|
+
|
|
|
+ pub fn set_pubkey(&self, pk: PublicKey) {
|
|
|
+ let mut pkey = self.pubkey.borrow_mut();
|
|
|
+ if pkey.is_some() {
|
|
|
+ panic!("Tried to set public key on node that already has a public key!")
|
|
|
+ }
|
|
|
+ *pkey = Some(pk);
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn set_keypair(&self, kp: Keypair) {
|
|
|
+ let mut keyp = self.keypair.borrow_mut();
|
|
|
+ if keyp.is_some() {
|
|
|
+ panic!("Tried to set keypair on node that already has a keypair!")
|
|
|
+ }
|
|
|
+ *keyp = Some(kp);
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn gen_keypair(&self) {
|
|
|
+ let mut pkey = self.pubkey.borrow_mut();
|
|
|
+ let mut keyp = self.keypair.borrow_mut();
|
|
|
+ if pkey.is_some() {
|
|
|
+ panic!("Tried to generate keypair for node that already has a pubkey!")
|
|
|
+ }
|
|
|
+ if keyp.is_some() {
|
|
|
+ panic!("Tried to generate keypair for node that already has a keypair!")
|
|
|
+ }
|
|
|
+ let mut csprng = StdRng::from_entropy();
|
|
|
+ let kp = Keypair::generate(&mut csprng);
|
|
|
+ *pkey = Some(kp.public);
|
|
|
+ *keyp = Some(kp);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
pub struct Nodes {
|
|
|
- all_nodes: Vec<Rc<Node>>,
|
|
|
+ all_nodes: RefCell<Vec<Rc<Node>>>,
|
|
|
self_node: Rc<Node>,
|
|
|
}
|
|
|
|
|
|
impl Default for Nodes {
|
|
|
fn default() -> Self {
|
|
|
- let mut ret = Self {
|
|
|
+ let ret = Self {
|
|
|
all_nodes: Default::default(),
|
|
|
self_node: Default::default(),
|
|
|
};
|
|
|
|
|
|
- ret.all_nodes.push(ret.self_node.clone());
|
|
|
+ ret.all_nodes.borrow_mut().push(ret.self_node.clone());
|
|
|
|
|
|
ret
|
|
|
}
|
|
@@ -73,8 +117,18 @@ impl Nodes {
|
|
|
&self.self_node
|
|
|
}
|
|
|
|
|
|
- pub fn node_by_pubkey(&self, pubkey: PublicKey) -> Option<Rc<Node>> {
|
|
|
- None
|
|
|
+ pub fn node_by_pubkey(&self, pubkey: &PublicKey) -> Option<Rc<Node>> {
|
|
|
+ self.all_nodes.borrow().iter().find(|n| n.pubkey().as_deref() == Some(pubkey)).map(|r| r.to_owned())
|
|
|
+ }
|
|
|
+
|
|
|
+ // nodes we know the address of
|
|
|
+ pub fn direct_neighbours(&self) -> Vec<Rc<Node>> {
|
|
|
+ self.all_nodes.borrow().iter().filter(|n| n.addr.is_some()).map(|r| r.to_owned()).collect()
|
|
|
+ }
|
|
|
+
|
|
|
+ pub fn inform_of(&self, node: Node) {
|
|
|
+ // TODO: check for duplicates here
|
|
|
+ self.all_nodes.borrow_mut().push(Rc::new(node));
|
|
|
}
|
|
|
}
|
|
|
|