1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
pub use crate::miner::Connection;
use async_std::sync::{Arc, RwLock};
use log::info;
use metrics::gauge;
use std::collections::HashMap;
use std::net::SocketAddr;
use stratum_types::Result;

#[derive(Default)]
pub struct MinerList {
    pub miners: RwLock<HashMap<SocketAddr, Arc<Connection>>>,
}

impl MinerList {
    pub fn new() -> Self {
        MinerList {
            miners: RwLock::new(HashMap::new()),
        }
    }

    pub async fn add_miner(&self, addr: SocketAddr, miner: Arc<Connection>) -> Result<()> {
        self.miners.write().await.insert(addr, miner);
        // gauge!(
        //     "stratum.num_connections",
        //     self.miners.read().await.len() as f64
        // );
        Ok(())
    }

    pub async fn remove_miner(&self, addr: SocketAddr) -> Result<()> {
        self.miners.write().await.remove(&addr);
        // gauge!(
        //     "stratum.num_connections",
        //     self.miners.read().await.len() as f64
        // );
        Ok(())
    }

    // pub async fn broadcast_new_job(&self) -> Result<()> {
    //     let miners = self.miners.read().await;

    //     info!("Broadcasting new work to miners.");

    //     let mut results = Vec::new();

    //     for miner in miners.values() {
    //         info!("Sending new work to miner: {}", miner.id);
    //         results.push(miner.send_work());
    //     }

    //     futures::future::join_all(results).await;
    //     info!("All work send to miners");

    //     Ok(())
    // }

    pub async fn get_all_miners(&self) -> Vec<Arc<Connection>> {
        self.miners
            .read()
            .await
            .values()
            .map(|x| x.clone())
            .collect()
    }
}