Files
sqlite3/func.go

159 lines
4.8 KiB
Go
Raw Normal View History

2023-06-28 17:32:55 +01:00
package sqlite3
import (
"context"
"github.com/ncruces/go-sqlite3/internal/util"
"github.com/tetratelabs/wazero"
"github.com/tetratelabs/wazero/api"
)
2023-06-30 02:49:21 +01:00
// CreateCollation defines a new collating sequence.
//
// https://www.sqlite.org/c3ref/create_collation.html
func (c *Conn) CreateCollation(name string, fn func(a, b []byte) int) error {
namePtr := c.arena.string(name)
funcPtr := util.AddHandle(c.ctx, fn)
r := c.call(c.api.createCollation,
uint64(c.handle), uint64(namePtr), uint64(funcPtr))
if err := c.error(r); err != nil {
util.DelHandle(c.ctx, funcPtr)
return err
}
return nil
}
2023-07-01 00:15:28 +01:00
// CreateFunction defines a new scalar function.
//
// https://www.sqlite.org/c3ref/create_function.html
func (c *Conn) CreateFunction(name string, nArg int, flag FunctionFlag, fn func(ctx Context, arg ...Value)) error {
namePtr := c.arena.string(name)
funcPtr := util.AddHandle(c.ctx, fn)
r := c.call(c.api.createFunction,
uint64(c.handle), uint64(namePtr), uint64(nArg),
uint64(flag), uint64(funcPtr))
return c.error(r)
}
2023-07-01 15:14:45 +01:00
// CreateWindowFunction defines a new aggregate or window function.
//
// https://www.sqlite.org/c3ref/create_function.html
func (c *Conn) CreateWindowFunction(name string, nArg int, flag FunctionFlag, fn AggregateFunction) error {
call := c.api.createAggregate
namePtr := c.arena.string(name)
funcPtr := util.AddHandle(c.ctx, fn)
if _, ok := fn.(WindowFunction); ok {
call = c.api.createWindow
}
r := c.call(call,
uint64(c.handle), uint64(namePtr), uint64(nArg),
uint64(flag), uint64(funcPtr))
return c.error(r)
}
// ScalarFunction is the interface a scalar function should implement.
//
// https://www.sqlite.org/appfunc.html
type ScalarFunction interface {
Func(ctx Context, arg ...Value)
}
// AggregateFunction is the interface an aggregate function should implement.
//
// https://www.sqlite.org/appfunc.html
type AggregateFunction interface {
Step(ctx Context, arg ...Value)
Final(ctx Context)
}
// WindowFunction is the interface an aggregate window function should implement.
//
// https://www.sqlite.org/windowfunctions.html
type WindowFunction interface {
AggregateFunction
Value(ctx Context)
Inverse(ctx Context, arg ...Value)
}
2023-06-28 17:32:55 +01:00
func exportHostFunctions(env wazero.HostModuleBuilder) wazero.HostModuleBuilder {
2023-07-01 15:14:45 +01:00
util.ExportFuncVI(env, "go_destroy", callbackDestroy)
util.ExportFuncIIIIII(env, "go_compare", callbackCompare)
util.ExportFuncVIII(env, "go_func", callbackFunc)
util.ExportFuncVIII(env, "go_step", callbackStep)
util.ExportFuncVI(env, "go_final", callbackFinal)
util.ExportFuncVI(env, "go_value", callbackValue)
util.ExportFuncVIII(env, "go_inverse", callbackInverse)
2023-06-28 17:32:55 +01:00
return env
}
2023-07-01 15:14:45 +01:00
func callbackDestroy(ctx context.Context, mod api.Module, pApp uint32) {
2023-07-01 00:15:28 +01:00
util.DelHandle(ctx, pApp)
2023-06-30 02:49:21 +01:00
}
2023-06-28 17:32:55 +01:00
2023-07-01 15:14:45 +01:00
func callbackCompare(ctx context.Context, mod api.Module, pApp, nKey1, pKey1, nKey2, pKey2 uint32) uint32 {
2023-07-01 00:15:28 +01:00
fn := util.GetHandle(ctx, pApp).(func(a, b []byte) int)
2023-06-30 02:49:21 +01:00
return uint32(fn(util.View(mod, pKey1, uint64(nKey1)), util.View(mod, pKey2, uint64(nKey2))))
2023-06-28 17:32:55 +01:00
}
2023-07-01 15:14:45 +01:00
func callbackFunc(ctx context.Context, mod api.Module, pCtx, nArg, pArg uint32) {
2023-07-01 00:15:28 +01:00
module := ctx.Value(moduleKey{}).(*module)
pApp := uint32(module.call(module.api.userData, uint64(pCtx)))
2023-07-01 15:14:45 +01:00
fn := util.GetHandle(ctx, pApp).(func(ctx Context, arg ...Value))
fn(Context{
module: module,
2023-07-01 00:15:28 +01:00
handle: pCtx,
2023-07-01 15:14:45 +01:00
}, callbackArgs(module, nArg, pArg)...)
}
func callbackStep(ctx context.Context, mod api.Module, pCtx, nArg, pArg uint32) {
module := ctx.Value(moduleKey{}).(*module)
pApp := uint32(module.call(module.api.userData, uint64(pCtx)))
fn := util.GetHandle(ctx, pApp).(AggregateFunction)
fn.Step(Context{
2023-07-01 00:15:28 +01:00
module: module,
2023-07-01 15:14:45 +01:00
handle: pCtx,
}, callbackArgs(module, nArg, pArg)...)
2023-07-01 00:15:28 +01:00
}
2023-06-28 17:32:55 +01:00
2023-07-01 15:14:45 +01:00
func callbackFinal(ctx context.Context, mod api.Module, pCtx uint32) {
module := ctx.Value(moduleKey{}).(*module)
pApp := uint32(module.call(module.api.userData, uint64(pCtx)))
fn := util.GetHandle(ctx, pApp).(AggregateFunction)
fn.Final(Context{
module: module,
handle: pCtx,
final: true,
})
}
2023-06-28 17:32:55 +01:00
2023-07-01 15:14:45 +01:00
func callbackValue(ctx context.Context, mod api.Module, pCtx uint32) {
module := ctx.Value(moduleKey{}).(*module)
pApp := uint32(module.call(module.api.userData, uint64(pCtx)))
fn := util.GetHandle(ctx, pApp).(WindowFunction)
fn.Value(Context{
module: module,
handle: pCtx,
})
}
2023-06-28 17:32:55 +01:00
2023-07-01 15:14:45 +01:00
func callbackInverse(ctx context.Context, mod api.Module, pCtx, nArg, pArg uint32) {
module := ctx.Value(moduleKey{}).(*module)
pApp := uint32(module.call(module.api.userData, uint64(pCtx)))
fn := util.GetHandle(ctx, pApp).(WindowFunction)
fn.Inverse(Context{
module: module,
handle: pCtx,
}, callbackArgs(module, nArg, pArg)...)
}
2023-06-28 17:32:55 +01:00
2023-07-01 15:14:45 +01:00
func callbackArgs(module *module, nArg, pArg uint32) []Value {
args := make([]Value, nArg)
for i := range args {
args[i] = Value{
module: module,
handle: util.ReadUint32(module.mod, pArg+ptrlen*uint32(i)),
}
}
return args
}