2018-03-25 11:09:17 -04:00
import utils from './utils.js' ;
2019-10-20 10:00:18 +02:00
import toastService from "./toast.js" ;
2017-11-28 17:52:47 -05:00
2018-07-24 21:43:15 +02:00
const $outstandingSyncsCount = $ ( "#outstanding-syncs-count" ) ;
2017-11-28 17:52:47 -05:00
2019-08-06 22:39:27 +02:00
const allSyncMessageHandlers = [ ] ;
const outsideSyncMessageHandlers = [ ] ;
2018-03-25 21:16:57 -04:00
const messageHandlers = [ ] ;
2018-03-25 13:08:58 -04:00
let ws ;
2019-12-02 22:27:06 +01:00
let lastAcceptedSyncId = window . glob . maxSyncIdAtLoad ;
let lastProcessedSyncId = window . glob . maxSyncIdAtLoad ;
2018-03-25 13:08:58 -04:00
let lastPingTs ;
2019-10-20 17:49:58 +02:00
let syncDataQueue = [ ] ;
2018-03-25 13:08:58 -04:00
2018-03-25 11:09:17 -04:00
function logError ( message ) {
console . log ( utils . now ( ) , message ) ; // needs to be separate from .trace()
console . trace ( ) ;
2017-12-19 23:22:21 -05:00
2018-03-25 11:09:17 -04:00
if ( ws && ws . readyState === 1 ) {
ws . send ( JSON . stringify ( {
type : 'log-error' ,
error : message
} ) ) ;
}
}
2017-12-17 13:46:18 -05:00
2018-03-25 21:16:57 -04:00
function subscribeToMessages ( messageHandler ) {
messageHandlers . push ( messageHandler ) ;
}
2019-08-06 22:39:27 +02:00
function subscribeToOutsideSyncMessages ( messageHandler ) {
outsideSyncMessageHandlers . push ( messageHandler ) ;
}
function subscribeToAllSyncMessages ( messageHandler ) {
allSyncMessageHandlers . push ( messageHandler ) ;
2018-08-01 09:26:02 +02:00
}
2019-10-20 17:49:58 +02:00
// used to serialize sync operations
let consumeQueuePromise = null ;
async function handleMessage ( event ) {
2018-03-25 11:09:17 -04:00
const message = JSON . parse ( event . data ) ;
2017-12-19 23:22:21 -05:00
2018-08-01 09:26:02 +02:00
for ( const messageHandler of messageHandlers ) {
messageHandler ( message ) ;
}
2018-03-25 11:09:17 -04:00
if ( message . type === 'sync' ) {
2019-10-28 19:45:36 +01:00
const syncRows = message . data ;
2019-02-10 16:36:25 +01:00
lastPingTs = Date . now ( ) ;
2018-01-06 22:56:54 -05:00
2019-10-20 17:49:58 +02:00
$outstandingSyncsCount . html ( message . outstandingSyncs ) ;
2019-10-28 19:45:36 +01:00
if ( syncRows . length > 0 ) {
console . debug ( utils . now ( ) , "Sync data: " , syncRows ) ;
2017-11-28 17:52:47 -05:00
2019-10-28 19:45:36 +01:00
syncDataQueue . push ( ... syncRows ) ;
2017-11-28 17:52:47 -05:00
2019-10-20 17:49:58 +02:00
// first wait for all the preceding consumers to finish
while ( consumeQueuePromise ) {
await consumeQueuePromise ;
}
2019-08-06 22:39:27 +02:00
2019-10-20 17:49:58 +02:00
// it's my turn so start it up
consumeQueuePromise = consumeSyncData ( ) ;
2017-11-28 17:52:47 -05:00
2019-10-20 17:49:58 +02:00
await consumeQueuePromise ;
2018-03-25 11:09:17 -04:00
2019-10-20 17:49:58 +02:00
// finish and set to null to signal somebody else can pick it up
consumeQueuePromise = null ;
}
2019-10-28 19:45:36 +01:00
checkSyncIdListeners ( ) ;
2018-03-25 11:09:17 -04:00
}
else if ( message . type === 'sync-hash-check-failed' ) {
2019-10-20 10:00:18 +02:00
toastService . showError ( "Sync check failed!" , 60000 ) ;
2017-11-28 17:52:47 -05:00
}
2018-03-25 11:09:17 -04:00
else if ( message . type === 'consistency-checks-failed' ) {
2019-10-20 10:00:18 +02:00
toastService . showError ( "Consistency checks failed! See logs for details." , 50 * 60000 ) ;
2018-03-25 11:09:17 -04:00
}
}
2019-10-20 17:49:58 +02:00
let syncIdReachedListeners = [ ] ;
function waitForSyncId ( desiredSyncId ) {
2019-12-02 22:27:06 +01:00
if ( desiredSyncId <= lastProcessedSyncId ) {
2019-10-20 17:49:58 +02:00
return Promise . resolve ( ) ;
}
return new Promise ( ( res , rej ) => {
syncIdReachedListeners . push ( {
desiredSyncId ,
2019-10-24 23:02:29 +02:00
resolvePromise : res ,
start : Date . now ( )
2019-10-20 17:49:58 +02:00
} )
} ) ;
}
2019-10-28 19:45:36 +01:00
function checkSyncIdListeners ( ) {
syncIdReachedListeners
2019-12-02 22:27:06 +01:00
. filter ( l => l . desiredSyncId <= lastProcessedSyncId )
2019-10-28 19:45:36 +01:00
. forEach ( l => l . resolvePromise ( ) ) ;
syncIdReachedListeners = syncIdReachedListeners
2019-12-02 22:27:06 +01:00
. filter ( l => l . desiredSyncId > lastProcessedSyncId ) ;
2019-10-28 19:45:36 +01:00
syncIdReachedListeners . filter ( l => Date . now ( ) > l . start - 60000 )
2019-12-02 22:27:06 +01:00
. forEach ( l => console . log ( ` Waiting for syncId ${ l . desiredSyncId } while current is ${ lastProcessedSyncId } for ${ Math . floor ( ( Date . now ( ) - l . start ) / 1000 ) } s ` ) ) ;
2019-10-28 19:45:36 +01:00
}
2019-10-20 17:49:58 +02:00
async function consumeSyncData ( ) {
2019-10-30 19:43:17 +01:00
if ( syncDataQueue . length > 0 ) {
const allSyncData = syncDataQueue ;
2019-10-20 17:49:58 +02:00
syncDataQueue = [ ] ;
const outsideSyncData = allSyncData . filter ( sync => sync . sourceId !== glob . sourceId ) ;
2019-12-02 22:27:06 +01:00
// we set lastAcceptedSyncId even before sync processing and send ping so that backend can start sending more updates
lastAcceptedSyncId = Math . max ( lastAcceptedSyncId , allSyncData [ allSyncData . length - 1 ] . id ) ;
sendPing ( ) ;
2019-10-20 17:49:58 +02:00
// the update process should be synchronous as a whole but individual handlers can run in parallel
await Promise . all ( [
... allSyncMessageHandlers . map ( syncHandler => syncHandler ( allSyncData ) ) ,
... outsideSyncMessageHandlers . map ( syncHandler => syncHandler ( outsideSyncData ) )
] ) ;
2019-12-02 22:27:06 +01:00
lastProcessedSyncId = Math . max ( lastProcessedSyncId , allSyncData [ allSyncData . length - 1 ] . id ) ;
2019-10-20 17:49:58 +02:00
}
}
2018-03-25 11:09:17 -04:00
function connectWebSocket ( ) {
2019-11-25 21:44:46 +01:00
const loc = window . location ;
const webSocketUri = ( loc . protocol === "https:" ? "wss:" : "ws:" )
+ "//" + loc . host + loc . pathname ;
2018-03-25 11:09:17 -04:00
// use wss for secure messaging
2019-11-25 21:44:46 +01:00
const ws = new WebSocket ( webSocketUri ) ;
ws . onopen = ( ) => console . debug ( utils . now ( ) , ` Connected to server ${ webSocketUri } with WebSocket ` ) ;
2018-03-25 21:16:57 -04:00
ws . onmessage = handleMessage ;
2019-07-06 12:03:51 +02:00
// we're not handling ws.onclose here because reconnection is done in sendPing()
2017-11-28 17:52:47 -05:00
2018-03-25 11:09:17 -04:00
return ws ;
}
2019-12-02 22:27:06 +01:00
async function sendPing ( ) {
if ( Date . now ( ) - lastPingTs > 30000 ) {
console . log ( utils . now ( ) , "Lost connection to server" ) ;
}
if ( ws . readyState === ws . OPEN ) {
ws . send ( JSON . stringify ( {
type : 'ping' ,
lastSyncId : lastAcceptedSyncId
} ) ) ;
}
else if ( ws . readyState === ws . CLOSED || ws . readyState === ws . CLOSING ) {
console . log ( utils . now ( ) , "WS closed or closing, trying to reconnect" ) ;
ws = connectWebSocket ( ) ;
}
}
2018-03-25 13:08:58 -04:00
setTimeout ( ( ) => {
ws = connectWebSocket ( ) ;
2019-12-02 22:27:06 +01:00
lastAcceptedSyncId = glob . maxSyncIdAtLoad ;
lastProcessedSyncId = glob . maxSyncIdAtLoad ;
2019-02-10 16:36:25 +01:00
lastPingTs = Date . now ( ) ;
2018-03-25 13:08:58 -04:00
2019-12-02 22:27:06 +01:00
setInterval ( sendPing , 1000 ) ;
2018-04-05 23:17:19 -04:00
} , 0 ) ;
2017-12-01 22:28:22 -05:00
2019-10-25 22:20:14 +02:00
subscribeToMessages ( message => {
if ( message . type === 'sync-pull-in-progress' ) {
toastService . showPersistent ( {
id : 'sync' ,
title : "Sync status" ,
message : "Sync update in progress" ,
icon : "refresh"
} ) ;
}
2019-10-28 19:45:36 +01:00
else if ( message . type === 'sync-pull-finished' ) {
2019-10-28 20:26:40 +01:00
// this gives user a chance to see the toast in case of fast sync finish
setTimeout ( ( ) => toastService . closePersistent ( 'sync' ) , 1000 ) ;
2019-10-25 22:20:14 +02:00
}
} ) ;
2018-03-25 11:09:17 -04:00
export default {
2018-03-25 21:16:57 -04:00
logError ,
2018-08-01 09:26:02 +02:00
subscribeToMessages ,
2019-08-06 22:39:27 +02:00
subscribeToAllSyncMessages ,
2019-10-20 17:49:58 +02:00
subscribeToOutsideSyncMessages ,
waitForSyncId
2018-03-25 11:09:17 -04:00
} ;