Browse Source

fixes from Jae's review

1. remove pointer
2. add Quit() method to Service interface
pull/1209/head
Anton Kaliaev 6 years ago
parent
commit
2a24ae90c1
No known key found for this signature in database GPG Key ID: 7B6881D965918214
21 changed files with 38 additions and 46 deletions
  1. +4
    -4
      blockchain/pool.go
  2. +1
    -1
      blockchain/reactor.go
  3. +2
    -3
      blockchain/reactor_test.go
  4. +1
    -1
      consensus/reactor.go
  5. +1
    -1
      consensus/state.go
  6. +1
    -1
      consensus/ticker.go
  7. +1
    -1
      evidence/reactor.go
  8. +4
    -4
      glide.lock
  9. +2
    -2
      glide.yaml
  10. +4
    -4
      mempool/reactor.go
  11. +1
    -1
      node/node_test.go
  12. +0
    -6
      p2p/peer.go
  13. +1
    -1
      p2p/pex/addrbook.go
  14. +2
    -2
      p2p/pex/pex_reactor.go
  15. +0
    -1
      p2p/pex/pex_reactor_test.go
  16. +2
    -2
      p2p/trust/metric.go
  17. +1
    -1
      p2p/trust/store.go
  18. +1
    -1
      rpc/client/httpclient.go
  19. +3
    -3
      rpc/lib/client/ws_client.go
  20. +2
    -2
      rpc/lib/client/ws_client_test.go
  21. +4
    -4
      rpc/lib/server/handlers.go

+ 4
- 4
blockchain/pool.go View File

@ -534,10 +534,10 @@ OUTER_LOOP:
// Send request and wait.
bpr.pool.sendRequest(bpr.height, peer.id)
select {
case <-bpr.pool.Quit:
case <-bpr.pool.Quit():
bpr.Stop()
return
case <-bpr.Quit:
case <-bpr.Quit():
return
case <-bpr.redoCh:
bpr.reset()
@ -545,10 +545,10 @@ OUTER_LOOP:
case <-bpr.gotBlockCh:
// We got the block, now see if it's good.
select {
case <-bpr.pool.Quit:
case <-bpr.pool.Quit():
bpr.Stop()
return
case <-bpr.Quit:
case <-bpr.Quit():
return
case <-bpr.redoCh:
bpr.reset()


+ 1
- 1
blockchain/reactor.go View File

@ -322,7 +322,7 @@ FOR_LOOP:
}
}
continue FOR_LOOP
case <-bcR.Quit:
case <-bcR.Quit():
break FOR_LOOP
}
}


+ 2
- 3
blockchain/reactor_test.go View File

@ -157,7 +157,7 @@ func makeBlock(height int64, state sm.State) *types.Block {
// The Test peer
type bcrTestPeer struct {
*cmn.BaseService
cmn.BaseService
id p2p.ID
ch chan interface{}
}
@ -169,7 +169,7 @@ func newbcrTestPeer(id p2p.ID) *bcrTestPeer {
id: id,
ch: make(chan interface{}, 2),
}
bcr.BaseService = cmn.NewBaseService(nil, "bcrTestPeer", bcr)
bcr.BaseService = *cmn.NewBaseService(nil, "bcrTestPeer", bcr)
return bcr
}
@ -196,4 +196,3 @@ func (tp *bcrTestPeer) IsOutbound() bool { return false }
func (tp *bcrTestPeer) IsPersistent() bool { return true }
func (tp *bcrTestPeer) Get(s string) interface{} { return s }
func (tp *bcrTestPeer) Set(string, interface{}) {}
func (tp *bcrTestPeer) QuitChan() <-chan struct{} { return tp.Quit }

+ 1
- 1
consensus/reactor.go View File

@ -380,7 +380,7 @@ func (conR *ConsensusReactor) startBroadcastRoutine() error {
edph := data.(types.TMEventData).Unwrap().(types.EventDataProposalHeartbeat)
conR.broadcastProposalHeartbeatMessage(edph)
}
case <-conR.Quit:
case <-conR.Quit():
conR.eventBus.UnsubscribeAll(ctx, subscriber)
return
}


+ 1
- 1
consensus/state.go View File

@ -541,7 +541,7 @@ func (cs *ConsensusState) receiveRoutine(maxSteps int) {
// if the timeout is relevant to the rs
// go to the next step
cs.handleTimeout(ti, rs)
case <-cs.Quit:
case <-cs.Quit():
// NOTE: the internalMsgQueue may have signed messages from our
// priv_val that haven't hit the WAL, but its ok because


+ 1
- 1
consensus/ticker.go View File

@ -127,7 +127,7 @@ func (t *timeoutTicker) timeoutRoutine() {
// We can eliminate it by merging the timeoutRoutine into receiveRoutine
// and managing the timeouts ourselves with a millisecond ticker
go func(toi timeoutInfo) { t.tockChan <- toi }(ti)
case <-t.Quit:
case <-t.Quit():
return
}
}


+ 1
- 1
evidence/reactor.go View File

@ -126,7 +126,7 @@ func (evR *EvidenceReactor) broadcastRoutine() {
// broadcast all pending evidence
msg := &EvidenceListMessage{evR.evpool.PendingEvidence()}
evR.Switch.Broadcast(EvidenceChannel, struct{ EvidenceMessage }{msg})
case <-evR.Quit:
case <-evR.Quit():
return
}
}


+ 4
- 4
glide.lock View File

@ -1,5 +1,5 @@
hash: 41f411204b59e893053e59cda43466b3a6634c5fc88698d1f3131ecd5f239de7
updated: 2018-02-09T09:56:16.586709479Z
hash: 0a994be202cfc9c8a820c5a68321bbbf5592f48790b9bd408b5f95cd344c3be5
updated: 2018-02-12T08:29:16.126185849Z
imports:
- name: github.com/btcsuite/btcd
version: 50de9da05b50eb15658bb350f6ea24368a111ab7
@ -97,7 +97,7 @@ imports:
- leveldb/table
- leveldb/util
- name: github.com/tendermint/abci
version: 5a4f56056e23cdfd5f3733db056968e016468508
version: 5913ae8960c7ae5d748c37aa060bd35c99ff8a05
subpackages:
- client
- example/code
@ -117,7 +117,7 @@ imports:
subpackages:
- data
- name: github.com/tendermint/tmlibs
version: 52ce4c20f8bc9b6da5fc1274bcce27c0b9dd738a
version: a57340ffb53aefb0fca1fc610d18fcbcc61b126f
subpackages:
- autofile
- cli


+ 2
- 2
glide.yaml View File

@ -19,7 +19,7 @@ import:
- package: github.com/spf13/viper
version: v1.0.0
- package: github.com/tendermint/abci
version: develop
version: 5913ae8960c7ae5d748c37aa060bd35c99ff8a05
subpackages:
- client
- example/dummy
@ -31,7 +31,7 @@ import:
subpackages:
- data
- package: github.com/tendermint/tmlibs
version: develop
version: a57340ffb53aefb0fca1fc610d18fcbcc61b126f
subpackages:
- autofile
- cli


+ 4
- 4
mempool/reactor.go View File

@ -117,9 +117,9 @@ func (memR *MempoolReactor) broadcastTxRoutine(peer p2p.Peer) {
if next = memR.Mempool.TxsFront(); next == nil {
continue
}
case <-peer.QuitChan():
case <-peer.Quit():
return
case <-memR.Quit:
case <-memR.Quit():
return
}
}
@ -146,9 +146,9 @@ func (memR *MempoolReactor) broadcastTxRoutine(peer p2p.Peer) {
case <-next.NextWaitChan():
// see the start of the for loop for nil check
next = next.Next()
case <-peer.QuitChan():
case <-peer.Quit():
return
case <-memR.Quit:
case <-memR.Quit():
return
}
}


+ 1
- 1
node/node_test.go View File

@ -41,7 +41,7 @@ func TestNodeStartStop(t *testing.T) {
}()
select {
case <-n.Quit:
case <-n.Quit():
case <-time.After(5 * time.Second):
t.Fatal("timed out waiting for shutdown")
}


+ 0
- 6
p2p/peer.go View File

@ -18,7 +18,6 @@ import (
// Peer is an interface representing a peer connected on a reactor.
type Peer interface {
cmn.Service
QuitChan() <-chan struct{}
ID() ID // peer's cryptographic ID
IsOutbound() bool // did we dial the peer
@ -332,11 +331,6 @@ func (p *peer) String() string {
return fmt.Sprintf("Peer{%v %v in}", p.mconn, p.ID())
}
// QuitChan returns a channel, which will be closed once peer is stopped.
func (p *peer) QuitChan() <-chan struct{} {
return p.Quit
}
//------------------------------------------------------------------
// helper funcs


+ 1
- 1
p2p/pex/addrbook.go View File

@ -332,7 +332,7 @@ out:
select {
case <-saveFileTicker.C:
a.saveToFile(a.filePath)
case <-a.Quit:
case <-a.Quit():
break out
}
}


+ 2
- 2
p2p/pex/pex_reactor.go View File

@ -274,7 +274,7 @@ func (r *PEXReactor) ensurePeersRoutine() {
select {
case <-ticker.C:
r.ensurePeers()
case <-r.Quit:
case <-r.Quit():
ticker.Stop()
return
}
@ -409,7 +409,7 @@ func (r *PEXReactor) crawlPeersRoutine() {
case <-ticker.C:
r.attemptDisconnects()
r.crawlPeers()
case <-r.Quit:
case <-r.Quit():
return
}
}


+ 0
- 1
p2p/pex/pex_reactor_test.go View File

@ -368,4 +368,3 @@ func (mp mockPeer) Send(byte, interface{}) bool { return false }
func (mp mockPeer) TrySend(byte, interface{}) bool { return false }
func (mp mockPeer) Set(string, interface{}) {}
func (mp mockPeer) Get(string) interface{} { return nil }
func (mp mockPeer) QuitChan() <-chan struct{} { return mp.Quit }

+ 2
- 2
p2p/trust/metric.go View File

@ -118,7 +118,7 @@ func (tm *TrustMetric) OnStart() error {
}
// OnStop implements Service
// Nothing to do since the goroutine shuts down by itself via BaseService.Quit
// Nothing to do since the goroutine shuts down by itself via BaseService.Quit()
func (tm *TrustMetric) OnStop() {}
// Returns a snapshot of the trust metric history data
@ -298,7 +298,7 @@ loop:
select {
case <-tick:
tm.NextTimeInterval()
case <-tm.Quit:
case <-tm.Quit():
// Stop all further tracking for this metric
break loop
}


+ 1
- 1
p2p/trust/store.go View File

@ -200,7 +200,7 @@ loop:
select {
case <-t.C:
tms.SaveToDB()
case <-tms.Quit:
case <-tms.Quit():
break loop
}
}


+ 1
- 1
rpc/client/httpclient.go View File

@ -338,7 +338,7 @@ func (w *WSEvents) eventListener() {
ch <- result.Data
}
w.mtx.RUnlock()
case <-w.Quit:
case <-w.Quit():
return
}
}


+ 3
- 3
rpc/lib/client/ws_client.go View File

@ -335,7 +335,7 @@ func (c *WSClient) reconnectRoutine() {
c.startReadWriteRoutines()
}
}
case <-c.Quit:
case <-c.Quit():
return
}
}
@ -394,7 +394,7 @@ func (c *WSClient) writeRoutine() {
c.Logger.Debug("sent ping")
case <-c.readRoutineQuit:
return
case <-c.Quit:
case <-c.Quit():
if err := c.conn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, "")); err != nil {
c.Logger.Error("failed to write message", "err", err)
}
@ -455,7 +455,7 @@ func (c *WSClient) readRoutine() {
// c.wg.Wait() in c.Stop(). Note we rely on Quit being closed so that it sends unlimited Quit signals to stop
// both readRoutine and writeRoutine
select {
case <-c.Quit:
case <-c.Quit():
case c.ResponsesCh <- response:
}
}


+ 2
- 2
rpc/lib/client/ws_client_test.go View File

@ -132,7 +132,7 @@ func TestWSClientReconnectFailure(t *testing.T) {
for {
select {
case <-c.ResponsesCh:
case <-c.Quit:
case <-c.Quit():
return
}
}
@ -217,7 +217,7 @@ func callWgDoneOnResult(t *testing.T, c *WSClient, wg *sync.WaitGroup) {
if resp.Result != nil {
wg.Done()
}
case <-c.Quit:
case <-c.Quit():
return
}
}


+ 4
- 4
rpc/lib/server/handlers.go View File

@ -484,7 +484,7 @@ func (wsc *wsConnection) GetEventSubscriber() types.EventSubscriber {
// It implements WSRPCConnection. It is Goroutine-safe.
func (wsc *wsConnection) WriteRPCResponse(resp types.RPCResponse) {
select {
case <-wsc.Quit:
case <-wsc.Quit():
return
case wsc.writeChan <- resp:
}
@ -494,7 +494,7 @@ func (wsc *wsConnection) WriteRPCResponse(resp types.RPCResponse) {
// It implements WSRPCConnection. It is Goroutine-safe
func (wsc *wsConnection) TryWriteRPCResponse(resp types.RPCResponse) bool {
select {
case <-wsc.Quit:
case <-wsc.Quit():
return false
case wsc.writeChan <- resp:
return true
@ -525,7 +525,7 @@ func (wsc *wsConnection) readRoutine() {
for {
select {
case <-wsc.Quit:
case <-wsc.Quit():
return
default:
// reset deadline for every type of message (control or data)
@ -643,7 +643,7 @@ func (wsc *wsConnection) writeRoutine() {
return
}
}
case <-wsc.Quit:
case <-wsc.Quit():
return
}
}


Loading…
Cancel
Save