mirror of
https://github.com/immich-app/immich
synced 2025-06-06 21:18:27 +00:00

* feat: delta sync * fix: ignore iCloud assets * feat: dev logs * add full sync button * remove photo_manager dep for sync * misc logs and fix * add time taken to DLog * fix: build release iOS * ios sync go brrr * rename local sync service * update isar fork * rename to platform assets / albums * fix ci check --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex <alex.tran1502@gmail.com>
61 lines
1.6 KiB
Dart
61 lines
1.6 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:immich_mobile/providers/infrastructure/sync.provider.dart';
|
|
import 'package:immich_mobile/utils/isolate.dart';
|
|
import 'package:worker_manager/worker_manager.dart';
|
|
|
|
class BackgroundSyncManager {
|
|
Cancelable<void>? _syncTask;
|
|
Cancelable<void>? _deviceAlbumSyncTask;
|
|
|
|
BackgroundSyncManager();
|
|
|
|
Future<void> cancel() {
|
|
final futures = <Future>[];
|
|
|
|
if (_syncTask != null) {
|
|
futures.add(_syncTask!.future);
|
|
}
|
|
_syncTask?.cancel();
|
|
_syncTask = null;
|
|
|
|
return Future.wait(futures);
|
|
}
|
|
|
|
// No need to cancel the task, as it can also be run when the user logs out
|
|
Future<void> syncLocal({bool full = false}) {
|
|
if (_deviceAlbumSyncTask != null) {
|
|
return _deviceAlbumSyncTask!.future;
|
|
}
|
|
|
|
// We use a ternary operator to avoid [_deviceAlbumSyncTask] from being
|
|
// captured by the closure passed to [runInIsolateGentle].
|
|
_deviceAlbumSyncTask = full
|
|
? runInIsolateGentle(
|
|
computation: (ref) =>
|
|
ref.read(localSyncServiceProvider).sync(full: true),
|
|
)
|
|
: runInIsolateGentle(
|
|
computation: (ref) =>
|
|
ref.read(localSyncServiceProvider).sync(full: false),
|
|
);
|
|
|
|
return _deviceAlbumSyncTask!.whenComplete(() {
|
|
_deviceAlbumSyncTask = null;
|
|
});
|
|
}
|
|
|
|
Future<void> syncRemote() {
|
|
if (_syncTask != null) {
|
|
return _syncTask!.future;
|
|
}
|
|
|
|
_syncTask = runInIsolateGentle(
|
|
computation: (ref) => ref.read(syncStreamServiceProvider).sync(),
|
|
);
|
|
return _syncTask!.whenComplete(() {
|
|
_syncTask = null;
|
|
});
|
|
}
|
|
}
|