feat: fix hang that occurs when hot restarting (#718)

This commit is contained in:
Galen Warren 2024-07-17 08:11:29 -04:00 committed by GitHub
parent bf8bbde34c
commit b999b64502
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 14 additions and 0 deletions

View File

@ -4,6 +4,7 @@
* Remove generated status codes. * Remove generated status codes.
* Remove dependency on `package:archive`. * Remove dependency on `package:archive`.
* Move `codec.dart`. * Move `codec.dart`.
* Work around hang during Flutter hot restart by adding default case handler in _GrpcWebConversionSink.add.
## 3.2.4 ## 3.2.4

View File

@ -132,6 +132,16 @@ class _GrpcWebConversionSink implements ChunkedConversionSink<ByteBuffer> {
void add(ByteBuffer chunk) { void add(ByteBuffer chunk) {
_chunkOffset = 0; _chunkOffset = 0;
final chunkData = chunk.asUint8List(); final chunkData = chunk.asUint8List();
// in flutter web, when a hot-restart is requested, the code can get stuck
// in the following loop if there is an active streaming call. the
// switch statement is invoked but doesn't match any of the cases. this
// presumably has something to do how enums work across isolates.
// possibly related to https://github.com/dart-lang/sdk/issues/35626.
//
// in any case, adding a default handler to the switch statement
// causes this loop to end in that case, allowing the old isolate
// to shut down and the hot-restart to work properly.
processingLoop:
while (_chunkOffset < chunk.lengthInBytes) { while (_chunkOffset < chunk.lengthInBytes) {
switch (_state) { switch (_state) {
case _GrpcWebParseState.init: case _GrpcWebParseState.init:
@ -143,6 +153,9 @@ class _GrpcWebConversionSink implements ChunkedConversionSink<ByteBuffer> {
case _GrpcWebParseState.message: case _GrpcWebParseState.message:
_parseMessage(chunkData); _parseMessage(chunkData);
break; break;
default:
// only expected to be hit when hot-restarting, see above
break processingLoop;
} }
} }
_chunkOffset = 0; _chunkOffset = 0;