Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
/**
|
|
* Renderer-side retainers for remote temps opened in external editors.
|
|
* closeSftp deletes those files; forget matching retainers so park/auto-connect
|
|
* checks do not keep treating a deleted temp as active work.
|
|
*/
|
|
export type ExternalEditTempRetention = {
|
|
remember(sftpId: string, localPath: string): boolean;
|
|
forgetPath(localPath: string): boolean;
|
|
forgetSftp(sftpId: string): boolean;
|
|
clear(): boolean;
|
|
readonly size: number;
|
|
};
|
|
|
|
export function createExternalEditTempRetention(): ExternalEditTempRetention {
|
|
const bySftp = new Map<string, Set<string>>();
|
|
|
|
const recount = (): number => {
|
|
let total = 0;
|
|
for (const paths of bySftp.values()) total += paths.size;
|
|
return total;
|
|
};
|
|
|
|
return {
|
|
remember(sftpId, localPath) {
|
|
if (!sftpId || !localPath) return false;
|
|
let paths = bySftp.get(sftpId);
|
|
if (!paths) {
|
|
paths = new Set();
|
|
bySftp.set(sftpId, paths);
|
|
}
|
|
if (paths.has(localPath)) return false;
|
|
paths.add(localPath);
|
|
return true;
|
|
},
|
|
forgetPath(localPath) {
|
|
if (!localPath) return false;
|
|
let changed = false;
|
|
for (const [sftpId, paths] of bySftp) {
|
|
if (!paths.delete(localPath)) continue;
|
|
changed = true;
|
|
if (paths.size === 0) bySftp.delete(sftpId);
|
|
}
|
|
return changed;
|
|
},
|
|
forgetSftp(sftpId) {
|
|
if (!sftpId || !bySftp.has(sftpId)) return false;
|
|
bySftp.delete(sftpId);
|
|
return true;
|
|
},
|
|
clear() {
|
|
if (bySftp.size === 0) return false;
|
|
bySftp.clear();
|
|
return true;
|
|
},
|
|
get size() {
|
|
return recount();
|
|
},
|
|
};
|
|
}
|