Spaces:
Paused
Paused
File size: 5,365 Bytes
35743bd | 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 | import { getDbInstance, rowToCamel } from "./core";
export interface HandoffPayload {
id?: string;
sessionId: string;
comboName: string;
fromAccount: string;
summary: string;
keyDecisions: string[];
taskProgress: string;
activeEntities: string[];
messageCount: number;
model: string;
warningThresholdPct: number;
generatedAt: string;
expiresAt: string;
createdAt?: string;
}
type JsonRecord = Record<string, unknown>;
interface StatementLike<TRow = unknown> {
get: (...params: unknown[]) => TRow | undefined;
run: (...params: unknown[]) => { changes: number };
}
interface DbLike {
prepare: <TRow = unknown>(sql: string) => StatementLike<TRow>;
}
const CLEANUP_THROTTLE_MS = 30 * 60 * 1000;
let lastCleanupAt = 0;
function parseJsonArray(value: unknown): string[] {
if (Array.isArray(value)) {
return value.map((item) => (typeof item === "string" ? item : String(item))).filter(Boolean);
}
if (typeof value !== "string" || value.trim().length === 0) {
return [];
}
try {
const parsed = JSON.parse(value);
return Array.isArray(parsed)
? parsed.map((item) => (typeof item === "string" ? item : String(item))).filter(Boolean)
: [];
} catch {
return [];
}
}
function toHandoffPayload(row: unknown): HandoffPayload | null {
const camel = rowToCamel(row) as JsonRecord | null;
if (!camel) return null;
return {
id: typeof camel.id === "string" ? camel.id : undefined,
sessionId: typeof camel.sessionId === "string" ? camel.sessionId : "",
comboName: typeof camel.comboName === "string" ? camel.comboName : "",
fromAccount: typeof camel.fromAccount === "string" ? camel.fromAccount : "",
summary: typeof camel.summary === "string" ? camel.summary : "",
keyDecisions: parseJsonArray(camel.keyDecisions),
taskProgress: typeof camel.taskProgress === "string" ? camel.taskProgress : "",
activeEntities: parseJsonArray(camel.activeEntities),
messageCount: Number.isFinite(Number(camel.messageCount)) ? Number(camel.messageCount) : 0,
model: typeof camel.model === "string" ? camel.model : "",
warningThresholdPct: Number.isFinite(Number(camel.warningThresholdPct))
? Number(camel.warningThresholdPct)
: 0.85,
generatedAt: typeof camel.generatedAt === "string" ? camel.generatedAt : "",
expiresAt: typeof camel.expiresAt === "string" ? camel.expiresAt : "",
createdAt: typeof camel.createdAt === "string" ? camel.createdAt : undefined,
};
}
export function upsertHandoff(payload: HandoffPayload): void {
const db = getDbInstance() as unknown as DbLike;
const createdAt = new Date().toISOString();
db.prepare(
`INSERT INTO context_handoffs
(session_id, combo_name, from_account, summary, key_decisions,
task_progress, active_entities, message_count, model,
warning_threshold_pct, generated_at, expires_at, created_at)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
ON CONFLICT(session_id, combo_name) DO UPDATE SET
from_account = excluded.from_account,
summary = excluded.summary,
key_decisions = excluded.key_decisions,
task_progress = excluded.task_progress,
active_entities = excluded.active_entities,
message_count = excluded.message_count,
model = excluded.model,
warning_threshold_pct = excluded.warning_threshold_pct,
generated_at = excluded.generated_at,
expires_at = excluded.expires_at,
created_at = excluded.created_at`
).run(
payload.sessionId,
payload.comboName,
payload.fromAccount,
payload.summary,
JSON.stringify(payload.keyDecisions || []),
payload.taskProgress,
JSON.stringify(payload.activeEntities || []),
payload.messageCount,
payload.model,
payload.warningThresholdPct,
payload.generatedAt,
payload.expiresAt,
createdAt
);
}
export function getHandoff(sessionId: string, comboName: string): HandoffPayload | null {
const db = getDbInstance() as unknown as DbLike;
const now = new Date().toISOString();
const row = db
.prepare(
`SELECT *
FROM context_handoffs
WHERE session_id = ? AND combo_name = ? AND expires_at > ?
ORDER BY created_at DESC
LIMIT 1`
)
.get(sessionId, comboName, now);
return toHandoffPayload(row);
}
export function deleteHandoff(sessionId: string, comboName: string): void {
const db = getDbInstance() as unknown as DbLike;
db.prepare("DELETE FROM context_handoffs WHERE session_id = ? AND combo_name = ?").run(
sessionId,
comboName
);
}
export function cleanupExpiredHandoffs(): number {
const nowMs = Date.now();
if (nowMs - lastCleanupAt < CLEANUP_THROTTLE_MS) {
return 0;
}
const db = getDbInstance() as unknown as DbLike;
const now = new Date(nowMs).toISOString();
const result = db.prepare("DELETE FROM context_handoffs WHERE expires_at <= ?").run(now);
lastCleanupAt = nowMs;
return result.changes;
}
export function hasActiveHandoff(sessionId: string, comboName: string): boolean {
const db = getDbInstance() as unknown as DbLike;
const now = new Date().toISOString();
const row = db
.prepare(
`SELECT 1
FROM context_handoffs
WHERE session_id = ? AND combo_name = ? AND expires_at > ?
LIMIT 1`
)
.get(sessionId, comboName, now);
return !!row;
}
|