-
Notifications
You must be signed in to change notification settings - Fork 0
/
txvalidationflags.go
60 lines (47 loc) · 1.86 KB
/
txvalidationflags.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
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package util
import (
"github.com/hyperledger/fabric/protos/peer"
)
// TxValidationFlags is array of transaction validation codes. It is used when committer validates block.
type TxValidationFlags []uint8
// NewTxValidationFlags Create new object-array of validation codes with target size.
// Default values: TxValidationCode_NOT_VALIDATED
func NewTxValidationFlags(size int) TxValidationFlags {
return newTxValidationFlagsSetValue(size, peer.TxValidationCode_NOT_VALIDATED)
}
// NewTxValidationFlagsSetValue Creates new object-array of validation codes with target size
// and the supplied value
func NewTxValidationFlagsSetValue(size int, value peer.TxValidationCode) TxValidationFlags {
return newTxValidationFlagsSetValue(size, value)
}
func newTxValidationFlagsSetValue(size int, value peer.TxValidationCode) TxValidationFlags {
inst := make(TxValidationFlags, size)
for i := range inst {
inst[i] = uint8(value)
}
return inst
}
// SetFlag assigns validation code to specified transaction
func (obj TxValidationFlags) SetFlag(txIndex int, flag peer.TxValidationCode) {
obj[txIndex] = uint8(flag)
}
// Flag returns validation code at specified transaction
func (obj TxValidationFlags) Flag(txIndex int) peer.TxValidationCode {
return peer.TxValidationCode(obj[txIndex])
}
// IsValid checks if specified transaction is valid
func (obj TxValidationFlags) IsValid(txIndex int) bool {
return obj.IsSetTo(txIndex, peer.TxValidationCode_VALID)
}
// IsInvalid checks if specified transaction is invalid
func (obj TxValidationFlags) IsInvalid(txIndex int) bool {
return !obj.IsValid(txIndex)
}
// IsSetTo returns true if the specified transaction equals flag; false otherwise.
func (obj TxValidationFlags) IsSetTo(txIndex int, flag peer.TxValidationCode) bool {
return obj.Flag(txIndex) == flag
}