-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
core.go
291 lines (246 loc) · 11.2 KB
/
core.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package fabricconfig
import (
"time"
docker "github.com/fsouza/go-dockerclient"
)
type Core struct {
Logging *Logging `yaml:"logging,omitempty"`
Peer *Peer `yaml:"peer,omitempty"`
VM *VM `yaml:"vm,omitempty"`
Chaincode *Chaincode `yaml:"chaincode,omitempty"`
Ledger *Ledger `yaml:"ledger,omitempty"`
Operations *Operations `yaml:"operations,omitempty"`
}
type Logging struct {
Format string `yaml:"format,omitempty"`
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Peer struct {
ID string `yaml:"id,omitempty"`
NetworkID string `yaml:"networkId,omitempty"`
ListenAddress string `yaml:"listenAddress,omitempty"`
ChaincodeListenAddress string `yaml:"chaincodeListenAddress,omitempty"`
ChaincodeAddress string `yaml:"chaincodeAddress,omitempty"`
Address string `yaml:"address,omitempty"`
AddressAutoDetect bool `yaml:"addressAutoDetect"`
Keepalive *Keepalive `yaml:"keepalive,omitempty"`
Gossip *Gossip `yaml:"gossip,omitempty"`
Events *Events `yaml:"events,omitempty"`
TLS *TLS `yaml:"tls,omitempty"`
Authentication *Authentication `yaml:"authentication,omitempty"`
FileSystemPath string `yaml:"fileSystemPath,omitempty"`
BCCSP *BCCSP `yaml:"BCCSP,omitempty"`
MSPConfigPath string `yaml:"mspConfigPath,omitempty"`
LocalMSPID string `yaml:"localMspId,omitempty"`
Deliveryclient *DeliveryClient `yaml:"deliveryclient,omitempty"`
LocalMspType string `yaml:"localMspType,omitempty"`
AdminService *Service `yaml:"adminService,omitempty"`
Handlers *Handlers `yaml:"handlers,omitempty"`
ValidatorPoolSize int `yaml:"validatorPoolSize,omitempty"`
Discovery *Discovery `yaml:"discovery,omitempty"`
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Keepalive struct {
MinInterval time.Duration `yaml:"minInterval,omitempty"`
Client *ClientKeepalive `yaml:"client,omitempty"`
DeliveryClient *ClientKeepalive `yaml:"deliveryClient,omitempty"`
}
type ClientKeepalive struct {
Interval time.Duration `yaml:"interval,omitempty"`
Timeout time.Duration `yaml:"timeout,omitempty"`
}
type Gossip struct {
Bootstrap string `yaml:"bootstrap,omitempty"`
UseLeaderElection bool `yaml:"useLeaderElection"`
OrgLeader bool `yaml:"orgLeader"`
Endpoint string `yaml:"endpoint,omitempty"`
MaxBlockCountToStore int `yaml:"maxBlockCountToStore,omitempty"`
MaxPropagationBurstLatency time.Duration `yaml:"maxPropagationBurstLatency,omitempty"`
MaxPropagationBurstSize int `yaml:"maxPropagationBurstSize,omitempty"`
PropagateIterations int `yaml:"propagateIterations,omitempty"`
PropagatePeerNum int `yaml:"propagatePeerNum,omitempty"`
PullInterval time.Duration `yaml:"pullInterval,omitempty"`
PullPeerNum int `yaml:"pullPeerNum,omitempty"`
RequestStateInfoInterval time.Duration `yaml:"requestStateInfoInterval,omitempty"`
PublishStateInfoInterval time.Duration `yaml:"publishStateInfoInterval,omitempty"`
StateInfoRetentionInterval time.Duration `yaml:"stateInfoRetentionInterval,omitempty"`
PublishCertPeriod time.Duration `yaml:"publishCertPeriod,omitempty"`
DialTimeout time.Duration `yaml:"dialTimeout,omitempty"`
ConnTimeout time.Duration `yaml:"connTimeout,omitempty"`
RecvBuffSize int `yaml:"recvBuffSize,omitempty"`
SendBuffSize int `yaml:"sendBuffSize,omitempty"`
DigestWaitTime time.Duration `yaml:"digestWaitTime,omitempty"`
RequestWaitTime time.Duration `yaml:"requestWaitTime,omitempty"`
ResponseWaitTime time.Duration `yaml:"responseWaitTime,omitempty"`
AliveTimeInterval time.Duration `yaml:"aliveTimeInterval,omitempty"`
AliveExpirationTimeout time.Duration `yaml:"aliveExpirationTimeout,omitempty"`
ReconnectInterval time.Duration `yaml:"reconnectInterval,omitempty"`
MsgExpirationFactor int `yaml:"msgExpirationFactor,omitempty"`
MaxConnectionAttempts int `yaml:"maxConnectionAttempts,omitempty"`
ExternalEndpoint string `yaml:"externalEndpoint,omitempty"`
Election *GossipElection `yaml:"election,omitempty"`
PvtData *GossipPvtData `yaml:"pvtData,omitempty"`
}
type GossipElection struct {
StartupGracePeriod time.Duration `yaml:"startupGracePeriod,omitempty"`
MembershipSampleInterval time.Duration `yaml:"membershipSampleInterval,omitempty"`
LeaderAliveThreshold time.Duration `yaml:"leaderAliveThreshold,omitempty"`
LeaderElectionDuration time.Duration `yaml:"leaderElectionDuration,omitempty"`
}
type GossipPvtData struct {
PullRetryThreshold time.Duration `yaml:"pullRetryThreshold,omitempty"`
TransientstoreMaxBlockRetention int `yaml:"transientstoreMaxBlockRetention,omitempty"`
PushAckTimeout time.Duration `yaml:"pushAckTimeout,omitempty"`
}
type Events struct {
Address string `yaml:"address,omitempty"`
Buffersize int `yaml:"buffersize,omitempty"`
Timeout time.Duration `yaml:"timeout,omitempty"`
Timewindow time.Duration `yaml:"timewindow,omitempty"`
Keepalive *Keepalive `yaml:"keepalive,omitempty"`
}
type TLS struct {
Enabled bool `yaml:"enabled"`
ClientAuthRequired bool `yaml:"clientAuthRequired"`
CA *FileRef `yaml:"ca,omitempty"`
Cert *FileRef `yaml:"cert,omitempty"`
Key *FileRef `yaml:"key,omitempty"`
RootCert *FileRef `yaml:"rootcert,omitempty"`
ClientRootCAs *FilesRef `yaml:"clientRootCAs,omitempty"`
ClientKey *FileRef `yaml:"clientKey,omitempty"`
ClientCert *FileRef `yaml:"clientCert,omitempty"`
}
type FileRef struct {
File string `yaml:"file,omitempty"`
}
type FilesRef struct {
Files []string `yaml:"files,omitempty"`
}
type Authentication struct {
Timewindow time.Duration `yaml:"timewindow,omitempty"`
}
type BCCSP struct {
Default string `yaml:"Default,omitempty"`
SW *SoftwareProvider `yaml:"SW,omitempty"`
}
type SoftwareProvider struct {
Hash string `yaml:"Hash,omitempty"`
Security int `yaml:"Security,omitempty"`
}
type DeliveryClient struct {
ReconnectTotalTimeThreshold time.Duration `yaml:"reconnectTotalTimeThreshold,omitempty"`
AddressOverrides []*AddressOverride `yaml:"addressOverrides,omitempty"`
}
type AddressOverride struct {
From string `yaml:"from"`
To string `yaml:"to"`
CACertsFile string `yaml:"caCertsFile"`
}
type Service struct {
Enabled bool `yaml:"enabled"`
ListenAddress string `yaml:"listenAddress,omitempty"`
}
type Handlers struct {
AuthFilters []Handler `yaml:"authFilters,omitempty"`
Decorators []Handler `yaml:"decorators,omitempty"`
Endorsers HandlerMap `yaml:"endorsers,omitempty"`
Validators HandlerMap `yaml:"validators,omitempty"`
}
type Handler struct {
Name string `yaml:"name,omitempty"`
Library string `yaml:"library,omitempty"`
}
type HandlerMap map[string]Handler
type Discovery struct {
Enabled bool `yaml:"enabled"`
AuthCacheEnabled bool `yaml:"authCacheEnabled"`
AuthCacheMaxSize int `yaml:"authCacheMaxSize,omitempty"`
AuthCachePurgeRetentionRatio float64 `yaml:"authCachePurgeRetentionRatio"`
OrgMembersAllowedAccess bool `yaml:"orgMembersAllowedAccess"`
}
type VM struct {
Endpoint string `yaml:"endpoint,omitempty"`
Docker *Docker `yaml:"docker,omitempty"`
}
type Docker struct {
TLS *TLS `yaml:"tls,omitempty"`
AttachStdout bool `yaml:"attachStdout"`
HostConfig *docker.HostConfig `yaml:"hostConfig,omitempty"`
}
type Chaincode struct {
Builder string `yaml:"builder,omitempty"`
Pull bool `yaml:"pull"`
Golang *Golang `yaml:"golang,omitempty"`
Car *Car `yaml:"car,omitempty"`
Java *Java `yaml:"java,omitempty"`
Node *Node `yaml:"node,omitempty"`
StartupTimeout time.Duration `yaml:"startupTimeout,omitempty"`
ExecuteTimeout time.Duration `yaml:"executeTimeout,omitempty"`
Mode string `yaml:"mode,omitempty"`
Keepalive int `yaml:"keepalive,omitempty"`
System SystemFlags `yaml:"system,omitempty"`
Logging *Logging `yaml:"logging,omitempty"`
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Golang struct {
Runtime string `yaml:"runtime,omitempty"`
DynamicLink bool `yaml:"dynamicLink"`
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Car struct {
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Java struct {
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type Node struct {
ExtraProperties map[string]interface{} `yaml:",inline,omitempty"`
}
type SystemFlags struct {
CSCC string `yaml:"cscc,omitempty"`
LSCC string `yaml:"lscc,omitempty"`
ESCC string `yaml:"escc,omitempty"`
VSCC string `yaml:"vscc,omitempty"`
QSCC string `yaml:"qscc,omitempty"`
}
type Ledger struct {
// Blockchain - not sure if it's needed
State *StateConfig `yaml:"state,omitempty"`
History *HistoryConfig `yaml:"history,omitempty"`
}
type StateConfig struct {
StateDatabase string `yaml:"stateDatabase,omitempty"`
CouchDBConfig *CouchDBConfig `yaml:"couchDBConfig,omitempty"`
}
type CouchDBConfig struct {
CouchDBAddress string `yaml:"couchDBAddress,omitempty"`
Username string `yaml:"username,omitempty"`
Password string `yaml:"password,omitempty"`
MaxRetries int `yaml:"maxRetries,omitempty"`
MaxRetriesOnStartup int `yaml:"maxRetriesOnStartup,omitempty"`
RequestTimeout time.Duration `yaml:"requestTimeout,omitempty"`
QueryLimit int `yaml:"queryLimit,omitempty"`
MaxBatchUpdateSize int `yaml:"maxBatchUpdateSize,omitempty"`
WarmIndexesAfterNBlocks int `yaml:"warmIndexesAfteNBlocks,omitempty"`
}
type HistoryConfig struct {
EnableHistoryDatabase bool `yaml:"enableHistoryDatabase"`
}
type Operations struct {
ListenAddress string `yaml:"listenAddress,omitempty"`
TLS *TLS `yaml:"tls"`
}
type Metrics struct {
Provider string `yaml:"provider"`
Statsd *Statsd `yaml:"statsd,omitempty"`
}
type Statsd struct {
Network string `yaml:"network,omitempty"`
Address string `yaml:"address,omitempty"`
WriteInterval time.Duration `yaml:"writeInterval,omitempty"`
Prefix string `yaml:"prefix,omitempty"`
}