1
0
mirror of https://github.com/danog/liquid.git synced 2024-11-30 08:18:59 +01:00
liquid/expressions/context.go

42 lines
1.1 KiB
Go
Raw Normal View History

2017-07-14 02:18:23 +02:00
package expressions
2017-06-26 21:36:05 +02:00
import "github.com/osteele/liquid/values"
2017-06-26 21:36:05 +02:00
// Context is the expression evaluation context. It maps variables names to values.
type Context interface {
2017-07-16 19:47:06 +02:00
ApplyFilter(string, valueFn, []valueFn) (interface{}, error)
// Clone returns a copy with a new variable binding map
// (so that copy.Set does effect the source context.)
Clone() Context
2017-06-26 21:36:05 +02:00
Get(string) interface{}
Set(string, interface{})
}
type context struct {
2017-07-04 17:08:57 +02:00
Config
2017-07-05 17:17:31 +02:00
bindings map[string]interface{}
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// NewContext makes a new expression evaluation context.
func NewContext(vars map[string]interface{}, cfg Config) Context {
return &context{cfg, vars}
}
func (c *context) Clone() Context {
bindings := map[string]interface{}{}
for k, v := range c.bindings {
bindings[k] = v
}
return &context{c.Config, bindings}
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// Get looks up a variable value in the expression context.
2017-06-26 21:36:05 +02:00
func (c *context) Get(name string) interface{} {
return values.ToLiquid(c.bindings[name])
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// Set sets a variable value in the expression context.
2017-06-26 21:36:05 +02:00
func (c *context) Set(name string, value interface{}) {
c.bindings[name] = value
2017-06-26 21:36:05 +02:00
}