borrow(池化)、ensure(实例)、borrowStatic(静态)各自写了一遍「取作用域 →
拼 extra → 建 Runtime → load」。borrowStatic 甚至把 newVM 逐行抄了一遍,只为把
noInstance 传成 true。
结果就是规则会漏:上一个 commit 修的「borrowStatic 没标 scoped」正是这么来的。
现在三条都走 newVM,作用域注入和 scoped 标记只有一份。
顺带删掉两处无意义的间接:
loadInto s.load(ctx, rt, ctorArgs, false) 的单行包装,只被 newVM 调一次
newRuntime 它的 scope 参数两个调用点都传 s.name,而注释描述的「会话 VM 用
会话 key」这条路径根本没实现(作用域 key 走的是 vmGlobals)。
参数名还跟同包的 type scope struct 撞名
**scope 是显式参数,不是从 ctx 嗅的**——这一点差点被我改坏:Instance 重建 VM
时要回到它**创建时**那个作用域,而不是当次调用 ctx 里的。对一个作用域实例调
Call(context.Background()) 不该把它的扩展弄丢。加了
TestScope_实例重建VM后仍在原作用域 守这条,用超时逼出 VM 重建(第一版用抛异常,
那不会丢 VM,两种写法都通过,等于没测)。
161 lines
5.7 KiB
Go
161 lines
5.7 KiB
Go
package jscriptx
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"sync/atomic"
|
|
)
|
|
|
|
// Instance 是脚本导出的 class 的一个实例,独占一个 VM,用起来跟普通 Go 对象差不多:
|
|
//
|
|
// obj, err := s.New(ctx, "dev-1", "温控器")
|
|
// defer obj.Close()
|
|
// got, err := obj.Call(ctx, "onMessage", payload)
|
|
//
|
|
// 跟从 VM 池借用的 Script.Call 不同,实例在整个生命周期里绑定同一个 VM,
|
|
// 所以脚本里的 this.xxx 能跨调用保持:
|
|
//
|
|
// export default class DeviceHandler {
|
|
// constructor(deviceId, model) { this.count = 0 }
|
|
// onMessage(payload) { return ++this.count } // 跨调用累加
|
|
// }
|
|
//
|
|
// # 必须知道的三件事
|
|
//
|
|
// 1. 生命周期归你管。Close 之前它一直占着一个 VM(约 16 KB),本库不会替你回收,
|
|
// 也没有按 key 复用那一套——要长期持有(比如按设备 ID 存着),业务侧自己拿 map 存。
|
|
// 2. 同一个实例的调用是串行的。goja 的 Runtime 不是并发安全的,多个 goroutine
|
|
// 同时调同一个实例会排队;不同实例之间并行。
|
|
// 3. 脚本出错会丢状态。一次超时或 panic 会让这个 VM 被丢弃,下次调用时用一份
|
|
// 全新的实例重建(构造参数会重新传一遍,但 this 上攒的状态归零)。
|
|
// Resets 能查到发生过几次。真正不能丢的东西放作用域的扩展里(比如 store)。
|
|
type Instance struct {
|
|
script *Script
|
|
ctorArgs []any
|
|
label string // 错误信息里怎么称呼它
|
|
scope *scope // ctx 带来的作用域:扩展和额外全局从这里拿,没有作用域时为 nil
|
|
|
|
mu sync.Mutex // 保证串行执行,acquire 持锁直到 finish
|
|
vm *vmHandle
|
|
done bool
|
|
|
|
calls atomic.Int64
|
|
resets atomic.Int64
|
|
}
|
|
|
|
// New 实例化脚本导出的 class,构造参数直接传给 constructor。返回的实例独占一个 VM,
|
|
// 脚本里的 this.xxx 在它活着期间跨调用保持,用完 Close。
|
|
//
|
|
// ctx 里带了作用域(WithScope)时,作用域里的扩展和全局对象会注入给这个实例——
|
|
// 同一个 ctx 下 New 出来的多个实例因此共享同一份扩展(比如 store),但各有各的 VM,
|
|
// 互相并行、this.xxx 互不干扰。
|
|
//
|
|
// 脚本导出的不是 class 而是实例或函数时也能用,只是构造参数没有去处会被忽略。
|
|
// constructor 里抛异常会在这里就报出来,不用等到第一次调用。
|
|
func (s *Script) New(ctx context.Context, ctorArgs ...any) (*Instance, error) {
|
|
if s.closed.Load() {
|
|
return nil, newError(KindClosed, s.name, "", ErrClosed, "脚本已关闭")
|
|
}
|
|
i := &Instance{script: s, ctorArgs: ctorArgs, label: "实例"}
|
|
if sc, ok := scopeOf(ctx); ok {
|
|
i.scope = sc
|
|
i.label = "作用域 " + strconvQuote(sc.key) + " 的实例"
|
|
}
|
|
if err := i.warmup(ctx); err != nil {
|
|
return nil, err
|
|
}
|
|
return i, nil
|
|
}
|
|
|
|
// Name 返回脚本名。
|
|
func (i *Instance) Name() string { return i.script.name }
|
|
|
|
// Calls 返回这个实例累计发起过多少次调用。
|
|
func (i *Instance) Calls() int64 { return i.calls.Load() }
|
|
|
|
// Resets 返回这个实例的 VM 被重建过几次。每重建一次,脚本里 this 上的状态就归零一次。
|
|
func (i *Instance) Resets() int64 { return i.resets.Load() }
|
|
|
|
// Call 在这个实例上调用方法,语义跟 Script.Call 一致,只是 this 绑定到本实例。
|
|
func (i *Instance) Call(ctx context.Context, fn string, args ...any) (any, error) {
|
|
return callAny(ctx, i, fn, args)
|
|
}
|
|
|
|
// CallInto 在这个实例上调用方法,并把返回值转换进 out 指向的变量。
|
|
func (i *Instance) CallInto(ctx context.Context, fn string, out any, args ...any) error {
|
|
return callInto(ctx, i, fn, out, args)
|
|
}
|
|
|
|
// Has 判断实例上有没有这个方法(继承来的也算)。
|
|
func (i *Instance) Has(fn string) bool {
|
|
i.mu.Lock()
|
|
defer i.mu.Unlock()
|
|
if err := i.ensure(context.Background()); err != nil {
|
|
return false
|
|
}
|
|
_, _, _, ok := i.vm.lookup(fn)
|
|
return ok
|
|
}
|
|
|
|
// Close 释放这个实例占用的 VM。之后的调用返回 ErrClosed。重复调用是安全的。
|
|
//
|
|
// 作用域里的扩展不归它管——那些是你自己创建的对象,Close 只释放这个实例的 VM。
|
|
func (i *Instance) Close() { i.shutdown() }
|
|
|
|
func (i *Instance) owner() *Script { return i.script }
|
|
|
|
// warmup 提前建好 VM,让 constructor 的错误在 New 阶段就暴露出来。
|
|
func (i *Instance) warmup(ctx context.Context) error {
|
|
i.mu.Lock()
|
|
defer i.mu.Unlock()
|
|
return i.ensure(ctx)
|
|
}
|
|
|
|
// ensure 保证 VM 就绪,调用方必须持有 i.mu。
|
|
func (i *Instance) ensure(ctx context.Context) error {
|
|
if i.done || i.script.closed.Load() {
|
|
return newError(KindClosed, i.script.name, "", ErrClosed, "%s已关闭", i.label)
|
|
}
|
|
if i.vm != nil {
|
|
return nil
|
|
}
|
|
// 用 i.scope 而不是 ctx 里的:实例属于它**创建时**那个作用域,
|
|
// 重建 VM 时要回到那里去,不能跟着当次调用走
|
|
vm, err := i.script.newVM(ctx, i.scope, i.ctorArgs, false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
i.vm = vm
|
|
return nil
|
|
}
|
|
|
|
// acquire 锁住实例并交出它独占的 VM。
|
|
// 注意:锁一直持到 finish 才释放,这正是"同一实例串行执行"的保证。
|
|
func (i *Instance) acquire(ctx context.Context) (*vmHandle, error) {
|
|
i.mu.Lock()
|
|
if err := i.ensure(ctx); err != nil {
|
|
i.mu.Unlock()
|
|
return nil, err
|
|
}
|
|
i.calls.Add(1)
|
|
return i.vm, nil
|
|
}
|
|
|
|
// finish 交还 VM 并解锁。VM 状态不确定时(超时/panic)直接丢弃,
|
|
// 下次调用会重建一个全新实例——脚本里 this 上的状态也就跟着归零了。
|
|
func (i *Instance) finish(_ *vmHandle, healthy bool) {
|
|
if !healthy {
|
|
i.vm = nil
|
|
i.resets.Add(1)
|
|
}
|
|
i.mu.Unlock()
|
|
}
|
|
|
|
// shutdown 真正释放 VM。
|
|
func (i *Instance) shutdown() {
|
|
i.mu.Lock()
|
|
defer i.mu.Unlock()
|
|
i.done = true
|
|
i.vm = nil
|
|
}
|