mirror of https://github.com/AMT-Cheif/drift.git
Isolates: Throw error when using in closed state
This commit is contained in:
parent
2205cf3b6e
commit
2b96100480
|
@ -126,7 +126,10 @@ class _IsolateQueryExecutor extends _BaseExecutor {
|
|||
|
||||
@override
|
||||
Future<void> close() {
|
||||
client._channel.close();
|
||||
if (!client._channel.isClosed) {
|
||||
client._channel.close();
|
||||
}
|
||||
|
||||
return Future.value();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,9 @@ class IsolateCommunication {
|
|||
/// either via a call to [close] from this isolate or from the other isolate.
|
||||
Future<void> get closed => _closeCompleter.future;
|
||||
|
||||
/// Whether this channel is closed at the moment.
|
||||
bool get isClosed => _closeCompleter.isCompleted;
|
||||
|
||||
/// A stream of requests coming from the other peer.
|
||||
Stream<Request> get incomingRequests => _incomingRequests.stream;
|
||||
|
||||
|
@ -58,7 +61,7 @@ class IsolateCommunication {
|
|||
|
||||
/// Closes the connection to the server.
|
||||
void close() {
|
||||
if (_closeCompleter.isCompleted) return;
|
||||
if (isClosed) return;
|
||||
|
||||
_send(_ConnectionClose());
|
||||
_closeLocally();
|
||||
|
@ -114,6 +117,11 @@ class IsolateCommunication {
|
|||
}
|
||||
|
||||
void _send(dynamic msg) {
|
||||
if (isClosed) {
|
||||
throw StateError('Tried to send $msg over isolate channel, but the '
|
||||
'connection was closed!');
|
||||
}
|
||||
|
||||
if (_debugLog) {
|
||||
print('[OUT]: $msg');
|
||||
}
|
||||
|
@ -127,6 +135,9 @@ class IsolateCommunication {
|
|||
|
||||
/// Sends an erroneous response for a [Request].
|
||||
void respondError(Request request, dynamic error, [StackTrace trace]) {
|
||||
// sending a message while closed with throw, so don't even try.
|
||||
if (isClosed) return;
|
||||
|
||||
_send(_ErrorResponse(request.id, error, trace.toString()));
|
||||
}
|
||||
|
||||
|
|
|
@ -152,6 +152,16 @@ void _runTests(
|
|||
|
||||
await db.close();
|
||||
});
|
||||
|
||||
test("can't run queries on a closed database", () async {
|
||||
final db = TodoDb.connect(isolateConnection);
|
||||
await db.customSelectQuery('SELECT 1;').getSingle();
|
||||
|
||||
await db.close();
|
||||
|
||||
await expectLater(
|
||||
() => db.customSelectQuery('SELECT 1;').getSingle(), throwsStateError);
|
||||
});
|
||||
}
|
||||
|
||||
DatabaseConnection _backgroundConnection() {
|
||||
|
|
Loading…
Reference in New Issue