- Add open-sse/services/thoughtSignatureStore.js managing LRU Map (2k) + SQLite kv table - Store thoughtSignature with sessionId namespace and toolCallId fallback - Replay cached signature by sessionId:tool_call_id to prevent multi-process collisions - Normalize Antigravity sessionId to numeric int64 format Co-Authored-By: Claude Code <noreply@anthropic.com>
171 lines
4.8 KiB
JavaScript
171 lines
4.8 KiB
JavaScript
import { makeKv } from "../../src/lib/db/helpers/kvStore.js";
|
|
|
|
const MAX_SIGNATURES = 2000;
|
|
const MAX_PERSISTED_SIGNATURES = 10_000;
|
|
const MEMORY_TTL_MS = 1000 * 60 * 60; // 1 hour
|
|
const PERSISTED_TTL_MS = 1000 * 60 * 60 * 24 * 7; // 7 days
|
|
const SCOPE = "gemini_thought_signatures";
|
|
|
|
const signatureKv = makeKv(SCOPE);
|
|
const memorySignatures = new Map();
|
|
let pruneCounter = 0;
|
|
|
|
function pruneMemoryExpired() {
|
|
const now = Date.now();
|
|
for (const [key, value] of memorySignatures.entries()) {
|
|
if (value.expiresAt <= now) {
|
|
memorySignatures.delete(key);
|
|
}
|
|
}
|
|
|
|
while (memorySignatures.size > MAX_SIGNATURES) {
|
|
const oldestKey = memorySignatures.keys().next().value;
|
|
if (!oldestKey) break;
|
|
memorySignatures.delete(oldestKey);
|
|
}
|
|
}
|
|
|
|
async function maybePrunePersisted() {
|
|
pruneCounter++;
|
|
if (pruneCounter % 100 !== 0) return;
|
|
|
|
try {
|
|
const all = await signatureKv.getAll();
|
|
const keys = Object.keys(all);
|
|
const now = Date.now();
|
|
const expiredKeys = [];
|
|
const valid = [];
|
|
|
|
for (const k of keys) {
|
|
const entry = all[k];
|
|
if (!entry || typeof entry.signature !== "string" || (entry.expiresAt && entry.expiresAt <= now)) {
|
|
expiredKeys.push(k);
|
|
} else {
|
|
valid.push({ key: k, createdAt: entry.createdAt || 0 });
|
|
}
|
|
}
|
|
|
|
for (const k of expiredKeys) {
|
|
await signatureKv.remove(k).catch(() => {});
|
|
}
|
|
|
|
if (valid.length > MAX_PERSISTED_SIGNATURES) {
|
|
valid.sort((a, b) => b.createdAt - a.createdAt);
|
|
const toRemove = valid.slice(MAX_PERSISTED_SIGNATURES);
|
|
for (const item of toRemove) {
|
|
await signatureKv.remove(item.key).catch(() => {});
|
|
}
|
|
}
|
|
} catch {
|
|
// Fail-open
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Store a thought signature for a tool_call_id with optional sessionId namespace (RAM + SQLite async)
|
|
*/
|
|
export function storeGeminiThoughtSignature(toolCallId, signature, sessionId = null) {
|
|
if (typeof toolCallId !== "string" || !toolCallId) return;
|
|
if (typeof signature !== "string" || !signature) return;
|
|
|
|
const now = Date.now();
|
|
pruneMemoryExpired();
|
|
|
|
const keys = [];
|
|
if (sessionId && typeof sessionId === "string") {
|
|
keys.push(`${sessionId}:${toolCallId}`);
|
|
}
|
|
keys.push(toolCallId);
|
|
|
|
for (const k of keys) {
|
|
memorySignatures.set(k, {
|
|
signature,
|
|
expiresAt: now + MEMORY_TTL_MS,
|
|
});
|
|
|
|
// Async persist to SQLite kv table without blocking
|
|
signatureKv.set(k, {
|
|
signature,
|
|
createdAt: now,
|
|
expiresAt: now + PERSISTED_TTL_MS,
|
|
}).catch(() => {});
|
|
}
|
|
|
|
maybePrunePersisted().catch(() => {});
|
|
}
|
|
|
|
/**
|
|
* Retrieve a thought signature by tool_call_id (RAM first, then SQLite fallback)
|
|
*/
|
|
export async function getGeminiThoughtSignature(toolCallId, sessionId = null) {
|
|
if (typeof toolCallId !== "string" || !toolCallId) return null;
|
|
|
|
pruneMemoryExpired();
|
|
|
|
if (sessionId && typeof sessionId === "string") {
|
|
const sessionKey = `${sessionId}:${toolCallId}`;
|
|
const sessionEntry = memorySignatures.get(sessionKey);
|
|
if (sessionEntry && sessionEntry.expiresAt > Date.now()) {
|
|
return sessionEntry.signature;
|
|
}
|
|
}
|
|
|
|
const entry = memorySignatures.get(toolCallId);
|
|
if (entry && entry.expiresAt > Date.now()) {
|
|
return entry.signature;
|
|
}
|
|
|
|
try {
|
|
if (sessionId && typeof sessionId === "string") {
|
|
const sessionKey = `${sessionId}:${toolCallId}`;
|
|
const sessionRow = await signatureKv.get(sessionKey);
|
|
if (sessionRow && typeof sessionRow.signature === "string" && (!sessionRow.expiresAt || sessionRow.expiresAt > Date.now())) {
|
|
memorySignatures.set(sessionKey, {
|
|
signature: sessionRow.signature,
|
|
expiresAt: Date.now() + MEMORY_TTL_MS,
|
|
});
|
|
return sessionRow.signature;
|
|
}
|
|
}
|
|
|
|
const row = await signatureKv.get(toolCallId);
|
|
if (row && typeof row.signature === "string") {
|
|
if (row.expiresAt && row.expiresAt <= Date.now()) {
|
|
signatureKv.remove(toolCallId).catch(() => {});
|
|
return null;
|
|
}
|
|
memorySignatures.set(toolCallId, {
|
|
signature: row.signature,
|
|
expiresAt: Date.now() + MEMORY_TTL_MS,
|
|
});
|
|
return row.signature;
|
|
}
|
|
} catch {
|
|
// Fail-open
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Synchronous get from RAM cache only (for sync translators)
|
|
*/
|
|
export function getGeminiThoughtSignatureSync(toolCallId, sessionId = null) {
|
|
if (typeof toolCallId !== "string" || !toolCallId) return null;
|
|
pruneMemoryExpired();
|
|
|
|
if (sessionId && typeof sessionId === "string") {
|
|
const sessionKey = `${sessionId}:${toolCallId}`;
|
|
const sessionEntry = memorySignatures.get(sessionKey);
|
|
if (sessionEntry && sessionEntry.expiresAt > Date.now()) {
|
|
return sessionEntry.signature;
|
|
}
|
|
}
|
|
|
|
const entry = memorySignatures.get(toolCallId);
|
|
if (entry && entry.expiresAt > Date.now()) {
|
|
return entry.signature;
|
|
}
|
|
return null;
|
|
}
|