aboutsummaryrefslogtreecommitdiffstats
path: root/miner/remote_agent.go
blob: fdd9a6aef544cc1f80783c65d6d9fa2b62c1e0ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// Copyright 2015 The go-ethereum Authors
// This file is part of go-ethereum.
//
// go-ethereum is free software: you can redistribute it and/or modify
// 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.
//
// go-ethereum is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>.

package miner

import (
    "math/big"
    "sync"
    "time"

    "github.com/ethereum/ethash"
    "github.com/ethereum/go-ethereum/common"
    "github.com/ethereum/go-ethereum/logger"
    "github.com/ethereum/go-ethereum/logger/glog"
)

type RemoteAgent struct {
    mu sync.Mutex

    quit     chan struct{}
    workCh   chan *Work
    returnCh chan<- *Result

    currentWork *Work
    work        map[common.Hash]*Work
}

func NewRemoteAgent() *RemoteAgent {
    agent := &RemoteAgent{work: make(map[common.Hash]*Work)}

    return agent
}

func (a *RemoteAgent) Work() chan<- *Work {
    return a.workCh
}

func (a *RemoteAgent) SetReturnCh(returnCh chan<- *Result) {
    a.returnCh = returnCh
}

func (a *RemoteAgent) Start() {
    a.quit = make(chan struct{})
    a.workCh = make(chan *Work, 1)
    go a.maintainLoop()
}

func (a *RemoteAgent) Stop() {
    close(a.quit)
    close(a.workCh)
}

func (a *RemoteAgent) GetHashRate() int64 { return 0 }

func (a *RemoteAgent) GetWork() [3]string {
    a.mu.Lock()
    defer a.mu.Unlock()

    var res [3]string

    if a.currentWork != nil {
        block := a.currentWork.Block

        res[0] = block.HashNoNonce().Hex()
        seedHash, _ := ethash.GetSeedHash(block.NumberU64())
        res[1] = common.BytesToHash(seedHash).Hex()
        // Calculate the "target" to be returned to the external miner
        n := big.NewInt(1)
        n.Lsh(n, 255)
        n.Div(n, block.Difficulty())
        n.Lsh(n, 1)
        res[2] = common.BytesToHash(n.Bytes()).Hex()

        a.work[block.HashNoNonce()] = a.currentWork
    }

    return res
}

// Returns true or false, but does not indicate if the PoW was correct
func (a *RemoteAgent) SubmitWork(nonce uint64, mixDigest, hash common.Hash) bool {
    a.mu.Lock()
    defer a.mu.Unlock()

    // Make sure the work submitted is present
    if a.work[hash] != nil {
        block := a.work[hash].Block.WithMiningResult(nonce, mixDigest)
        a.returnCh <- &Result{a.work[hash], block}

        delete(a.work, hash)

        return true
    } else {
        glog.V(logger.Info).Infof("Work was submitted for %x but no pending work found\n", hash)
    }

    return false
}

func (a *RemoteAgent) maintainLoop() {
    ticker := time.Tick(5 * time.Second)

out:
    for {
        select {
        case <-a.quit:
            break out
        case work := <-a.workCh:
            a.mu.Lock()
            a.currentWork = work
            a.mu.Unlock()
        case <-ticker:
            // cleanup
            a.mu.Lock()
            for hash, work := range a.work {
                if time.Since(work.createdAt) > 7*(12*time.Second) {
                    delete(a.work, hash)
                }
            }
            a.mu.Unlock()
        }
    }
}