* Reapply "More aggressive using of cache on engine settings changes (#4691)" (#4729)
This reverts commit 3f1f40eeba
.
* Add a utility to get all the current values from the settings object
* Use an XState selector to get the latest settings snapshot for WASM
---------
Co-authored-by: Frank Noirot <frank@kittycad.io>
130 lines
3.6 KiB
TypeScript
130 lines
3.6 KiB
TypeScript
import {
|
|
Program,
|
|
ProgramMemory,
|
|
_executor,
|
|
SourceRange,
|
|
ExecState,
|
|
} from '../lang/wasm'
|
|
import {
|
|
EngineCommandManager,
|
|
EngineCommandManagerEvents,
|
|
} from 'lang/std/engineConnection'
|
|
import { EngineCommand } from 'lang/std/artifactGraph'
|
|
import { Models } from '@kittycad/lib'
|
|
import { v4 as uuidv4 } from 'uuid'
|
|
import { DefaultPlanes } from 'wasm-lib/kcl/bindings/DefaultPlanes'
|
|
import { err, reportRejection } from 'lib/trap'
|
|
import { toSync } from './utils'
|
|
import { Node } from 'wasm-lib/kcl/bindings/Node'
|
|
|
|
type WebSocketResponse = Models['WebSocketResponse_type']
|
|
|
|
const defaultPlanes: DefaultPlanes = {
|
|
xy: uuidv4(),
|
|
xz: uuidv4(),
|
|
yz: uuidv4(),
|
|
negXy: uuidv4(),
|
|
negXz: uuidv4(),
|
|
negYz: uuidv4(),
|
|
}
|
|
|
|
class MockEngineCommandManager {
|
|
// eslint-disable-next-line @typescript-eslint/no-useless-constructor
|
|
constructor(mockParams: {
|
|
setIsStreamReady: (isReady: boolean) => void
|
|
setMediaStream: (stream: MediaStream) => void
|
|
}) {}
|
|
startNewSession() {}
|
|
waitForAllCommands() {}
|
|
waitForReady = new Promise<void>((resolve) => resolve())
|
|
sendModelingCommand({
|
|
id,
|
|
range,
|
|
command,
|
|
}: {
|
|
id: string
|
|
range: SourceRange
|
|
command: EngineCommand
|
|
}): Promise<any> {
|
|
const response: WebSocketResponse = {
|
|
success: true,
|
|
resp: {
|
|
type: 'modeling',
|
|
data: {
|
|
modeling_response: { type: 'empty' },
|
|
},
|
|
},
|
|
}
|
|
return Promise.resolve(JSON.stringify(response))
|
|
}
|
|
async wasmGetDefaultPlanes(): Promise<string> {
|
|
return JSON.stringify(defaultPlanes)
|
|
}
|
|
sendModelingCommandFromWasm(
|
|
id: string,
|
|
rangeStr: string,
|
|
commandStr: string
|
|
): Promise<any> {
|
|
if (id === undefined) {
|
|
return Promise.reject(new Error('id is undefined'))
|
|
}
|
|
if (rangeStr === undefined) {
|
|
return Promise.reject(new Error('rangeStr is undefined'))
|
|
}
|
|
if (commandStr === undefined) {
|
|
return Promise.reject(new Error('commandStr is undefined'))
|
|
}
|
|
const command: EngineCommand = JSON.parse(commandStr)
|
|
const range: SourceRange = JSON.parse(rangeStr)
|
|
|
|
return this.sendModelingCommand({ id, range, command })
|
|
}
|
|
sendSceneCommand() {}
|
|
}
|
|
|
|
export async function enginelessExecutor(
|
|
ast: Node<Program>,
|
|
pmo: ProgramMemory | Error = ProgramMemory.empty()
|
|
): Promise<ExecState> {
|
|
if (pmo !== null && err(pmo)) return Promise.reject(pmo)
|
|
|
|
const mockEngineCommandManager = new MockEngineCommandManager({
|
|
setIsStreamReady: () => {},
|
|
setMediaStream: () => {},
|
|
}) as any as EngineCommandManager
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
mockEngineCommandManager.startNewSession()
|
|
const execState = await _executor(ast, mockEngineCommandManager, pmo)
|
|
await mockEngineCommandManager.waitForAllCommands()
|
|
return execState
|
|
}
|
|
|
|
export async function executor(
|
|
ast: Node<Program>,
|
|
pmo: ProgramMemory = ProgramMemory.empty()
|
|
): Promise<ExecState> {
|
|
const engineCommandManager = new EngineCommandManager()
|
|
engineCommandManager.start({
|
|
setIsStreamReady: () => {},
|
|
setMediaStream: () => {},
|
|
width: 0,
|
|
height: 0,
|
|
makeDefaultPlanes: () => {
|
|
return new Promise((resolve) => resolve(defaultPlanes))
|
|
},
|
|
})
|
|
|
|
return new Promise((resolve) => {
|
|
engineCommandManager.addEventListener(
|
|
EngineCommandManagerEvents.SceneReady,
|
|
toSync(async () => {
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
engineCommandManager.startNewSession()
|
|
const execState = await _executor(ast, engineCommandManager, pmo)
|
|
await engineCommandManager.waitForAllCommands()
|
|
resolve(execState)
|
|
}, reportRejection)
|
|
)
|
|
})
|
|
}
|