-
Notifications
You must be signed in to change notification settings - Fork 202
/
config.go
170 lines (142 loc) · 4.47 KB
/
config.go
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package config
import "time"
// CacheConfig will map the json cache configuration
type CacheConfig struct {
Size uint32 `json:"size"`
Type string `json:"type"`
Shards uint32 `json:"shards"`
}
// DBConfig will map the json db configuration
type DBConfig struct {
FilePath string `json:"file"`
Type string `json:"type"`
BatchDelaySeconds int `json:"batchDelaySeconds"`
MaxBatchSize int `json:"maxBatchSize"`
}
// BloomFilterConfig will map the json bloom filter configuration
type BloomFilterConfig struct {
Size uint `json:"size"`
HashFunc []string `json:"hashFunc"`
}
// StorageConfig will map the json storage unit configuration
type StorageConfig struct {
Cache CacheConfig `json:"cache"`
DB DBConfig `json:"db"`
Bloom BloomFilterConfig `json:"bloom"`
}
// LoggerConfig will map the json logger configuration
type LoggerConfig struct {
Path string `json:"path"`
StackTraceDepth int `json:"stackTraceDepth"`
}
// AddressConfig will map the json address configuration
type AddressConfig struct {
Length int `json:"length"`
Prefix string `json:"prefix"`
}
// TypeConfig will map the json string type configuration
type TypeConfig struct {
Type string `json:"type"`
}
// NTPConfig will hold the configuration for NTP queries
type NTPConfig struct {
Host string
Port int
Timeout time.Duration
Version int
}
// Config will hold the entire application configuration parameters
type Config struct {
MiniBlocksStorage StorageConfig
PeerBlockBodyStorage StorageConfig
BlockHeaderStorage StorageConfig
TxStorage StorageConfig
SmartContractResultStorage StorageConfig
ShardHdrNonceHashStorage StorageConfig
MetaHdrNonceHashStorage StorageConfig
ShardDataStorage StorageConfig
MetaBlockStorage StorageConfig
PeerDataStorage StorageConfig
AccountsTrieStorage StorageConfig
BadBlocksCache CacheConfig
TxBlockBodyDataPool CacheConfig
StateBlockBodyDataPool CacheConfig
PeerBlockBodyDataPool CacheConfig
BlockHeaderDataPool CacheConfig
BlockHeaderNoncesDataPool CacheConfig
TxDataPool CacheConfig
SmartContractDataPool CacheConfig
MetaBlockBodyDataPool CacheConfig
MiniBlockHeaderHashesDataPool CacheConfig
ShardHeadersDataPool CacheConfig
MetaHeaderNoncesDataPool CacheConfig
Logger LoggerConfig
Address AddressConfig
Hasher TypeConfig
MultisigHasher TypeConfig
Marshalizer TypeConfig
ResourceStats ResourceStatsConfig
Heartbeat HeartbeatConfig
GeneralSettings GeneralSettingsConfig
Consensus TypeConfig
Explorer ExplorerConfig
NTPConfig NTPConfig
}
// NodeConfig will hold basic p2p settings
type NodeConfig struct {
Port int
Seed string
}
// MdnsPeerDiscoveryConfig will hold the mdns discovery config settings
type MdnsPeerDiscoveryConfig struct {
Enabled bool
RefreshIntervalInSec int
ServiceTag string
}
// KadDhtPeerDiscoveryConfig will hold the kad-dht discovery config settings
type KadDhtPeerDiscoveryConfig struct {
Enabled bool
RefreshIntervalInSec int
RandezVous string
InitialPeerList []string
}
// P2PConfig will hold all the P2P settings
type P2PConfig struct {
Node NodeConfig
MdnsPeerDiscovery MdnsPeerDiscoveryConfig
KadDhtPeerDiscovery KadDhtPeerDiscoveryConfig
}
// ResourceStatsConfig will hold all resource stats settings
type ResourceStatsConfig struct {
Enabled bool
RefreshIntervalInSec int
}
// HeartbeatConfig will hold all heartbeat settings
type HeartbeatConfig struct {
Enabled bool
MinTimeToWaitBetweenBroadcastsInSec int
MaxTimeToWaitBetweenBroadcastsInSec int
DurationInSecToConsiderUnresponsive int
}
// GeneralSettingsConfig will hold the general settings for a node
type GeneralSettingsConfig struct {
DestinationShardAsObserver string
}
// ExplorerConfig will hold the configuration for the explorer indexer
type ExplorerConfig struct {
Enabled bool
IndexerURL string
}
// ServersConfig will hold all the confidential settings for servers
type ServersConfig struct {
ElasticSearch ElasticSearchConfig
}
// ElasticSearchConfig will hold the configuration for the elastic search
type ElasticSearchConfig struct {
Username string
Password string
}
// FacadeConfig will hold different configuration option that will be passed to the main ElrondFacade
type FacadeConfig struct {
RestApiPort string
}