962 lines
26 KiB
TypeScript
962 lines
26 KiB
TypeScript
import { ChildProcess } from 'child_process';
|
|
import { CronExpressionParser } from 'cron-parser';
|
|
import fs from 'fs';
|
|
import { getAgentOutputText } from './agent-output.js';
|
|
import { getErrorMessage } from './utils.js';
|
|
|
|
import { ASSISTANT_NAME, SCHEDULER_POLL_INTERVAL, TIMEZONE } from './config.js';
|
|
import {
|
|
AgentOutput,
|
|
runAgentProcess,
|
|
writeTasksSnapshot,
|
|
} from './agent-runner.js';
|
|
import {
|
|
getAllTasks,
|
|
deleteTask,
|
|
getDueTasks,
|
|
getTaskById,
|
|
logTaskRun,
|
|
updateTask,
|
|
updateTaskAfterRun,
|
|
} from './db.js';
|
|
import { GroupQueue } from './group-queue.js';
|
|
import {
|
|
resolveGroupFolderPath,
|
|
resolveGroupIpcPath,
|
|
resolveTaskRuntimeIpcPath,
|
|
} from './group-folder.js';
|
|
import { createScopedLogger, logger } from './logger.js';
|
|
import { createTaskStatusTracker } from './task-status-tracker.js';
|
|
import {
|
|
runClaudeRotationLoop,
|
|
runCodexRotationLoop,
|
|
} from './provider-retry.js';
|
|
import {
|
|
detectCodexRotationTrigger,
|
|
rotateCodexToken,
|
|
getCodexAccountCount,
|
|
markCodexTokenHealthy,
|
|
} from './codex-token-rotation.js';
|
|
import {
|
|
classifyRotationTrigger,
|
|
type AgentTriggerReason,
|
|
type CodexRotationReason,
|
|
isCodexRotationReason,
|
|
} from './agent-error-detection.js';
|
|
import {
|
|
getTokenCount,
|
|
markTokenHealthy,
|
|
rotateToken,
|
|
} from './token-rotation.js';
|
|
import {
|
|
evaluateTaskSuspension,
|
|
formatSuspensionNotice,
|
|
suspendTask,
|
|
} from './task-suspension.js';
|
|
import {
|
|
evaluateStreamedOutput,
|
|
type StreamedOutputState,
|
|
} from './streamed-output-evaluator.js';
|
|
import {
|
|
extractWatchCiTarget,
|
|
getTaskQueueJid,
|
|
getTaskRuntimeTaskId,
|
|
isGitHubCiTask,
|
|
shouldUseTaskScopedSession,
|
|
} from './task-watch-status.js';
|
|
import { AgentType, RegisteredGroup, ScheduledTask } from './types.js';
|
|
import { hasReviewerLease } from './service-routing.js';
|
|
import {
|
|
checkGitHubActionsRun,
|
|
computeGitHubWatcherDelayMs,
|
|
MAX_GITHUB_CONSECUTIVE_ERRORS,
|
|
parseGitHubCiMetadata,
|
|
serializeGitHubCiMetadata,
|
|
} from './github-ci.js';
|
|
export {
|
|
extractWatchCiTarget,
|
|
getTaskQueueJid,
|
|
getTaskRuntimeTaskId,
|
|
isTaskStatusControlMessage,
|
|
isWatchCiTask,
|
|
renderWatchCiStatusMessage,
|
|
shouldUseTaskScopedSession,
|
|
} from './task-watch-status.js';
|
|
|
|
/**
|
|
* Compute the next run time for a recurring task, anchored to the
|
|
* task's scheduled time rather than Date.now() to prevent cumulative
|
|
* drift on interval-based tasks.
|
|
*
|
|
* Co-authored-by: @community-pr-601
|
|
*/
|
|
export function computeNextRun(task: ScheduledTask): string | null {
|
|
if (task.schedule_type === 'once') return null;
|
|
|
|
const now = Date.now();
|
|
|
|
if (task.schedule_type === 'cron') {
|
|
const interval = CronExpressionParser.parse(task.schedule_value, {
|
|
tz: TIMEZONE,
|
|
});
|
|
return interval.next().toISOString();
|
|
}
|
|
|
|
if (task.schedule_type === 'interval') {
|
|
const ms = parseInt(task.schedule_value, 10);
|
|
if (!ms || ms <= 0) {
|
|
// Guard against malformed interval that would cause an infinite loop
|
|
logger.warn(
|
|
{ taskId: task.id, value: task.schedule_value },
|
|
'Invalid interval value',
|
|
);
|
|
return new Date(now + 60_000).toISOString();
|
|
}
|
|
// Anchor to the scheduled time, not now, to prevent drift.
|
|
// Skip past any missed intervals so we always land in the future.
|
|
let next = new Date(task.next_run!).getTime() + ms;
|
|
while (next <= now) {
|
|
next += ms;
|
|
}
|
|
return new Date(next).toISOString();
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
function hasTaskExceededMaxDuration(
|
|
task: Pick<ScheduledTask, 'id' | 'created_at' | 'max_duration_ms'>,
|
|
nowMs: number,
|
|
): boolean {
|
|
if (
|
|
task.max_duration_ms === null ||
|
|
task.max_duration_ms === undefined ||
|
|
!Number.isFinite(task.max_duration_ms) ||
|
|
task.max_duration_ms <= 0
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
const createdAtMs = new Date(task.created_at).getTime();
|
|
if (!Number.isFinite(createdAtMs)) {
|
|
logger.warn(
|
|
{ taskId: task.id, createdAt: task.created_at },
|
|
'Task has invalid created_at for max duration enforcement',
|
|
);
|
|
return false;
|
|
}
|
|
|
|
return nowMs - createdAtMs >= task.max_duration_ms;
|
|
}
|
|
|
|
export interface SchedulerDependencies {
|
|
serviceAgentType?: AgentType;
|
|
registeredGroups: () => Record<string, RegisteredGroup>;
|
|
getSessions: () => Record<string, string>;
|
|
queue: GroupQueue;
|
|
onProcess: (
|
|
groupJid: string,
|
|
proc: ChildProcess,
|
|
processName: string,
|
|
ipcDir: string,
|
|
) => void;
|
|
sendMessage: (jid: string, text: string) => Promise<void>;
|
|
/** Send a message via the reviewer bot identity so the owner treats it as a peer request. */
|
|
sendMessageViaReviewerBot?: (jid: string, text: string) => Promise<void>;
|
|
sendTrackedMessage?: (jid: string, text: string) => Promise<string | null>;
|
|
editTrackedMessage?: (
|
|
jid: string,
|
|
messageId: string,
|
|
text: string,
|
|
) => Promise<void>;
|
|
}
|
|
|
|
interface TaskExecutionContext {
|
|
group: RegisteredGroup;
|
|
groupDir: string;
|
|
isMain: boolean;
|
|
queueJid: string;
|
|
runtimeIpcDir: string;
|
|
runtimeTaskId?: string;
|
|
sessionId?: string;
|
|
useTaskScopedSession: boolean;
|
|
taskAgentType: AgentType;
|
|
}
|
|
|
|
async function sendScheduledMessage(
|
|
deps: SchedulerDependencies,
|
|
chatJid: string,
|
|
text: string,
|
|
): Promise<void> {
|
|
if (!hasReviewerLease(chatJid)) {
|
|
await deps.sendMessage(chatJid, text);
|
|
return;
|
|
}
|
|
|
|
if (!deps.sendMessageViaReviewerBot) {
|
|
throw new Error(
|
|
'Paired-room scheduled output requires a configured reviewer Discord bot',
|
|
);
|
|
}
|
|
|
|
await deps.sendMessageViaReviewerBot(chatJid, text);
|
|
}
|
|
|
|
function resolveTaskExecutionContext(
|
|
task: ScheduledTask,
|
|
deps: SchedulerDependencies,
|
|
): TaskExecutionContext {
|
|
const groupDir = resolveGroupFolderPath(task.group_folder);
|
|
fs.mkdirSync(groupDir, { recursive: true });
|
|
|
|
const groups = deps.registeredGroups();
|
|
const group = Object.values(groups).find(
|
|
(registeredGroup) => registeredGroup.folder === task.group_folder,
|
|
);
|
|
if (!group) {
|
|
throw new Error(`Group not found: ${task.group_folder}`);
|
|
}
|
|
|
|
const isMain = group.isMain === true;
|
|
const taskAgentType =
|
|
task.agent_type || deps.serviceAgentType || 'claude-code';
|
|
const sessions = deps.getSessions();
|
|
const runtimeTaskId = getTaskRuntimeTaskId(task);
|
|
const useTaskScopedSession = shouldUseTaskScopedSession(task);
|
|
const runtimeIpcDir = runtimeTaskId
|
|
? resolveTaskRuntimeIpcPath(task.group_folder, runtimeTaskId)
|
|
: resolveGroupIpcPath(task.group_folder);
|
|
|
|
return {
|
|
group,
|
|
groupDir,
|
|
isMain,
|
|
queueJid: getTaskQueueJid(task),
|
|
runtimeIpcDir,
|
|
runtimeTaskId,
|
|
sessionId:
|
|
task.context_mode === 'group' ? sessions[task.group_folder] : undefined,
|
|
useTaskScopedSession,
|
|
taskAgentType,
|
|
};
|
|
}
|
|
|
|
function writeTaskSnapshotForGroup(
|
|
taskAgentType: AgentType,
|
|
groupFolder: string,
|
|
isMain: boolean,
|
|
runtimeTaskId?: string,
|
|
): void {
|
|
const tasks = getAllTasks(taskAgentType);
|
|
writeTasksSnapshot(
|
|
groupFolder,
|
|
isMain,
|
|
tasks.map((task) => ({
|
|
id: task.id,
|
|
groupFolder: task.group_folder,
|
|
prompt: task.prompt,
|
|
schedule_type: task.schedule_type,
|
|
schedule_value: task.schedule_value,
|
|
status: task.status,
|
|
next_run: task.next_run,
|
|
})),
|
|
runtimeTaskId,
|
|
);
|
|
}
|
|
|
|
async function runTask(
|
|
task: ScheduledTask,
|
|
deps: SchedulerDependencies,
|
|
): Promise<void> {
|
|
const startTime = Date.now();
|
|
let context: TaskExecutionContext;
|
|
try {
|
|
context = resolveTaskExecutionContext(task, deps);
|
|
} catch (err) {
|
|
const error = getErrorMessage(err);
|
|
if (error.startsWith('Group not found:')) {
|
|
logger.error(
|
|
{ taskId: task.id, groupFolder: task.group_folder, error },
|
|
'Group not found for task',
|
|
);
|
|
} else {
|
|
// Stop retry churn for malformed legacy rows.
|
|
updateTask(task.id, { status: 'paused' });
|
|
logger.error(
|
|
{ taskId: task.id, groupFolder: task.group_folder, error },
|
|
'Task has invalid group folder',
|
|
);
|
|
}
|
|
logTaskRun({
|
|
task_id: task.id,
|
|
run_at: new Date().toISOString(),
|
|
duration_ms: Date.now() - startTime,
|
|
status: 'error',
|
|
result: null,
|
|
error,
|
|
});
|
|
return;
|
|
}
|
|
const log = createScopedLogger({
|
|
taskId: task.id,
|
|
chatJid: task.chat_jid,
|
|
groupName: context.group.name,
|
|
groupFolder: task.group_folder,
|
|
runtimeTaskId: context.runtimeTaskId,
|
|
});
|
|
|
|
log.info('Running scheduled task');
|
|
|
|
// Update tasks snapshot for agent to read (filtered by group)
|
|
writeTaskSnapshotForGroup(
|
|
context.taskAgentType,
|
|
task.group_folder,
|
|
context.isMain,
|
|
context.runtimeTaskId,
|
|
);
|
|
|
|
let result: string | null = null;
|
|
let error: string | null = null;
|
|
const statusTracker = createTaskStatusTracker(task, {
|
|
sendTrackedMessage: deps.sendTrackedMessage,
|
|
editTrackedMessage: deps.editTrackedMessage,
|
|
});
|
|
const isClaudeAgent = context.taskAgentType === 'claude-code';
|
|
const canRotateToken = isClaudeAgent && getTokenCount() > 1;
|
|
|
|
try {
|
|
await statusTracker.update('checking');
|
|
|
|
const runTaskAttempt = async (
|
|
provider: string,
|
|
): Promise<{
|
|
output: AgentOutput;
|
|
sawOutput: boolean;
|
|
streamedTriggerReason?: {
|
|
reason: AgentTriggerReason;
|
|
retryAfterMs?: number;
|
|
};
|
|
attemptResult: string | null;
|
|
attemptError: string | null;
|
|
}> => {
|
|
let streamedState: StreamedOutputState = {
|
|
sawOutput: false,
|
|
sawVisibleOutput: false,
|
|
sawSuccessNullResultWithoutOutput: false,
|
|
};
|
|
let attemptResult: string | null = null;
|
|
let attemptError: string | null = null;
|
|
|
|
const output = await runAgentProcess(
|
|
context.group,
|
|
{
|
|
prompt: task.prompt,
|
|
sessionId: context.sessionId,
|
|
groupFolder: task.group_folder,
|
|
chatJid: task.chat_jid,
|
|
isMain: context.isMain,
|
|
isScheduledTask: true,
|
|
runtimeTaskId: context.runtimeTaskId,
|
|
useTaskScopedSession: context.useTaskScopedSession,
|
|
assistantName: ASSISTANT_NAME,
|
|
},
|
|
(proc, processName) =>
|
|
deps.onProcess(
|
|
context.queueJid,
|
|
proc,
|
|
processName,
|
|
context.runtimeIpcDir,
|
|
),
|
|
async (streamedOutput: AgentOutput) => {
|
|
if (streamedOutput.phase === 'progress') {
|
|
return;
|
|
}
|
|
const evaluation = evaluateStreamedOutput(
|
|
streamedOutput,
|
|
streamedState,
|
|
{
|
|
agentType: isClaudeAgent ? 'claude-code' : 'codex',
|
|
provider,
|
|
shortCircuitTriggeredErrors: true,
|
|
},
|
|
);
|
|
streamedState = evaluation.state;
|
|
|
|
if (
|
|
evaluation.newTrigger &&
|
|
typeof streamedOutput.result === 'string' &&
|
|
streamedOutput.status === 'success'
|
|
) {
|
|
log.warn(
|
|
{
|
|
reason: evaluation.newTrigger.reason,
|
|
resultPreview: streamedOutput.result.slice(0, 120),
|
|
},
|
|
'Detected Claude rotation trigger during scheduled task output',
|
|
);
|
|
} else if (
|
|
evaluation.newTrigger &&
|
|
typeof streamedOutput.error === 'string'
|
|
) {
|
|
log.warn(
|
|
{
|
|
reason: evaluation.newTrigger.reason,
|
|
errorPreview: streamedOutput.error.slice(0, 120),
|
|
},
|
|
provider === 'claude'
|
|
? 'Detected Claude rotation trigger during scheduled task error output'
|
|
: 'Detected Codex rotation trigger during scheduled task error output',
|
|
);
|
|
}
|
|
|
|
if (!evaluation.shouldForwardOutput) {
|
|
if (streamedOutput.status === 'error') {
|
|
attemptError = streamedOutput.error || 'Unknown error';
|
|
}
|
|
return;
|
|
}
|
|
|
|
const outputText = getAgentOutputText(streamedOutput);
|
|
if (outputText) {
|
|
attemptResult = outputText;
|
|
// Paired-room scheduler output must use the reviewer bot slot.
|
|
await sendScheduledMessage(deps, task.chat_jid, outputText);
|
|
}
|
|
|
|
if (streamedOutput.status === 'error') {
|
|
attemptError = streamedOutput.error || 'Unknown error';
|
|
}
|
|
},
|
|
undefined,
|
|
);
|
|
|
|
if (output.status === 'error' && !attemptError) {
|
|
attemptError = output.error || 'Unknown error';
|
|
} else {
|
|
const outputText = getAgentOutputText(output);
|
|
if (outputText && !attemptResult) {
|
|
attemptResult = outputText;
|
|
}
|
|
}
|
|
|
|
return {
|
|
output,
|
|
sawOutput: streamedState.sawOutput,
|
|
streamedTriggerReason: streamedState.streamedTriggerReason,
|
|
attemptResult,
|
|
attemptError,
|
|
};
|
|
};
|
|
|
|
const retryClaudeTaskWithRotation = async (
|
|
initialTrigger: {
|
|
reason: AgentTriggerReason;
|
|
retryAfterMs?: number;
|
|
},
|
|
rotationMessage?: string,
|
|
): Promise<void> => {
|
|
const logCtx = {
|
|
taskId: task.id,
|
|
group: context.group.name,
|
|
groupFolder: task.group_folder,
|
|
};
|
|
|
|
const outcome = await runClaudeRotationLoop(
|
|
initialTrigger,
|
|
async () => {
|
|
const attempt = await runTaskAttempt('claude');
|
|
result = attempt.attemptResult;
|
|
error = attempt.attemptError;
|
|
return {
|
|
output: attempt.output,
|
|
sawOutput: attempt.sawOutput,
|
|
streamedTriggerReason: attempt.streamedTriggerReason,
|
|
};
|
|
},
|
|
logCtx,
|
|
rotationMessage,
|
|
);
|
|
|
|
switch (outcome.type) {
|
|
case 'success':
|
|
error = null;
|
|
return;
|
|
case 'error':
|
|
if (outcome.trigger) {
|
|
error = `Claude ${outcome.trigger.reason}`;
|
|
}
|
|
return;
|
|
}
|
|
};
|
|
|
|
const retryCodexTaskWithRotation = async (
|
|
initialTrigger: { reason: CodexRotationReason },
|
|
rotationMessage?: string,
|
|
): Promise<void> => {
|
|
const outcome = await runCodexRotationLoop(
|
|
initialTrigger,
|
|
async () => {
|
|
const retryAttempt = await runTaskAttempt('codex');
|
|
result = retryAttempt.attemptResult;
|
|
error = retryAttempt.attemptError;
|
|
return {
|
|
output: retryAttempt.output,
|
|
thrownError: null,
|
|
sawOutput: retryAttempt.sawOutput,
|
|
streamedTriggerReason: retryAttempt.streamedTriggerReason,
|
|
};
|
|
},
|
|
{
|
|
taskId: task.id,
|
|
group: context.group.name,
|
|
groupFolder: task.group_folder,
|
|
},
|
|
rotationMessage,
|
|
);
|
|
|
|
if (outcome.type === 'success') {
|
|
error = null;
|
|
}
|
|
};
|
|
|
|
const provider = context.taskAgentType === 'codex' ? 'codex' : 'claude';
|
|
|
|
{
|
|
const attempt = await runTaskAttempt(provider);
|
|
result = attempt.attemptResult;
|
|
error = attempt.attemptError;
|
|
|
|
if (
|
|
provider === 'claude' &&
|
|
attempt.streamedTriggerReason &&
|
|
!attempt.sawOutput
|
|
) {
|
|
await retryClaudeTaskWithRotation(attempt.streamedTriggerReason);
|
|
} else if (
|
|
provider === 'codex' &&
|
|
attempt.streamedTriggerReason &&
|
|
!attempt.sawOutput &&
|
|
isCodexRotationReason(attempt.streamedTriggerReason.reason)
|
|
) {
|
|
await retryCodexTaskWithRotation(
|
|
{
|
|
reason: attempt.streamedTriggerReason.reason,
|
|
},
|
|
typeof attempt.output.error === 'string'
|
|
? attempt.output.error
|
|
: undefined,
|
|
);
|
|
} else if (attempt.output.status === 'error' && provider === 'claude') {
|
|
const trigger = attempt.streamedTriggerReason
|
|
? {
|
|
shouldRetry: true,
|
|
reason: attempt.streamedTriggerReason.reason,
|
|
retryAfterMs: attempt.streamedTriggerReason.retryAfterMs,
|
|
}
|
|
: classifyRotationTrigger(error);
|
|
if (trigger.shouldRetry) {
|
|
await retryClaudeTaskWithRotation({
|
|
reason: trigger.reason,
|
|
retryAfterMs: trigger.retryAfterMs,
|
|
});
|
|
}
|
|
} else if (attempt.output.status === 'error' && provider === 'codex') {
|
|
const trigger =
|
|
attempt.streamedTriggerReason &&
|
|
isCodexRotationReason(attempt.streamedTriggerReason.reason)
|
|
? {
|
|
shouldRotate: true as const,
|
|
reason: attempt.streamedTriggerReason.reason,
|
|
}
|
|
: detectCodexRotationTrigger(error);
|
|
if (trigger.shouldRotate) {
|
|
await retryCodexTaskWithRotation(
|
|
{ reason: trigger.reason },
|
|
error || undefined,
|
|
);
|
|
}
|
|
} else if (attempt.output.status === 'error') {
|
|
error = attempt.attemptError || 'Unknown error';
|
|
}
|
|
} // end else (non-exhausted path)
|
|
|
|
log.info(
|
|
{
|
|
agentType: context.taskAgentType,
|
|
durationMs: Date.now() - startTime,
|
|
},
|
|
'Task completed',
|
|
);
|
|
} catch (err) {
|
|
error = getErrorMessage(err);
|
|
log.error({ error }, 'Task failed');
|
|
}
|
|
|
|
const durationMs = Date.now() - startTime;
|
|
const currentTask = getTaskById(task.id);
|
|
const nextRun = currentTask ? computeNextRun(task) : null;
|
|
|
|
if (!currentTask) {
|
|
await statusTracker.update('completed');
|
|
log.debug('Task deleted during execution, skipping persistence');
|
|
return;
|
|
}
|
|
|
|
// Clear suspension on success
|
|
if (!error && currentTask.suspended_until) {
|
|
updateTask(task.id, { suspended_until: null });
|
|
}
|
|
|
|
// Try token rotation before suspending
|
|
if (error) {
|
|
const effectiveAgentType = context.taskAgentType;
|
|
const isCodex = effectiveAgentType === 'codex';
|
|
if (isCodex) {
|
|
const trigger = detectCodexRotationTrigger(error);
|
|
if (trigger.shouldRotate) {
|
|
const rotated = getCodexAccountCount() > 1 && rotateCodexToken(error);
|
|
if (rotated) {
|
|
log.info(
|
|
{
|
|
agent: effectiveAgentType,
|
|
reason: trigger.reason,
|
|
},
|
|
'Task rate-limited, rotated token — will retry on next schedule',
|
|
);
|
|
markCodexTokenHealthy();
|
|
// Clear the error so suspension doesn't trigger
|
|
error = null;
|
|
}
|
|
}
|
|
} else {
|
|
const trigger = classifyRotationTrigger(error);
|
|
if (trigger.shouldRetry) {
|
|
const rotated = getTokenCount() > 1 && rotateToken(error);
|
|
if (rotated) {
|
|
log.info(
|
|
{
|
|
agent: effectiveAgentType,
|
|
reason: trigger.reason,
|
|
},
|
|
'Task rate-limited, rotated token — will retry on next schedule',
|
|
);
|
|
markTokenHealthy();
|
|
// Clear the error so suspension doesn't trigger
|
|
error = null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Check for repeated quota/auth errors → auto-suspend
|
|
let suspended = false;
|
|
if (error) {
|
|
const suspension = evaluateTaskSuspension(currentTask, error);
|
|
if (suspension.suspended && suspension.suspendedUntil) {
|
|
suspended = true;
|
|
suspendTask(task.id, suspension.suspendedUntil);
|
|
const notice = formatSuspensionNotice(
|
|
currentTask,
|
|
suspension.suspendedUntil,
|
|
suspension.reason || error.slice(0, 200),
|
|
);
|
|
await deps.sendMessage(task.chat_jid, notice);
|
|
}
|
|
}
|
|
|
|
if (error && !suspended) {
|
|
await statusTracker.update('retrying', nextRun);
|
|
} else if (suspended) {
|
|
// Don't update status tracker — task is suspended, not retrying
|
|
} else if (nextRun) {
|
|
await statusTracker.update('waiting', nextRun);
|
|
} else {
|
|
await statusTracker.update('completed');
|
|
}
|
|
|
|
logTaskRun({
|
|
task_id: task.id,
|
|
run_at: new Date().toISOString(),
|
|
duration_ms: durationMs,
|
|
status: error ? 'error' : 'success',
|
|
result,
|
|
error,
|
|
});
|
|
|
|
const resultSummary = error
|
|
? `Error: ${error}`
|
|
: result
|
|
? result.slice(0, 200)
|
|
: 'Completed';
|
|
updateTaskAfterRun(task.id, nextRun, resultSummary);
|
|
}
|
|
|
|
async function runGithubCiTask(
|
|
task: ScheduledTask,
|
|
deps: SchedulerDependencies,
|
|
): Promise<void> {
|
|
const startTime = Date.now();
|
|
const runAtIso = new Date().toISOString();
|
|
let result: string | null = null;
|
|
let error: string | null = null;
|
|
let completedAndDeleted = false;
|
|
let paused = false;
|
|
const statusTracker = createTaskStatusTracker(task, {
|
|
sendTrackedMessage: deps.sendTrackedMessage,
|
|
editTrackedMessage: deps.editTrackedMessage,
|
|
});
|
|
const parsedMetadata = parseGitHubCiMetadata(task.ci_metadata);
|
|
const metadata = parsedMetadata
|
|
? {
|
|
...parsedMetadata,
|
|
poll_count: (parsedMetadata.poll_count ?? 0) + 1,
|
|
last_checked_at: runAtIso,
|
|
}
|
|
: null;
|
|
|
|
try {
|
|
await statusTracker.update('checking');
|
|
|
|
const check = await checkGitHubActionsRun(task);
|
|
result = check.resultSummary;
|
|
|
|
if (metadata) {
|
|
metadata.consecutive_errors = 0;
|
|
}
|
|
|
|
if (check.terminal) {
|
|
await statusTracker.update('completed');
|
|
if (check.completionMessage) {
|
|
await sendScheduledMessage(
|
|
deps,
|
|
task.chat_jid,
|
|
check.completionMessage,
|
|
);
|
|
}
|
|
deleteTask(task.id);
|
|
completedAndDeleted = true;
|
|
logger.info(
|
|
{
|
|
taskId: task.id,
|
|
groupFolder: task.group_folder,
|
|
durationMs: Date.now() - startTime,
|
|
},
|
|
'GitHub CI watcher completed and deleted',
|
|
);
|
|
} else {
|
|
logger.info(
|
|
{
|
|
taskId: task.id,
|
|
groupFolder: task.group_folder,
|
|
result,
|
|
},
|
|
'GitHub CI watcher checked non-terminal run',
|
|
);
|
|
}
|
|
} catch (err) {
|
|
error = getErrorMessage(err);
|
|
if (metadata) {
|
|
metadata.consecutive_errors = (metadata.consecutive_errors ?? 0) + 1;
|
|
}
|
|
logger.error({ taskId: task.id, error }, 'GitHub CI watcher failed');
|
|
}
|
|
|
|
const durationMs = Date.now() - startTime;
|
|
const currentTask = getTaskById(task.id);
|
|
const nextRun = currentTask
|
|
? new Date(
|
|
Date.now() + computeGitHubWatcherDelayMs(currentTask, Date.now()),
|
|
).toISOString()
|
|
: null;
|
|
|
|
if (!currentTask) {
|
|
if (!completedAndDeleted) {
|
|
await statusTracker.update('completed');
|
|
}
|
|
logger.debug(
|
|
{ taskId: task.id },
|
|
'GitHub CI watcher deleted during execution, skipping persistence',
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (metadata) {
|
|
updateTask(task.id, { ci_metadata: serializeGitHubCiMetadata(metadata) });
|
|
}
|
|
|
|
if (
|
|
error &&
|
|
metadata &&
|
|
(metadata.consecutive_errors ?? 0) >= MAX_GITHUB_CONSECUTIVE_ERRORS
|
|
) {
|
|
paused = true;
|
|
updateTask(task.id, { status: 'paused' });
|
|
await deps.sendMessage(
|
|
task.chat_jid,
|
|
[
|
|
`CI 감시 일시정지: ${extractWatchCiTarget(task.prompt) || task.id}`,
|
|
`- 사유: gh api 연속 ${metadata.consecutive_errors}회 실패`,
|
|
`- 마지막 오류: ${error.slice(0, 200)}`,
|
|
`- 태스크 ID: \`${task.id}\``,
|
|
].join('\n'),
|
|
);
|
|
}
|
|
|
|
if (error && !paused) {
|
|
await statusTracker.update('retrying', nextRun);
|
|
} else if (paused) {
|
|
// Paused tasks keep their current status message state; the pause notice is sent separately.
|
|
} else if (nextRun) {
|
|
await statusTracker.update('waiting', nextRun);
|
|
} else {
|
|
await statusTracker.update('completed');
|
|
}
|
|
|
|
logTaskRun({
|
|
task_id: task.id,
|
|
run_at: new Date().toISOString(),
|
|
duration_ms: durationMs,
|
|
status: error ? 'error' : 'success',
|
|
result,
|
|
error,
|
|
});
|
|
|
|
updateTaskAfterRun(
|
|
task.id,
|
|
nextRun,
|
|
error ? `Error: ${error}` : result || 'Completed',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Execute one scheduler tick without timer/in-flight coordination.
|
|
* This keeps the scheduler loop focused on timing while tests and debugging
|
|
* can exercise the due-task path directly.
|
|
*/
|
|
export async function runSchedulerTickOnce(
|
|
deps: SchedulerDependencies,
|
|
): Promise<void> {
|
|
// Unified service: process all agent types, not just the service default.
|
|
const nowMs = Date.now();
|
|
const activeTasks = getAllTasks().filter((task) => task.status === 'active');
|
|
|
|
for (const task of activeTasks) {
|
|
const currentTask = getTaskById(task.id);
|
|
if (!currentTask || currentTask.status !== 'active') {
|
|
continue;
|
|
}
|
|
|
|
if (!hasTaskExceededMaxDuration(currentTask, nowMs)) {
|
|
continue;
|
|
}
|
|
|
|
deleteTask(currentTask.id);
|
|
logger.warn(
|
|
{
|
|
taskId: currentTask.id,
|
|
groupFolder: currentTask.group_folder,
|
|
maxDurationMs: currentTask.max_duration_ms,
|
|
createdAt: currentTask.created_at,
|
|
},
|
|
'Deleted task that exceeded max duration',
|
|
);
|
|
}
|
|
|
|
const dueTasks = getDueTasks();
|
|
if (dueTasks.length > 0) {
|
|
logger.info({ count: dueTasks.length }, 'Found due tasks');
|
|
}
|
|
|
|
for (const task of dueTasks) {
|
|
// Re-check task status in case it was paused/cancelled
|
|
const currentTask = getTaskById(task.id);
|
|
if (!currentTask || currentTask.status !== 'active') {
|
|
continue;
|
|
}
|
|
|
|
deps.queue.enqueueTask(getTaskQueueJid(currentTask), currentTask.id, () =>
|
|
isGitHubCiTask(currentTask)
|
|
? runGithubCiTask(currentTask, deps)
|
|
: runTask(currentTask, deps),
|
|
);
|
|
}
|
|
}
|
|
|
|
let schedulerRunning = false;
|
|
let schedulerTimer: ReturnType<typeof setTimeout> | null = null;
|
|
let schedulerLoopFn: (() => Promise<void>) | null = null;
|
|
let schedulerTickInFlight = false;
|
|
let schedulerTickPending = false;
|
|
|
|
function scheduleSchedulerTick(delayMs: number): void {
|
|
if (!schedulerRunning || !schedulerLoopFn) return;
|
|
if (schedulerTimer) {
|
|
clearTimeout(schedulerTimer);
|
|
}
|
|
schedulerTimer = setTimeout(() => {
|
|
schedulerTimer = null;
|
|
void schedulerLoopFn?.();
|
|
}, delayMs);
|
|
}
|
|
|
|
export function nudgeSchedulerLoop(): void {
|
|
if (!schedulerRunning || !schedulerLoopFn) return;
|
|
if (schedulerTickInFlight) {
|
|
schedulerTickPending = true;
|
|
return;
|
|
}
|
|
scheduleSchedulerTick(0);
|
|
}
|
|
|
|
export function startSchedulerLoop(deps: SchedulerDependencies): void {
|
|
if (schedulerRunning) {
|
|
logger.debug('Scheduler loop already running, skipping duplicate start');
|
|
return;
|
|
}
|
|
schedulerRunning = true;
|
|
logger.info('Scheduler loop started');
|
|
|
|
const loop = async () => {
|
|
if (schedulerTickInFlight) {
|
|
schedulerTickPending = true;
|
|
return;
|
|
}
|
|
schedulerTickInFlight = true;
|
|
|
|
try {
|
|
await runSchedulerTickOnce(deps);
|
|
} catch (err) {
|
|
logger.error({ err }, 'Error in scheduler loop');
|
|
} finally {
|
|
schedulerTickInFlight = false;
|
|
}
|
|
|
|
if (!schedulerRunning) {
|
|
return;
|
|
}
|
|
|
|
if (schedulerTickPending) {
|
|
schedulerTickPending = false;
|
|
scheduleSchedulerTick(0);
|
|
return;
|
|
}
|
|
|
|
scheduleSchedulerTick(SCHEDULER_POLL_INTERVAL);
|
|
};
|
|
|
|
schedulerLoopFn = loop;
|
|
void loop();
|
|
}
|
|
|
|
/** @internal - for tests only. */
|
|
export function _resetSchedulerLoopForTests(): void {
|
|
schedulerRunning = false;
|
|
schedulerLoopFn = null;
|
|
schedulerTickInFlight = false;
|
|
schedulerTickPending = false;
|
|
if (schedulerTimer) {
|
|
clearTimeout(schedulerTimer);
|
|
schedulerTimer = null;
|
|
}
|
|
}
|