-
Notifications
You must be signed in to change notification settings - Fork 10
/
getvarfun.go
486 lines (451 loc) · 10.2 KB
/
getvarfun.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
package kasia
import (
"fmt"
"reflect"
)
const (
RUN_OK = iota
RUN_NOT_FOUND
RUN_WRONG_ARG_NUM
RUN_WRONG_ARG_TYP
RUN_UNEXPORTED
RUN_NOT_RET
RUN_INDEX_OOR
RUN_UNK_TYPE
RUN_NOT_FUNC
RUN_NIL_CTX
RUN_INC_MAP_KEY
RUN_NESTED
CMP_NMATCH
CMP_ARRSLIC
CMP_BOOL
CMP_CHANN
CMP_CPLX
CMP_FUNC
CMP_MAP
CMP_UNKNOWN
)
type RunErr struct {
Lnum int
Enum int
Nested error
}
func (re RunErr) Error() (txt string) {
errStr := [...]string{
"no errors",
"variable not found",
"wrong number of arguments",
"wrong argument type",
"unexported variable",
"there isn't return value",
"index out of range",
"unknown type",
"not a function",
"nil context",
"can't increment map key",
"nested template error",
"can't compare, values don't match",
"can't compare logical values",
"can't compare arrays or slices",
"can't compare channels",
"can't compare complex numbers",
"can't compare functions",
"can't compare maps",
"can't compare values of unknown type",
}
txt = fmt.Sprintf("Line %d: Runtime error: %s.", re.Lnum, errStr[re.Enum])
if re.Nested != nil {
txt += "\n " + re.Nested.Error()
}
return
}
// Pelna dereferencja wskaznikow i interfejsow
func dereference(val *reflect.Value) {
for {
switch val.Kind() {
case reflect.Ptr:
*val = val.Elem()
case reflect.Interface:
*val = val.Elem()
default:
return
}
}
}
// Funkcja sprawdza zgodnosc typow argumentow.
func argsMatch(ft reflect.Type, args []reflect.Value, method int) int {
if ft.NumOut() == 0 {
return RUN_NOT_RET
}
// Liczba arguemntow akceptowanych przez funkcje/metode
num_in := ft.NumIn() - method
// Sprawdzamy zgodnosc liczby argumentow i obecnosc funkcji dotdotdot
var head_args, tail_args []reflect.Value
if ft.IsVariadic() {
num_in--
if len(args) < num_in {
return RUN_WRONG_ARG_NUM
}
head_args = args[0:num_in]
tail_args = args[num_in:]
} else {
if num_in != len(args) {
return RUN_WRONG_ARG_NUM
}
head_args = args
}
// Sprawdzamy zgodnosc typow poczatkowych argumentow funkcji
for kk, av := range head_args {
at := ft.In(kk + method) // Typ argumentu
if !av.Type().AssignableTo(at) {
return RUN_WRONG_ARG_TYP
}
}
if !ft.IsVariadic() {
return RUN_OK
}
// Okreslamy typ argumentów zawartych w dotdotdot
st := ft.In(ft.NumIn() - 1) // zawsze slice
at := st.Elem() // Konkretny typ argumentu dotdotdot
for _, av := range tail_args {
if !av.Type().AssignableTo(at) {
return RUN_WRONG_ARG_TYP
}
}
return RUN_OK
}
// Funkcja zwraca wartosc zmiennej o podanej nazwie lub indeksie. Jesli zmienna
// jest funkcja, wczesniej wywoluje ja z podanymi argumentami. Funkcja
// przeprowadza niezbedne dereferencje tak aby zwrocic zmienna, ktora nie jest
// ani wskaznikiem, ani interfejsem lub zwrocic wskaznik lub interface do takiej
// zmiennej. Uwaga! Funkcja moze modyfikowac wartosci args!
func getVarFun(ctx, name reflect.Value, args []reflect.Value, fun bool) (ret reflect.Value, stat int) {
if !ctx.IsValid() {
stat = RUN_NIL_CTX
return
}
// Dereferencja nazwy
dereference(&name)
// Dereferencja jesli kontekst jest interfejsem
if ctx.Kind() == reflect.Interface {
ctx = ctx.Elem()
}
// Dereferencja argumentow jesli sa interfejsami
for i, a := range args {
if a.Kind() == reflect.Interface {
args[i] = a.Elem()
}
}
// Jesli nazwa jest stringiem probujemy znalezc metode o tej nazwie
if name.Kind() == reflect.String {
tt := ctx.Type()
//nm := tt.NumMethod()
for ii := 0; ii < tt.NumMethod(); ii++ {
method := tt.Method(ii)
// Sprawdzamy zgodnosc nazwy metody oraz typu receiver'a
if method.Name == name.String() && tt == method.Type.In(0) {
stat = argsMatch(method.Type, args, 1)
if stat != RUN_OK {
return
}
// Zwracamy pierwsza wartosc zwrocona przez metode
ctx = ctx.Method(ii).Call(args)[0]
// Nie pozwalamy na dalsza analize nazwy
name = reflect.Value{}
// Nie pozwalamy na traktowanie zwroconej zmiennej jak funkcji
args = nil
fun = false
break
}
}
}
// Jesli name zawiera wartosc operujemy na nazwanej zmiennej z kontekstu,
// w przeciwnym razie operujemy na samym kontekscie jako zmiennej.
if name.IsValid() {
// Pelna dereferencja kontekstu
dereference(&ctx)
// Pobieramy wartosc
switch ctx.Kind() {
case reflect.Struct:
switch name.Kind() {
case reflect.String:
// Zwracamy pole struktury o podanej nazwie
ft, ok := ctx.Type().FieldByName(name.String())
if !ok {
stat = RUN_NOT_FOUND
return
}
if ft.PkgPath != "" {
stat = RUN_UNEXPORTED
return
}
ctx = ctx.FieldByIndex(ft.Index)
case reflect.Int:
// Zwracamy pole sruktury o podanym indeksie
fi := int(name.Int())
if fi < 0 || fi >= ctx.NumField() {
stat = RUN_INDEX_OOR
return
}
if ctx.Type().Field(fi).PkgPath != "" {
stat = RUN_UNEXPORTED
return
}
ctx = ctx.Field(fi)
default:
stat = RUN_NOT_FOUND
return
}
case reflect.Map:
kt := ctx.Type().Key()
if !name.Type().AssignableTo(kt) {
stat = RUN_NOT_FOUND
}
ctx = ctx.MapIndex(name)
if !ctx.IsValid() {
stat = RUN_NOT_FOUND
return
}
case reflect.Array, reflect.Slice:
if name.Kind() != reflect.Int {
stat = RUN_NOT_FOUND
return
}
// Zwracamy element tablicy o podanym indeksie
ei := int(name.Int())
if ei < 0 || ei >= ctx.Len() {
stat = RUN_INDEX_OOR
return
}
ctx = ctx.Index(ei)
case reflect.String:
if name.Kind() != reflect.Int {
stat = RUN_NOT_FOUND
return
}
// Zwracamy znak o podanym indeksie
rs := []rune(ctx.String())
ei := int(name.Int())
if ei < 0 || ei >= len(rs) {
stat = RUN_INDEX_OOR
return
}
ctx = reflect.ValueOf(rs[ei])
case reflect.Invalid:
stat = RUN_NIL_CTX
return
default:
stat = RUN_UNK_TYPE
return
}
}
// Jesli mamy wywolanie funkcji to robimy pelna dereferencje.
if fun {
dereference(&ctx)
}
// Sprawdzenie czy ctx odnosi sie do funkcji.
if ctx.Kind() == reflect.Func {
ft := ctx.Type()
if fun || ft.NumIn() == 0 {
// Sprawdzamy zgodnosc liczby argumentow
stat = argsMatch(ft, args, 0)
if stat != RUN_OK {
return
}
// Zwracamy pierwsza wrtosc zwrocaona przez funkcje.
ctx = ctx.Call(args)[0]
}
} else if fun {
stat = RUN_NOT_FUNC
return
}
//fmt.Println("DEB getvar.ret:", reflect.Typeof(ctx.Interface()))
return ctx, RUN_OK
}
// Funkcja zwraca wartosc logiczna argumentu
func getBool(val reflect.Value) bool {
if !val.IsValid() {
return false
}
// Jednokrotna dereferencja jesli wartosc jest interfejsem
if val.Kind() == reflect.Interface {
val = val.Elem()
}
switch val.Kind() {
case reflect.Invalid:
return false
case reflect.Array, reflect.Slice:
return val.Len() != 0
case reflect.Bool:
return val.Bool()
case reflect.Chan:
return !val.IsNil()
case reflect.Complex64, reflect.Complex128:
return val.Complex() != complex(0, 0)
case reflect.Float32, reflect.Float64:
return val.Float() != 0.0
case reflect.Func:
return !val.IsNil()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32,
reflect.Int64:
return val.Int() != 0
case reflect.Interface:
return !val.IsNil()
case reflect.Map:
return val.Len() != 0
case reflect.Ptr:
return !val.IsNil()
case reflect.String:
return len(val.String()) != 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32,
reflect.Uint64:
return val.Uint() != 0
}
return true
}
// Porownuje argumenty. Wczesniej przeprowadza ich pelna dereferencje.
func getCmp(arg1, arg2 reflect.Value, cmp int) (tf bool, stat int) {
dereference(&arg1)
dereference(&arg2)
if !arg1.IsValid() && !arg2.IsValid() {
switch cmp {
case if_eq, if_ge, if_le:
tf = true
default:
tf = false
}
} else {
// Sprawdzamy czy typy pasuja do siebie.
typdif := false
if !arg1.IsValid() || !arg2.IsValid() {
typdif = true
} else if !arg1.Type().ConvertibleTo(arg2.Type()) {
typdif = true
}
if typdif {
switch cmp {
case if_eq:
tf = false
case if_ne:
tf = true
default:
stat = CMP_NMATCH
}
} else {
unk_oper := "tmpl:getCmp: Unknown comparasion operator!"
switch arg1.Kind() {
case reflect.Array, reflect.Slice:
stat = CMP_ARRSLIC
case reflect.Bool:
a1 := arg1.Bool()
a2 := arg2.Bool()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
default:
stat = CMP_BOOL
}
case reflect.Chan:
stat = CMP_CHANN
case reflect.Complex64, reflect.Complex128:
a1 := arg1.Complex()
a2 := arg2.Complex()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
default:
stat = CMP_CPLX
}
case reflect.Float32, reflect.Float64:
a1 := arg1.Float()
a2 := arg2.Float()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
case if_lt:
tf = (a1 < a2)
case if_le:
tf = (a1 <= a2)
case if_gt:
tf = (a1 > a2)
case if_ge:
tf = (a1 >= a2)
default:
panic(unk_oper)
}
case reflect.Func:
stat = CMP_FUNC
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32,
reflect.Int64:
a1 := arg1.Int()
a2 := arg2.Int()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
case if_lt:
tf = (a1 < a2)
case if_le:
tf = (a1 <= a2)
case if_gt:
tf = (a1 > a2)
case if_ge:
tf = (a1 >= a2)
default:
panic(unk_oper)
}
case reflect.Map:
stat = CMP_MAP
case reflect.String:
a1 := arg1.String()
a2 := arg2.String()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
case if_lt:
tf = (a1 < a2)
case if_le:
tf = (a1 <= a2)
case if_gt:
tf = (a1 > a2)
case if_ge:
tf = (a1 >= a2)
default:
panic(unk_oper)
}
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32,
reflect.Uint64:
a1 := arg1.Uint()
a2 := arg2.Uint()
switch cmp {
case if_eq:
tf = (a1 == a2)
case if_ne:
tf = (a1 != a2)
case if_lt:
tf = (a1 < a2)
case if_le:
tf = (a1 <= a2)
case if_gt:
tf = (a1 > a2)
case if_ge:
tf = (a1 >= a2)
default:
panic(unk_oper)
}
default:
stat = CMP_UNKNOWN
}
}
}
return
}