miner: mutex locks on cpu agent. Closes #1007
This commit is contained in:
parent
1564f1a020
commit
741fa8ca9c
@ -11,8 +11,9 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type CpuAgent struct {
|
type CpuAgent struct {
|
||||||
chMu sync.Mutex
|
mu sync.Mutex
|
||||||
c chan *types.Block
|
|
||||||
|
workCh chan *types.Block
|
||||||
quit chan struct{}
|
quit chan struct{}
|
||||||
quitCurrentOp chan struct{}
|
quitCurrentOp chan struct{}
|
||||||
returnCh chan<- *types.Block
|
returnCh chan<- *types.Block
|
||||||
@ -30,19 +31,26 @@ func NewCpuAgent(index int, pow pow.PoW) *CpuAgent {
|
|||||||
return miner
|
return miner
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *CpuAgent) Work() chan<- *types.Block { return self.c }
|
func (self *CpuAgent) Work() chan<- *types.Block { return self.workCh }
|
||||||
func (self *CpuAgent) Pow() pow.PoW { return self.pow }
|
func (self *CpuAgent) Pow() pow.PoW { return self.pow }
|
||||||
func (self *CpuAgent) SetReturnCh(ch chan<- *types.Block) { self.returnCh = ch }
|
func (self *CpuAgent) SetReturnCh(ch chan<- *types.Block) { self.returnCh = ch }
|
||||||
|
|
||||||
func (self *CpuAgent) Stop() {
|
func (self *CpuAgent) Stop() {
|
||||||
|
self.mu.Lock()
|
||||||
|
defer self.mu.Unlock()
|
||||||
|
|
||||||
close(self.quit)
|
close(self.quit)
|
||||||
close(self.quitCurrentOp)
|
close(self.quitCurrentOp)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *CpuAgent) Start() {
|
func (self *CpuAgent) Start() {
|
||||||
|
self.mu.Lock()
|
||||||
|
defer self.mu.Unlock()
|
||||||
|
|
||||||
self.quit = make(chan struct{})
|
self.quit = make(chan struct{})
|
||||||
self.quitCurrentOp = make(chan struct{}, 1)
|
// creating current op ch makes sure we're not closing a nil ch
|
||||||
self.c = make(chan *types.Block, 1)
|
self.quitCurrentOp = make(chan struct{})
|
||||||
|
self.workCh = make(chan *types.Block, 1)
|
||||||
|
|
||||||
go self.update()
|
go self.update()
|
||||||
}
|
}
|
||||||
@ -51,10 +59,10 @@ func (self *CpuAgent) update() {
|
|||||||
out:
|
out:
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case block := <-self.c:
|
case block := <-self.workCh:
|
||||||
self.chMu.Lock()
|
self.mu.Lock()
|
||||||
self.quitCurrentOp <- struct{}{}
|
close(self.quitCurrentOp)
|
||||||
self.chMu.Unlock()
|
self.mu.Unlock()
|
||||||
|
|
||||||
go self.mine(block)
|
go self.mine(block)
|
||||||
case <-self.quit:
|
case <-self.quit:
|
||||||
@ -62,14 +70,13 @@ out:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//close(self.quitCurrentOp)
|
|
||||||
done:
|
done:
|
||||||
// Empty channel
|
// Empty work channel
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-self.c:
|
case <-self.workCh:
|
||||||
default:
|
default:
|
||||||
close(self.c)
|
close(self.workCh)
|
||||||
|
|
||||||
break done
|
break done
|
||||||
}
|
}
|
||||||
@ -80,9 +87,9 @@ func (self *CpuAgent) mine(block *types.Block) {
|
|||||||
glog.V(logger.Debug).Infof("(re)started agent[%d]. mining...\n", self.index)
|
glog.V(logger.Debug).Infof("(re)started agent[%d]. mining...\n", self.index)
|
||||||
|
|
||||||
// Reset the channel
|
// Reset the channel
|
||||||
self.chMu.Lock()
|
self.mu.Lock()
|
||||||
self.quitCurrentOp = make(chan struct{}, 1)
|
self.quitCurrentOp = make(chan struct{})
|
||||||
self.chMu.Unlock()
|
self.mu.Unlock()
|
||||||
|
|
||||||
// Mine
|
// Mine
|
||||||
nonce, mixDigest := self.pow.Search(block, self.quitCurrentOp)
|
nonce, mixDigest := self.pow.Search(block, self.quitCurrentOp)
|
||||||
|
Loading…
Reference in New Issue
Block a user