OSDN Git Service

Small translation improvements during BM error reporting (#1693)
[bytom/bytom.git] / config / config.go
1 package config
2
3 import (
4         "io"
5         "io/ioutil"
6         "os"
7         "os/user"
8         "path/filepath"
9         "runtime"
10
11         log "github.com/sirupsen/logrus"
12
13         "github.com/bytom/crypto/ed25519"
14 )
15
16 var (
17         // CommonConfig means config object
18         CommonConfig *Config
19 )
20
21 type Config struct {
22         // Top level options use an anonymous struct
23         BaseConfig `mapstructure:",squash"`
24         // Options for services
25         P2P       *P2PConfig       `mapstructure:"p2p"`
26         Wallet    *WalletConfig    `mapstructure:"wallet"`
27         Auth      *RPCAuthConfig   `mapstructure:"auth"`
28         Web       *WebConfig       `mapstructure:"web"`
29         Simd      *SimdConfig      `mapstructure:"simd"`
30         Websocket *WebsocketConfig `mapstructure:"ws"`
31 }
32
33 // Default configurable parameters.
34 func DefaultConfig() *Config {
35         return &Config{
36                 BaseConfig: DefaultBaseConfig(),
37                 P2P:        DefaultP2PConfig(),
38                 Wallet:     DefaultWalletConfig(),
39                 Auth:       DefaultRPCAuthConfig(),
40                 Web:        DefaultWebConfig(),
41                 Simd:       DefaultSimdConfig(),
42                 Websocket:  DefaultWebsocketConfig(),
43         }
44 }
45
46 // Set the RootDir for all Config structs
47 func (cfg *Config) SetRoot(root string) *Config {
48         cfg.BaseConfig.RootDir = root
49         return cfg
50 }
51
52 // NodeKey retrieves the currently configured private key of the node, checking
53 // first any manually set key, falling back to the one found in the configured
54 // data folder. If no key can be found, a new one is generated.
55 func (cfg *Config) NodeKey() (string, error) {
56         // Use any specifically configured key.
57         if cfg.P2P.PrivateKey != "" {
58                 return cfg.P2P.PrivateKey, nil
59         }
60
61         keyFile := rootify(cfg.P2P.NodeKeyFile, cfg.BaseConfig.RootDir)
62         buf := make([]byte, ed25519.PrivateKeySize*2)
63         fd, err := os.Open(keyFile)
64         defer fd.Close()
65         if err == nil {
66                 if _, err = io.ReadFull(fd, buf); err == nil {
67                         return string(buf), nil
68                 }
69         }
70
71         log.WithField("err", err).Warning("key file access failed")
72         _, privKey, err := ed25519.GenerateKey(nil)
73         if err != nil {
74                 return "", err
75         }
76
77         if err = ioutil.WriteFile(keyFile, []byte(privKey.String()), 0600); err != nil {
78                 return "", err
79         }
80         return privKey.String(), nil
81 }
82
83 //-----------------------------------------------------------------------------
84 // BaseConfig
85 type BaseConfig struct {
86         // The root directory for all data.
87         // This should be set in viper so it can unmarshal into this struct
88         RootDir string `mapstructure:"home"`
89
90         //The alias of the node
91         NodeAlias string `mapstructure:"node_alias"`
92
93         //The ID of the network to json
94         ChainID string `mapstructure:"chain_id"`
95
96         //log level to set
97         LogLevel string `mapstructure:"log_level"`
98
99         // A custom human readable name for this node
100         Moniker string `mapstructure:"moniker"`
101
102         // TCP or UNIX socket address for the profiling server to listen on
103         ProfListenAddress string `mapstructure:"prof_laddr"`
104
105         Mining bool `mapstructure:"mining"`
106
107         // Database backend: leveldb | memdb
108         DBBackend string `mapstructure:"db_backend"`
109
110         // Database directory
111         DBPath string `mapstructure:"db_dir"`
112
113         // Keystore directory
114         KeysPath string `mapstructure:"keys_dir"`
115
116         ApiAddress string `mapstructure:"api_addr"`
117
118         VaultMode bool `mapstructure:"vault_mode"`
119
120         // log file name
121         LogFile string `mapstructure:"log_file"`
122 }
123
124 // Default configurable base parameters.
125 func DefaultBaseConfig() BaseConfig {
126         return BaseConfig{
127                 Moniker:           "anonymous",
128                 ProfListenAddress: "",
129                 Mining:            false,
130                 DBBackend:         "leveldb",
131                 DBPath:            "data",
132                 KeysPath:          "keystore",
133                 NodeAlias:         "",
134         }
135 }
136
137 func (b BaseConfig) DBDir() string {
138         return rootify(b.DBPath, b.RootDir)
139 }
140
141 func (b BaseConfig) KeysDir() string {
142         return rootify(b.KeysPath, b.RootDir)
143 }
144
145 // P2PConfig
146 type P2PConfig struct {
147         ListenAddress    string `mapstructure:"laddr"`
148         Seeds            string `mapstructure:"seeds"`
149         PrivateKey       string `mapstructure:"node_key"`
150         NodeKeyFile      string `mapstructure:"node_key_file"`
151         SkipUPNP         bool   `mapstructure:"skip_upnp"`
152         MaxNumPeers      int    `mapstructure:"max_num_peers"`
153         HandshakeTimeout int    `mapstructure:"handshake_timeout"`
154         DialTimeout      int    `mapstructure:"dial_timeout"`
155         ProxyAddress     string `mapstructure:"proxy_address"`
156         ProxyUsername    string `mapstructure:"proxy_username"`
157         ProxyPassword    string `mapstructure:"proxy_password"`
158         KeepDial         string `mapstructure:"keep_dial"`
159 }
160
161 // Default configurable p2p parameters.
162 func DefaultP2PConfig() *P2PConfig {
163         return &P2PConfig{
164                 ListenAddress:    "tcp://0.0.0.0:46656",
165                 NodeKeyFile:      "nodekey",
166                 SkipUPNP:         false,
167                 MaxNumPeers:      50,
168                 HandshakeTimeout: 30,
169                 DialTimeout:      3,
170                 ProxyAddress:     "",
171                 ProxyUsername:    "",
172                 ProxyPassword:    "",
173         }
174 }
175
176 //-----------------------------------------------------------------------------
177 type WalletConfig struct {
178         Disable  bool   `mapstructure:"disable"`
179         Rescan   bool   `mapstructure:"rescan"`
180         MaxTxFee uint64 `mapstructure:"max_tx_fee"`
181 }
182
183 type RPCAuthConfig struct {
184         Disable bool `mapstructure:"disable"`
185 }
186
187 type WebConfig struct {
188         Closed bool `mapstructure:"closed"`
189 }
190
191 type SimdConfig struct {
192         Enable bool `mapstructure:"enable"`
193 }
194
195 type WebsocketConfig struct {
196         MaxNumWebsockets     int `mapstructure:"max_num_websockets"`
197         MaxNumConcurrentReqs int `mapstructure:"max_num_concurrent_reqs"`
198 }
199
200 // Default configurable rpc's auth parameters.
201 func DefaultRPCAuthConfig() *RPCAuthConfig {
202         return &RPCAuthConfig{
203                 Disable: false,
204         }
205 }
206
207 // Default configurable web parameters.
208 func DefaultWebConfig() *WebConfig {
209         return &WebConfig{
210                 Closed: false,
211         }
212 }
213
214 // Default configurable wallet parameters.
215 func DefaultWalletConfig() *WalletConfig {
216         return &WalletConfig{
217                 Disable:  false,
218                 Rescan:   false,
219                 MaxTxFee: uint64(1000000000),
220         }
221 }
222
223 // Default configurable web parameters.
224 func DefaultSimdConfig() *SimdConfig {
225         return &SimdConfig{
226                 Enable: false,
227         }
228 }
229
230 func DefaultWebsocketConfig() *WebsocketConfig {
231         return &WebsocketConfig{
232                 MaxNumWebsockets:     25,
233                 MaxNumConcurrentReqs: 20,
234         }
235 }
236
237 //-----------------------------------------------------------------------------
238 // Utils
239
240 // helper function to make config creation independent of root dir
241 func rootify(path, root string) string {
242         if filepath.IsAbs(path) {
243                 return path
244         }
245         return filepath.Join(root, path)
246 }
247
248 // DefaultDataDir is the default data directory to use for the databases and other
249 // persistence requirements.
250 func DefaultDataDir() string {
251         // Try to place the data folder in the user's home dir
252         home := homeDir()
253         if home == "" {
254                 return "./.bytom"
255         }
256         switch runtime.GOOS {
257         case "darwin":
258                 // In order to be compatible with old data path,
259                 // copy the data from the old path to the new path
260                 oldPath := filepath.Join(home, "Library", "Bytom")
261                 newPath := filepath.Join(home, "Library", "Application Support", "Bytom")
262                 if !isFolderNotExists(oldPath) && isFolderNotExists(newPath) {
263                         if err := os.Rename(oldPath, newPath); err != nil {
264                                 log.Errorf("DefaultDataDir: %v", err)
265                                 return oldPath
266                         }
267                 }
268                 return newPath
269         case "windows":
270                 return filepath.Join(home, "AppData", "Roaming", "Bytom")
271         default:
272                 return filepath.Join(home, ".bytom")
273         }
274 }
275
276 func isFolderNotExists(path string) bool {
277         _, err := os.Stat(path)
278         return os.IsNotExist(err)
279 }
280
281 func homeDir() string {
282         if home := os.Getenv("HOME"); home != "" {
283                 return home
284         }
285         if usr, err := user.Current(); err == nil {
286                 return usr.HomeDir
287         }
288         return ""
289 }