| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | package miner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-03-26 17:45:03 +01:00
										 |  |  | 	"sync" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-24 10:34:06 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2015-04-04 23:04:19 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/logger" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/logger/glog" | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/pow" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 15:43:14 +02:00
										 |  |  | type CpuAgent struct { | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 	mu sync.Mutex | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	workCh        chan *types.Block | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	quit          chan struct{} | 
					
						
							|  |  |  | 	quitCurrentOp chan struct{} | 
					
						
							| 
									
										
										
										
											2015-03-24 10:34:06 +01:00
										 |  |  | 	returnCh      chan<- *types.Block | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	index int | 
					
						
							|  |  |  | 	pow   pow.PoW | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 15:43:14 +02:00
										 |  |  | func NewCpuAgent(index int, pow pow.PoW) *CpuAgent { | 
					
						
							|  |  |  | 	miner := &CpuAgent{ | 
					
						
							| 
									
										
										
										
											2015-02-14 16:52:14 +01:00
										 |  |  | 		pow:   pow, | 
					
						
							|  |  |  | 		index: index, | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return miner | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | func (self *CpuAgent) Work() chan<- *types.Block          { return self.workCh } | 
					
						
							| 
									
										
										
										
											2015-05-11 15:43:14 +02:00
										 |  |  | func (self *CpuAgent) Pow() pow.PoW                       { return self.pow } | 
					
						
							|  |  |  | func (self *CpuAgent) SetReturnCh(ch chan<- *types.Block) { self.returnCh = ch } | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 15:43:14 +02:00
										 |  |  | func (self *CpuAgent) Stop() { | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 	self.mu.Lock() | 
					
						
							|  |  |  | 	defer self.mu.Unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	close(self.quit) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 15:43:14 +02:00
										 |  |  | func (self *CpuAgent) Start() { | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 	self.mu.Lock() | 
					
						
							|  |  |  | 	defer self.mu.Unlock() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-14 16:52:14 +01:00
										 |  |  | 	self.quit = make(chan struct{}) | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 	// creating current op ch makes sure we're not closing a nil ch | 
					
						
							| 
									
										
										
										
											2015-05-16 12:29:19 +02:00
										 |  |  | 	// later on | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 	self.workCh = make(chan *types.Block, 1) | 
					
						
							| 
									
										
										
										
											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-05-16 12:13:59 +02:00
										 |  |  | 		case block := <-self.workCh: | 
					
						
							|  |  |  | 			self.mu.Lock() | 
					
						
							| 
									
										
										
										
											2015-05-18 15:13:58 +02:00
										 |  |  | 			if self.quitCurrentOp != nil { | 
					
						
							|  |  |  | 				close(self.quitCurrentOp) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			self.quitCurrentOp = make(chan struct{}) | 
					
						
							|  |  |  | 			go self.mine(block, self.quitCurrentOp) | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 			self.mu.Unlock() | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 		case <-self.quit: | 
					
						
							| 
									
										
										
										
											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: | 
					
						
							| 
									
										
										
										
											2015-05-16 12:13:59 +02:00
										 |  |  | 			close(self.workCh) | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			break done | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-18 15:13:58 +02:00
										 |  |  | func (self *CpuAgent) mine(block *types.Block, stop <- chan struct{}) { | 
					
						
							| 
									
										
										
										
											2015-04-04 23:04:19 +02:00
										 |  |  | 	glog.V(logger.Debug).Infof("(re)started agent[%d]. mining...\n", self.index) | 
					
						
							| 
									
										
										
										
											2015-03-26 17:45:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Mine | 
					
						
							| 
									
										
										
										
											2015-05-18 15:13:58 +02:00
										 |  |  | 	nonce, mixDigest := self.pow.Search(block, stop) | 
					
						
							| 
									
										
										
										
											2015-03-03 21:04:31 +01:00
										 |  |  | 	if nonce != 0 { | 
					
						
							| 
									
										
										
										
											2015-03-24 10:34:06 +01:00
										 |  |  | 		block.SetNonce(nonce) | 
					
						
							|  |  |  | 		block.Header().MixDigest = common.BytesToHash(mixDigest) | 
					
						
							|  |  |  | 		self.returnCh <- block | 
					
						
							| 
									
										
										
										
											2015-03-26 17:45:03 +01:00
										 |  |  | 	} else { | 
					
						
							|  |  |  | 		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 { | 
					
						
							| 
									
										
										
										
											2015-03-20 17:42:09 +01:00
										 |  |  | 	return self.pow.GetHashrate() | 
					
						
							|  |  |  | } |