You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.9 KiB

cleanup: Reduce and normalize import path aliasing. (#6975) The code in the Tendermint repository makes heavy use of import aliasing. This is made necessary by our extensive reuse of common base package names, and by repetition of similar names across different subdirectories. Unfortunately we have not been very consistent about which packages we alias in various circumstances, and the aliases we use vary. In the spirit of the advice in the style guide and https://github.com/golang/go/wiki/CodeReviewComments#imports, his change makes an effort to clean up and normalize import aliasing. This change makes no API or behavioral changes. It is a pure cleanup intended o help make the code more readable to developers (including myself) trying to understand what is being imported where. Only unexported names have been modified, and the changes were generated and applied mechanically with gofmt -r and comby, respecting the lexical and syntactic rules of Go. Even so, I did not fix every inconsistency. Where the changes would be too disruptive, I left it alone. The principles I followed in this cleanup are: - Remove aliases that restate the package name. - Remove aliases where the base package name is unambiguous. - Move overly-terse abbreviations from the import to the usage site. - Fix lexical issues (remove underscores, remove capitalization). - Fix import groupings to more closely match the style guide. - Group blank (side-effecting) imports and ensure they are commented. - Add aliases to multiple imports with the same base package name.
3 years ago
cleanup: Reduce and normalize import path aliasing. (#6975) The code in the Tendermint repository makes heavy use of import aliasing. This is made necessary by our extensive reuse of common base package names, and by repetition of similar names across different subdirectories. Unfortunately we have not been very consistent about which packages we alias in various circumstances, and the aliases we use vary. In the spirit of the advice in the style guide and https://github.com/golang/go/wiki/CodeReviewComments#imports, his change makes an effort to clean up and normalize import aliasing. This change makes no API or behavioral changes. It is a pure cleanup intended o help make the code more readable to developers (including myself) trying to understand what is being imported where. Only unexported names have been modified, and the changes were generated and applied mechanically with gofmt -r and comby, respecting the lexical and syntactic rules of Go. Even so, I did not fix every inconsistency. Where the changes would be too disruptive, I left it alone. The principles I followed in this cleanup are: - Remove aliases that restate the package name. - Remove aliases where the base package name is unambiguous. - Move overly-terse abbreviations from the import to the usage site. - Fix lexical issues (remove underscores, remove capitalization). - Fix import groupings to more closely match the style guide. - Group blank (side-effecting) imports and ensure they are commented. - Add aliases to multiple imports with the same base package name.
3 years ago
cleanup: Reduce and normalize import path aliasing. (#6975) The code in the Tendermint repository makes heavy use of import aliasing. This is made necessary by our extensive reuse of common base package names, and by repetition of similar names across different subdirectories. Unfortunately we have not been very consistent about which packages we alias in various circumstances, and the aliases we use vary. In the spirit of the advice in the style guide and https://github.com/golang/go/wiki/CodeReviewComments#imports, his change makes an effort to clean up and normalize import aliasing. This change makes no API or behavioral changes. It is a pure cleanup intended o help make the code more readable to developers (including myself) trying to understand what is being imported where. Only unexported names have been modified, and the changes were generated and applied mechanically with gofmt -r and comby, respecting the lexical and syntactic rules of Go. Even so, I did not fix every inconsistency. Where the changes would be too disruptive, I left it alone. The principles I followed in this cleanup are: - Remove aliases that restate the package name. - Remove aliases where the base package name is unambiguous. - Move overly-terse abbreviations from the import to the usage site. - Fix lexical issues (remove underscores, remove capitalization). - Fix import groupings to more closely match the style guide. - Group blank (side-effecting) imports and ensure they are commented. - Add aliases to multiple imports with the same base package name.
3 years ago
cleanup: Reduce and normalize import path aliasing. (#6975) The code in the Tendermint repository makes heavy use of import aliasing. This is made necessary by our extensive reuse of common base package names, and by repetition of similar names across different subdirectories. Unfortunately we have not been very consistent about which packages we alias in various circumstances, and the aliases we use vary. In the spirit of the advice in the style guide and https://github.com/golang/go/wiki/CodeReviewComments#imports, his change makes an effort to clean up and normalize import aliasing. This change makes no API or behavioral changes. It is a pure cleanup intended o help make the code more readable to developers (including myself) trying to understand what is being imported where. Only unexported names have been modified, and the changes were generated and applied mechanically with gofmt -r and comby, respecting the lexical and syntactic rules of Go. Even so, I did not fix every inconsistency. Where the changes would be too disruptive, I left it alone. The principles I followed in this cleanup are: - Remove aliases that restate the package name. - Remove aliases where the base package name is unambiguous. - Move overly-terse abbreviations from the import to the usage site. - Fix lexical issues (remove underscores, remove capitalization). - Fix import groupings to more closely match the style guide. - Group blank (side-effecting) imports and ensure they are commented. - Add aliases to multiple imports with the same base package name.
3 years ago
  1. package consensus
  2. import (
  3. "context"
  4. abciclient "github.com/tendermint/tendermint/abci/client"
  5. abci "github.com/tendermint/tendermint/abci/types"
  6. "github.com/tendermint/tendermint/internal/libs/clist"
  7. "github.com/tendermint/tendermint/internal/mempool"
  8. "github.com/tendermint/tendermint/internal/proxy"
  9. tmstate "github.com/tendermint/tendermint/proto/tendermint/state"
  10. "github.com/tendermint/tendermint/types"
  11. )
  12. //-----------------------------------------------------------------------------
  13. type emptyMempool struct{}
  14. var _ mempool.Mempool = emptyMempool{}
  15. func (emptyMempool) Lock() {}
  16. func (emptyMempool) Unlock() {}
  17. func (emptyMempool) Size() int { return 0 }
  18. func (emptyMempool) CheckTx(_ context.Context, _ types.Tx, _ func(*abci.Response), _ mempool.TxInfo) error {
  19. return nil
  20. }
  21. func (emptyMempool) RemoveTxByKey(txKey types.TxKey) error { return nil }
  22. func (emptyMempool) ReapMaxBytesMaxGas(_, _ int64) types.Txs { return types.Txs{} }
  23. func (emptyMempool) ReapMaxTxs(n int) types.Txs { return types.Txs{} }
  24. func (emptyMempool) Update(
  25. _ int64,
  26. _ types.Txs,
  27. _ []*abci.ResponseDeliverTx,
  28. _ mempool.PreCheckFunc,
  29. _ mempool.PostCheckFunc,
  30. ) error {
  31. return nil
  32. }
  33. func (emptyMempool) Flush() {}
  34. func (emptyMempool) FlushAppConn() error { return nil }
  35. func (emptyMempool) TxsAvailable() <-chan struct{} { return make(chan struct{}) }
  36. func (emptyMempool) EnableTxsAvailable() {}
  37. func (emptyMempool) SizeBytes() int64 { return 0 }
  38. func (emptyMempool) TxsFront() *clist.CElement { return nil }
  39. func (emptyMempool) TxsWaitChan() <-chan struct{} { return nil }
  40. func (emptyMempool) InitWAL() error { return nil }
  41. func (emptyMempool) CloseWAL() {}
  42. //-----------------------------------------------------------------------------
  43. // mockProxyApp uses ABCIResponses to give the right results.
  44. //
  45. // Useful because we don't want to call Commit() twice for the same block on
  46. // the real app.
  47. func newMockProxyApp(appHash []byte, abciResponses *tmstate.ABCIResponses) proxy.AppConnConsensus {
  48. clientCreator := abciclient.NewLocalCreator(&mockProxyApp{
  49. appHash: appHash,
  50. abciResponses: abciResponses,
  51. })
  52. cli, _ := clientCreator()
  53. err := cli.Start()
  54. if err != nil {
  55. panic(err)
  56. }
  57. return proxy.NewAppConnConsensus(cli)
  58. }
  59. type mockProxyApp struct {
  60. abci.BaseApplication
  61. appHash []byte
  62. txCount int
  63. abciResponses *tmstate.ABCIResponses
  64. }
  65. func (mock *mockProxyApp) DeliverTx(req abci.RequestDeliverTx) abci.ResponseDeliverTx {
  66. r := mock.abciResponses.DeliverTxs[mock.txCount]
  67. mock.txCount++
  68. if r == nil {
  69. return abci.ResponseDeliverTx{}
  70. }
  71. return *r
  72. }
  73. func (mock *mockProxyApp) EndBlock(req abci.RequestEndBlock) abci.ResponseEndBlock {
  74. mock.txCount = 0
  75. return *mock.abciResponses.EndBlock
  76. }
  77. func (mock *mockProxyApp) Commit() abci.ResponseCommit {
  78. return abci.ResponseCommit{Data: mock.appHash}
  79. }