2017-06-28 02:32:55 +02:00
|
|
|
package expressions
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
func makeObjectPropertyEvaluator(obj func(Context) interface{}, attr string) func(Context) interface{} {
|
|
|
|
return func(ctx Context) interface{} {
|
|
|
|
ref := reflect.ValueOf(obj(ctx))
|
|
|
|
switch ref.Kind() {
|
2017-06-28 15:50:04 +02:00
|
|
|
case reflect.Array, reflect.Slice:
|
|
|
|
if ref.Len() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
switch attr {
|
|
|
|
case "first":
|
|
|
|
return ref.Index(0).Interface()
|
|
|
|
case "last":
|
|
|
|
return ref.Index(ref.Len() - 1).Interface()
|
2017-06-28 20:41:46 +02:00
|
|
|
case "size":
|
|
|
|
return ref.Len()
|
|
|
|
}
|
|
|
|
case reflect.String:
|
|
|
|
if attr == "size" {
|
|
|
|
return ref.Len()
|
2017-06-28 15:50:04 +02:00
|
|
|
}
|
2017-06-28 02:32:55 +02:00
|
|
|
case reflect.Map:
|
|
|
|
value := ref.MapIndex(reflect.ValueOf(attr))
|
|
|
|
if value.Kind() != reflect.Invalid {
|
|
|
|
return value.Interface()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-28 15:50:04 +02:00
|
|
|
func makeIndexEvaluator(obj, index func(Context) interface{}) func(Context) interface{} {
|
2017-06-28 02:32:55 +02:00
|
|
|
return func(ctx Context) interface{} {
|
|
|
|
ref := reflect.ValueOf(obj(ctx))
|
2017-06-28 15:50:04 +02:00
|
|
|
i := reflect.ValueOf(index(ctx))
|
2017-06-28 02:32:55 +02:00
|
|
|
switch ref.Kind() {
|
|
|
|
case reflect.Array, reflect.Slice:
|
2017-06-28 15:50:04 +02:00
|
|
|
switch i.Kind() {
|
2017-06-28 02:32:55 +02:00
|
|
|
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
|
2017-06-28 15:50:04 +02:00
|
|
|
n := int(i.Int())
|
2017-06-28 02:32:55 +02:00
|
|
|
if n < 0 {
|
|
|
|
n = ref.Len() + n
|
|
|
|
}
|
|
|
|
if 0 <= n && n < ref.Len() {
|
|
|
|
return ref.Index(n).Interface()
|
|
|
|
}
|
|
|
|
}
|
2017-06-29 20:21:06 +02:00
|
|
|
case reflect.Map:
|
|
|
|
if i.Type().ConvertibleTo(ref.Type().Key()) {
|
|
|
|
item := ref.MapIndex(i.Convert(ref.Type().Key()))
|
|
|
|
if item.IsValid() {
|
|
|
|
return item.Interface()
|
|
|
|
}
|
|
|
|
}
|
2017-06-28 02:32:55 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|