-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecisiontable.go
230 lines (192 loc) · 4.99 KB
/
decisiontable.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
package main
import (
"reflect"
)
type conditionField struct {
value reflect.Value
isZero bool
isAny bool
}
type ruleField struct {
value reflect.Value
valueOFValue reflect.Value
}
type decision struct {
condition map[string]conditionField
action interface{}
}
var tbl []decision
// ANYtype - "- Any -"
type ANYtype struct{}
// ANY - "- Any -"
var ANY = ANYtype{}
func init() {
tbl = []decision{}
}
func row(cnd interface{}, action interface{}) {
cndType := reflect.TypeOf(cnd)
cndValue := reflect.ValueOf(cnd)
cndNumField := cndType.NumField()
// parse condition
condition := map[string]conditionField{}
for i := 0; i < cndNumField; i++ {
cndFieldValueInterface := cndValue.Field(i).Interface()
name := cndType.Field(i).Name
cndField := conditionField{
value: reflect.ValueOf(cndFieldValueInterface),
}
//fmt.Printf("cndFieldName: %s, cndFieldValue: %+v, reqFieldValue: %+v\n", cndFieldName, cndFieldValue, reqFieldValue)
// skip zero and ANY
// TODO: add tests for zero values
cndField.isZero = cndFieldValueInterface == reflect.Zero(cndValue.Field(i).Type()).Interface()
if !cndField.isZero {
cndField.isAny = cndField.value.Type() == reflect.TypeOf(ANY)
}
condition[name] = cndField
}
tbl = append(tbl, decision{
condition: condition,
action: action,
})
return
}
func apply(inRule interface{}) interface{} {
if len(tbl) == 0 {
panic("table is empty")
}
// parse incoming rule
ruleType := reflect.TypeOf(inRule)
ruleValue := reflect.ValueOf(inRule)
ruleNumField := ruleType.NumField()
// parse condition
inRuleParsed := map[string]ruleField{}
for i := 0; i < ruleNumField; i++ {
ruleFieldValueInterface := ruleValue.Field(i).Interface()
name := ruleType.Field(i).Name
inRuleParsed[name] = ruleField{
value: reflect.ValueOf(ruleFieldValueInterface),
valueOFValue: reflect.ValueOf(reflect.ValueOf(ruleFieldValueInterface)),
}
}
// apply decision table
for _, r := range tbl {
match := true
for name, cndField := range r.condition {
// skip zero and ANY
// TODO: add tests for zero values
if cndField.isZero || cndField.isAny {
continue
}
ruleField := inRuleParsed[name]
if cndField.value.Kind() == reflect.Func {
// get number of arguments of the function
n := cndField.value.Type().NumIn()
if n != 1 {
panic("N is " + string(n))
}
res := cndField.value.Call([]reflect.Value{ruleField.valueOFValue})
if len(res) == 0 {
panic("No results!")
}
if res[0].Bool() {
continue
}
match = false
break
}
if eq(cndField.value, ruleField.value) {
continue
}
match = false
break
}
if match {
return r.action
}
}
return nil
}
func eq(cnd reflect.Value, req reflect.Value) bool {
if cnd.Kind() != req.Kind() {
panic("different kinds: " + cnd.Kind().String() + "!=" + req.Kind().String())
}
cndKind := reflect.TypeOf(cnd.Interface()).Kind()
var res bool
switch cndKind {
case reflect.Bool:
res = cnd.Bool() == req.Bool()
case reflect.Int:
res = cnd.Int() == req.Int()
case reflect.String:
res = cnd.String() == req.String()
default:
panic("unsupported kind " + cndKind.String())
}
return res
}
func ne(cnd interface{}) interface{} {
return func(req reflect.Value) bool {
cndV := reflect.ValueOf(cnd)
reqV := reflect.ValueOf(req.Interface())
if cndV.Kind() != reqV.Kind() {
panic("different types: " + cndV.Kind().String() + "!=" + reqV.Kind().String())
}
cndKind := reflect.TypeOf(cndV.Interface()).Kind()
var res bool
switch cndKind {
case reflect.Bool:
res = cndV.Bool() != reqV.Bool()
case reflect.Int:
res = cndV.Int() != reqV.Int()
case reflect.String:
res = cndV.String() != reqV.String()
default:
panic("unsupported kind " + cndKind.String())
}
return res
}
}
func le(cnd interface{}) interface{} {
return func(req reflect.Value) bool {
cndV := reflect.ValueOf(cnd)
reqV := reflect.ValueOf(req.Interface())
if cndV.Kind() != reqV.Kind() {
panic("different types: " + cndV.Kind().String() + "!=" + reqV.Kind().String())
}
cndKind := reflect.TypeOf(cndV.Interface()).Kind()
var res bool
switch cndKind {
case reflect.Int:
res = reqV.Int() <= cndV.Int()
case reflect.Float32:
res = reqV.Float() <= cndV.Float()
case reflect.Float64:
res = reqV.Float() <= cndV.Float()
default:
panic("unsupported kind " + cndKind.String())
}
return res
}
}
func ge(cnd interface{}) interface{} {
return func(req reflect.Value) bool {
cndV := reflect.ValueOf(cnd)
reqV := reflect.ValueOf(req.Interface())
if cndV.Kind() != reqV.Kind() {
panic("different types: " + cndV.Kind().String() + "!=" + reqV.Kind().String())
}
cndKind := reflect.TypeOf(cndV.Interface()).Kind()
var res bool
switch cndKind {
case reflect.Int:
res = reqV.Int() >= cndV.Int()
case reflect.Float32:
res = reqV.Float() >= cndV.Float()
case reflect.Float64:
res = reqV.Float() >= cndV.Float()
default:
panic("unsupported kind " + cndKind.String())
}
return res
}
}