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