-
Notifications
You must be signed in to change notification settings - Fork 153
/
function.go
111 lines (90 loc) · 2.29 KB
/
function.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
package values
import (
"fmt"
"regexp"
"github.com/influxdata/flux/semantic"
)
// Function represents a callable type
type Function interface {
Value
HasSideEffect() bool
Call(args Object) (Value, error)
}
// NewFunction returns a new function value
func NewFunction(name string, typ semantic.PolyType, call func(args Object) (Value, error), sideEffect bool) Function {
return &function{
name: name,
t: typ,
call: call,
hasSideEffect: sideEffect,
}
}
// function implements Value interface and more specifically the Function interface
type function struct {
name string
t semantic.PolyType
call func(args Object) (Value, error)
hasSideEffect bool
}
func (f *function) IsNull() bool {
return false
}
func (f *function) String() string {
return fmt.Sprintf("%s()", f.name)
}
func (f *function) Type() semantic.Type {
typ, ok := f.t.MonoType()
if ok {
return typ
}
return semantic.Invalid
}
func (f *function) PolyType() semantic.PolyType {
return f.t
}
func (f *function) Str() string {
panic(UnexpectedKind(semantic.Object, semantic.String))
}
func (f *function) Int() int64 {
panic(UnexpectedKind(semantic.Object, semantic.Int))
}
func (f *function) UInt() uint64 {
panic(UnexpectedKind(semantic.Object, semantic.UInt))
}
func (f *function) Float() float64 {
panic(UnexpectedKind(semantic.Object, semantic.Float))
}
func (f *function) Bool() bool {
panic(UnexpectedKind(semantic.Object, semantic.Bool))
}
func (f *function) Time() Time {
panic(UnexpectedKind(semantic.Object, semantic.Time))
}
func (f *function) Duration() Duration {
panic(UnexpectedKind(semantic.Object, semantic.Duration))
}
func (f *function) Regexp() *regexp.Regexp {
panic(UnexpectedKind(semantic.Object, semantic.Regexp))
}
func (f *function) Array() Array {
panic(UnexpectedKind(semantic.Object, semantic.Function))
}
func (f *function) Object() Object {
panic(UnexpectedKind(semantic.Object, semantic.Object))
}
func (f *function) Function() Function {
return f
}
func (f *function) Equal(rhs Value) bool {
if f.Type() != rhs.Type() {
return false
}
v, ok := rhs.(*function)
return ok && (f == v)
}
func (f *function) HasSideEffect() bool {
return f.hasSideEffect
}
func (f *function) Call(args Object) (Value, error) {
return f.call(args)
}