-
Notifications
You must be signed in to change notification settings - Fork 202
/
interface.go
1091 lines (966 loc) · 42.1 KB
/
interface.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package process
import (
"math/big"
"time"
"github.com/ElrondNetwork/elrond-go-core/core"
"github.com/ElrondNetwork/elrond-go-core/data"
"github.com/ElrondNetwork/elrond-go-core/data/batch"
"github.com/ElrondNetwork/elrond-go-core/data/block"
"github.com/ElrondNetwork/elrond-go-core/data/endProcess"
"github.com/ElrondNetwork/elrond-go-core/data/rewardTx"
"github.com/ElrondNetwork/elrond-go-core/data/smartContractResult"
"github.com/ElrondNetwork/elrond-go-core/data/transaction"
"github.com/ElrondNetwork/elrond-go-core/data/typeConverters"
"github.com/ElrondNetwork/elrond-go-core/hashing"
"github.com/ElrondNetwork/elrond-go-core/marshal"
"github.com/ElrondNetwork/elrond-go-crypto"
"github.com/ElrondNetwork/elrond-go/common"
"github.com/ElrondNetwork/elrond-go/epochStart"
"github.com/ElrondNetwork/elrond-go/p2p"
"github.com/ElrondNetwork/elrond-go/process/block/bootstrapStorage"
"github.com/ElrondNetwork/elrond-go/process/block/processedMb"
"github.com/ElrondNetwork/elrond-go/sharding"
"github.com/ElrondNetwork/elrond-go/state"
"github.com/ElrondNetwork/elrond-go/storage"
vmcommon "github.com/ElrondNetwork/elrond-vm-common"
"github.com/ElrondNetwork/elrond-vm-common/parsers"
)
// TransactionProcessor is the main interface for transaction execution engine
type TransactionProcessor interface {
ProcessTransaction(transaction *transaction.Transaction) (vmcommon.ReturnCode, error)
IsInterfaceNil() bool
}
// RewardTransactionProcessor is the interface for reward transaction execution engine
type RewardTransactionProcessor interface {
ProcessRewardTransaction(rewardTx *rewardTx.RewardTx) error
IsInterfaceNil() bool
}
// RewardTransactionPreProcessor prepares the processing of reward transactions
type RewardTransactionPreProcessor interface {
AddComputedRewardMiniBlocks(computedRewardMiniblocks block.MiniBlockSlice)
IsInterfaceNil() bool
}
// SmartContractResultProcessor is the main interface for smart contract result execution engine
type SmartContractResultProcessor interface {
ProcessSmartContractResult(scr *smartContractResult.SmartContractResult) (vmcommon.ReturnCode, error)
IsInterfaceNil() bool
}
// TxTypeHandler is an interface to calculate the transaction type
type TxTypeHandler interface {
ComputeTransactionType(tx data.TransactionHandler) (TransactionType, TransactionType)
IsInterfaceNil() bool
}
// TxValidator can determine if a provided transaction handler is valid or not from the process point of view
type TxValidator interface {
CheckTxValidity(txHandler TxValidatorHandler) error
CheckTxWhiteList(data InterceptedData) error
IsInterfaceNil() bool
}
// TxValidatorHandler defines the functionality that is needed for a TxValidator to validate a transaction
type TxValidatorHandler interface {
SenderShardId() uint32
ReceiverShardId() uint32
Nonce() uint64
SenderAddress() []byte
Fee() *big.Int
}
// TxVersionCheckerHandler defines the functionality that is needed for a TxVersionChecker to validate transaction version
type TxVersionCheckerHandler interface {
IsSignedWithHash(tx *transaction.Transaction) bool
CheckTxVersion(tx *transaction.Transaction) error
IsInterfaceNil() bool
}
// HdrValidatorHandler defines the functionality that is needed for a HdrValidator to validate a header
type HdrValidatorHandler interface {
Hash() []byte
HeaderHandler() data.HeaderHandler
}
// InterceptedDataFactory can create new instances of InterceptedData
type InterceptedDataFactory interface {
Create(buff []byte) (InterceptedData, error)
IsInterfaceNil() bool
}
// InterceptedData represents the interceptor's view of the received data
type InterceptedData interface {
CheckValidity() error
IsForCurrentShard() bool
IsInterfaceNil() bool
Hash() []byte
Type() string
Identifiers() [][]byte
String() string
}
// InterceptorProcessor further validates and saves received data
type InterceptorProcessor interface {
Validate(data InterceptedData, fromConnectedPeer core.PeerID) error
Save(data InterceptedData, fromConnectedPeer core.PeerID, topic string) error
RegisterHandler(handler func(topic string, hash []byte, data interface{}))
IsInterfaceNil() bool
}
// InterceptorThrottler can monitor the number of the currently running interceptor go routines
type InterceptorThrottler interface {
CanProcess() bool
StartProcessing()
EndProcessing()
IsInterfaceNil() bool
}
// TransactionCoordinator is an interface to coordinate transaction processing using multiple processors
type TransactionCoordinator interface {
RequestMiniBlocks(header data.HeaderHandler)
RequestBlockTransactions(body *block.Body)
IsDataPreparedForProcessing(haveTime func() time.Duration) error
SaveTxsToStorage(body *block.Body) error
RestoreBlockDataFromStorage(body *block.Body) (int, error)
RemoveBlockDataFromPool(body *block.Body) error
RemoveTxsFromPool(body *block.Body) error
ProcessBlockTransaction(body *block.Body, haveTime func() time.Duration) error
CreateBlockStarted()
CreateMbsAndProcessCrossShardTransactionsDstMe(
header data.HeaderHandler,
processedMiniBlocksHashes map[string]struct{},
haveTime func() bool,
) (block.MiniBlockSlice, uint32, bool, error)
CreateMbsAndProcessTransactionsFromMe(haveTime func() bool) block.MiniBlockSlice
CreatePostProcessMiniBlocks() block.MiniBlockSlice
CreateMarshalizedData(body *block.Body) map[string][][]byte
GetAllCurrentUsedTxs(blockType block.Type) map[string]data.TransactionHandler
GetAllCurrentLogs() map[string]data.LogHandler
CreateReceiptsHash() ([]byte, error)
VerifyCreatedBlockTransactions(hdr data.HeaderHandler, body *block.Body) error
CreateMarshalizedReceipts() ([]byte, error)
VerifyCreatedMiniBlocks(hdr data.HeaderHandler, body *block.Body) error
IsInterfaceNil() bool
}
// SmartContractProcessor is the main interface for the smart contract caller engine
type SmartContractProcessor interface {
ExecuteSmartContractTransaction(tx data.TransactionHandler, acntSrc, acntDst state.UserAccountHandler) (vmcommon.ReturnCode, error)
ExecuteBuiltInFunction(tx data.TransactionHandler, acntSrc, acntDst state.UserAccountHandler) (vmcommon.ReturnCode, error)
DeploySmartContract(tx data.TransactionHandler, acntSrc state.UserAccountHandler) (vmcommon.ReturnCode, error)
ProcessIfError(acntSnd state.UserAccountHandler, txHash []byte, tx data.TransactionHandler, returnCode string, returnMessage []byte, snapshot int, gasLocked uint64) error
IsPayable(address []byte) (bool, error)
IsInterfaceNil() bool
}
// IntermediateTransactionHandler handles transactions which are not resolved in only one step
type IntermediateTransactionHandler interface {
AddIntermediateTransactions(txs []data.TransactionHandler) error
GetNumOfCrossInterMbsAndTxs() (int, int)
CreateAllInterMiniBlocks() []*block.MiniBlock
VerifyInterMiniBlocks(body *block.Body) error
SaveCurrentIntermediateTxToStorage() error
GetAllCurrentFinishedTxs() map[string]data.TransactionHandler
CreateBlockStarted()
GetCreatedInShardMiniBlock() *block.MiniBlock
RemoveProcessedResults()
InitProcessedResults()
IsInterfaceNil() bool
}
// DataMarshalizer defines the behavior of a structure that is able to marshalize containing data
type DataMarshalizer interface {
CreateMarshalizedData(txHashes [][]byte) ([][]byte, error)
}
// TransactionVerifier interface validates if the transaction is good and if it should be processed
type TransactionVerifier interface {
IsTransactionValid(tx data.TransactionHandler) error
}
// TransactionFeeHandler processes the transaction fee
type TransactionFeeHandler interface {
CreateBlockStarted()
GetAccumulatedFees() *big.Int
GetDeveloperFees() *big.Int
ProcessTransactionFee(cost *big.Int, devFee *big.Int, txHash []byte)
RevertFees(txHashes [][]byte)
IsInterfaceNil() bool
}
// PreProcessor is an interface used to prepare and process transaction data
type PreProcessor interface {
CreateBlockStarted()
IsDataPrepared(requestedTxs int, haveTime func() time.Duration) error
RemoveBlockDataFromPools(body *block.Body, miniBlockPool storage.Cacher) error
RemoveTxsFromPools(body *block.Body) error
RestoreBlockDataIntoPools(body *block.Body, miniBlockPool storage.Cacher) (int, error)
SaveTxsToStorage(body *block.Body) error
ProcessBlockTransactions(body *block.Body, haveTime func() bool) error
RequestBlockTransactions(body *block.Body) int
RequestTransactionsForMiniBlock(miniBlock *block.MiniBlock) int
ProcessMiniBlock(miniBlock *block.MiniBlock, haveTime func() bool, getNumOfCrossInterMbsAndTxs func() (int, int)) ([][]byte, int, error)
CreateAndProcessMiniBlocks(haveTime func() bool) (block.MiniBlockSlice, error)
GetAllCurrentUsedTxs() map[string]data.TransactionHandler
IsInterfaceNil() bool
}
// BlockProcessor is the main interface for block execution engine
type BlockProcessor interface {
ProcessBlock(header data.HeaderHandler, body data.BodyHandler, haveTime func() time.Duration) error
CommitBlock(header data.HeaderHandler, body data.BodyHandler) error
RevertAccountState(header data.HeaderHandler)
PruneStateOnRollback(currHeader data.HeaderHandler, prevHeader data.HeaderHandler)
RevertStateToBlock(header data.HeaderHandler) error
CreateNewHeader(round uint64, nonce uint64) data.HeaderHandler
RestoreBlockIntoPools(header data.HeaderHandler, body data.BodyHandler) error
CreateBlock(initialHdr data.HeaderHandler, haveTime func() bool) (data.HeaderHandler, data.BodyHandler, error)
ApplyProcessedMiniBlocks(processedMiniBlocks *processedMb.ProcessedMiniBlockTracker)
MarshalizedDataToBroadcast(header data.HeaderHandler, body data.BodyHandler) (map[uint32][]byte, map[string][][]byte, error)
DecodeBlockBody(dta []byte) data.BodyHandler
DecodeBlockHeader(dta []byte) data.HeaderHandler
SetNumProcessedObj(numObj uint64)
IsInterfaceNil() bool
Close() error
}
// ValidatorStatisticsProcessor is the main interface for validators' consensus participation statistics
type ValidatorStatisticsProcessor interface {
UpdatePeerState(header data.HeaderHandler, cache map[string]data.HeaderHandler) ([]byte, error)
RevertPeerState(header data.HeaderHandler) error
Process(shardValidatorInfo data.ShardValidatorInfoHandler) error
IsInterfaceNil() bool
RootHash() ([]byte, error)
ResetValidatorStatisticsAtNewEpoch(vInfos map[uint32][]*state.ValidatorInfo) error
GetValidatorInfoForRootHash(rootHash []byte) (map[uint32][]*state.ValidatorInfo, error)
ProcessRatingsEndOfEpoch(validatorInfos map[uint32][]*state.ValidatorInfo, epoch uint32) error
Commit() ([]byte, error)
DisplayRatings(epoch uint32)
SetLastFinalizedRootHash([]byte)
LastFinalizedRootHash() []byte
PeerAccountToValidatorInfo(peerAccount state.PeerAccountHandler) *state.ValidatorInfo
SaveNodesCoordinatorUpdates(epoch uint32) (bool, error)
}
// TransactionLogProcessor is the main interface for saving logs generated by smart contract calls
type TransactionLogProcessor interface {
GetAllCurrentLogs() map[string]data.LogHandler
GetLog(txHash []byte) (data.LogHandler, error)
SaveLog(txHash []byte, tx data.TransactionHandler, vmLogs []*vmcommon.LogEntry) error
Clean()
IsInterfaceNil() bool
}
// TransactionLogProcessorDatabase is interface the for saving logs also in RAM
type TransactionLogProcessorDatabase interface {
GetLogFromCache(txHash []byte) (data.LogHandler, bool)
EnableLogToBeSavedInCache()
Clean()
IsInterfaceNil() bool
}
// ValidatorsProvider is the main interface for validators' provider
type ValidatorsProvider interface {
GetLatestValidators() map[string]*state.ValidatorApiResponse
IsInterfaceNil() bool
Close() error
}
// Checker provides functionality to checks the integrity and validity of a data structure
type Checker interface {
// IntegrityAndValidity does both validity and integrity checks on the data structure
IntegrityAndValidity(coordinator sharding.Coordinator) error
// Integrity checks only the integrity of the data
Integrity(coordinator sharding.Coordinator) error
// IsInterfaceNil returns true if there is no value under the interface
IsInterfaceNil() bool
}
// HeaderConstructionValidator provides functionality to verify header construction
type HeaderConstructionValidator interface {
IsHeaderConstructionValid(currHdr, prevHdr data.HeaderHandler) error
IsInterfaceNil() bool
}
// SigVerifier provides functionality to verify a signature of a signed data structure that holds also the verifying parameters
type SigVerifier interface {
VerifySig() error
}
// SignedDataValidator provides functionality to check the validity and signature of a data structure
type SignedDataValidator interface {
SigVerifier
Checker
}
// HashAccesser interface provides functionality over hashable objects
type HashAccesser interface {
SetHash([]byte)
Hash() []byte
}
// Bootstrapper is an interface that defines the behaviour of a struct that is able
// to synchronize the node
type Bootstrapper interface {
Close() error
AddSyncStateListener(func(isSyncing bool))
GetNodeState() common.NodeState
StartSyncingBlocks()
IsInterfaceNil() bool
}
// ForkDetector is an interface that defines the behaviour of a struct that is able
// to detect forks
type ForkDetector interface {
AddHeader(header data.HeaderHandler, headerHash []byte, state BlockHeaderState, selfNotarizedHeaders []data.HeaderHandler, selfNotarizedHeadersHashes [][]byte) error
RemoveHeader(nonce uint64, hash []byte)
CheckFork() *ForkInfo
GetHighestFinalBlockNonce() uint64
GetHighestFinalBlockHash() []byte
ProbableHighestNonce() uint64
ResetFork()
SetRollBackNonce(nonce uint64)
RestoreToGenesis()
GetNotarizedHeaderHash(nonce uint64) []byte
ResetProbableHighestNonce()
SetFinalToLastCheckpoint()
IsInterfaceNil() bool
}
// InterceptorsContainer defines an interceptors holder data type with basic functionality
type InterceptorsContainer interface {
Get(key string) (Interceptor, error)
Add(key string, val Interceptor) error
AddMultiple(keys []string, interceptors []Interceptor) error
Replace(key string, val Interceptor) error
Remove(key string)
Len() int
Iterate(handler func(key string, interceptor Interceptor) bool)
Close() error
IsInterfaceNil() bool
}
// InterceptorsContainerFactory defines the functionality to create an interceptors container
type InterceptorsContainerFactory interface {
Create() (InterceptorsContainer, error)
IsInterfaceNil() bool
}
// PreProcessorsContainer defines an PreProcessors holder data type with basic functionality
type PreProcessorsContainer interface {
Get(key block.Type) (PreProcessor, error)
Add(key block.Type, val PreProcessor) error
AddMultiple(keys []block.Type, preprocessors []PreProcessor) error
Replace(key block.Type, val PreProcessor) error
Remove(key block.Type)
Len() int
Keys() []block.Type
IsInterfaceNil() bool
}
// PreProcessorsContainerFactory defines the functionality to create an PreProcessors container
type PreProcessorsContainerFactory interface {
Create() (PreProcessorsContainer, error)
IsInterfaceNil() bool
}
// IntermediateProcessorContainer defines an IntermediateProcessor holder data type with basic functionality
type IntermediateProcessorContainer interface {
Get(key block.Type) (IntermediateTransactionHandler, error)
Add(key block.Type, val IntermediateTransactionHandler) error
AddMultiple(keys []block.Type, preprocessors []IntermediateTransactionHandler) error
Replace(key block.Type, val IntermediateTransactionHandler) error
Remove(key block.Type)
Len() int
Keys() []block.Type
IsInterfaceNil() bool
}
// IntermediateProcessorsContainerFactory defines the functionality to create an IntermediateProcessors container
type IntermediateProcessorsContainerFactory interface {
Create() (IntermediateProcessorContainer, error)
IsInterfaceNil() bool
}
// VirtualMachinesContainer defines a virtual machine holder data type with basic functionality
type VirtualMachinesContainer interface {
Close() error
Get(key []byte) (vmcommon.VMExecutionHandler, error)
Add(key []byte, val vmcommon.VMExecutionHandler) error
AddMultiple(keys [][]byte, vms []vmcommon.VMExecutionHandler) error
Replace(key []byte, val vmcommon.VMExecutionHandler) error
Remove(key []byte)
Len() int
Keys() [][]byte
IsInterfaceNil() bool
}
// VirtualMachinesContainerFactory defines the functionality to create a virtual machine container
type VirtualMachinesContainerFactory interface {
Create() (VirtualMachinesContainer, error)
Close() error
BlockChainHookImpl() BlockChainHookHandler
IsInterfaceNil() bool
}
// EpochStartTriggerHandler defines that actions which are needed by processor for start of epoch
type EpochStartTriggerHandler interface {
Update(round uint64, nonce uint64)
IsEpochStart() bool
Epoch() uint32
MetaEpoch() uint32
EpochStartRound() uint64
SetProcessed(header data.HeaderHandler, body data.BodyHandler)
RevertStateToBlock(header data.HeaderHandler) error
EpochStartMetaHdrHash() []byte
GetSavedStateKey() []byte
LoadState(key []byte) error
IsInterfaceNil() bool
SetFinalityAttestingRound(round uint64)
EpochFinalityAttestingRound() uint64
RequestEpochStartIfNeeded(interceptedHeader data.HeaderHandler)
}
// EpochBootstrapper defines the actions needed by bootstrapper
type EpochBootstrapper interface {
SetCurrentEpochStartRound(round uint64)
IsInterfaceNil() bool
}
// PendingMiniBlocksHandler is an interface to keep unfinalized miniblocks
type PendingMiniBlocksHandler interface {
AddProcessedHeader(handler data.HeaderHandler) error
RevertHeader(handler data.HeaderHandler) error
GetPendingMiniBlocks(shardID uint32) [][]byte
SetPendingMiniBlocks(shardID uint32, mbHashes [][]byte)
IsInterfaceNil() bool
}
// BlockChainHookHandler defines the actions which should be performed by implementation
type BlockChainHookHandler interface {
IsPayable(address []byte) (bool, error)
SetCurrentHeader(hdr data.HeaderHandler)
NewAddress(creatorAddress []byte, creatorNonce uint64, vmType []byte) ([]byte, error)
DeleteCompiledCode(codeHash []byte)
ProcessBuiltInFunction(input *vmcommon.ContractCallInput) (*vmcommon.VMOutput, error)
IsInterfaceNil() bool
}
// Interceptor defines what a data interceptor should do
// It should also adhere to the p2p.MessageProcessor interface so it can wire to a p2p.Messenger
type Interceptor interface {
ProcessReceivedMessage(message p2p.MessageP2P, fromConnectedPeer core.PeerID) error
SetInterceptedDebugHandler(handler InterceptedDebugger) error
RegisterHandler(handler func(topic string, hash []byte, data interface{}))
Close() error
IsInterfaceNil() bool
}
// TopicHandler defines the functionality needed by structs to manage topics and message processors
type TopicHandler interface {
HasTopic(name string) bool
CreateTopic(name string, createChannelForTopic bool) error
RegisterMessageProcessor(topic string, identifier string, handler p2p.MessageProcessor) error
ID() core.PeerID
IsInterfaceNil() bool
}
// DataPacker can split a large slice of byte slices in smaller packets
type DataPacker interface {
PackDataInChunks(data [][]byte, limit int) ([][]byte, error)
IsInterfaceNil() bool
}
// RequestHandler defines the methods through which request to data can be made
type RequestHandler interface {
SetEpoch(epoch uint32)
RequestShardHeader(shardID uint32, hash []byte)
RequestMetaHeader(hash []byte)
RequestMetaHeaderByNonce(nonce uint64)
RequestShardHeaderByNonce(shardID uint32, nonce uint64)
RequestTransaction(destShardID uint32, txHashes [][]byte)
RequestUnsignedTransactions(destShardID uint32, scrHashes [][]byte)
RequestRewardTransactions(destShardID uint32, txHashes [][]byte)
RequestMiniBlock(destShardID uint32, miniblockHash []byte)
RequestMiniBlocks(destShardID uint32, miniblocksHashes [][]byte)
RequestTrieNodes(destShardID uint32, hashes [][]byte, topic string)
RequestStartOfEpochMetaBlock(epoch uint32)
RequestInterval() time.Duration
SetNumPeersToQuery(key string, intra int, cross int) error
GetNumPeersToQuery(key string) (int, int, error)
RequestTrieNode(requestHash []byte, topic string, chunkIndex uint32)
CreateTrieNodeIdentifier(requestHash []byte, chunkIndex uint32) []byte
IsInterfaceNil() bool
}
// CallArgumentsParser defines the functionality to parse transaction data into call arguments
type CallArgumentsParser interface {
ParseData(data string) (string, [][]byte, error)
IsInterfaceNil() bool
}
// DeployArgumentsParser defines the functionality to parse transaction data into call arguments
type DeployArgumentsParser interface {
ParseData(data string) (*parsers.DeployArgs, error)
IsInterfaceNil() bool
}
// StorageArgumentsParser defines the functionality to parse transaction data into call arguments
type StorageArgumentsParser interface {
CreateDataFromStorageUpdate(storageUpdates []*vmcommon.StorageUpdate) string
GetStorageUpdates(data string) ([]*vmcommon.StorageUpdate, error)
IsInterfaceNil() bool
}
// ArgumentsParser defines the functionality to parse transaction data into arguments and code for smart contracts
type ArgumentsParser interface {
ParseCallData(data string) (string, [][]byte, error)
ParseDeployData(data string) (*parsers.DeployArgs, error)
CreateDataFromStorageUpdate(storageUpdates []*vmcommon.StorageUpdate) string
GetStorageUpdates(data string) ([]*vmcommon.StorageUpdate, error)
IsInterfaceNil() bool
}
// BlockSizeThrottler defines the functionality of adapting the node to the network speed/latency when it should send a
// block to its peers which should be received in a limited time frame
type BlockSizeThrottler interface {
GetCurrentMaxSize() uint32
Add(round uint64, size uint32)
Succeed(round uint64)
ComputeCurrentMaxSize()
IsInterfaceNil() bool
}
type rewardsHandler interface {
LeaderPercentage() float64
ProtocolSustainabilityPercentage() float64
ProtocolSustainabilityAddress() string
MinInflationRate() float64
MaxInflationRate(year uint32) float64
RewardsTopUpGradientPoint() *big.Int
RewardsTopUpFactor() float64
}
// RewardsHandler will return information about rewards
type RewardsHandler interface {
rewardsHandler
IsInterfaceNil() bool
}
// EndOfEpochEconomics defines the functionality that is needed to compute end of epoch economics data
type EndOfEpochEconomics interface {
ComputeEndOfEpochEconomics(metaBlock *block.MetaBlock) (*block.Economics, error)
VerifyRewardsPerBlock(metaBlock *block.MetaBlock, correctedProtocolSustainability *big.Int, computedEconomics *block.Economics) error
IsInterfaceNil() bool
}
type feeHandler interface {
GenesisTotalSupply() *big.Int
DeveloperPercentage() float64
GasPerDataByte() uint64
MaxGasLimitPerBlock(shardID uint32) uint64
MaxGasLimitPerMiniBlock(shardID uint32) uint64
MaxGasLimitPerBlockForSafeCrossShard() uint64
MaxGasLimitPerMiniBlockForSafeCrossShard() uint64
ComputeGasLimit(tx data.TransactionWithFeeHandler) uint64
ComputeMoveBalanceFee(tx data.TransactionWithFeeHandler) *big.Int
ComputeTxFee(tx data.TransactionWithFeeHandler) *big.Int
CheckValidityTxValues(tx data.TransactionWithFeeHandler) error
ComputeFeeForProcessing(tx data.TransactionWithFeeHandler, gasToUse uint64) *big.Int
MinGasPrice() uint64
GasPriceModifier() float64
MinGasLimit() uint64
SplitTxGasInCategories(tx data.TransactionWithFeeHandler) (uint64, uint64)
GasPriceForProcessing(tx data.TransactionWithFeeHandler) uint64
GasPriceForMove(tx data.TransactionWithFeeHandler) uint64
MinGasPriceForProcessing() uint64
ComputeGasUsedAndFeeBasedOnRefundValue(tx data.TransactionWithFeeHandler, refundValue *big.Int) (uint64, *big.Int)
ComputeTxFeeBasedOnGasUsed(tx data.TransactionWithFeeHandler, gasUsed uint64) *big.Int
ComputeGasLimitBasedOnBalance(tx data.TransactionWithFeeHandler, balance *big.Int) (uint64, error)
}
// TxGasHandler handles a transaction gas and gas cost
type TxGasHandler interface {
SplitTxGasInCategories(tx data.TransactionWithFeeHandler) (uint64, uint64)
GasPriceForProcessing(tx data.TransactionWithFeeHandler) uint64
GasPriceForMove(tx data.TransactionWithFeeHandler) uint64
MinGasPrice() uint64
ComputeFeeForProcessing(tx data.TransactionWithFeeHandler, gasToUse uint64) *big.Int
GasPriceModifier() float64
MinGasLimit() uint64
MinGasPriceForProcessing() uint64
IsInterfaceNil() bool
}
// FeeHandler is able to perform some economics calculation on a provided transaction
type FeeHandler interface {
feeHandler
IsInterfaceNil() bool
}
// EconomicsDataHandler provides some economics related computation and read access to economics data
type EconomicsDataHandler interface {
rewardsHandler
feeHandler
IsInterfaceNil() bool
}
// SmartContractToProtocolHandler is able to translate data from smart contract state into protocol changes
type SmartContractToProtocolHandler interface {
UpdateProtocol(body *block.Body, nonce uint64) error
IsInterfaceNil() bool
}
// PeerChangesHandler will create the peer changes data for current block and will verify them
type PeerChangesHandler interface {
PeerChanges() []block.PeerData
VerifyPeerChanges(peerChanges []block.PeerData) error
IsInterfaceNil() bool
}
// TimeCacher defines the cache that can keep a record for a bounded time
type TimeCacher interface {
Add(key string) error
Upsert(key string, span time.Duration) error
Has(key string) bool
Sweep()
Len() int
IsInterfaceNil() bool
}
// PeerBlackListCacher can determine if a certain peer id is or not blacklisted
type PeerBlackListCacher interface {
Upsert(pid core.PeerID, span time.Duration) error
Has(pid core.PeerID) bool
Sweep()
IsInterfaceNil() bool
}
// PeerShardMapper can return the public key of a provided peer ID
type PeerShardMapper interface {
GetPeerInfo(pid core.PeerID) core.P2PPeerInfo
IsInterfaceNil() bool
}
// NetworkShardingCollector defines the updating methods used by the network sharding component
type NetworkShardingCollector interface {
UpdatePeerIDInfo(pid core.PeerID, pk []byte, shardID uint32)
UpdatePeerIdSubType(pid core.PeerID, peerSubType core.P2PPeerSubType)
GetPeerInfo(pid core.PeerID) core.P2PPeerInfo
IsInterfaceNil() bool
}
// NetworkConnectionWatcher defines a watchdog functionality used to specify if the current node
// is still connected to the rest of the network
type NetworkConnectionWatcher interface {
IsConnectedToTheNetwork() bool
IsInterfaceNil() bool
}
// SCQuery represents a prepared query for executing a function of the smart contract
type SCQuery struct {
ScAddress []byte
FuncName string
CallerAddr []byte
CallValue *big.Int
Arguments [][]byte
}
// GasHandler is able to perform some gas calculation
type GasHandler interface {
Init()
SetGasConsumed(gasConsumed uint64, hash []byte)
SetGasRefunded(gasRefunded uint64, hash []byte)
SetGasPenalized(gasPenalized uint64, hash []byte)
GasConsumed(hash []byte) uint64
GasRefunded(hash []byte) uint64
GasPenalized(hash []byte) uint64
TotalGasConsumed() uint64
TotalGasRefunded() uint64
TotalGasPenalized() uint64
RemoveGasConsumed(hashes [][]byte)
RemoveGasRefunded(hashes [][]byte)
RemoveGasPenalized(hashes [][]byte)
ComputeGasConsumedByMiniBlock(*block.MiniBlock, map[string]data.TransactionHandler) (uint64, uint64, error)
ComputeGasConsumedByTx(txSenderShardId uint32, txReceiverShardId uint32, txHandler data.TransactionHandler) (uint64, uint64, error)
IsInterfaceNil() bool
}
// BootStorer is the interface needed by bootstrapper to read/write data in storage
type BootStorer interface {
SaveLastRound(round int64) error
Put(round int64, bootData bootstrapStorage.BootstrapData) error
Get(round int64) (bootstrapStorage.BootstrapData, error)
GetHighestRound() int64
IsInterfaceNil() bool
}
// BootstrapperFromStorage is the interface needed by boot component to load data from storage
type BootstrapperFromStorage interface {
LoadFromStorage() error
GetHighestBlockNonce() uint64
IsInterfaceNil() bool
}
// RequestBlockBodyHandler is the interface needed by process block
type RequestBlockBodyHandler interface {
GetBlockBodyFromPool(headerHandler data.HeaderHandler) (data.BodyHandler, error)
}
// InterceptedHeaderSigVerifier is the interface needed at interceptors level to check that a header's signature is correct
type InterceptedHeaderSigVerifier interface {
VerifyRandSeedAndLeaderSignature(header data.HeaderHandler) error
VerifyRandSeed(header data.HeaderHandler) error
VerifyLeaderSignature(header data.HeaderHandler) error
VerifySignature(header data.HeaderHandler) error
IsInterfaceNil() bool
}
// HeaderIntegrityVerifier encapsulates methods useful to check that a header's integrity is correct
type HeaderIntegrityVerifier interface {
Verify(header data.HeaderHandler) error
GetVersion(epoch uint32) string
IsInterfaceNil() bool
}
// BlockTracker defines the functionality for node to track the blocks which are received from network
type BlockTracker interface {
AddCrossNotarizedHeader(shradID uint32, crossNotarizedHeader data.HeaderHandler, crossNotarizedHeaderHash []byte)
AddSelfNotarizedHeader(shardID uint32, selfNotarizedHeader data.HeaderHandler, selfNotarizedHeaderHash []byte)
AddTrackedHeader(header data.HeaderHandler, hash []byte)
CheckBlockAgainstFinal(headerHandler data.HeaderHandler) error
CheckBlockAgainstRoundHandler(headerHandler data.HeaderHandler) error
CheckBlockAgainstWhitelist(interceptedData InterceptedData) bool
CleanupHeadersBehindNonce(shardID uint32, selfNotarizedNonce uint64, crossNotarizedNonce uint64)
CleanupInvalidCrossHeaders(metaNewEpoch uint32, metaRoundAttestingEpoch uint64)
ComputeLongestChain(shardID uint32, header data.HeaderHandler) ([]data.HeaderHandler, [][]byte)
ComputeLongestMetaChainFromLastNotarized() ([]data.HeaderHandler, [][]byte, error)
ComputeLongestShardsChainsFromLastNotarized() ([]data.HeaderHandler, [][]byte, map[uint32][]data.HeaderHandler, error)
DisplayTrackedHeaders()
GetCrossNotarizedHeader(shardID uint32, offset uint64) (data.HeaderHandler, []byte, error)
GetLastCrossNotarizedHeader(shardID uint32) (data.HeaderHandler, []byte, error)
GetLastCrossNotarizedHeadersForAllShards() (map[uint32]data.HeaderHandler, error)
GetLastSelfNotarizedHeader(shardID uint32) (data.HeaderHandler, []byte, error)
GetSelfNotarizedHeader(shardID uint32, offset uint64) (data.HeaderHandler, []byte, error)
GetTrackedHeaders(shardID uint32) ([]data.HeaderHandler, [][]byte)
GetTrackedHeadersForAllShards() map[uint32][]data.HeaderHandler
GetTrackedHeadersWithNonce(shardID uint32, nonce uint64) ([]data.HeaderHandler, [][]byte)
IsShardStuck(shardID uint32) bool
RegisterCrossNotarizedHeadersHandler(func(shardID uint32, headers []data.HeaderHandler, headersHashes [][]byte))
RegisterSelfNotarizedFromCrossHeadersHandler(func(shardID uint32, headers []data.HeaderHandler, headersHashes [][]byte))
RegisterSelfNotarizedHeadersHandler(func(shardID uint32, headers []data.HeaderHandler, headersHashes [][]byte))
RegisterFinalMetachainHeadersHandler(func(shardID uint32, headers []data.HeaderHandler, headersHashes [][]byte))
RemoveLastNotarizedHeaders()
RestoreToGenesis()
ShouldAddHeader(headerHandler data.HeaderHandler) bool
IsInterfaceNil() bool
}
// FloodPreventer defines the behavior of a component that is able to signal that too many events occurred
// on a provided identifier between Reset calls
type FloodPreventer interface {
IncreaseLoad(pid core.PeerID, size uint64) error
ApplyConsensusSize(size int)
Reset()
IsInterfaceNil() bool
}
// TopicFloodPreventer defines the behavior of a component that is able to signal that too many events occurred
// on a provided identifier between Reset calls, on a given topic
type TopicFloodPreventer interface {
IncreaseLoad(pid core.PeerID, topic string, numMessages uint32) error
ResetForTopic(topic string)
ResetForNotRegisteredTopics()
SetMaxMessagesForTopic(topic string, maxNum uint32)
IsInterfaceNil() bool
}
// P2PAntifloodHandler defines the behavior of a component able to signal that the system is too busy (or flooded) processing
// p2p messages
type P2PAntifloodHandler interface {
CanProcessMessage(message p2p.MessageP2P, fromConnectedPeer core.PeerID) error
CanProcessMessagesOnTopic(pid core.PeerID, topic string, numMessages uint32, totalSize uint64, sequence []byte) error
ApplyConsensusSize(size int)
SetDebugger(debugger AntifloodDebugger) error
BlacklistPeer(peer core.PeerID, reason string, duration time.Duration)
IsOriginatorEligibleForTopic(pid core.PeerID, topic string) error
IsInterfaceNil() bool
Close() error
}
// PeerValidatorMapper can determine the peer info from a peer id
type PeerValidatorMapper interface {
GetPeerInfo(pid core.PeerID) core.P2PPeerInfo
IsInterfaceNil() bool
}
// SCQueryService defines how data should be get from a SC account
type SCQueryService interface {
ExecuteQuery(query *SCQuery) (*vmcommon.VMOutput, error)
ComputeScCallGasLimit(tx *transaction.Transaction) (uint64, error)
Close() error
IsInterfaceNil() bool
}
// EpochStartDataCreator defines the functionality for node to create epoch start data
type EpochStartDataCreator interface {
CreateEpochStartData() (*block.EpochStart, error)
VerifyEpochStartDataForMetablock(metaBlock *block.MetaBlock) error
IsInterfaceNil() bool
}
// RewardsCreator defines the functionality for the metachain to create rewards at end of epoch
type RewardsCreator interface {
CreateRewardsMiniBlocks(
metaBlock *block.MetaBlock, validatorsInfo map[uint32][]*state.ValidatorInfo, computedEconomics *block.Economics,
) (block.MiniBlockSlice, error)
VerifyRewardsMiniBlocks(
metaBlock *block.MetaBlock, validatorsInfo map[uint32][]*state.ValidatorInfo, computedEconomics *block.Economics,
) error
GetProtocolSustainabilityRewards() *big.Int
GetLocalTxCache() epochStart.TransactionCacher
CreateMarshalizedData(body *block.Body) map[string][][]byte
GetRewardsTxs(body *block.Body) map[string]data.TransactionHandler
SaveTxBlockToStorage(metaBlock *block.MetaBlock, body *block.Body)
DeleteTxsFromStorage(metaBlock *block.MetaBlock, body *block.Body)
RemoveBlockDataFromPools(metaBlock *block.MetaBlock, body *block.Body)
IsInterfaceNil() bool
}
// EpochStartValidatorInfoCreator defines the functionality for the metachain to create validator statistics at end of epoch
type EpochStartValidatorInfoCreator interface {
CreateValidatorInfoMiniBlocks(validatorInfo map[uint32][]*state.ValidatorInfo) (block.MiniBlockSlice, error)
VerifyValidatorInfoMiniBlocks(miniblocks []*block.MiniBlock, validatorsInfo map[uint32][]*state.ValidatorInfo) error
SaveValidatorInfoBlocksToStorage(metaBlock *block.MetaBlock, body *block.Body)
DeleteValidatorInfoBlocksFromStorage(metaBlock *block.MetaBlock)
RemoveBlockDataFromPools(metaBlock *block.MetaBlock, body *block.Body)
IsInterfaceNil() bool
}
// EpochStartSystemSCProcessor defines the functionality for the metachain to process system smart contract and end of epoch
type EpochStartSystemSCProcessor interface {
ProcessSystemSmartContract(validatorInfos map[uint32][]*state.ValidatorInfo, nonce uint64, epoch uint32) error
ProcessDelegationRewards(
miniBlocks block.MiniBlockSlice,
rewardTxs epochStart.TransactionCacher,
) error
ToggleUnStakeUnBond(value bool) error
IsInterfaceNil() bool
}
// ValidityAttester is able to manage the valid blocks
type ValidityAttester interface {
CheckBlockAgainstFinal(headerHandler data.HeaderHandler) error
CheckBlockAgainstRoundHandler(headerHandler data.HeaderHandler) error
CheckBlockAgainstWhitelist(interceptedData InterceptedData) bool
IsInterfaceNil() bool
}
// MiniBlockProvider defines what a miniblock data provider should do
type MiniBlockProvider interface {
GetMiniBlocks(hashes [][]byte) ([]*block.MiniblockAndHash, [][]byte)
GetMiniBlocksFromPool(hashes [][]byte) ([]*block.MiniblockAndHash, [][]byte)
IsInterfaceNil() bool
}
// RoundTimeDurationHandler defines the methods to get the time duration of a round
type RoundTimeDurationHandler interface {
TimeDuration() time.Duration
IsInterfaceNil() bool
}
// RoundHandler defines the actions which should be handled by a round implementation
type RoundHandler interface {
Index() int64
IsInterfaceNil() bool
}
// SelectionChance defines the actions which should be handled by a round implementation
type SelectionChance interface {
GetMaxThreshold() uint32
GetChancePercent() uint32
}
// RatingsInfoHandler defines the information needed for the rating computation
type RatingsInfoHandler interface {
StartRating() uint32
MaxRating() uint32
MinRating() uint32
SignedBlocksThreshold() float32
MetaChainRatingsStepHandler() RatingsStepHandler
ShardChainRatingsStepHandler() RatingsStepHandler
SelectionChances() []SelectionChance
IsInterfaceNil() bool
}
// RatingsStepHandler defines the information needed for the rating computation on shards or meta
type RatingsStepHandler interface {
ProposerIncreaseRatingStep() int32
ProposerDecreaseRatingStep() int32
ValidatorIncreaseRatingStep() int32
ValidatorDecreaseRatingStep() int32
ConsecutiveMissedBlocksPenalty() float32
}
// ValidatorInfoSyncer defines the method needed for validatorInfoProcessing
type ValidatorInfoSyncer interface {
SyncMiniBlocks(metaBlock *block.MetaBlock) ([][]byte, data.BodyHandler, error)
IsInterfaceNil() bool
}
// RatingChanceHandler provides the methods needed for the computation of chances from the Rating
type RatingChanceHandler interface {
// GetMaxThreshold returns the threshold until this ChancePercentage holds
GetMaxThreshold() uint32
// GetChancePercentage returns the percentage for the RatingChanceHandler
GetChancePercentage() uint32
// IsInterfaceNil verifies if the interface is nil
IsInterfaceNil() bool
}
// WhiteListHandler is the interface needed to add whitelisted data
type WhiteListHandler interface {
Remove(keys [][]byte)
Add(keys [][]byte)
IsWhiteListed(interceptedData InterceptedData) bool
IsWhiteListedAtLeastOne(identifiers [][]byte) bool
IsInterfaceNil() bool
}
// InterceptedDebugger defines an interface for debugging the intercepted data
type InterceptedDebugger interface {
LogReceivedHashes(topic string, hashes [][]byte)
LogProcessedHashes(topic string, hashes [][]byte, err error)
IsInterfaceNil() bool
}
// PreferredPeersHolderHandler defines the behavior of a component able to handle preferred peers operations
type PreferredPeersHolderHandler interface {
Get() map[uint32][]core.PeerID
Contains(peerID core.PeerID) bool
IsInterfaceNil() bool
}
// AntifloodDebugger defines an interface for debugging the antiflood behavior
type AntifloodDebugger interface {
AddData(pid core.PeerID, topic string, numRejected uint32, sizeRejected uint64, sequence []byte, isBlacklisted bool)
Close() error
IsInterfaceNil() bool
}
// PoolsCleaner defines the functionality to clean pools for old records
type PoolsCleaner interface {
Close() error
StartCleaning()
IsInterfaceNil() bool
}
// EpochHandler defines what a component which handles current epoch should be able to do
type EpochHandler interface {
MetaEpoch() uint32
IsInterfaceNil() bool
}
// EpochStartEventNotifier provides Register and Unregister functionality for the end of epoch events
type EpochStartEventNotifier interface {
RegisterHandler(handler epochStart.ActionHandler)
UnregisterHandler(handler epochStart.ActionHandler)
IsInterfaceNil() bool
}
// NodesCoordinator provides Validator methods needed for the peer processing
type NodesCoordinator interface {
GetAllEligibleValidatorsPublicKeys(epoch uint32) (map[uint32][][]byte, error)
GetAllWaitingValidatorsPublicKeys(epoch uint32) (map[uint32][][]byte, error)
GetAllLeavingValidatorsPublicKeys(epoch uint32) (map[uint32][][]byte, error)
IsInterfaceNil() bool
}
// EpochNotifier can notify upon an epoch change and provide the current epoch
type EpochNotifier interface {
RegisterNotifyHandler(handler vmcommon.EpochSubscriberHandler)
CurrentEpoch() uint32
CheckEpoch(header data.HeaderHandler)
IsInterfaceNil() bool
}