File size: 6,308 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | import { promises as fs } from 'fs';
import path from 'path';
import type {
ClassroomGenerationProgress,
ClassroomGenerationStep,
GenerateClassroomInput,
GenerateClassroomResult,
} from '@/lib/server/classroom-generation';
import {
CLASSROOM_JOBS_DIR,
ensureClassroomJobsDir,
writeJsonFileAtomic,
} from '@/lib/server/classroom-storage';
export type ClassroomGenerationJobStatus = 'queued' | 'running' | 'succeeded' | 'failed';
export interface ClassroomGenerationJob {
id: string;
status: ClassroomGenerationJobStatus;
step: ClassroomGenerationStep | 'queued' | 'failed';
progress: number;
message: string;
createdAt: string;
updatedAt: string;
startedAt?: string;
completedAt?: string;
inputSummary: {
requirementPreview: string;
hasPdf: boolean;
pdfTextLength: number;
pdfImageCount: number;
};
scenesGenerated: number;
totalScenes?: number;
result?: {
classroomId: string;
url: string;
scenesCount: number;
};
error?: string;
}
function jobFilePath(jobId: string) {
return path.join(CLASSROOM_JOBS_DIR, `${jobId}.json`);
}
function buildInputSummary(input: GenerateClassroomInput): ClassroomGenerationJob['inputSummary'] {
return {
requirementPreview:
input.requirement.length > 200 ? `${input.requirement.slice(0, 197)}...` : input.requirement,
hasPdf: !!input.pdfContent,
pdfTextLength: input.pdfContent?.text.length || 0,
pdfImageCount: input.pdfContent?.images.length || 0,
};
}
/** Simple per-job mutex to serialize read-modify-write on the same job file. */
const jobLocks = new Map<string, Promise<void>>();
async function withJobLock<T>(jobId: string, fn: () => Promise<T>): Promise<T> {
const prev = jobLocks.get(jobId) ?? Promise.resolve();
let resolve: () => void;
const next = new Promise<void>((r) => {
resolve = r;
});
jobLocks.set(jobId, next);
try {
await prev;
return await fn();
} finally {
resolve!();
if (jobLocks.get(jobId) === next) jobLocks.delete(jobId);
}
}
/** Max age (ms) before a "running" job without an active runner is considered stale. */
const STALE_JOB_TIMEOUT_MS = 30 * 60 * 1000; // 30 minutes
function markStaleIfNeeded(job: ClassroomGenerationJob): ClassroomGenerationJob {
if (job.status !== 'running') return job;
const updatedAt = new Date(job.updatedAt).getTime();
if (Date.now() - updatedAt > STALE_JOB_TIMEOUT_MS) {
return {
...job,
status: 'failed',
step: 'failed',
message: 'Job appears stale (no progress update for 30 minutes)',
error: 'Stale job: process may have restarted during generation',
completedAt: new Date().toISOString(),
updatedAt: new Date().toISOString(),
};
}
return job;
}
export function isValidClassroomJobId(jobId: string): boolean {
return /^[a-zA-Z0-9_-]+$/.test(jobId);
}
export async function createClassroomGenerationJob(
jobId: string,
input: GenerateClassroomInput,
): Promise<ClassroomGenerationJob> {
const now = new Date().toISOString();
const job: ClassroomGenerationJob = {
id: jobId,
status: 'queued',
step: 'queued',
progress: 0,
message: 'Classroom generation job queued',
createdAt: now,
updatedAt: now,
inputSummary: buildInputSummary(input),
scenesGenerated: 0,
};
await ensureClassroomJobsDir();
await writeJsonFileAtomic(jobFilePath(jobId), job);
return job;
}
export async function readClassroomGenerationJob(
jobId: string,
): Promise<ClassroomGenerationJob | null> {
try {
const content = await fs.readFile(jobFilePath(jobId), 'utf-8');
const job = JSON.parse(content) as ClassroomGenerationJob;
return markStaleIfNeeded(job);
} catch (error) {
if ((error as NodeJS.ErrnoException).code === 'ENOENT') {
return null;
}
throw error;
}
}
export async function updateClassroomGenerationJob(
jobId: string,
patch: Partial<ClassroomGenerationJob>,
): Promise<ClassroomGenerationJob> {
return withJobLock(jobId, async () => {
const existing = await readClassroomGenerationJob(jobId);
if (!existing) {
throw new Error(`Classroom generation job not found: ${jobId}`);
}
const updated: ClassroomGenerationJob = {
...existing,
...patch,
updatedAt: new Date().toISOString(),
};
await writeJsonFileAtomic(jobFilePath(jobId), updated);
return updated;
});
}
export async function markClassroomGenerationJobRunning(
jobId: string,
): Promise<ClassroomGenerationJob> {
return withJobLock(jobId, async () => {
const existing = await readClassroomGenerationJob(jobId);
if (!existing) {
throw new Error(`Classroom generation job not found: ${jobId}`);
}
const updated: ClassroomGenerationJob = {
...existing,
status: 'running',
startedAt: existing.startedAt || new Date().toISOString(),
message: 'Classroom generation started',
updatedAt: new Date().toISOString(),
};
await writeJsonFileAtomic(jobFilePath(jobId), updated);
return updated;
});
}
export async function updateClassroomGenerationJobProgress(
jobId: string,
progress: ClassroomGenerationProgress,
): Promise<ClassroomGenerationJob> {
return updateClassroomGenerationJob(jobId, {
status: 'running',
step: progress.step,
progress: progress.progress,
message: progress.message,
scenesGenerated: progress.scenesGenerated,
totalScenes: progress.totalScenes,
});
}
export async function markClassroomGenerationJobSucceeded(
jobId: string,
result: GenerateClassroomResult,
): Promise<ClassroomGenerationJob> {
return updateClassroomGenerationJob(jobId, {
status: 'succeeded',
step: 'completed',
progress: 100,
message: 'Classroom generation completed',
completedAt: new Date().toISOString(),
scenesGenerated: result.scenesCount,
result: {
classroomId: result.id,
url: result.url,
scenesCount: result.scenesCount,
},
});
}
export async function markClassroomGenerationJobFailed(
jobId: string,
error: string,
): Promise<ClassroomGenerationJob> {
return updateClassroomGenerationJob(jobId, {
status: 'failed',
step: 'failed',
message: 'Classroom generation failed',
completedAt: new Date().toISOString(),
error,
});
}
|