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
pub use crate::miner::Connection;
use async_std::sync::{Arc, RwLock};
use log::info;
use std::collections::HashMap;
use std::net::SocketAddr;
use stratum_types::traits::{StratumManager, StratumParams};
use stratum_types::Result;

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

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

    pub async fn add_miner(&self, addr: SocketAddr, miner: Arc<Connection<SM>>) -> Result<()> {
        self.miners.write().await.insert(addr, miner);
        Ok(())
    }

    pub async fn remove_miner(&self, addr: SocketAddr) -> Result<()> {
        self.miners.write().await.remove(&addr);
        Ok(())
    }

    pub async fn broadcast_new_job(
        &self,
        _job: <SM::StratumParams as StratumParams>::Notify,
    ) -> Result<()> {
        let miners = self.miners.read().await;

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

        // let handles = my_futures.into_iter().map(async_std::task::spawn).collect::<Vec<_>>();
        // let results = futures::future::join_all(handles).await;

        let mut results = Vec::new();

        for miner in miners.values() {
            // miner.send().await;
            //@todo might be more efficient to pass it down to the miners specifically rather than
            //put strain on the data_provider, but let's test this.
            dbg!("Sending work");
            // let miner_clone = miner.clone();
            // results.push(async_std::task::spawn(async move {
            results.push(miner.send_work());
            // }));
        }

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

        Ok(())
    }
}