aboutsummaryrefslogtreecommitdiffstats
path: root/miner/agent.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-09 23:20:34 +0800
committerobscuren <geffobscura@gmail.com>2015-02-10 20:04:38 +0800
commitda2fae0e437f9467a943acfe0571a8a24e8e76fd (patch)
treed760375fbcd441a6460c1ea1d7db930f78e1df20 /miner/agent.go
parentb22f0f2ef51bdb769259b3cf7d9ee0e8e5b0635e (diff)
downloaddexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.gz
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.bz2
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.lz
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.xz
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.tar.zst
dexon-da2fae0e437f9467a943acfe0571a8a24e8e76fd.zip
Basic structure miner
Diffstat (limited to 'miner/agent.go')
-rw-r--r--miner/agent.go74
1 files changed, 74 insertions, 0 deletions
diff --git a/miner/agent.go b/miner/agent.go
new file mode 100644
index 000000000..b12b9da4d
--- /dev/null
+++ b/miner/agent.go
@@ -0,0 +1,74 @@
+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<- []byte
+
+ 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<- []byte) { self.returnCh = ch }
+
+func (self *CpuMiner) Stop() {
+ close(self.quit)
+ close(self.quitCurrentOp)
+}
+
+func (self *CpuMiner) update() {
+out:
+ for {
+ select {
+ case block := <-self.c:
+ minerlogger.Infof("miner[%d] got block\n", self.index)
+ // 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("started agent[%d]. mining...\n", self.index)
+ nonce := self.pow.Search(block, self.quitCurrentOp)
+ if nonce != nil {
+ self.returnCh <- nonce
+ }
+}