201 lines
4.4 KiB
Svelte
201 lines
4.4 KiB
Svelte
<script lang="ts">
|
|
import { Job, JobService } from '$lib/gen'
|
|
import { workspaceStore } from '$lib/stores'
|
|
import { onDestroy } from 'svelte'
|
|
import type { Preview } from '$lib/gen/models/Preview'
|
|
import { createEventDispatcher } from 'svelte'
|
|
|
|
export let isLoading = false
|
|
export let job: Job | undefined = undefined
|
|
export let workspaceOverride: string | undefined = undefined
|
|
export let notfound = false
|
|
|
|
const dispatch = createEventDispatcher()
|
|
|
|
$: workspace = workspaceOverride ?? $workspaceStore
|
|
|
|
let syncIteration: number = 0
|
|
let errorIteration = 0
|
|
|
|
let ITERATIONS_BEFORE_SLOW_REFRESH = 10
|
|
let ITERATIONS_BEFORE_SUPER_SLOW_REFRESH = 100
|
|
|
|
let lastStartedAt: number = Date.now()
|
|
let currentId: string | undefined = undefined
|
|
|
|
$: isLoading = currentId !== undefined
|
|
|
|
export async function abstractRun(fn: () => Promise<string>) {
|
|
try {
|
|
isLoading = true
|
|
clearCurrentJob()
|
|
const startedAt = Date.now()
|
|
const testId = await fn()
|
|
|
|
if (lastStartedAt < startedAt) {
|
|
lastStartedAt = startedAt
|
|
if (testId) {
|
|
try {
|
|
await watchJob(testId)
|
|
} catch {
|
|
if (currentId === testId) {
|
|
currentId = undefined
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return testId
|
|
} catch (err) {
|
|
throw err
|
|
}
|
|
}
|
|
|
|
export async function runScriptByPath(
|
|
path: string | undefined,
|
|
args: Record<string, any>
|
|
): Promise<string> {
|
|
return abstractRun(() =>
|
|
JobService.runScriptByPath({
|
|
workspace: $workspaceStore!,
|
|
path: path ?? '',
|
|
requestBody: args
|
|
})
|
|
)
|
|
}
|
|
|
|
export async function runFlowByPath(
|
|
path: string | undefined,
|
|
args: Record<string, any>
|
|
): Promise<string> {
|
|
return abstractRun(() =>
|
|
JobService.runFlowByPath({
|
|
workspace: $workspaceStore!,
|
|
path: path ?? '',
|
|
requestBody: args
|
|
})
|
|
)
|
|
}
|
|
|
|
export async function runPreview(
|
|
path: string | undefined,
|
|
code: string,
|
|
lang: 'deno' | 'go' | 'python3' | 'bash',
|
|
args: Record<string, any>
|
|
): Promise<string> {
|
|
return abstractRun(() =>
|
|
JobService.runScriptPreview({
|
|
workspace: $workspaceStore!,
|
|
requestBody: {
|
|
path,
|
|
content: code,
|
|
args,
|
|
language: lang as Preview.language
|
|
}
|
|
})
|
|
)
|
|
}
|
|
|
|
export async function cancelJob() {
|
|
const id = currentId
|
|
if (id) {
|
|
currentId = undefined
|
|
try {
|
|
await JobService.cancelQueuedJob({
|
|
workspace: $workspaceStore ?? '',
|
|
id,
|
|
requestBody: {}
|
|
})
|
|
} catch (err) {
|
|
console.error(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
export async function clearCurrentJob() {
|
|
if (currentId) {
|
|
job = undefined
|
|
await cancelJob()
|
|
}
|
|
}
|
|
|
|
export async function watchJob(testId: string) {
|
|
syncIteration = 0
|
|
errorIteration = 0
|
|
currentId = testId
|
|
job = undefined
|
|
const isCompleted = await loadTestJob(testId)
|
|
if (!isCompleted) {
|
|
setTimeout(() => {
|
|
syncer(testId)
|
|
}, 50)
|
|
}
|
|
}
|
|
|
|
async function loadTestJob(id: string): Promise<boolean> {
|
|
let isCompleted = false
|
|
if (currentId === id) {
|
|
try {
|
|
if (job && `running` in job) {
|
|
let previewJobUpdates = await JobService.getJobUpdates({
|
|
workspace: workspace!,
|
|
id,
|
|
running: job.running,
|
|
logOffset: job.logs?.length ? job.logs?.length + 1 : 0
|
|
})
|
|
|
|
if (previewJobUpdates.new_logs) {
|
|
job.logs = (job?.logs ?? '').concat(previewJobUpdates.new_logs)
|
|
}
|
|
if (previewJobUpdates.mem_peak) {
|
|
job.mem_peak = previewJobUpdates.mem_peak
|
|
}
|
|
if ((previewJobUpdates.running ?? false) || (previewJobUpdates.completed ?? false)) {
|
|
job = await JobService.getJob({ workspace: workspace!, id })
|
|
}
|
|
} else {
|
|
job = await JobService.getJob({ workspace: workspace!, id })
|
|
}
|
|
|
|
if (job?.type === 'CompletedJob') {
|
|
//only CompletedJob has success property
|
|
isCompleted = true
|
|
if (currentId === id) {
|
|
dispatch('done', job)
|
|
currentId = undefined
|
|
}
|
|
}
|
|
notfound = false
|
|
} catch (err) {
|
|
errorIteration += 1
|
|
if (errorIteration == 5) {
|
|
notfound = true
|
|
await clearCurrentJob()
|
|
}
|
|
console.warn(err)
|
|
}
|
|
return isCompleted
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
|
|
async function syncer(id: string): Promise<void> {
|
|
if (currentId != id) {
|
|
return
|
|
}
|
|
syncIteration++
|
|
await loadTestJob(id)
|
|
let nextIteration = 50
|
|
if (syncIteration > ITERATIONS_BEFORE_SLOW_REFRESH) {
|
|
nextIteration = 500
|
|
} else if (syncIteration > ITERATIONS_BEFORE_SUPER_SLOW_REFRESH) {
|
|
nextIteration = 2000
|
|
}
|
|
setTimeout(() => syncer(id), nextIteration)
|
|
}
|
|
|
|
onDestroy(async () => {
|
|
currentId = undefined
|
|
})
|
|
</script>
|