2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-02-09 15:20:34 +00:00
|
|
|
package miner
|
|
|
|
|
|
|
|
import (
|
2015-03-26 16:45:03 +00:00
|
|
|
"sync"
|
|
|
|
|
2015-09-14 07:35:57 +00:00
|
|
|
"sync/atomic"
|
|
|
|
|
2017-04-04 22:16:29 +00:00
|
|
|
"github.com/ethereum/go-ethereum/consensus"
|
2017-02-22 12:10:07 +00:00
|
|
|
"github.com/ethereum/go-ethereum/log"
|
2015-02-09 15:20:34 +00:00
|
|
|
)
|
|
|
|
|
2015-05-11 13:43:14 +00:00
|
|
|
type CpuAgent struct {
|
2015-05-16 10:13:59 +00:00
|
|
|
mu sync.Mutex
|
|
|
|
|
2015-07-11 18:45:59 +00:00
|
|
|
workCh chan *Work
|
2017-04-04 22:16:29 +00:00
|
|
|
stop chan struct{}
|
2015-02-09 15:20:34 +00:00
|
|
|
quitCurrentOp chan struct{}
|
2015-07-11 18:45:59 +00:00
|
|
|
returnCh chan<- *Result
|
2015-02-09 15:20:34 +00:00
|
|
|
|
2017-04-04 22:16:29 +00:00
|
|
|
chain consensus.ChainReader
|
|
|
|
engine consensus.Engine
|
2015-09-08 09:27:55 +00:00
|
|
|
|
|
|
|
isMining int32 // isMining indicates whether the agent is currently mining
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 22:16:29 +00:00
|
|
|
func NewCpuAgent(chain consensus.ChainReader, engine consensus.Engine) *CpuAgent {
|
2015-05-11 13:43:14 +00:00
|
|
|
miner := &CpuAgent{
|
2017-04-04 22:16:29 +00:00
|
|
|
chain: chain,
|
|
|
|
engine: engine,
|
|
|
|
stop: make(chan struct{}, 1),
|
2016-08-25 14:12:17 +00:00
|
|
|
workCh: make(chan *Work, 1),
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
|
|
|
return miner
|
|
|
|
}
|
|
|
|
|
2015-07-11 18:45:59 +00:00
|
|
|
func (self *CpuAgent) Work() chan<- *Work { return self.workCh }
|
|
|
|
func (self *CpuAgent) SetReturnCh(ch chan<- *Result) { self.returnCh = ch }
|
2015-02-09 15:20:34 +00:00
|
|
|
|
2015-05-11 13:43:14 +00:00
|
|
|
func (self *CpuAgent) Stop() {
|
2017-04-04 22:16:29 +00:00
|
|
|
self.stop <- struct{}{}
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2015-05-11 13:43:14 +00:00
|
|
|
func (self *CpuAgent) Start() {
|
2015-09-08 10:42:29 +00:00
|
|
|
if !atomic.CompareAndSwapInt32(&self.isMining, 0, 1) {
|
2015-09-08 09:27:55 +00:00
|
|
|
return // agent already started
|
|
|
|
}
|
2015-02-14 15:52:14 +00:00
|
|
|
go self.update()
|
|
|
|
}
|
|
|
|
|
2015-05-11 13:43:14 +00:00
|
|
|
func (self *CpuAgent) update() {
|
2015-02-09 15:20:34 +00:00
|
|
|
out:
|
|
|
|
for {
|
|
|
|
select {
|
2015-07-11 18:45:59 +00:00
|
|
|
case work := <-self.workCh:
|
2015-05-16 10:13:59 +00:00
|
|
|
self.mu.Lock()
|
2015-05-18 13:13:58 +00:00
|
|
|
if self.quitCurrentOp != nil {
|
|
|
|
close(self.quitCurrentOp)
|
|
|
|
}
|
|
|
|
self.quitCurrentOp = make(chan struct{})
|
2015-07-11 18:45:59 +00:00
|
|
|
go self.mine(work, self.quitCurrentOp)
|
2015-05-16 10:13:59 +00:00
|
|
|
self.mu.Unlock()
|
2017-04-04 22:16:29 +00:00
|
|
|
case <-self.stop:
|
2015-05-18 14:09:01 +00:00
|
|
|
self.mu.Lock()
|
|
|
|
if self.quitCurrentOp != nil {
|
|
|
|
close(self.quitCurrentOp)
|
|
|
|
self.quitCurrentOp = nil
|
|
|
|
}
|
|
|
|
self.mu.Unlock()
|
2015-02-09 15:20:34 +00:00
|
|
|
break out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
2015-05-16 10:13:59 +00:00
|
|
|
// Empty work channel
|
2015-02-09 15:20:34 +00:00
|
|
|
for {
|
|
|
|
select {
|
2015-05-16 10:13:59 +00:00
|
|
|
case <-self.workCh:
|
2015-02-09 15:20:34 +00:00
|
|
|
default:
|
|
|
|
break done
|
|
|
|
}
|
|
|
|
}
|
2015-09-08 09:27:55 +00:00
|
|
|
atomic.StoreInt32(&self.isMining, 0)
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2015-07-11 18:45:59 +00:00
|
|
|
func (self *CpuAgent) mine(work *Work, stop <-chan struct{}) {
|
2017-04-04 22:16:29 +00:00
|
|
|
if result, err := self.engine.Seal(self.chain, work.Block, stop); result != nil {
|
|
|
|
log.Info("Successfully sealed new block", "number", result.Number(), "hash", result.Hash())
|
|
|
|
self.returnCh <- &Result{work, result}
|
2015-03-26 16:45:03 +00:00
|
|
|
} else {
|
2017-04-04 22:16:29 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Warn("Block sealing failed", "err", err)
|
|
|
|
}
|
2015-03-26 16:45:03 +00:00
|
|
|
self.returnCh <- nil
|
2015-02-09 15:20:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-20 16:42:09 +00:00
|
|
|
|
2015-05-11 13:43:14 +00:00
|
|
|
func (self *CpuAgent) GetHashRate() int64 {
|
2017-04-04 22:16:29 +00:00
|
|
|
if pow, ok := self.engine.(consensus.PoW); ok {
|
|
|
|
return int64(pow.Hashrate())
|
|
|
|
}
|
|
|
|
return 0
|
2015-03-20 16:42:09 +00:00
|
|
|
}
|