import 'dart:isolate'; import 'package:flutter/material.dart'; import 'package:flutter_isolate/flutter_isolate.dart'; import '../local_storage/key_value_storage.dart'; import '../local_storage/sqflite_localpodcast.dart'; import '../type/podcastlocal.dart'; enum RefreshState { none, fetch, error, artwork } class RefreshItem { String title; RefreshState refreshState; bool artwork; RefreshItem(this.title, this.refreshState, {this.artwork = false}); } class RefreshWorker extends ChangeNotifier { FlutterIsolate refreshIsolate; ReceivePort receivePort; SendPort refreshSendPort; RefreshItem _currentRefreshItem = RefreshItem('', RefreshState.none); bool _complete = false; RefreshItem get currentRefreshItem => _currentRefreshItem; bool get complete => _complete; bool _created = false; Future _createIsolate() async { receivePort = ReceivePort(); refreshIsolate = await FlutterIsolate.spawn( refreshIsolateEntryPoint, receivePort.sendPort); } void _listen() { receivePort.distinct().listen((message) { if (message is List) { _currentRefreshItem = RefreshItem(message[0], RefreshState.values[message[1]]); notifyListeners(); } else if (message is String && message == "done") { _currentRefreshItem = RefreshItem('', RefreshState.none); _complete = true; notifyListeners(); refreshIsolate?.kill(); refreshIsolate = null; _created = false; } }); } Future start() async { if (!_created) { _complete = false; _createIsolate(); _listen(); _created = true; } } void dispose() { refreshIsolate?.kill(); refreshIsolate = null; super.dispose(); } } Future refreshIsolateEntryPoint(SendPort sendPort) async { KeyValueStorage refreshstorage = KeyValueStorage(refreshdateKey); await refreshstorage.saveInt(DateTime.now().millisecondsSinceEpoch); var dbHelper = DBHelper(); List podcastList = await dbHelper.getPodcastLocalAll(); for (var podcastLocal in podcastList) { sendPort.send([podcastLocal.title, 1]); int updateCount = await dbHelper.updatePodcastRss(podcastLocal); print('Refresh ' + podcastLocal.title + updateCount.toString()); } sendPort.send("done"); }