mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 20:39:51 +00:00
* Implement background sync for xmr using flutter_daemon * - initialize app config in background thread - initializeAppConfigs without loading the wallet. * - properly do awaited calls in methodChannel - prevent locking main thread during background sync * add back background sync debug page fix issues caused by xmr wallet being view only (and read only) * changes from review improve starting of bgsync task * update stopBackgroundSync, await listener functions, ensure that listener always start (call _start in constructor) * DO-NOT-MERGE: extre verbose monero logs * stop background service when app is being opened * improve monitoring of background sync * update flutter_daemon to ensure network constraint prevent throwing errors on isBackgroundSyncEnabled check network before syncing * Update lib/main.dart * revert Update main.dart [skip ci] * continously run network check * disable charging requirement, fix status reporting of background sync in UI * Refactor background sync logic, and add UI notifications for battery optimization. Updated flutter_daemon version modified build.gradle for signing config to allow testing in both release and debug modes. * verbose monero only when requested in code. Do not start background sync when battery optimization is on * fix background sync mode not properly reflecting state changes * drop unnecessary dependency --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
106 lines
2.4 KiB
Dart
106 lines
2.4 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/core/key_service.dart';
|
|
import 'package:cake_wallet/di.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cw_monero/monero_wallet.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
|
|
part 'monero_background_sync.g.dart';
|
|
|
|
class DevMoneroBackgroundSync = DevMoneroBackgroundSyncBase with _$DevMoneroBackgroundSync;
|
|
|
|
abstract class DevMoneroBackgroundSyncBase with Store {
|
|
DevMoneroBackgroundSyncBase(WalletBase wallet) : wallet = wallet;
|
|
|
|
final WalletBase wallet;
|
|
|
|
@observable
|
|
Timer? refreshTimer;
|
|
|
|
@observable
|
|
String? localBlockHeight;
|
|
|
|
@observable
|
|
String? nodeBlockHeight;
|
|
|
|
@observable
|
|
String? primaryAddress;
|
|
|
|
@observable
|
|
String? publicViewKey;
|
|
|
|
@observable
|
|
String? privateViewKey;
|
|
|
|
@observable
|
|
String? publicSpendKey;
|
|
|
|
@observable
|
|
String? privateSpendKey;
|
|
|
|
@observable
|
|
String? passphrase;
|
|
|
|
@observable
|
|
String? seed;
|
|
|
|
@observable
|
|
String? seedLegacy;
|
|
|
|
@observable
|
|
int tick = -1;
|
|
|
|
@observable
|
|
bool isBackgroundSyncing = false;
|
|
|
|
Future<void> _setValues() async {
|
|
final w = (wallet as MoneroWallet);
|
|
localBlockHeight = (await monero!.getCurrentHeight()).toString();
|
|
nodeBlockHeight = (await w.getNodeHeight()).toString();
|
|
final keys = w.keys;
|
|
primaryAddress = keys.primaryAddress;
|
|
publicViewKey = keys.publicViewKey;
|
|
privateViewKey = keys.privateViewKey;
|
|
publicSpendKey = keys.publicSpendKey;
|
|
privateSpendKey = keys.privateSpendKey;
|
|
passphrase = keys.passphrase;
|
|
seed = w.seed;
|
|
seedLegacy = w.seedLegacy("English");
|
|
tick = refreshTimer?.tick ?? -1;
|
|
isBackgroundSyncing = w.isBackgroundSyncRunning;
|
|
}
|
|
|
|
@action
|
|
Future<void> manualRescan() async {
|
|
final w = (wallet as MoneroWallet);
|
|
await wallet.rescan(height: await w.getNodeHeight() - 10000);
|
|
}
|
|
|
|
@action
|
|
void startRefreshTimer() {
|
|
refreshTimer = Timer.periodic(Duration(seconds: 1), (timer) async {
|
|
await _setValues();
|
|
});
|
|
}
|
|
|
|
@action
|
|
void stopRefreshTimer() {
|
|
refreshTimer?.cancel();
|
|
refreshTimer = null;
|
|
}
|
|
|
|
@action
|
|
void startBackgroundSync() {
|
|
final w = (wallet as MoneroWallet);
|
|
w.startBackgroundSync();
|
|
}
|
|
|
|
@action
|
|
Future<void> stopBackgroundSync() async {
|
|
final w = (wallet as MoneroWallet);
|
|
final keyService = getIt.get<KeyService>();
|
|
await w.stopBackgroundSync(await keyService.getWalletPassword(walletName: wallet.name));
|
|
}
|
|
}
|