import {DocEntry} from 'app/common/DocListAPI'; import {DocSnapshots} from 'app/common/DocSnapshot'; import {DocReplacementOptions} from 'app/common/UserAPI'; import {OptDocSession} from 'app/server/lib/DocSession'; export interface IDocStorageManager { getPath(docName: string): string; getSampleDocPath(sampleDocName: string): string|null; getCanonicalDocName(altDocName: string): Promise; // This method must not be called for the same docName twice in parallel. // In the current implementation, it is called in the context of an // AsyncCreate[docName]. prepareLocalDoc(docName: string, docSession: OptDocSession): Promise; listDocs(): Promise; deleteDoc(docName: string, deletePermanently?: boolean): Promise; renameDoc(oldName: string, newName: string): Promise; makeBackup(docName: string, backupTag: string): Promise; showItemInFolder(docName: string): Promise; closeStorage(): Promise; closeDocument(docName: string): Promise; // Mark document as needing a backup (due to edits, migrations, etc). // If reason is set to 'edit' the user-facing timestamp on the document should be updated. markAsChanged(docName: string, reason?: 'edit'): void; testReopenStorage(): void; // restart storage during tests addToStorage(docName: string): void; // add a new local document to storage prepareToCloseStorage(): void; // speed up sync with remote store getCopy(docName: string): Promise; // get an immutable copy of a document flushDoc(docName: string): Promise; // flush a document to persistent storage getSnapshots(docName: string): Promise; replace(docName: string, options: DocReplacementOptions): Promise; }