Skip to content

Commit

Permalink
feat(loader): support loader.entry, support fork dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Feb 22, 2024
1 parent 7617fd4 commit 909a18a
Show file tree
Hide file tree
Showing 5 changed files with 124 additions and 76 deletions.
2 changes: 1 addition & 1 deletion packages/cordis/src/worker/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function apply(ctx: Context, config: Config = {}) {
})

ctx.on('loader/entry', (type, entry) => {
ctx.logger('loader').info('%s plugin %c', type, entry.name)
ctx.logger('loader').info('%s plugin %c', type, entry.options.name)
})

ctx.loader.prolog = []
Expand Down
30 changes: 15 additions & 15 deletions packages/hmr/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class Watcher extends Service {

this.watcher.on('change', async (path) => {
const filename = pathToFileURL(resolve(this.base, path)).href
const isEntry = filename === this.initialURL // || loader.envFiles.includes(filename)
const isEntry = filename === this.initialURL
if (loader.suspend && isEntry) {
loader.suspend = false
return
Expand All @@ -105,17 +105,15 @@ class Watcher extends Service {
this.ctx.logger.debug('change detected:', path)

if (isEntry) {
if (this.ctx.loader.internal!.loadCache.has(filename)) {
this.ctx.loader.exit()
if (loader.internal!.loadCache.has(filename)) {
loader.exit()
} else {
const config = await loader.readConfig()
loader.entry.update(config)
this.ctx.emit('config')
await loader.reload()
}
} else {
if (this.externals.has(filename)) {
this.ctx.loader.exit()
} else if (this.ctx.loader.internal!.loadCache.has(filename)) {
loader.exit()
} else if (loader.internal!.loadCache.has(filename)) {
this.stashed.add(filename)
triggerLocalReload()
}
Expand Down Expand Up @@ -206,7 +204,7 @@ class Watcher extends Service {

// Plugin entry files should be "atomic".
// Which means, reloading them will not cause any other reloads.
const names = new Set(Object.values(this.ctx.loader.states).map(state => state.entry.name))
const names = new Set(Object.values(this.ctx.loader.entries).map(entry => entry.options.name))
for (const name of names) {
try {
const { url } = await this.ctx.loader.internal!.resolve(name, this.initialURL, {})
Expand Down Expand Up @@ -246,15 +244,15 @@ class Watcher extends Service {
isMarked = true
break
}
for (const state of runtime.children) {
queued.push(state.runtime)
for (const fork of runtime.children) {
queued.push(fork.runtime)
}
}
if (!isMarked) {
const children: ForkScope[] = []
reloads.set(plugin, { filename: job.url, children })
for (const state of runtime.children) {
children.push(state)
for (const fork of runtime.children) {
children.push(fork)
}
}
} else {
Expand Down Expand Up @@ -309,7 +307,8 @@ class Watcher extends Service {
try {
for (const oldFork of children) {
const fork = oldFork.parent.plugin(attempts[filename], oldFork.config)
fork.id = oldFork.id
fork.entry = oldFork.entry
fork.entry.fork = fork
}
this.ctx.logger.info('reload plugin at %c', path)
} catch (err) {
Expand All @@ -326,7 +325,8 @@ class Watcher extends Service {
this.ctx.registry.delete(attempts[filename])
for (const oldFork of children) {
const fork = oldFork.parent.plugin(plugin, oldFork.config)
fork.id = oldFork.id
fork.entry = oldFork.entry
fork.entry.fork = fork
}
} catch (err) {
this.ctx.logger.warn(err)
Expand Down
150 changes: 93 additions & 57 deletions packages/loader/src/shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,10 @@ declare module '@cordisjs/core' {
// Theoretically, these properties will only appear on `ForkScope`.
// We define them directly on `EffectScope` for typing convenience.
interface EffectScope {
id?: string
entry?: Entry
}
}

export interface Entry {
id: string
name: string
config?: any
when?: any
}

const kUpdate = Symbol('update')

const writable = {
Expand All @@ -51,9 +44,41 @@ if (typeof require !== 'undefined') {
}
}

interface State {
entry: Entry
fork?: ForkScope
export namespace Entry {
export interface Options {
id: string
name: string
config?: any
disabled?: boolean
when?: any
}
}

export class Entry {
public fork: ForkScope | null = null

constructor(public loader: Loader, public parent: Context, public options: Entry.Options) {}

stop() {
if (!this.fork) return
this.parent.emit('loader/entry', 'unload', this)
this.fork.dispose()
this.fork = null
}

async start() {
if (this.fork) {
this.fork[kUpdate] = true
this.fork.update(this.options.config)
} else {
this.parent.emit('loader/entry', 'apply', this)
const plugin = await this.loader.resolve(this.options.name)
if (!plugin) return
const ctx = this.parent.extend()
this.fork = ctx.plugin(plugin, this.loader.interpolate(this.options.config))
this.fork.entry = this
}
}
}

export namespace Loader {
Expand All @@ -63,7 +88,7 @@ export namespace Loader {
}
}

export abstract class Loader<T extends Loader.Options = Loader.Options> extends Service<Entry[]> {
export abstract class Loader<T extends Loader.Options = Loader.Options> extends Service<Entry.Options[]> {
// process
public baseDir = process.cwd()
public envData = process.env.CORDIS_SHARED
Expand All @@ -74,12 +99,12 @@ export abstract class Loader<T extends Loader.Options = Loader.Options> extends
env: process.env,
}

public entry!: ForkScope<Context>
public entryFork!: ForkScope<Context>
public suspend = false
public writable = false
public mimeType!: string
public filename!: string
public states: Dict<State> = Object.create(null)
public entries: Dict<Entry> = Object.create(null)

private tasks = new Set<Promise<any>>()
private store = new WeakMap<any, string>()
Expand Down Expand Up @@ -157,6 +182,12 @@ export abstract class Loader<T extends Loader.Options = Loader.Options> extends
if (!silent) this.app.emit('config')
}

async reload() {
const config = await this.readConfig()
this.entryFork.update(config)
this.app.emit('config')
}

interpolate(source: any) {
if (typeof source === 'string') {
return interpolate(source, this.params, /\$\{\{(.+?)\}\}/g)
Expand Down Expand Up @@ -196,42 +227,27 @@ export abstract class Loader<T extends Loader.Options = Loader.Options> extends
return !!this.interpolate(`\${{ ${expr} }}`)
}

async reload(parent: Context, entry: Entry) {
if (!entry.id) {
async updateEntry(parent: Context, options: Entry.Options) {
if (!options.id) {
do {
entry.id = Math.random().toString(36).slice(2, 8)
} while (this.states[entry.id])
options.id = Math.random().toString(36).slice(2, 8)
} while (this.entries[options.id])
}

let state = this.states[entry.id]
if (state?.fork) {
if (!this.isTruthyLike(entry.when)) {
this.unload(parent, entry)
return
}
state.fork[kUpdate] = true
state.fork.update(entry.config)
const entry = this.entries[options.id] ??= new Entry(this, parent, options)
entry.options = options
if (!this.isTruthyLike(options.when) || options.disabled) {
entry.stop()
} else {
if (!this.isTruthyLike(entry.when)) return
parent.emit('loader/entry', 'apply', entry)
const plugin = await this.resolve(entry.name)
if (!plugin) return
const ctx = parent.extend()
state = {
entry,
fork: ctx.plugin(plugin, this.interpolate(entry.config)),
}
state.fork!.id = entry.id
this.states[entry.id] = state
entry.start()
}
}

unload(parent: Context, entry: Entry) {
const state = this.states[entry.id]
if (state?.fork) {
parent.emit('loader/entry', 'unload', entry)
state.fork.dispose()
}
removeEntry(parent: Context, options: Entry.Options) {
const entry = this.entries[options.id]
if (!entry) return
entry.stop()
delete this.entries[options.id]
}

paths(scope: EffectScope): string[] {
Expand All @@ -243,34 +259,48 @@ export abstract class Loader<T extends Loader.Options = Loader.Options> extends
return ([] as string[]).concat(...scope.runtime.children.map(child => this.paths(child)))
}

if (scope.id) return [scope.id]
if (scope.entry) return [scope.entry.options.id]
return this.paths(scope.parent.scope)
}

async start() {
await this.readConfig()
this.entry = this.app.plugin(group, this.config)
this.entryFork = this.app.plugin(group, this.config)

this.app.on('dispose', () => {
this.exit()
})

this.app.on('internal/update', (fork) => {
const state = this.states[fork.id!]
if (!state) return
fork.parent.emit('loader/entry', 'reload', state.entry)
const entry = this.entries[fork.entry?.options.id!]
if (!entry) return
fork.parent.emit('loader/entry', 'reload', entry)
})

this.app.on('internal/before-update', (fork, config) => {
if (fork[kUpdate]) return delete fork[kUpdate]
if (!fork.id) return
const { schema } = fork.runtime
const entry = fork.parent.scope.config?.find((entry: Entry) => entry.id === fork.id)
if (!fork.entry) return
const entry = fork.parent.scope.config?.find((entry: Entry.Options) => entry.id === fork.entry?.options.id)
if (!entry) return
const { schema } = fork.runtime
entry.config = schema ? schema.simplify(config) : config
this.writeConfig()
})

// write config with `~` prefix
this.app.on('internal/fork', (fork) => {
// fork.uid: fork is created (we only care about fork dispose event)
// fork.parent.runtime.plugin !== group: fork is not tracked by loader
if (fork.uid || !fork.entry) return
fork.parent.emit('loader/entry', 'unload', fork.entry)
// fork is disposed by main scope (e.g. hmr plugin)
// normal: ctx.dispose() -> fork / runtime dispose -> delete(plugin)
// hmr: delete(plugin) -> runtime dispose -> fork dispose
if (!this.app.registry.has(fork.runtime.plugin)) return
fork.entry.options.disabled = true
this.writeConfig()
})

while (this.tasks.size) {
await Promise.all(this.tasks)
}
Expand All @@ -283,26 +313,32 @@ export abstract class Loader<T extends Loader.Options = Loader.Options> extends
exit() {}
}

export function group(ctx: Context, config: Entry[]) {
export function group(ctx: Context, config: Entry.Options[]) {
for (const entry of config) {
ctx.loader.reload(ctx, entry)
ctx.loader.updateEntry(ctx, entry)
}

ctx.accept((neo: Entry[]) => {
ctx.accept((neo: Entry.Options[]) => {
// update config reference
const old = ctx.scope.config as Entry[]
const old = ctx.scope.config as Entry.Options[]
const oldMap = Object.fromEntries(old.map(entry => [entry.id, entry]))
const neoMap = Object.fromEntries(neo.map(entry => [entry.id, entry]))

// update inner plugins
for (const id in { ...oldMap, ...neoMap }) {
if (!neoMap[id]) {
ctx.loader.unload(ctx, oldMap[id])
ctx.loader.removeEntry(ctx, oldMap[id])
} else {
ctx.loader.reload(ctx, neoMap[id])
ctx.loader.updateEntry(ctx, neoMap[id])
}
}
}, { passive: true })

ctx.on('dispose', () => {
for (const entry of ctx.scope.config as Entry.Options[]) {
ctx.loader.removeEntry(ctx, entry)
}
})
}

defineProperty(group, 'inject', ['loader'])
Expand Down
16 changes: 14 additions & 2 deletions packages/loader/tests/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ describe('@cordisjs/loader', () => {
name: 'foo',
}]

root.loader.entry.update(root.loader.config)
root.loader.entryFork.update(root.loader.config)
await new Promise((resolve) => setTimeout(resolve, 0))
expect(root.registry.get(foo)).to.be.ok
expect(root.registry.get(bar)).to.be.not.ok
Expand All @@ -58,12 +58,24 @@ describe('@cordisjs/loader', () => {

test('plugin update', async () => {
const runtime = root.registry.get(foo)
runtime?.update({ a: 3 })
runtime!.update({ a: 3 })
await new Promise((resolve) => setTimeout(resolve, 0))
expect(root.loader.config).to.deep.equal([{
id: '1',
name: 'foo',
config: { a: 3 },
}])
})

test('plugin dispose', async () => {
const runtime = root.registry.get(foo)
runtime!.dispose()
await new Promise((resolve) => setTimeout(resolve, 0))
expect(root.loader.config).to.deep.equal([{
id: '1',
name: 'foo',
disabled: true,
config: { a: 3 },
}])
})
})
2 changes: 1 addition & 1 deletion packages/loader/tests/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Dict } from 'cosmokit'
import { Context, Plugin } from '@cordisjs/core'
import { Entry, group, Loader } from '../src/shared'
import { group, Loader } from '../src/shared'

declare module '../src/shared' {
interface Loader {
Expand Down

0 comments on commit 909a18a

Please sign in to comment.