@@ -51,18 +51,9 @@ func SimpleFnToDirectFunc(name string, fv *types.FuncValue) interfaces.Func {
51
51
// *full.FuncValue.
52
52
func SimpleFnToFuncValue (name string , fv * types.FuncValue ) * full.FuncValue {
53
53
return & full.FuncValue {
54
- V : func (txn interfaces.Txn , args []interfaces.Func ) (interfaces.Func , error ) {
55
- wrappedFunc := SimpleFnToDirectFunc (name , fv )
56
- txn .AddVertex (wrappedFunc )
57
- for i , arg := range args {
58
- argName := fv .T .Ord [i ]
59
- txn .AddEdge (arg , wrappedFunc , & interfaces.FuncEdge {
60
- Args : []string {argName },
61
- })
62
- }
63
- return wrappedFunc , nil
64
- },
65
- T : fv .T ,
54
+ Name : & name ,
55
+ Timeless : fv ,
56
+ T : fv .T ,
66
57
}
67
58
}
68
59
@@ -76,9 +67,10 @@ func SimpleFnToConstFunc(name string, fv *types.FuncValue) interfaces.Func {
76
67
// FuncToFullFuncValue creates a *full.FuncValue which adds the given
77
68
// interfaces.Func to the graph. Note that this means the *full.FuncValue
78
69
// can only be called once.
79
- func FuncToFullFuncValue (valueTransformingFunc interfaces.Func , typ * types.Type ) * full.FuncValue {
70
+ func FuncToFullFuncValue (name string , valueTransformingFunc interfaces.Func , typ * types.Type ) * full.FuncValue {
80
71
return & full.FuncValue {
81
- V : func (txn interfaces.Txn , args []interfaces.Func ) (interfaces.Func , error ) {
72
+ Name : & name ,
73
+ Timeful : func (txn interfaces.Txn , args []interfaces.Func ) (interfaces.Func , error ) {
82
74
for i , arg := range args {
83
75
argName := typ .Ord [i ]
84
76
txn .AddEdge (arg , valueTransformingFunc , & interfaces.FuncEdge {
@@ -90,3 +82,31 @@ func FuncToFullFuncValue(valueTransformingFunc interfaces.Func, typ *types.Type)
90
82
T : typ ,
91
83
}
92
84
}
85
+
86
+ // Call calls the function with the provided txn and args.
87
+ func CallFuncValue (obj * full.FuncValue , txn interfaces.Txn , args []interfaces.Func ) (interfaces.Func , error ) {
88
+ if obj .Timeful != nil {
89
+ return obj .Timeful (txn , args )
90
+ }
91
+
92
+ wrappedFunc := SimpleFnToDirectFunc (* obj .Name , obj .Timeless )
93
+ txn .AddVertex (wrappedFunc )
94
+ for i , arg := range args {
95
+ argName := obj .T .Ord [i ]
96
+ txn .AddEdge (arg , wrappedFunc , & interfaces.FuncEdge {
97
+ Args : []string {argName },
98
+ })
99
+ }
100
+ return wrappedFunc , nil
101
+ }
102
+
103
+ // Speculatively call the function with the provided arguments.
104
+ // Only makes sense if the function is timeless (produces a single Value, not a
105
+ // stream of values).
106
+ func CallTimelessFuncValue (obj * full.FuncValue , args []types.Value ) (types.Value , error ) {
107
+ if obj .Timeless != nil {
108
+ return obj .Timeless .V (args )
109
+ }
110
+
111
+ panic ("cannot call CallIfTimeless on a Timeful function" )
112
+ }
0 commit comments