expr/operator-builtin.go

62 lines
1.2 KiB
Go
Raw Normal View History

2024-04-19 00:19:11 +02:00
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
// All rights reserved.
2024-04-27 09:47:24 +02:00
// operator-builtin.go
2024-04-19 00:19:11 +02:00
package expr
import "io"
2024-04-19 00:19:11 +02:00
//-------- builtin term
func newBuiltinTerm(tk *Token) (inst *term) {
return &term{
tk: *tk,
children: make([]*term, 0, 1),
position: posPrefix,
priority: priSign,
evalFunc: evalBuiltin,
}
}
func evalBuiltin(ctx ExprContext, self *term) (v any, err error) {
var childValue any
2024-04-19 00:19:11 +02:00
if childValue, err = self.evalPrefix(ctx); err != nil {
2024-04-19 00:19:11 +02:00
return
}
count := 0
if IsString(childValue) {
module, _ := childValue.(string)
count, err = ImportInContextByGlobPattern(module)
} else {
var moduleSpec any
it := NewAnyIterator(childValue)
for moduleSpec, err = it.Next(); err == nil; moduleSpec, err = it.Next() {
2024-04-19 00:19:11 +02:00
if module, ok := moduleSpec.(string); ok {
if ImportInContext(module) {
2024-04-19 00:19:11 +02:00
count++
} else {
err = self.Errorf("unknown module %q", module)
break
}
} else {
err = self.Errorf("expected string at item nr %d, got %T", it.Index()+1, moduleSpec)
2024-04-19 00:19:11 +02:00
break
}
}
if err == io.EOF {
err = nil
}
2024-04-19 00:19:11 +02:00
}
if err == nil {
v = int64(count)
2024-04-19 00:19:11 +02:00
}
return
}
// init
func init() {
registerTermConstructor(SymKwBuiltin, newBuiltinTerm)
}