1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-29 19:13:59 +02:00
joplin/ReactNativeClient/lib/synchronizer.js

504 lines
16 KiB
JavaScript
Raw Normal View History

2017-06-24 19:06:28 +01:00
import { BaseItem } from 'lib/models/base-item.js';
import { Folder } from 'lib/models/folder.js';
import { Note } from 'lib/models/note.js';
2017-07-02 13:02:07 +01:00
import { Resource } from 'lib/models/resource.js';
2017-06-24 19:06:28 +01:00
import { BaseModel } from 'lib/base-model.js';
2017-06-15 23:12:00 +01:00
import { sprintf } from 'sprintf-js';
2017-06-24 19:06:28 +01:00
import { time } from 'lib/time-utils.js';
import { Logger } from 'lib/logger.js'
2017-07-14 19:06:01 +00:00
import { _ } from 'lib/locale.js';
2017-08-01 23:40:14 +02:00
import { shim } from 'lib/shim.js';
2017-06-23 22:32:24 +01:00
import moment from 'moment';
2017-05-18 19:58:01 +00:00
class Synchronizer {
constructor(db, api, appType) {
2017-06-24 18:40:03 +01:00
this.state_ = 'idle';
2017-05-19 19:12:09 +00:00
this.db_ = db;
this.api_ = api;
this.syncDirName_ = '.sync';
2017-07-02 13:02:07 +01:00
this.resourceDirName_ = '.resource';
2017-06-23 22:32:24 +01:00
this.logger_ = new Logger();
this.appType_ = appType;
this.cancelling_ = false;
2017-07-14 19:06:01 +00:00
this.onProgress_ = function(s) {};
this.progressReport_ = {};
2017-07-16 22:17:22 +01:00
this.dispatch = function(action) {};
2017-05-18 19:58:01 +00:00
}
2017-06-24 18:40:03 +01:00
state() {
return this.state_;
}
2017-05-18 19:58:01 +00:00
db() {
2017-05-19 19:12:09 +00:00
return this.db_;
2017-05-18 19:58:01 +00:00
}
api() {
2017-05-19 19:12:09 +00:00
return this.api_;
2017-05-18 19:58:01 +00:00
}
2017-06-23 22:32:24 +01:00
setLogger(l) {
this.logger_ = l;
}
logger() {
return this.logger_;
}
static reportToLines(report) {
2017-07-14 19:06:01 +00:00
let lines = [];
if (report.createLocal) lines.push(_('Created local items: %d.', report.createLocal));
if (report.updateLocal) lines.push(_('Updated local items: %d.', report.updateLocal));
if (report.createRemote) lines.push(_('Created remote items: %d.', report.createRemote));
if (report.updateRemote) lines.push(_('Updated remote items: %d.', report.updateRemote));
2017-07-14 19:06:01 +00:00
if (report.deleteLocal) lines.push(_('Deleted local items: %d.', report.deleteLocal));
if (report.deleteRemote) lines.push(_('Deleted remote items: %d.', report.deleteRemote));
2017-08-02 17:47:25 +00:00
if (!report.completedTime && report.state) lines.push(_('State: "%s".', report.state));
2017-08-21 20:32:43 +02:00
//if (report.errors && report.errors.length) lines.push(_('Last error: %s (stacktrace in log).', report.errors[report.errors.length-1].message));
if (report.cancelling && !report.completedTime) lines.push(_('Cancelling...'));
2017-07-16 22:17:22 +01:00
if (report.completedTime) lines.push(_('Completed: %s', time.unixMsToLocalDateTime(report.completedTime)));
2017-07-14 19:06:01 +00:00
return lines;
}
logSyncOperation(action, local = null, remote = null, message = null) {
2017-06-24 18:40:03 +01:00
let line = ['Sync'];
line.push(action);
2017-07-14 19:06:01 +00:00
if (message) line.push(message);
2017-06-24 18:40:03 +01:00
2017-07-14 18:02:45 +00:00
let type = local && local.type_ ? local.type_ : null;
if (!type) type = remote && remote.type_ ? remote.type_ : null;
if (type) line.push(BaseItem.modelTypeToClassName(type));
2017-06-24 18:40:03 +01:00
if (local) {
let s = [];
s.push(local.id);
if ('title' in local) s.push('"' + local.title + '"');
line.push('(Local ' + s.join(', ') + ')');
}
if (remote) {
let s = [];
s.push(remote.id ? remote.id : remote.path);
2017-06-24 18:40:03 +01:00
if ('title' in remote) s.push('"' + remote.title + '"');
line.push('(Remote ' + s.join(', ') + ')');
}
this.logger().debug(line.join(': '));
2017-07-14 19:06:01 +00:00
if (!this.progressReport_[action]) this.progressReport_[action] = 0;
this.progressReport_[action]++;
this.progressReport_.state = this.state();
this.onProgress_(this.progressReport_);
2017-07-16 22:17:22 +01:00
this.dispatch({ type: 'SYNC_REPORT_UPDATE', report: Object.assign({}, this.progressReport_) });
2017-06-24 18:40:03 +01:00
}
async logSyncSummary(report) {
2017-07-14 19:06:01 +00:00
this.logger().info('Operations completed: ');
2017-06-24 18:40:03 +01:00
for (let n in report) {
2017-06-30 23:53:22 +01:00
if (!report.hasOwnProperty(n)) continue;
2017-07-11 00:17:03 +01:00
if (n == 'errors') continue;
2017-07-18 23:14:20 +01:00
if (n == 'starting') continue;
if (n == 'finished') continue;
if (n == 'state') continue;
2017-07-23 15:11:44 +01:00
if (n == 'completedTime') continue;
2017-06-24 18:40:03 +01:00
this.logger().info(n + ': ' + (report[n] ? report[n] : '-'));
}
let folderCount = await Folder.count();
let noteCount = await Note.count();
2017-07-02 13:02:07 +01:00
let resourceCount = await Resource.count();
2017-06-24 18:40:03 +01:00
this.logger().info('Total folders: ' + folderCount);
this.logger().info('Total notes: ' + noteCount);
2017-07-02 13:02:07 +01:00
this.logger().info('Total resources: ' + resourceCount);
2017-07-14 19:06:01 +00:00
if (report.errors && report.errors.length) {
this.logger().warn('There was some errors:');
for (let i = 0; i < report.errors.length; i++) {
let e = report.errors[i];
2017-07-11 00:17:03 +01:00
this.logger().warn(e);
}
}
}
2017-07-02 11:34:07 +01:00
randomFailure(options, name) {
if (!options.randomFailures) return false;
if (this.randomFailureChoice_ == name) {
options.onMessage('Random failure: ' + name);
return true;
}
return false;
}
2017-10-14 19:03:23 +01:00
async cancel() {
2017-07-26 21:09:33 +01:00
if (this.cancelling_ || this.state() == 'idle') return;
this.logSyncOperation('cancelling', null, null, '');
this.cancelling_ = true;
2017-10-14 19:03:23 +01:00
return new Promise((resolve, reject) => {
const iid = setInterval(() => {
if (this.state() == 'idle') {
clearInterval(iid);
resolve();
}
}, 100);
});
}
cancelling() {
return this.cancelling_;
}
2017-06-30 17:54:01 +00:00
async start(options = null) {
if (!options) options = {};
2017-07-24 19:47:01 +00:00
if (this.state() != 'idle') {
2017-07-26 22:27:03 +01:00
let error = new Error(_('Synchronisation is already in progress. State: %s', this.state()));
2017-07-24 19:47:01 +00:00
error.code = 'alreadyStarted';
throw error;
return;
2017-07-30 21:51:18 +02:00
}
this.state_ = 'in_progress';
2017-07-24 19:47:01 +00:00
2017-07-14 19:06:01 +00:00
this.onProgress_ = options.onProgress ? options.onProgress : function(o) {};
this.progressReport_ = { errors: [] };
2017-06-30 17:54:01 +00:00
2017-07-18 21:03:07 +01:00
const lastContext = options.context ? options.context : {};
2017-07-18 19:57:49 +00:00
2017-07-24 18:58:11 +00:00
const syncTargetId = this.api().syncTargetId();
2017-07-02 11:34:07 +01:00
this.randomFailureChoice_ = Math.floor(Math.random() * 5);
this.cancelling_ = false;
2017-07-02 11:34:07 +01:00
2017-06-18 23:06:10 +01:00
// ------------------------------------------------------------------------
// First, find all the items that have been changed since the
// last sync and apply the changes to remote.
// ------------------------------------------------------------------------
2017-06-15 19:18:48 +01:00
2017-06-24 18:40:03 +01:00
let synchronizationId = time.unixMs().toString();
2017-07-20 21:15:28 +01:00
let outputContext = Object.assign({}, lastContext);
2017-06-24 18:40:03 +01:00
this.dispatch({ type: 'SYNC_STARTED' });
2017-07-26 22:27:03 +01:00
this.logSyncOperation('starting', null, null, 'Starting synchronisation to target ' + syncTargetId + '... [' + synchronizationId + ']');
2017-06-23 22:32:24 +01:00
2017-06-29 18:03:16 +00:00
try {
2017-07-02 13:02:07 +01:00
await this.api().mkdir(this.syncDirName_);
await this.api().mkdir(this.resourceDirName_);
2017-06-29 18:03:16 +00:00
let donePaths = [];
while (true) {
if (this.cancelling()) break;
let result = await BaseItem.itemsThatNeedSync(syncTargetId);
2017-06-29 18:03:16 +00:00
let locals = result.items;
for (let i = 0; i < locals.length; i++) {
if (this.cancelling()) break;
2017-06-29 18:03:16 +00:00
let local = locals[i];
let ItemClass = BaseItem.itemClass(local);
let path = BaseItem.systemPath(local);
// Safety check to avoid infinite loops:
if (donePaths.indexOf(path) > 0) throw new Error(sprintf('Processing a path that has already been done: %s. sync_time was not updated?', path));
let remote = await this.api().stat(path);
2017-07-02 16:46:03 +01:00
let content = await ItemClass.serialize(local);
2017-06-29 18:03:16 +00:00
let action = null;
let updateSyncTimeOnly = true;
2017-07-19 20:15:55 +01:00
let reason = '';
2017-06-29 18:03:16 +00:00
if (!remote) {
if (!local.sync_time) {
action = 'createRemote';
reason = 'remote does not exist, and local is new and has never been synced';
} else {
2017-07-02 13:02:07 +01:00
// Note or item was modified after having been deleted remotely
2017-07-03 20:50:45 +01:00
action = local.type_ == BaseModel.TYPE_NOTE ? 'noteConflict' : 'itemConflict';
2017-06-29 18:03:16 +00:00
reason = 'remote has been deleted, but local has changes';
}
2017-06-19 23:18:24 +01:00
} else {
2017-06-29 18:03:16 +00:00
if (remote.updated_time > local.sync_time) {
// Since, in this loop, we are only dealing with notes that require sync, if the
// remote has been modified after the sync time, it means both notes have been
// modified and so there's a conflict.
2017-07-03 20:50:45 +01:00
action = local.type_ == BaseModel.TYPE_NOTE ? 'noteConflict' : 'itemConflict';
2017-06-29 18:03:16 +00:00
reason = 'both remote and local have changes';
} else {
action = 'updateRemote';
reason = 'local has changes';
}
2017-06-19 23:18:24 +01:00
}
2017-06-13 23:39:45 +01:00
2017-06-29 18:03:16 +00:00
this.logSyncOperation(action, local, remote, reason);
2017-06-19 20:18:22 +01:00
2017-07-03 20:50:45 +01:00
if (local.type_ == BaseModel.TYPE_RESOURCE && (action == 'createRemote' || (action == 'itemConflict' && remote))) {
2017-07-02 13:02:07 +01:00
let remoteContentPath = this.resourceDirName_ + '/' + local.id;
2017-08-01 23:40:14 +02:00
// TODO: handle node and mobile in the same way
if (shim.isNode()) {
let resourceContent = '';
try {
resourceContent = await Resource.content(local);
} catch (error) {
error.message = 'Cannot read resource content: ' + local.id + ': ' + error.message;
this.logger().error(error);
this.progressReport_.errors.push(error);
}
await this.api().put(remoteContentPath, resourceContent);
} else {
const localResourceContentPath = Resource.fullPath(local);
await this.api().put(remoteContentPath, null, { path: localResourceContentPath, source: 'file' });
2017-07-19 20:15:55 +01:00
}
2017-07-02 13:02:07 +01:00
}
2017-06-29 18:03:16 +00:00
if (action == 'createRemote' || action == 'updateRemote') {
2017-06-20 19:18:19 +00:00
2017-06-29 18:03:16 +00:00
// Make the operation atomic by doing the work on a copy of the file
// and then copying it back to the original location.
2017-07-12 23:32:08 +01:00
// let tempPath = this.syncDirName_ + '/' + path + '_' + time.unixMs();
//
// Atomic operation is disabled for now because it's not possible
// to do an atomic move with OneDrive (see file-api-driver-onedrive.js)
2017-06-29 18:03:16 +00:00
2017-07-12 23:32:08 +01:00
// await this.api().put(tempPath, content);
// await this.api().setTimestamp(tempPath, local.updated_time);
// await this.api().move(tempPath, path);
await this.api().put(path, content);
2017-07-02 11:34:07 +01:00
if (this.randomFailure(options, 0)) return;
await this.api().setTimestamp(path, local.updated_time);
if (this.randomFailure(options, 1)) return;
await ItemClass.saveSyncTime(syncTargetId, local, time.unixMs());
2017-06-20 19:18:19 +00:00
2017-07-02 13:02:07 +01:00
} else if (action == 'itemConflict') {
2017-06-20 19:18:19 +00:00
2017-06-29 18:03:16 +00:00
if (remote) {
let remoteContent = await this.api().get(path);
2017-07-02 16:46:03 +01:00
local = await BaseItem.unserialize(remoteContent);
2017-06-20 19:25:01 +00:00
const syncTimeQueries = BaseItem.updateSyncTimeQueries(syncTargetId, local, time.unixMs());
await ItemClass.save(local, { autoTimestamp: false, nextQueries: syncTimeQueries });
2017-06-29 18:03:16 +00:00
} else {
await ItemClass.delete(local.id);
}
} else if (action == 'noteConflict') {
2017-06-20 19:18:19 +00:00
2017-06-29 18:03:16 +00:00
// - Create a duplicate of local note into Conflicts folder (to preserve the user's changes)
// - Overwrite local note with remote note
let conflictedNote = Object.assign({}, local);
delete conflictedNote.id;
conflictedNote.is_conflict = 1;
await Note.save(conflictedNote, { autoTimestamp: false });
2017-06-20 19:18:19 +00:00
if (this.randomFailure(options, 2)) return;
2017-07-02 11:34:07 +01:00
2017-06-29 18:03:16 +00:00
if (remote) {
let remoteContent = await this.api().get(path);
2017-07-02 16:46:03 +01:00
local = await BaseItem.unserialize(remoteContent);
2017-06-19 18:58:49 +00:00
const syncTimeQueries = BaseItem.updateSyncTimeQueries(syncTargetId, local, time.unixMs());
await ItemClass.save(local, { autoTimestamp: false, nextQueries: syncTimeQueries });
2017-07-02 21:40:50 +01:00
} else {
await ItemClass.delete(local.id);
2017-06-29 18:03:16 +00:00
}
2017-06-19 18:58:49 +00:00
2017-06-20 19:25:01 +00:00
}
2017-06-18 00:49:52 +01:00
2017-06-29 18:03:16 +00:00
donePaths.push(path);
}
2017-06-24 18:40:03 +01:00
2017-06-29 18:03:16 +00:00
if (!result.hasMore) break;
2017-06-18 23:06:10 +01:00
}
2017-06-03 17:20:17 +01:00
2017-06-29 18:03:16 +00:00
// ------------------------------------------------------------------------
// Delete the remote items that have been deleted locally.
// ------------------------------------------------------------------------
2017-06-15 23:12:00 +01:00
2017-07-19 20:15:55 +01:00
let deletedItems = await BaseItem.deletedItems(syncTargetId);
2017-06-29 18:03:16 +00:00
for (let i = 0; i < deletedItems.length; i++) {
if (this.cancelling()) break;
2017-06-29 18:03:16 +00:00
let item = deletedItems[i];
let path = BaseItem.systemPath(item.item_id)
this.logSyncOperation('deleteRemote', null, { id: item.item_id }, 'local has been deleted');
await this.api().delete(path);
if (this.randomFailure(options, 3)) return;
2017-07-19 20:15:55 +01:00
await BaseItem.remoteDeletedItem(syncTargetId, item.item_id);
2017-06-29 18:03:16 +00:00
}
2017-06-24 18:40:03 +01:00
2017-06-29 18:03:16 +00:00
// ------------------------------------------------------------------------
// Loop through all the remote items, find those that
// have been updated, and apply the changes to local.
// ------------------------------------------------------------------------
// At this point all the local items that have changed have been pushed to remote
// or handled as conflicts, so no conflict is possible after this.
2017-07-18 21:03:07 +01:00
let context = null;
let newDeltaContext = null;
let localFoldersToDelete = [];
if (lastContext.delta) context = lastContext.delta;
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
while (true) {
if (this.cancelling()) break;
2017-07-18 19:57:49 +00:00
2017-07-18 23:14:20 +01:00
let listResult = await this.api().delta('', {
context: context,
2017-10-26 23:03:21 +01:00
// allItemIdsHandler() provides a way for drivers that don't have a delta API to
// still provide delta functionality by comparing the items they have to the items
// the client has. Very inefficient but that's the only possible workaround.
// It's a function so that it is only called if the driver needs these IDs. For
// drivers with a delta functionality it's a noop.
2017-10-26 23:56:32 +02:00
allItemIdsHandler: async () => { return BaseItem.syncedItemIds(syncTargetId); }
2017-07-18 23:14:20 +01:00
});
2017-07-23 15:11:44 +01:00
2017-07-18 21:03:07 +01:00
let remotes = listResult.items;
for (let i = 0; i < remotes.length; i++) {
if (this.cancelling()) break;
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
let remote = remotes[i];
if (!BaseItem.isSystemPath(remote.path)) continue; // The delta API might return things like the .sync, .resource or the root folder
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
let path = remote.path;
let action = null;
let reason = '';
let local = await BaseItem.loadItemByPath(path);
if (!local) {
if (!remote.isDeleted) {
action = 'createLocal';
reason = 'remote exists but local does not';
}
} else {
if (remote.isDeleted) {
action = 'deleteLocal';
reason = 'remote has been deleted';
} else {
if (remote.updated_time > local.updated_time) {
action = 'updateLocal';
reason = 'remote is more recent than local';
}
}
}
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
if (!action) continue;
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
this.logSyncOperation(action, local, remote, reason);
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
if (action == 'createLocal' || action == 'updateLocal') {
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
let content = await this.api().get(path);
if (content === null) {
this.logger().warn('Remote has been deleted between now and the list() call? In that case it will be handled during the next sync: ' + path);
continue;
}
content = await BaseItem.unserialize(content);
let ItemClass = BaseItem.itemClass(content);
let newContent = Object.assign({}, content);
let options = {
autoTimestamp: false,
nextQueries: BaseItem.updateSyncTimeQueries(syncTargetId, newContent, time.unixMs()),
};
if (action == 'createLocal') options.isNew = true;
if (newContent.type_ == BaseModel.TYPE_RESOURCE && action == 'createLocal') {
let localResourceContentPath = Resource.fullPath(newContent);
let remoteResourceContentPath = this.resourceDirName_ + '/' + newContent.id;
await this.api().get(remoteResourceContentPath, { path: localResourceContentPath, target: 'file' });
}
2017-10-22 18:12:16 +01:00
if (!newContent.user_updated_time) newContent.user_updated_time = newContent.updated_time;
if (!newContent.user_created_time) newContent.user_created_time = newContent.created_time;
2017-07-18 21:03:07 +01:00
await ItemClass.save(newContent, options);
} else if (action == 'deleteLocal') {
if (local.type_ == BaseModel.TYPE_FOLDER) {
localFoldersToDelete.push(local);
continue;
}
let ItemClass = BaseItem.itemClass(local.type_);
await ItemClass.delete(local.id, { trackDeleted: false });
}
}
if (!listResult.hasMore) {
newDeltaContext = listResult.context;
break;
}
context = listResult.context;
}
outputContext.delta = newDeltaContext ? newDeltaContext : lastContext.delta;
2017-07-18 19:57:49 +00:00
2017-07-18 23:14:20 +01:00
// ------------------------------------------------------------------------
// Delete the folders that have been collected in the loop above.
// Folders are always deleted last, and only if they are empty.
// If they are not empty it's considered a conflict since whatever deleted
// them should have deleted their content too. In that case, all its notes
// are marked as "is_conflict".
// ------------------------------------------------------------------------
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
if (!this.cancelling()) {
for (let i = 0; i < localFoldersToDelete.length; i++) {
const item = localFoldersToDelete[i];
const noteIds = await Folder.noteIds(item.id);
if (noteIds.length) { // CONFLICT
await Folder.markNotesAsConflict(item.id);
}
await Folder.delete(item.id, { deleteChildren: false });
}
}
2017-07-18 19:57:49 +00:00
2017-07-18 21:03:07 +01:00
if (!this.cancelling()) {
await BaseItem.deleteOrphanSyncItems();
}
2017-06-29 18:03:16 +00:00
} catch (error) {
this.logger().error(error);
2017-07-14 19:06:01 +00:00
this.progressReport_.errors.push(error);
2017-06-20 19:18:19 +00:00
}
2017-05-18 19:58:01 +00:00
if (this.cancelling()) {
2017-07-26 22:27:03 +01:00
this.logger().info('Synchronisation was cancelled.');
this.cancelling_ = false;
}
2017-07-16 22:17:22 +01:00
this.progressReport_.completedTime = time.unixMs();
2017-07-26 22:27:03 +01:00
this.logSyncOperation('finished', null, null, 'Synchronisation finished [' + synchronizationId + ']');
2017-07-14 19:06:01 +00:00
await this.logSyncSummary(this.progressReport_);
this.onProgress_ = function(s) {};
this.progressReport_ = {};
2017-07-16 22:17:22 +01:00
this.dispatch({ type: 'SYNC_COMPLETED' });
2017-07-30 22:22:57 +02:00
2017-07-30 21:51:18 +02:00
this.state_ = 'idle';
2017-07-18 19:57:49 +00:00
return outputContext;
2017-05-18 19:58:01 +00:00
}
}
export { Synchronizer };