-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperandtype.go
91 lines (74 loc) · 1.91 KB
/
operandtype.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
package ruleenginecore
import (
"encoding/json"
"fmt"
"strings"
)
// 'OperandType' defines type of operand either 'Field' or 'Constant'
type OperandType uint8
const (
unknownOperandType OperandType = iota
// 'Field' is OperandType where operand value is derived from the Input using name as Operand.Val
Field
// 'Constant' is OperandType where operand value is considered as Operand.Val
Constant
)
var (
operandType_Name = map[OperandType]string{
1: "Field",
2: "Constant",
}
operandType_Value = map[string]OperandType{
"field": 1,
"Field": 1,
"constant": 2,
"Constant": 2,
}
)
// 'isValid' check for valid operandType starting from 1("Field"),2("Constant")
func (operandType OperandType) isValid() bool {
_, ok := operandType_Name[operandType]
return ok
}
func (operandType OperandType) String() string {
val, ok := operandType_Name[operandType]
if !ok {
return fmt.Sprintf("OperandType(%v)", uint8(operandType))
}
return val
}
func parseOperandType(s string) (OperandType, error) {
s = strings.TrimSpace(strings.ToLower(s))
value, ok := operandType_Value[s]
if !ok {
return unknownOperandType, fmt.Errorf("invalid OperandType(%v)", s)
}
return value, nil
}
func (operandType OperandType) MarshalJSON() ([]byte, error) {
if operandType.isValid() {
return json.Marshal(operandType.String())
}
return nil, fmt.Errorf("invalid OperandType(%v)", uint8(operandType))
}
func (operandType *OperandType) UnmarshalJSON(data []byte) error {
var val string
if err := json.Unmarshal(data, &val); err != nil {
return err
}
result, err := parseOperandType(val)
if err != nil {
return err
}
*operandType = result
return nil
}
// comma separated operandType list
var operandTypeList string
func init() {
validOperandType := []string{}
for _, value := range operandType_Name {
validOperandType = append(validOperandType, value)
}
operandTypeList = strings.Join(validOperandType[:], ", ")
}