mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-05 22:02:39 +02:00
feat(filesystem): implement filesystem tree watch functionality using chokidar for real-time updates on local folder changes
This commit is contained in:
parent
3fa8c790f5
commit
f330d1431c
8 changed files with 583 additions and 23 deletions
302
surfsense_desktop/src/modules/agent-filesystem-tree-watcher.ts
Normal file
302
surfsense_desktop/src/modules/agent-filesystem-tree-watcher.ts
Normal file
|
|
@ -0,0 +1,302 @@
|
|||
import { BrowserWindow } from 'electron';
|
||||
import chokidar, { type FSWatcher } from 'chokidar';
|
||||
import { resolve } from 'node:path';
|
||||
import { IPC_CHANNELS } from '../ipc/channels';
|
||||
import { listAgentFilesystemFiles } from './agent-filesystem';
|
||||
|
||||
const SAFETY_POLL_MS = 60_000;
|
||||
const EVENT_DEBOUNCE_MS = 700;
|
||||
|
||||
export type AgentFilesystemTreeWatchOptions = {
|
||||
searchSpaceId?: number | null;
|
||||
rootPaths: string[];
|
||||
excludePatterns?: string[] | null;
|
||||
fileExtensions?: string[] | null;
|
||||
};
|
||||
|
||||
type TreeDirtyReason = 'watcher_event' | 'safety_poll';
|
||||
|
||||
type TreeDirtyEvent = {
|
||||
searchSpaceId: number | null;
|
||||
reason: TreeDirtyReason;
|
||||
rootPath: string;
|
||||
changedPath: string | null;
|
||||
timestamp: number;
|
||||
};
|
||||
|
||||
type WatchSession = {
|
||||
searchSpaceId: number | null;
|
||||
optionsSignature: string;
|
||||
rootPaths: string[];
|
||||
excludePatterns: string[];
|
||||
fileExtensions: string[] | null;
|
||||
watchers: FSWatcher[];
|
||||
pollTimer: NodeJS.Timeout | null;
|
||||
emitTimer: NodeJS.Timeout | null;
|
||||
rootSnapshotByPath: Map<string, string>;
|
||||
pendingDirtyByRoot: Map<string, { reason: TreeDirtyReason; changedPath: string | null }>;
|
||||
disposed: boolean;
|
||||
};
|
||||
|
||||
const sessions = new Map<string, WatchSession>();
|
||||
|
||||
function normalizeSearchSpaceId(searchSpaceId?: number | null): number | null {
|
||||
if (typeof searchSpaceId === 'number' && Number.isFinite(searchSpaceId) && searchSpaceId > 0) {
|
||||
return searchSpaceId;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
function getSessionKey(searchSpaceId?: number | null): string {
|
||||
const normalized = normalizeSearchSpaceId(searchSpaceId);
|
||||
return normalized === null ? 'default' : String(normalized);
|
||||
}
|
||||
|
||||
function normalizeRootPath(pathValue: string): string {
|
||||
const normalized = resolve(pathValue.trim());
|
||||
return process.platform === 'win32' ? normalized.toLowerCase() : normalized;
|
||||
}
|
||||
|
||||
function normalizeList(value: string[] | null | undefined): string[] {
|
||||
if (!value || value.length === 0) return [];
|
||||
return value
|
||||
.filter((entry): entry is string => typeof entry === 'string')
|
||||
.map((entry) => entry.trim())
|
||||
.filter(Boolean);
|
||||
}
|
||||
|
||||
function normalizeExtensions(value: string[] | null | undefined): string[] | null {
|
||||
const normalized = normalizeList(value).map((entry) => entry.toLowerCase());
|
||||
return normalized.length > 0 ? normalized : null;
|
||||
}
|
||||
|
||||
function buildOptionsSignature(
|
||||
searchSpaceId: number | null,
|
||||
rootPaths: string[],
|
||||
excludePatterns: string[],
|
||||
fileExtensions: string[] | null
|
||||
): string {
|
||||
return JSON.stringify({
|
||||
searchSpaceId,
|
||||
rootPaths: [...rootPaths].sort(),
|
||||
excludePatterns: [...excludePatterns].sort(),
|
||||
fileExtensions: fileExtensions ? [...fileExtensions].sort() : null,
|
||||
});
|
||||
}
|
||||
|
||||
function hashText(input: string, seed: number): number {
|
||||
let hash = seed >>> 0;
|
||||
for (let i = 0; i < input.length; i += 1) {
|
||||
hash ^= input.charCodeAt(i);
|
||||
hash = Math.imul(hash, 16777619);
|
||||
hash >>>= 0;
|
||||
}
|
||||
return hash;
|
||||
}
|
||||
|
||||
async function buildRootSnapshotSignature(
|
||||
session: WatchSession,
|
||||
rootPath: string
|
||||
): Promise<string> {
|
||||
let hash = 2166136261;
|
||||
hash = hashText(`space:${session.searchSpaceId ?? 'default'}|root:${rootPath}`, hash);
|
||||
const files = await listAgentFilesystemFiles({
|
||||
rootPath,
|
||||
searchSpaceId: session.searchSpaceId,
|
||||
excludePatterns: session.excludePatterns,
|
||||
fileExtensions: session.fileExtensions,
|
||||
});
|
||||
const sortedFiles = [...files].sort((a, b) => a.relativePath.localeCompare(b.relativePath));
|
||||
hash = hashText(`count:${sortedFiles.length}`, hash);
|
||||
for (const file of sortedFiles) {
|
||||
hash = hashText(
|
||||
`${file.relativePath}|${Math.round(file.mtimeMs)}|${file.size}`,
|
||||
hash
|
||||
);
|
||||
}
|
||||
return hash.toString(16);
|
||||
}
|
||||
|
||||
function sendTreeDirtyEvent(
|
||||
searchSpaceId: number | null,
|
||||
reason: TreeDirtyReason,
|
||||
rootPath: string,
|
||||
changedPath: string | null
|
||||
): void {
|
||||
const payload: TreeDirtyEvent = {
|
||||
searchSpaceId,
|
||||
reason,
|
||||
rootPath,
|
||||
changedPath,
|
||||
timestamp: Date.now(),
|
||||
};
|
||||
for (const win of BrowserWindow.getAllWindows()) {
|
||||
if (!win.isDestroyed()) {
|
||||
win.webContents.send(IPC_CHANNELS.AGENT_FILESYSTEM_TREE_DIRTY, payload);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function scheduleDirtyEmit(
|
||||
session: WatchSession,
|
||||
reason: TreeDirtyReason,
|
||||
rootPath: string,
|
||||
changedPath: string | null = null
|
||||
): void {
|
||||
if (session.disposed) return;
|
||||
const existing = session.pendingDirtyByRoot.get(rootPath);
|
||||
if (!existing || existing.reason === 'safety_poll') {
|
||||
session.pendingDirtyByRoot.set(rootPath, { reason, changedPath });
|
||||
}
|
||||
if (session.emitTimer) {
|
||||
clearTimeout(session.emitTimer);
|
||||
}
|
||||
session.emitTimer = setTimeout(() => {
|
||||
session.emitTimer = null;
|
||||
if (session.disposed) return;
|
||||
const pending = Array.from(session.pendingDirtyByRoot.entries());
|
||||
session.pendingDirtyByRoot.clear();
|
||||
for (const [pendingRootPath, payload] of pending) {
|
||||
sendTreeDirtyEvent(
|
||||
session.searchSpaceId,
|
||||
payload.reason,
|
||||
pendingRootPath,
|
||||
payload.changedPath
|
||||
);
|
||||
}
|
||||
}, EVENT_DEBOUNCE_MS);
|
||||
}
|
||||
|
||||
async function closeSession(session: WatchSession): Promise<void> {
|
||||
session.disposed = true;
|
||||
if (session.emitTimer) {
|
||||
clearTimeout(session.emitTimer);
|
||||
session.emitTimer = null;
|
||||
}
|
||||
if (session.pollTimer) {
|
||||
clearInterval(session.pollTimer);
|
||||
session.pollTimer = null;
|
||||
}
|
||||
await Promise.allSettled(session.watchers.map((watcher) => watcher.close()));
|
||||
}
|
||||
|
||||
export async function startAgentFilesystemTreeWatch(
|
||||
options: AgentFilesystemTreeWatchOptions
|
||||
): Promise<{ ok: true }> {
|
||||
const searchSpaceId = normalizeSearchSpaceId(options.searchSpaceId);
|
||||
const rootPaths = Array.from(
|
||||
new Set(normalizeList(options.rootPaths).map((rootPath) => normalizeRootPath(rootPath)))
|
||||
);
|
||||
const excludePatterns = Array.from(new Set(normalizeList(options.excludePatterns)));
|
||||
const fileExtensions = normalizeExtensions(options.fileExtensions);
|
||||
const sessionKey = getSessionKey(searchSpaceId);
|
||||
|
||||
if (rootPaths.length === 0) {
|
||||
await stopAgentFilesystemTreeWatch(searchSpaceId);
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
const optionsSignature = buildOptionsSignature(
|
||||
searchSpaceId,
|
||||
rootPaths,
|
||||
excludePatterns,
|
||||
fileExtensions
|
||||
);
|
||||
const existing = sessions.get(sessionKey);
|
||||
if (existing && existing.optionsSignature === optionsSignature) {
|
||||
return { ok: true };
|
||||
}
|
||||
if (existing) {
|
||||
await closeSession(existing);
|
||||
sessions.delete(sessionKey);
|
||||
}
|
||||
|
||||
const ignored = [
|
||||
/(^|[/\\])\../,
|
||||
...excludePatterns.map((pattern) => `**/${pattern}/**`),
|
||||
];
|
||||
const watchers = rootPaths.map((rootPath) =>
|
||||
chokidar.watch(rootPath, {
|
||||
persistent: true,
|
||||
ignoreInitial: true,
|
||||
awaitWriteFinish: {
|
||||
stabilityThreshold: 500,
|
||||
pollInterval: 100,
|
||||
},
|
||||
ignored,
|
||||
})
|
||||
);
|
||||
|
||||
const session: WatchSession = {
|
||||
searchSpaceId,
|
||||
optionsSignature,
|
||||
rootPaths,
|
||||
excludePatterns,
|
||||
fileExtensions,
|
||||
watchers,
|
||||
pollTimer: null,
|
||||
emitTimer: null,
|
||||
rootSnapshotByPath: new Map(),
|
||||
pendingDirtyByRoot: new Map(),
|
||||
disposed: false,
|
||||
};
|
||||
|
||||
for (let index = 0; index < watchers.length; index += 1) {
|
||||
const watcher = watchers[index];
|
||||
const rootPath = rootPaths[index];
|
||||
watcher.on('add', (filePath) => scheduleDirtyEmit(session, 'watcher_event', rootPath, filePath));
|
||||
watcher.on('change', (filePath) =>
|
||||
scheduleDirtyEmit(session, 'watcher_event', rootPath, filePath)
|
||||
);
|
||||
watcher.on('unlink', (filePath) =>
|
||||
scheduleDirtyEmit(session, 'watcher_event', rootPath, filePath)
|
||||
);
|
||||
watcher.on('addDir', (filePath) =>
|
||||
scheduleDirtyEmit(session, 'watcher_event', rootPath, filePath)
|
||||
);
|
||||
watcher.on('unlinkDir', (filePath) =>
|
||||
scheduleDirtyEmit(session, 'watcher_event', rootPath, filePath)
|
||||
);
|
||||
}
|
||||
|
||||
for (const rootPath of rootPaths) {
|
||||
try {
|
||||
const signature = await buildRootSnapshotSignature(session, rootPath);
|
||||
session.rootSnapshotByPath.set(rootPath, signature);
|
||||
} catch {
|
||||
session.rootSnapshotByPath.set(rootPath, '');
|
||||
}
|
||||
}
|
||||
|
||||
session.pollTimer = setInterval(() => {
|
||||
void (async () => {
|
||||
if (session.disposed) return;
|
||||
for (const rootPath of session.rootPaths) {
|
||||
try {
|
||||
const nextSignature = await buildRootSnapshotSignature(session, rootPath);
|
||||
const previousSignature = session.rootSnapshotByPath.get(rootPath) ?? '';
|
||||
if (nextSignature !== previousSignature) {
|
||||
session.rootSnapshotByPath.set(rootPath, nextSignature);
|
||||
scheduleDirtyEmit(session, 'safety_poll', rootPath, null);
|
||||
}
|
||||
} catch {
|
||||
// Keep watcher resilient on transient IO errors.
|
||||
}
|
||||
}
|
||||
})();
|
||||
}, SAFETY_POLL_MS);
|
||||
|
||||
sessions.set(sessionKey, session);
|
||||
return { ok: true };
|
||||
}
|
||||
|
||||
export async function stopAgentFilesystemTreeWatch(
|
||||
searchSpaceId?: number | null
|
||||
): Promise<{ ok: true }> {
|
||||
const sessionKey = getSessionKey(searchSpaceId);
|
||||
const session = sessions.get(sessionKey);
|
||||
if (!session) return { ok: true };
|
||||
sessions.delete(sessionKey);
|
||||
await closeSession(session);
|
||||
return { ok: true };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue