-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
int.go
executable file
·114 lines (97 loc) · 2.02 KB
/
int.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
package types
import (
"encoding/json"
)
type IntValue struct {
BaseAttribute
value int
}
func (b IntValue) MarshalJSON() ([]byte, error) {
return json.Marshal(map[string]interface{}{
"value": b.value,
"metadata": b.metadata,
})
}
func (b *IntValue) UnmarshalJSON(data []byte) error {
var keys map[string]interface{}
if err := json.Unmarshal(data, &keys); err != nil {
return err
}
if keys["value"] != nil {
b.value = int(keys["value"].(float64))
}
if keys["metadata"] != nil {
raw, err := json.Marshal(keys["metadata"])
if err != nil {
return err
}
var m Metadata
if err := json.Unmarshal(raw, &m); err != nil {
return err
}
b.metadata = m
}
return nil
}
func Int(value int, m Metadata) IntValue {
return IntValue{
value: value,
BaseAttribute: BaseAttribute{metadata: m},
}
}
func IntFromInt32(value int32, m Metadata) IntValue {
return Int(int(value), m)
}
func IntDefault(value int, m Metadata) IntValue {
b := Int(value, m)
b.BaseAttribute.metadata.isDefault = true
return b
}
func IntUnresolvable(m Metadata) IntValue {
b := Int(0, m)
b.BaseAttribute.metadata.isUnresolvable = true
return b
}
func IntExplicit(value int, m Metadata) IntValue {
b := Int(value, m)
b.BaseAttribute.metadata.isExplicit = true
return b
}
func (b IntValue) GetMetadata() Metadata {
return b.metadata
}
func (b IntValue) Value() int {
return b.value
}
func (b IntValue) GetRawValue() interface{} {
return b.value
}
func (b IntValue) NotEqualTo(i int) bool {
if b.metadata.isUnresolvable {
return false
}
return b.value != i
}
func (b IntValue) EqualTo(i int) bool {
if b.metadata.isUnresolvable {
return false
}
return b.value == i
}
func (b IntValue) LessThan(i int) bool {
if b.metadata.isUnresolvable {
return false
}
return b.value < i
}
func (b IntValue) GreaterThan(i int) bool {
if b.metadata.isUnresolvable {
return false
}
return b.value > i
}
func (s IntValue) ToRego() interface{} {
m := s.metadata.ToRego().(map[string]interface{})
m["value"] = s.Value()
return m
}