aboutsummaryrefslogtreecommitdiffstats
path: root/miner/agent.go
blob: ddd8e667561967a4cd2476ee6d8f0e1927785a77 (plain) (blame)
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
66
67
68
69
70
71
72
73
package miner

import (
    "github.com/ethereum/go-ethereum/core/types"
    "github.com/ethereum/go-ethereum/pow"
)

type CpuMiner struct {
    c             chan *types.Block
    quit          chan struct{}
    quitCurrentOp chan struct{}
    returnCh      chan<- Work

    index int
    pow   pow.PoW
}

func NewCpuMiner(index int, pow pow.PoW) *CpuMiner {
    miner := &CpuMiner{
        c:             make(chan *types.Block, 1),
        quit:          make(chan struct{}),
        quitCurrentOp: make(chan struct{}, 1),
        pow:           pow,
        index:         index,
    }
    go miner.update()

    return miner
}

func (self *CpuMiner) Work() chan<- *types.Block { return self.c }
func (self *CpuMiner) Pow() pow.PoW              { return self.pow }
func (self *CpuMiner) SetNonceCh(ch chan<- Work) { self.returnCh = ch }

func (self *CpuMiner) Stop() {
    close(self.quit)
    close(self.quitCurrentOp)
}

func (self *CpuMiner) update() {
out:
    for {
        select {
        case block := <-self.c:
            // make sure it's open
            self.quitCurrentOp <- struct{}{}

            go self.mine(block)
        case <-self.quit:
            break out
        }
    }

done:
    // Empty channel
    for {
        select {
        case <-self.c:
        default:
            close(self.c)

            break done
        }
    }
}

func (self *CpuMiner) mine(block *types.Block) {
    minerlogger.Infof("(re)started agent[%d]. mining...\n", self.index)
    nonce := self.pow.Search(block, self.quitCurrentOp)
    if nonce != nil {
        self.returnCh <- Work{block.Number().Uint64(), nonce}
    }
}