2023-08-29 19:17:29 +00:00
import { sleep } from "$sb/lib/async.ts" ;
2023-05-23 18:53:53 +00:00
import type { SpacePrimitives } from "../common/spaces/space_primitives.ts" ;
import {
SpaceSync ,
SyncStatus ,
SyncStatusItem ,
} from "../common/spaces/sync.ts" ;
import { EventHook } from "../plugos/hooks/event.ts" ;
2023-10-03 12:16:33 +00:00
import { DataStore } from "../plugos/lib/datastore.ts" ;
2023-08-29 19:17:29 +00:00
import { Space } from "./space.ts" ;
2023-05-23 18:53:53 +00:00
// Keeps the current sync snapshot
2023-10-03 12:16:33 +00:00
const syncSnapshotKey = [ "sync" , "snapshot" ] ;
2023-05-23 18:53:53 +00:00
// Keeps the start time of an ongoing sync, is reset once the sync is done
2023-10-03 12:16:33 +00:00
const syncStartTimeKey = [ "sync" , "startTime" ] ;
2023-05-23 18:53:53 +00:00
2023-08-07 18:42:52 +00:00
// Keeps the start time of the last full sync cycle
2023-10-03 12:16:33 +00:00
const syncLastFullCycleKey = [ "sync" , "lastFullCycle" ] ;
2023-08-07 18:42:52 +00:00
2023-05-23 18:53:53 +00:00
// Keeps the last time an activity was registered, used to detect if a sync is still alive and whether a new one should be started already
2023-10-03 12:16:33 +00:00
const syncLastActivityKey = [ "sync" , "lastActivity" ] ;
2023-05-23 18:53:53 +00:00
2023-10-03 12:16:33 +00:00
const syncInitialFullSyncCompletedKey = [ "sync" , "initialFullSyncCompleted" ] ;
2023-06-13 18:47:05 +00:00
2023-05-23 18:53:53 +00:00
// maximum time between two activities before we consider a sync crashed
2023-08-08 18:09:48 +00:00
const syncMaxIdleTimeout = 1000 * 27 ;
2023-05-23 18:53:53 +00:00
// How often to sync the whole space
2023-08-08 18:09:48 +00:00
const spaceSyncInterval = 17 * 1000 ; // Every 17s or so
2023-08-07 18:42:52 +00:00
// Used from Client
2023-08-08 18:09:48 +00:00
export const pageSyncInterval = 6000 ;
2023-05-23 18:53:53 +00:00
2023-08-29 19:17:29 +00:00
export interface ISyncService {
start ( ) : void ;
isSyncing ( ) : Promise < boolean > ;
hasInitialSyncCompleted ( ) : Promise < boolean > ;
noOngoingSync ( _timeout : number ) : Promise < void > ;
syncFile ( name : string ) : Promise < void > ;
scheduleFileSync ( _path : string ) : Promise < void > ;
scheduleSpaceSync ( ) : Promise < void > ;
}
2023-05-23 18:53:53 +00:00
/ * *
* The SyncService primarily wraps the SpaceSync engine but also coordinates sync between
* different browser tabs . It is using the KVStore to keep track of sync state .
* /
2023-08-29 19:17:29 +00:00
export class SyncService implements ISyncService {
2023-05-23 18:53:53 +00:00
spaceSync : SpaceSync ;
lastReportedSyncStatus = Date . now ( ) ;
constructor (
2023-06-13 18:47:05 +00:00
readonly localSpacePrimitives : SpacePrimitives ,
readonly remoteSpace : SpacePrimitives ,
2023-10-03 12:16:33 +00:00
private ds : DataStore ,
2023-05-23 18:53:53 +00:00
private eventHook : EventHook ,
private isSyncCandidate : ( path : string ) = > boolean ,
) {
this . spaceSync = new SpaceSync (
this . localSpacePrimitives ,
this . remoteSpace ! ,
{
conflictResolver : this.plugAwareConflictResolver.bind ( this ) ,
isSyncCandidate : this.isSyncCandidate ,
onSyncProgress : ( status ) = > {
this . registerSyncProgress ( status ) . catch ( console . error ) ;
} ,
} ,
) ;
2023-07-28 16:06:49 +00:00
eventHook . addLocalListener (
"editor:pageLoaded" ,
2023-08-05 19:09:41 +00:00
( name , _prevPage , isSynced ) = > {
2023-07-28 16:06:49 +00:00
if ( ! isSynced ) {
2023-08-05 19:09:41 +00:00
this . scheduleFileSync ( ` ${ name } .md ` ) . catch ( console . error ) ;
2023-07-28 16:06:49 +00:00
}
} ,
) ;
2023-05-23 18:53:53 +00:00
2023-08-05 19:09:41 +00:00
eventHook . addLocalListener ( "editor:pageSaved" , ( name ) = > {
2023-06-13 18:47:05 +00:00
const path = ` ${ name } .md ` ;
2023-08-05 19:09:41 +00:00
this . scheduleFileSync ( path ) . catch ( console . error ) ;
2023-05-23 18:53:53 +00:00
} ) ;
2023-08-29 19:17:29 +00:00
this . spaceSync . on ( {
fileSynced : ( meta , direction ) = > {
eventHook . dispatchEvent ( "file:synced" , meta , direction ) ;
} ,
} ) ;
2023-05-23 18:53:53 +00:00
}
async isSyncing ( ) : Promise < boolean > {
2023-10-03 12:16:33 +00:00
const startTime = await this . ds . get ( syncStartTimeKey ) ;
2023-05-23 18:53:53 +00:00
if ( ! startTime ) {
return false ;
}
// Sync is running, but is it still alive?
2023-10-03 12:16:33 +00:00
const lastActivity = await this . ds . get ( syncLastActivityKey ) ! ;
2023-05-23 18:53:53 +00:00
if ( Date . now ( ) - lastActivity > syncMaxIdleTimeout ) {
// It's been too long since the last activity, let's consider this one crashed and
// reset the sync start state
2023-10-03 12:16:33 +00:00
await this . ds . delete ( syncStartTimeKey ) ;
2023-08-10 14:09:28 +00:00
console . info ( "Sync without activity for too long, resetting" ) ;
2023-05-23 18:53:53 +00:00
return false ;
}
return true ;
}
2023-10-03 12:16:33 +00:00
async hasInitialSyncCompleted ( ) : Promise < boolean > {
2023-05-23 18:53:53 +00:00
// Initial sync has happened when sync progress has been reported at least once, but the syncStartTime has been reset (which happens after sync finishes)
2023-10-03 12:16:33 +00:00
return ! ! ( await this . ds . get ( syncInitialFullSyncCompletedKey ) ) ;
2023-05-23 18:53:53 +00:00
}
2023-08-07 18:42:52 +00:00
async registerSyncStart ( fullSync : boolean ) : Promise < void > {
2023-05-23 18:53:53 +00:00
// Assumption: this is called after an isSyncing() check
2023-10-03 12:16:33 +00:00
await this . ds . batchSet ( [
2023-08-07 18:42:52 +00:00
{
key : syncStartTimeKey ,
value : Date.now ( ) ,
} ,
{
key : syncLastActivityKey ,
value : Date.now ( ) ,
} ,
. . . fullSync // If this is a full sync cycle
? [ {
key : syncLastFullCycleKey ,
value : Date.now ( ) ,
} ]
: [ ] ,
] ) ;
2023-05-23 18:53:53 +00:00
}
async registerSyncProgress ( status? : SyncStatus ) : Promise < void > {
2023-06-14 18:58:08 +00:00
// Emit a sync event at most every 2s
if ( status && this . lastReportedSyncStatus < Date . now ( ) - 2000 ) {
2023-10-03 12:16:33 +00:00
await this . eventHook . dispatchEvent ( "sync:progress" , status ) ;
2023-05-23 18:53:53 +00:00
this . lastReportedSyncStatus = Date . now ( ) ;
await this . saveSnapshot ( status . snapshot ) ;
}
2023-10-03 12:16:33 +00:00
await this . ds . set ( syncLastActivityKey , Date . now ( ) ) ;
2023-05-23 18:53:53 +00:00
}
2023-08-10 14:09:28 +00:00
async registerSyncStop ( isFullSync : boolean ) : Promise < void > {
2023-05-23 18:53:53 +00:00
await this . registerSyncProgress ( ) ;
2023-10-03 12:16:33 +00:00
await this . ds . delete ( syncStartTimeKey ) ;
2023-08-10 14:09:28 +00:00
if ( isFullSync ) {
2023-10-03 12:16:33 +00:00
await this . ds . set ( syncInitialFullSyncCompletedKey , true ) ;
2023-08-10 14:09:28 +00:00
}
2023-06-13 18:47:05 +00:00
}
2023-05-23 18:53:53 +00:00
async getSnapshot ( ) : Promise < Map < string , SyncStatusItem > > {
2023-10-03 12:16:33 +00:00
const snapshot = ( await this . ds . get ( syncSnapshotKey ) ) || { } ;
2023-05-23 18:53:53 +00:00
return new Map < string , SyncStatusItem > (
Object . entries ( snapshot ) ,
) ;
}
2023-06-13 18:47:05 +00:00
// Await a moment when the sync is no longer running
2023-08-08 15:19:43 +00:00
async noOngoingSync ( timeout : number ) : Promise < void > {
2023-06-13 18:47:05 +00:00
// Not completely safe, could have race condition on setting the syncStartTimeKey
2023-08-08 15:19:43 +00:00
const startTime = Date . now ( ) ;
2023-06-13 18:47:05 +00:00
while ( await this . isSyncing ( ) ) {
2023-08-09 15:52:39 +00:00
console . log ( "Waiting for ongoing sync to finish..." ) ;
2023-08-08 18:09:48 +00:00
await sleep ( 321 ) ;
2023-08-08 15:19:43 +00:00
if ( Date . now ( ) - startTime > timeout ) {
throw new Error ( "Timeout waiting for sync to finish" ) ;
}
2023-06-13 18:47:05 +00:00
}
}
2023-08-05 19:09:41 +00:00
filesScheduledForSync = new Set < string > ( ) ;
async scheduleFileSync ( path : string ) : Promise < void > {
if ( this . filesScheduledForSync . has ( path ) ) {
// Already scheduled, no need to duplicate
console . info ( ` File ${ path } already scheduled for sync ` ) ;
return ;
}
this . filesScheduledForSync . add ( path ) ;
2023-08-08 18:09:48 +00:00
await this . noOngoingSync ( 7000 ) ;
2023-08-05 19:09:41 +00:00
await this . syncFile ( path ) ;
this . filesScheduledForSync . delete ( path ) ;
}
2023-08-15 18:24:02 +00:00
async scheduleSpaceSync ( ) : Promise < void > {
await this . noOngoingSync ( 5000 ) ;
await this . syncSpace ( ) ;
}
2023-05-23 18:53:53 +00:00
start() {
2023-08-08 18:09:48 +00:00
this . syncSpace ( ) . catch ( console . error ) ;
2023-05-23 18:53:53 +00:00
setInterval ( async ( ) = > {
try {
2023-08-07 18:42:52 +00:00
if ( ! await this . isSyncing ( ) ) {
2023-10-03 12:16:33 +00:00
const lastFullCycle = ( await this . ds . get ( syncLastFullCycleKey ) ) || 0 ;
2023-08-07 18:42:52 +00:00
if ( lastFullCycle && Date . now ( ) - lastFullCycle > spaceSyncInterval ) {
// It's been a while since the last full cycle, let's sync the whole space
await this . syncSpace ( ) ;
}
2023-05-23 18:53:53 +00:00
}
} catch ( e : any ) {
console . error ( e ) ;
}
2023-08-07 18:42:52 +00:00
} , spaceSyncInterval / 2 ) ; // check every half the sync cycle because actually running the sync takes some time therefore we don't want to wait for the full cycle
2023-05-23 18:53:53 +00:00
}
async syncSpace ( ) : Promise < number > {
if ( await this . isSyncing ( ) ) {
2023-08-08 15:19:43 +00:00
console . log ( "Aborting space sync: already syncing" ) ;
2023-05-23 18:53:53 +00:00
return 0 ;
}
2023-08-07 18:42:52 +00:00
await this . registerSyncStart ( true ) ;
2023-05-23 18:53:53 +00:00
let operations = 0 ;
const snapshot = await this . getSnapshot ( ) ;
2023-06-13 18:47:05 +00:00
// console.log("Excluded from sync", excludedFromSync);
2023-05-23 18:53:53 +00:00
try {
2023-06-13 18:47:05 +00:00
operations = await this . spaceSync ! . syncFiles (
snapshot ,
2023-07-06 14:47:50 +00:00
( path ) = > this . isSyncCandidate ( path ) ,
2023-06-13 18:47:05 +00:00
) ;
2023-07-28 16:06:49 +00:00
await this . saveSnapshot ( snapshot ) ;
2023-08-10 14:09:28 +00:00
await this . registerSyncStop ( true ) ;
2023-10-03 12:16:33 +00:00
await this . eventHook . dispatchEvent ( "sync:success" , operations ) ;
2023-05-23 18:53:53 +00:00
} catch ( e : any ) {
2023-07-28 16:06:49 +00:00
await this . saveSnapshot ( snapshot ) ;
2023-08-10 14:09:28 +00:00
await this . registerSyncStop ( false ) ;
2023-10-03 12:16:33 +00:00
await this . eventHook . dispatchEvent ( "sync:error" , e . message ) ;
2023-07-28 11:54:44 +00:00
console . error ( "Sync error" , e . message ) ;
2023-05-23 18:53:53 +00:00
}
return operations ;
}
2023-07-28 16:06:49 +00:00
// Syncs a single file
2023-05-23 18:53:53 +00:00
async syncFile ( name : string ) {
2023-08-10 14:09:28 +00:00
// console.log("Checking if we can sync file", name);
2023-08-05 19:09:41 +00:00
if ( ! this . isSyncCandidate ( name ) ) {
2023-08-10 14:09:28 +00:00
console . info ( "Requested sync, but not a sync candidate" , name ) ;
2023-05-23 18:53:53 +00:00
return ;
}
2023-08-05 19:09:41 +00:00
if ( await this . isSyncing ( ) ) {
console . log ( "Already syncing, aborting individual file sync for" , name ) ;
2023-05-23 18:53:53 +00:00
return ;
}
console . log ( "Syncing file" , name ) ;
2023-08-09 15:52:39 +00:00
await this . registerSyncStart ( false ) ;
2023-05-23 18:53:53 +00:00
const snapshot = await this . getSnapshot ( ) ;
try {
2023-06-13 18:47:05 +00:00
let localHash : number | undefined ;
let remoteHash : number | undefined ;
2023-05-23 18:53:53 +00:00
try {
2023-07-28 19:22:06 +00:00
const localMeta = await this . localSpacePrimitives . getFileMeta ( name ) ;
2023-07-30 06:56:44 +00:00
if ( localMeta . noSync ) {
2023-07-28 19:22:06 +00:00
console . info (
2023-07-30 06:56:44 +00:00
"File marked as no sync, skipping sync in this cycle" ,
2023-07-28 19:22:06 +00:00
name ,
) ;
2023-08-10 14:09:28 +00:00
await this . registerSyncStop ( false ) ;
// Jumping out, not saving snapshot nor triggering a sync event, because we did nothing
2023-07-28 19:22:06 +00:00
return ;
}
localHash = localMeta . lastModified ;
2023-05-23 18:53:53 +00:00
} catch {
// Not present
}
try {
2023-08-08 13:00:18 +00:00
remoteHash = ( await this . remoteSpace ! . getFileMeta ( name ) ) . lastModified ;
2023-08-16 13:15:19 +00:00
// HEAD
//
2023-08-15 18:15:27 +00:00
if ( ! remoteHash ) {
console . info (
"Not syncing file, because remote didn't send X-Last-Modified header" ,
) ;
// This happens when the remote isn't a real SilverBullet server, specifically: it's not sending
// a X-Last-Modified header. In this case we'll just assume that the file is up to date.
await this . registerSyncStop ( false ) ;
// Jumping out, not saving snapshot nor triggering a sync event, because we did nothing
return ;
}
2023-08-16 13:15:19 +00:00
//main
2023-05-23 18:53:53 +00:00
} catch ( e : any ) {
if ( e . message === "Not found" ) {
// File doesn't exist remotely, that's ok
} else {
throw e ;
}
}
2023-07-28 16:06:49 +00:00
await this . spaceSync . syncFile ( snapshot , name , localHash , remoteHash ) ;
2023-08-10 14:09:28 +00:00
this . eventHook . dispatchEvent ( "sync:success" ) . catch ( console . error ) ;
// console.log("File successfully synced", name);
2023-05-23 18:53:53 +00:00
} catch ( e : any ) {
2023-08-10 14:09:28 +00:00
this . eventHook . dispatchEvent ( "sync:error" , e . message ) . catch (
console . error ,
) ;
2023-05-23 18:53:53 +00:00
console . error ( "Sync error" , e ) ;
}
await this . saveSnapshot ( snapshot ) ;
2023-08-10 14:09:28 +00:00
await this . registerSyncStop ( false ) ;
2023-05-23 18:53:53 +00:00
}
async saveSnapshot ( snapshot : Map < string , SyncStatusItem > ) {
2023-10-03 12:16:33 +00:00
await this . ds . set ( syncSnapshotKey , Object . fromEntries ( snapshot ) ) ;
2023-05-23 18:53:53 +00:00
}
public async plugAwareConflictResolver (
name : string ,
snapshot : Map < string , SyncStatusItem > ,
primary : SpacePrimitives ,
secondary : SpacePrimitives ,
) : Promise < number > {
if ( ! name . startsWith ( "_plug/" ) ) {
const operations = await SpaceSync . primaryConflictResolver (
name ,
snapshot ,
primary ,
secondary ,
) ;
if ( operations > 0 ) {
// Something happened -> conflict copy generated, let's report it
await this . eventHook . dispatchEvent ( "sync:conflict" , name ) ;
}
return operations ;
}
console . log (
"[sync]" ,
"Conflict in plug" ,
name ,
"will pick the version from secondary and be done with it." ,
) ;
// Read file from secondary
2023-06-13 18:47:05 +00:00
const { data , meta } = await secondary . readFile (
2023-05-23 18:53:53 +00:00
name ,
) ;
// Write file to primary
const newMeta = await primary . writeFile (
name ,
data ,
false ,
2023-07-02 09:25:32 +00:00
meta ,
2023-05-23 18:53:53 +00:00
) ;
// Update snapshot
snapshot . set ( name , [
newMeta . lastModified ,
2023-06-13 18:47:05 +00:00
meta . lastModified ,
2023-05-23 18:53:53 +00:00
] ) ;
2023-06-13 18:47:05 +00:00
2023-05-23 18:53:53 +00:00
return 1 ;
}
}
2023-08-29 19:17:29 +00:00
/ * *
* A no - op sync service that doesn ' t do anything used when running in thin client mode
* /
export class NoSyncSyncService implements ISyncService {
constructor ( private space : Space ) {
}
isSyncing ( ) : Promise < boolean > {
return Promise . resolve ( false ) ;
}
hasInitialSyncCompleted ( ) : Promise < boolean > {
return Promise . resolve ( true ) ;
}
noOngoingSync ( _timeout : number ) : Promise < void > {
return Promise . resolve ( ) ;
}
scheduleFileSync ( _path : string ) : Promise < void > {
return Promise . resolve ( ) ;
}
scheduleSpaceSync ( ) : Promise < void > {
return Promise . resolve ( ) ;
}
start() {
setInterval ( ( ) = > {
// Trigger a page upload for change events
this . space . updatePageList ( ) . catch ( console . error ) ;
} , spaceSyncInterval ) ;
}
syncSpace ( ) : Promise < number > {
return Promise . resolve ( 0 ) ;
}
syncFile ( _name : string ) : Promise < void > {
return Promise . resolve ( ) ;
}
}