-
Notifications
You must be signed in to change notification settings - Fork 0
/
expression.go
50 lines (38 loc) · 944 Bytes
/
expression.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
// Copyright 2017 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"log"
"reflect"
)
import _ "gopkg.in/Knetic/govaluate.v3"
type Expression interface {
Value() interface{}
Changed() *Event
}
type reflectExpression struct {
root Expression
path string
}
func NewReflectExpression(root Expression, path string) Expression {
return &reflectExpression{root: root, path: path}
}
func (re *reflectExpression) Value() interface{} {
rootVal := re.root.Value()
if rootVal == nil {
return nil
}
_, val, err := reflectValueFromPath(reflect.ValueOf(rootVal), re.path)
if err != nil {
log.Print("walk - reflectExpression.Value - Error: ", err.Error())
}
if !val.IsValid() {
return nil
}
return val.Interface()
}
func (re *reflectExpression) Changed() *Event {
return re.root.Changed()
}