Isolates: Throw error when using in closed state

This commit is contained in:
Simon Binder 2020-02-04 19:38:45 +01:00
parent 2205cf3b6e
commit 2b96100480
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
3 changed files with 26 additions and 2 deletions

View File

@ -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();
}
}

View File

@ -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()));
}

View File

@ -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() {