summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/fileSyncBridge.ts124
-rw-r--r--src/main/index.ts116
2 files changed, 226 insertions, 14 deletions
diff --git a/src/main/fileSyncBridge.ts b/src/main/fileSyncBridge.ts
index 73f3e70..f17808c 100644
--- a/src/main/fileSyncBridge.ts
+++ b/src/main/fileSyncBridge.ts
@@ -59,6 +59,7 @@ export class FileSyncBridge {
private csrfToken: string
private serverEventHandler: ((name: string, args: unknown[]) => void) | null = null
+ private docRejoinedHandler: ((docId: string, result: { docLines: string[]; version: number }) => void) | null = null
private stopped = false
constructor(
@@ -115,6 +116,8 @@ export class FileSyncBridge {
this.serverEventHandler = (name: string, args: unknown[]) => {
if (name === 'otUpdateApplied') {
this.handleOtUpdate(args)
+ } else if (name === 'otUpdateError') {
+ this.handleOtError(args)
} else if (name === 'reciveNewFile') {
this.handleNewFile(args)
} else if (name === 'reciveNewDoc') {
@@ -127,6 +130,27 @@ export class FileSyncBridge {
}
this.socket.on('serverEvent', this.serverEventHandler)
+ // Listen for doc rejoin events (after reconnect) — reset bridge OtClient for non-editor docs
+ this.docRejoinedHandler = (docId: string, result: { docLines: string[]; version: number }) => {
+ if (this.editorDocs.has(docId)) return // renderer handles editor docs
+ const relPath = this.docPathMap[docId]
+ if (!relPath) return
+
+ const content = (result.docLines || []).join('\n')
+ bridgeLog(`[FileSyncBridge] docRejoined: resetting ${relPath} to v${result.version}`)
+ this.lastKnownContent.set(relPath, content)
+
+ const otClient = new OtClient(
+ result.version,
+ (ops, version) => this.sendOps(docId, ops, version),
+ (ops) => this.onRemoteApply(docId, ops)
+ )
+ this.otClients.set(docId, otClient)
+
+ this.writeToDisk(relPath, content)
+ }
+ this.socket.on('docRejoined', this.docRejoinedHandler)
+
// Start watching the temp dir
// usePolling: FSEvents is unreliable in macOS temp dirs (/var/folders/...)
// atomic: Claude Code and other editors use atomic writes (write temp + rename)
@@ -184,11 +208,15 @@ export class FileSyncBridge {
}
this.debounceTimers.clear()
- // Remove server event handler
+ // Remove event handlers
if (this.serverEventHandler) {
this.socket.removeListener('serverEvent', this.serverEventHandler)
this.serverEventHandler = null
}
+ if (this.docRejoinedHandler) {
+ this.socket.removeListener('docRejoined', this.docRejoinedHandler)
+ this.docRejoinedHandler = null
+ }
// Close watcher
if (this.watcher) {
@@ -262,6 +290,58 @@ export class FileSyncBridge {
}
}
+ // ── OT error handler ────────────────────────────────────────
+
+ /** Server rejected our OT update — recover by re-joining the doc */
+ private handleOtError(args: unknown[]): void {
+ const error = args[0] as { doc?: string; message?: string } | undefined
+ if (!error?.doc) return
+ const docId = error.doc
+ if (this.editorDocs.has(docId)) return // renderer handles editor docs
+
+ const relPath = this.docPathMap[docId]
+ if (!relPath) return
+
+ bridgeLog(`[FileSyncBridge] otUpdateError for ${relPath}: ${error.message || 'unknown'}`)
+
+ // Re-join the doc to get fresh version and content, then re-apply disk content if different
+ this.socket.joinDoc(docId).then(async (result) => {
+ const serverContent = (result.docLines || []).join('\n')
+
+ // Reset OtClient with fresh version
+ const otClient = new OtClient(
+ result.version,
+ (ops, version) => this.sendOps(docId, ops, version),
+ (ops) => this.onRemoteApply(docId, ops)
+ )
+ this.otClients.set(docId, otClient)
+
+ // Check if disk has changes that need to be re-sent
+ let diskContent: string | undefined
+ try {
+ diskContent = await readFile(join(this.tmpDir, relPath), 'utf-8')
+ } catch { /* file may not exist */ }
+
+ if (diskContent && diskContent !== serverContent) {
+ // Re-apply disk changes with fresh OT state
+ bridgeLog(`[FileSyncBridge] re-applying disk changes for ${relPath} after OT error`)
+ this.lastKnownContent.set(relPath, serverContent)
+ const diffs = dmp.diff_main(serverContent, diskContent)
+ dmp.diff_cleanupEfficiency(diffs)
+ const ops = diffsToOtOps(diffs)
+ if (ops.length > 0) {
+ this.lastKnownContent.set(relPath, diskContent)
+ otClient.onLocalOps(ops)
+ }
+ } else {
+ this.lastKnownContent.set(relPath, serverContent)
+ this.writeToDisk(relPath, serverContent)
+ }
+ }).catch((e) => {
+ bridgeLog(`[FileSyncBridge] failed to recover from OT error for ${relPath}:`, e)
+ })
+ }
+
// ── Binary file event handlers (socket) ────────────────────
/** Remote: new file added to project */
@@ -508,12 +588,15 @@ export class FileSyncBridge {
bridgeLog(`[FileSyncBridge] disk change detected: ${relPath} (${newContent.length} chars, was ${lastKnown?.length ?? 'undefined'})`)
if (this.editorDocs.has(docId)) {
- // Doc is open in editor → send to renderer via IPC
- // Don't update lastKnownContent here — let the renderer confirm via syncContentChanged.
- // This prevents race conditions where remote OT ops overwrite lastKnownContent
- // before the disk change is fully processed through the editor's OT pipeline.
+ // Doc is open in editor → send to renderer via IPC.
+ // Include baseContent so renderer can do a three-way merge: if remote edits
+ // arrived during the debounce window, they'll be preserved alongside the disk edit.
+ // Always update lastKnownContent to match disk — even if the renderer can't process
+ // the edit (e.g. doc is an editor doc but not the active tab), we must not let
+ // lastKnownContent go stale or we'll re-detect the same "change" indefinitely.
+ this.lastKnownContent.set(relPath, newContent)
bridgeLog(`[FileSyncBridge] → sending sync:externalEdit to renderer for ${relPath}`)
- this.mainWindow.webContents.send('sync:externalEdit', { docId, content: newContent })
+ this.mainWindow.webContents.send('sync:externalEdit', { docId, content: newContent, baseContent: lastKnown ?? '' })
} else {
// Doc NOT open in editor → bridge handles OT directly
const oldContent = lastKnown ?? ''
@@ -754,9 +837,8 @@ export class FileSyncBridge {
const relPath = this.docPathMap[docId]
if (!relPath) return
- this.socket.joinDoc(docId).then((result) => {
- const content = (result.docLines || []).join('\n')
- this.lastKnownContent.set(relPath, content)
+ this.socket.joinDoc(docId).then(async (result) => {
+ const serverContent = (result.docLines || []).join('\n')
const otClient = new OtClient(
result.version,
@@ -765,7 +847,29 @@ export class FileSyncBridge {
)
this.otClients.set(docId, otClient)
- this.writeToDisk(relPath, content)
+ // Read disk content — it may be newer than server if the renderer just
+ // flushed OT ops that haven't been acknowledged yet (race condition).
+ let diskContent: string | undefined
+ try {
+ diskContent = await readFile(join(this.tmpDir, relPath), 'utf-8')
+ } catch { /* file may not exist */ }
+
+ if (diskContent !== undefined && diskContent !== serverContent) {
+ // Disk has changes server doesn't know about — re-send as OT ops
+ bridgeLog(`[FileSyncBridge] removeEditorDoc: disk differs from server for ${relPath}, re-sending`)
+ this.lastKnownContent.set(relPath, diskContent)
+ const diffs = dmp.diff_main(serverContent, diskContent)
+ dmp.diff_cleanupEfficiency(diffs)
+ const ops = diffsToOtOps(diffs)
+ if (ops.length > 0) {
+ otClient.onLocalOps(ops)
+ }
+ } else {
+ this.lastKnownContent.set(relPath, serverContent)
+ if (diskContent !== serverContent) {
+ this.writeToDisk(relPath, serverContent)
+ }
+ }
}).catch((e) => {
bridgeLog(`[FileSyncBridge] failed to re-join doc ${relPath}:`, e)
})
diff --git a/src/main/index.ts b/src/main/index.ts
index 78a7604..5d29897 100644
--- a/src/main/index.ts
+++ b/src/main/index.ts
@@ -745,6 +745,9 @@ ipcMain.handle('ot:connect', async (_e, projectId: string) => {
fileSyncBridge = new FileSyncBridge(overleafSock, tmpDir, docPathMap, pathDocMap, fileRefs, mainWindow!, projectId, overleafSessionCookie, overleafCsrfToken)
await fileSyncBridge.start()
+ // Start MCP compile watcher (detects compile requests from Claude Code)
+ startMcpCompileWatcher(tmpDir)
+
// Write MCP state + config for Claude Code integration
mcpStateDir = tmpDir
mcpProjectId = projectId
@@ -926,7 +929,8 @@ You have MCP tools to interact with Overleaf. Use them proactively.
})
ipcMain.handle('ot:disconnect', async () => {
- // Clean up MCP state file
+ // Clean up MCP state file + compile watcher
+ stopMcpCompileWatcher()
if (mcpStateDir) {
unlink(join(mcpStateDir, '.lattex-mcp.json')).catch(() => {})
}
@@ -1347,8 +1351,26 @@ ipcMain.handle('overleaf:socketCompile', async (_e, mainTexRelPath: string) => {
})
})
-// Server-side compile via Overleaf's CLSI
-ipcMain.handle('overleaf:serverCompile', async (_e, rootDocId?: string) => {
+// Server-side compile via Overleaf's CLSI (shared by IPC handler + MCP compile watcher)
+let compileInProgress: Promise<{ success: boolean; log: string; pdfPath: string }> | null = null
+
+async function doServerCompile(rootDocId?: string): Promise<{ success: boolean; log: string; pdfPath: string }> {
+ // Prevent concurrent compiles — wait for existing one if already in progress
+ if (compileInProgress) {
+ console.log('[compile] compile already in progress, waiting...')
+ return compileInProgress
+ }
+
+ const promise = doServerCompileImpl(rootDocId)
+ compileInProgress = promise
+ try {
+ return await promise
+ } finally {
+ compileInProgress = null
+ }
+}
+
+async function doServerCompileImpl(rootDocId?: string): Promise<{ success: boolean; log: string; pdfPath: string }> {
if (!overleafSessionCookie || !overleafSock?.projectData) {
return { success: false, log: 'Not connected', pdfPath: '' }
}
@@ -1366,6 +1388,13 @@ ipcMain.handle('overleaf:serverCompile', async (_e, rootDocId?: string) => {
try {
sendToRenderer('latex:log', 'Compiling on Overleaf server...\n')
+ // Flush in-memory OT changes to database so CLSI sees latest content
+ try {
+ await overleafFetch(`/project/${projectId}/flush`, { method: 'POST' })
+ } catch (e) {
+ console.log('[compile] flush failed (non-fatal):', e)
+ }
+
const compileBody = JSON.stringify({
rootDoc_id: effectiveRootDocId,
...(rootResourcePath && { rootResourcePath }),
@@ -1415,7 +1444,10 @@ ipcMain.handle('overleaf:serverCompile', async (_e, rootDocId?: string) => {
if (logFile) {
try {
const logContent = await fetchBinary(buildOutputUrl(logFile), overleafSessionCookie)
- sendToRenderer('latex:log', Buffer.from(logContent).toString('utf-8'))
+ const logText = Buffer.from(logContent).toString('utf-8')
+ sendToRenderer('latex:log', logText)
+ // Write log for MCP server to read (avoids redundant compile API call)
+ writeFile(join(syncDir, '.lattex-compile-log'), logText).catch(() => {})
} catch (e) {
sendToRenderer('latex:log', `[log fetch failed: ${e}]\n`)
}
@@ -1485,8 +1517,83 @@ ipcMain.handle('overleaf:serverCompile', async (_e, rootDocId?: string) => {
sendToRenderer('latex:log', msg + '\n')
return { success: false, log: msg, pdfPath: '' }
}
+}
+
+ipcMain.handle('overleaf:serverCompile', async (_e, rootDocId?: string) => {
+ return doServerCompile(rootDocId)
})
+// Watch for MCP compile requests (file-based signal from MCP server process)
+let mcpCompileWatcher: ReturnType<typeof import('fs').watchFile> | null = null
+let mcpCompileActive = false
+
+function startMcpCompileWatcher(syncDir: string) {
+ const requestPath = join(syncDir, '.lattex-compile-request')
+ const resultPath = join(syncDir, '.lattex-compile-result')
+
+ // Poll for the request file every 300ms
+ const { watchFile, unwatchFile } = require('fs')
+ watchFile(requestPath, { interval: 300 }, async (curr: { size: number }) => {
+ if (curr.size === 0 || mcpCompileActive) return
+ mcpCompileActive = true
+
+ try {
+ const reqData = JSON.parse(await readFile(requestPath, 'utf-8'))
+ await unlink(requestPath).catch(() => {})
+
+ console.log('[mcp-compile] compile request received:', reqData.requestId)
+
+ // Notify renderer: compile started
+ sendToRenderer('compile:mcpStarted', null)
+
+ // Resolve main_file to rootDocId if provided
+ let rootDocId: string | undefined
+ if (reqData.mainFile && mcpPathDocMap[reqData.mainFile]) {
+ rootDocId = mcpPathDocMap[reqData.mainFile]
+ }
+
+ const result = await doServerCompile(rootDocId)
+
+ // Notify renderer: compile finished (renderer will update PDF + compiling state)
+ sendToRenderer('compile:mcpFinished', {
+ success: result.success,
+ pdfPath: result.pdfPath
+ })
+
+ // Write result for MCP server to read
+ await writeFile(resultPath, JSON.stringify({
+ requestId: reqData.requestId,
+ success: result.success,
+ pdfPath: result.pdfPath,
+ status: result.success ? 'success' : 'failure'
+ }))
+ console.log('[mcp-compile] compile result written:', result.success)
+ } catch (e) {
+ console.log('[mcp-compile] error handling compile request:', e)
+ // Write error result so MCP doesn't hang
+ await writeFile(resultPath, JSON.stringify({
+ success: false,
+ status: 'error',
+ error: String(e)
+ })).catch(() => {})
+ sendToRenderer('compile:mcpFinished', { success: false, pdfPath: '' })
+ } finally {
+ mcpCompileActive = false
+ }
+ })
+
+ mcpCompileWatcher = { requestPath } as any
+ console.log('[mcp-compile] watcher started for', requestPath)
+}
+
+function stopMcpCompileWatcher() {
+ if (mcpCompileWatcher) {
+ const { unwatchFile } = require('fs')
+ unwatchFile((mcpCompileWatcher as any).requestPath)
+ mcpCompileWatcher = null
+ }
+}
+
/** Fetch a binary resource. Cookie is optional — CDN URLs use build ID for auth. */
function fetchBinary(url: string, cookie?: string): Promise<ArrayBuffer> {
return new Promise((resolve, reject) => {
@@ -1539,6 +1646,7 @@ app.whenReady().then(async () => {
app.on('window-all-closed', () => {
mainWindow = null
+ stopMcpCompileWatcher()
for (const inst of ptyInstances.values()) inst.kill()
ptyInstances.clear()
fileSyncBridge?.stop()