@ -1,25 +1,37 @@
package config
package config
import (
import (
"bytes"
"os"
"os"
"path"
"path/filepath"
"path/filepath"
"strings "
"text/template "
cmn "github.com/tendermint/tmlibs/common"
cmn "github.com/tendermint/tmlibs/common"
)
)
var configTemplate * template . Template
func init ( ) {
var err error
if configTemplate , err = template . New ( "configFileTemplate" ) . Parse ( defaultConfigTemplate ) ; err != nil {
panic ( err )
}
}
/****** these are for production settings ***********/
/****** these are for production settings ***********/
func EnsureRoot ( rootDir string ) {
func EnsureRoot ( rootDir string ) {
if err := cmn . EnsureDir ( rootDir , 0700 ) ; err != nil {
if err := cmn . EnsureDir ( rootDir , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
cmn . PanicSanity ( err . Error ( ) )
}
}
if err := cmn . EnsureDir ( rootDir + "/data" , 0700 ) ; err != nil {
if err := cmn . EnsureDir ( filepath . Join ( rootDir , defaultConfigDir ) , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
}
if err := cmn . EnsureDir ( filepath . Join ( rootDir , defaultDataDir ) , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
cmn . PanicSanity ( err . Error ( ) )
}
}
configFilePath := path . Join ( rootDir , "config.toml" )
configFilePath := file path. Join ( rootDir , defaultConfigFilePath )
// Write default config file if missing.
// Write default config file if missing.
if ! cmn . FileExists ( configFilePath ) {
if ! cmn . FileExists ( configFilePath ) {
@ -27,26 +39,153 @@ func EnsureRoot(rootDir string) {
}
}
}
}
var defaultConfigTmpl = ` # This is a TOML config file .
// XXX: this func should probably be called by cmd/tendermint/commands/init.go
// alongside the writing of the genesis.json and priv_validator.json
func writeConfigFile ( configFilePath string ) {
var buffer bytes . Buffer
if err := configTemplate . Execute ( & buffer , DefaultConfig ( ) ) ; err != nil {
panic ( err )
}
cmn . MustWriteFile ( configFilePath , buffer . Bytes ( ) , 0644 )
}
// Note: any changes to the comments/variables/mapstructure
// must be reflected in the appropriate struct in config/config.go
const defaultConfigTemplate = ` # This is a TOML config file .
# For more information , see https : //github.com/toml-lang/toml
# For more information , see https : //github.com/toml-lang/toml
proxy_app = "tcp://127.0.0.1:46658"
moniker = "__MONIKER__"
fast_sync = true
db_backend = "leveldb"
log_level = "state:info,*:error"
# # # # # main base config options # # # # #
# TCP or UNIX socket address of the ABCI application ,
# or the name of an ABCI application compiled in with the Tendermint binary
proxy_app = "{{ .BaseConfig.ProxyApp }}"
# A custom human readable name for this node
moniker = "{{ .BaseConfig.Moniker }}"
# If this node is many blocks behind the tip of the chain , FastSync
# allows them to catchup quickly by downloading blocks in parallel
# and verifying their commits
fast_sync = { { . BaseConfig . FastSync } }
# Database backend : leveldb | memdb
db_backend = "{{ .BaseConfig.DBBackend }}"
# Database directory
db_path = "{{ .BaseConfig.DBPath }}"
# Output level for logging
log_level = "{{ .BaseConfig.LogLevel }}"
# # # # # additional base config options # # # # #
# The ID of the chain to join ( should be signed with every transaction and vote )
chain_id = "{{ .BaseConfig.ChainID }}"
# Path to the JSON file containing the initial validator set and other meta data
genesis_file = "{{ .BaseConfig.Genesis }}"
# Path to the JSON file containing the private key to use as a validator in the consensus protocol
priv_validator_file = "{{ .BaseConfig.PrivValidator }}"
# Mechanism to connect to the ABCI application : socket | grpc
abci = "{{ .BaseConfig.ABCI }}"
# TCP or UNIX socket address for the profiling server to listen on
prof_laddr = "{{ .BaseConfig.ProfListenAddress }}"
# If true , query the ABCI app on connecting to a new peer
# so the app can decide if we should keep the connection or not
filter_peers = { { . BaseConfig . FilterPeers } }
# What indexer to use for transactions
tx_index = "{{ .BaseConfig.TxIndex }}"
# # # # # advanced configuration options # # # # #
# # # # # rpc server configuration options # # # # #
[ rpc ]
[ rpc ]
laddr = "tcp://0.0.0.0:46657"
# TCP or UNIX socket address for the RPC server to listen on
laddr = "{{ .RPC.ListenAddress }}"
# TCP or UNIX socket address for the gRPC server to listen on
# NOTE : This server only supports / broadcast_tx_commit
grpc_laddr = "{{ .RPC.GRPCListenAddress }}"
# Activate unsafe RPC commands like / dial_seeds and / unsafe_flush_mempool
unsafe = { { . RPC . Unsafe } }
# # # # # peer to peer configuration options # # # # #
[ p2p ]
[ p2p ]
laddr = "tcp://0.0.0.0:46656"
# Address to listen for incoming connections
laddr = "{{ .P2P.ListenAddress }}"
# Comma separated list of seed nodes to connect to
seeds = ""
seeds = ""
`
func defaultConfig ( moniker string ) string {
return strings . Replace ( defaultConfigTmpl , "__MONIKER__" , moniker , - 1 )
}
# Path to address book
addr_book_file = "{{ .P2P.AddrBook }}"
# Set true for strict address routability rules
addr_book_strict = { { . P2P . AddrBookStrict } }
# Time to wait before flushing messages out on the connection , in ms
flush_throttle_timeout = { { . P2P . FlushThrottleTimeout } }
# Maximum number of peers to connect to
max_num_peers = { { . P2P . MaxNumPeers } }
# Maximum size of a message packet payload , in bytes
max_msg_packet_payload_size = { { . P2P . MaxMsgPacketPayloadSize } }
# Rate at which packets can be sent , in bytes / second
send_rate = { { . P2P . SendRate } }
# Rate at which packets can be received , in bytes / second
recv_rate = { { . P2P . RecvRate } }
# # # # # mempool configuration options # # # # #
[ mempool ]
recheck = { { . Mempool . Recheck } }
recheck_empty = { { . Mempool . RecheckEmpty } }
broadcast = { { . Mempool . Broadcast } }
wal_dir = "{{ .Mempool.WalPath }}"
# # # # # consensus configuration options # # # # #
[ consensus ]
wal_file = "{{ .Consensus.WalPath }}"
wal_light = { { . Consensus . WalLight } }
# All timeouts are in milliseconds
timeout_propose = { { . Consensus . TimeoutPropose } }
timeout_propose_delta = { { . Consensus . TimeoutProposeDelta } }
timeout_prevote = { { . Consensus . TimeoutPrevote } }
timeout_prevote_delta = { { . Consensus . TimeoutPrevoteDelta } }
timeout_precommit = { { . Consensus . TimeoutPrecommit } }
timeout_precommit_delta = { { . Consensus . TimeoutPrecommitDelta } }
timeout_commit = { { . Consensus . TimeoutCommit } }
# Make progress as soon as we have all the precommits ( as if TimeoutCommit = 0 )
skip_timeout_commit = { { . Consensus . SkipTimeoutCommit } }
# BlockSize
max_block_size_txs = { { . Consensus . MaxBlockSizeTxs } }
max_block_size_bytes = { { . Consensus . MaxBlockSizeBytes } }
# EmptyBlocks mode and possible interval between empty blocks in seconds
create_empty_blocks = { { . Consensus . CreateEmptyBlocks } }
create_empty_blocks_interval = { { . Consensus . CreateEmptyBlocksInterval } }
# Reactor sleep duration parameters are in milliseconds
peer_gossip_sleep_duration = { { . Consensus . PeerGossipSleepDuration } }
peer_query_maj23_sleep_duration = { { . Consensus . PeerQueryMaj23SleepDuration } }
`
/****** these are for test settings ***********/
/****** these are for test settings ***********/
@ -69,13 +208,17 @@ func ResetTestRoot(testName string) *Config {
if err := cmn . EnsureDir ( rootDir , 0700 ) ; err != nil {
if err := cmn . EnsureDir ( rootDir , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
cmn . PanicSanity ( err . Error ( ) )
}
}
if err := cmn . EnsureDir ( rootDir + "/data" , 0700 ) ; err != nil {
if err := cmn . EnsureDir ( filepath . Join ( rootDir , defaultConfigDir ) , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
}
if err := cmn . EnsureDir ( filepath . Join ( rootDir , defaultDataDir ) , 0700 ) ; err != nil {
cmn . PanicSanity ( err . Error ( ) )
cmn . PanicSanity ( err . Error ( ) )
}
}
configFilePath := path . Join ( rootDir , "config.toml" )
genesisFilePath := path . Join ( rootDir , "genesis.json" )
privFilePath := path . Join ( rootDir , "priv_validator.json" )
baseConfig := DefaultBaseConfig ( )
configFilePath := filepath . Join ( rootDir , defaultConfigFilePath )
genesisFilePath := filepath . Join ( rootDir , baseConfig . Genesis )
privFilePath := filepath . Join ( rootDir , baseConfig . PrivValidator )
// Write default config file if missing.
// Write default config file if missing.
if ! cmn . FileExists ( configFilePath ) {
if ! cmn . FileExists ( configFilePath ) {
@ -91,28 +234,6 @@ func ResetTestRoot(testName string) *Config {
return config
return config
}
}
var testConfigTmpl = ` # This is a TOML config file .
# For more information , see https : //github.com/toml-lang/toml
proxy_app = "dummy"
moniker = "__MONIKER__"
fast_sync = false
db_backend = "memdb"
log_level = "info"
[ rpc ]
laddr = "tcp://0.0.0.0:36657"
[ p2p ]
laddr = "tcp://0.0.0.0:36656"
seeds = ""
`
func testConfig ( moniker string ) ( testConfig string ) {
testConfig = strings . Replace ( testConfigTmpl , "__MONIKER__" , moniker , - 1 )
return
}
var testGenesis = ` {
var testGenesis = ` {
"genesis_time" : "0001-01-01T00:00:00.000Z" ,
"genesis_time" : "0001-01-01T00:00:00.000Z" ,
"chain_id" : "tendermint_test" ,
"chain_id" : "tendermint_test" ,