Skip to content

Commit f631261

Browse files
committed
Trying to close pending Completers. #18
1 parent fe20d33 commit f631261

File tree

5 files changed

+24
-20
lines changed

5 files changed

+24
-20
lines changed

example/example.dart

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import 'dart:async';
33
import 'package:simdart/simdart.dart';
44

55
void main() async {
6+
67
final SimDart sim = SimDart(listener: ConsoleEventListener());
78

89
sim.process(event: _eventA, name: 'A');

lib/src/event_phase.dart

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ enum EventPhase {
1111

1212
yielded,
1313

14-
interrupted,
15-
1614
finished;
1715

1816
/// Returns the string representation of the status.

lib/src/internal/event_action.dart

+6-9
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ class EventAction extends TimeAction implements SimContext {
6565
print('then $eventName ${sim.runState.name}');
6666
if (_eventCompleter != null && sim.runState==RunState.running) {
6767
//TODO method or throw?
68+
print('aqui 2?');
6869
SimDartHelper.error(
6970
sim: sim,
7071
error:
@@ -79,15 +80,10 @@ class EventAction extends TimeAction implements SimContext {
7980
executionHash: hashCode);
8081
SimDartHelper.scheduleNextAction(sim: sim);
8182
}).catchError((error) {
83+
print('ZZ $error');
8284
//TODO rever
83-
if(error is CompleterInterrupt) {
84-
sim.listener?.onEvent(
85-
name: eventName,
86-
time: sim.now,
87-
phase: EventPhase.interrupted,
88-
executionHash: hashCode);
89-
} else {
90-
print('ZZ');
85+
if(error is! CompleterInterrupt) {
86+
print('aqui 3?');
9187
SimDartHelper.error(sim: sim, error: error);
9288
}
9389
});
@@ -97,6 +93,7 @@ class EventAction extends TimeAction implements SimContext {
9793
Future<void> wait(int delay) async {
9894
if (_eventCompleter != null) {
9995
//TODO method or throw?
96+
print('aqui 1?');
10097
SimDartHelper.error(
10198
sim: sim,
10299
error: StateError("The event is already waiting. Did you forget to use 'await'?"));
@@ -178,7 +175,7 @@ class EventCompleter {
178175
time: event.sim.now,
179176
phase: EventPhase.resumed,
180177
executionHash: hashCode);
181-
_completer.complete();
178+
_completer.complete();
182179
event._eventCompleter = null;
183180
SimDartHelper.removeCompleter(sim: event.sim, completer: _completer);
184181
}

lib/src/simdart.dart

+13-6
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,14 @@ class SimDart implements SimDartInterface {
130130
_startTime = null;
131131
_scheduleNextAction();
132132
await _terminator.future;
133-
print('foi: $_error');
133+
134+
try {
135+
_disposeCompleteList();
136+
}catch(e){
137+
print(e);
138+
}
139+
140+
print('foi: ${_error.runtimeType}: $_error');
134141
if (_error != null) {
135142
print('ue? erro?');
136143
_runState = RunState.error;
@@ -156,7 +163,7 @@ class SimDart implements SimDartInterface {
156163
if (!completer.isCompleted) {
157164
print('vai CompleterInterrupt');
158165
// prevents subsequent methods from being executed after complete inside the async method.
159-
completer.completeError(CompleterInterrupt());
166+
completer.completeError(CompleterInterrupt());
160167
}
161168
}
162169
}
@@ -234,9 +241,9 @@ class SimDart implements SimDartInterface {
234241
}
235242

236243
void _scheduleNextAction() {
237-
print('_scheduleNextAction');
238-
_debugListener?.onScheduleNextAction();
239244
if (!_nextActionScheduled) {
245+
print('_scheduleNextAction');
246+
_debugListener?.onScheduleNextAction();
240247
_nextActionScheduled = true;
241248
if (executionPriority == 0 || _executionCount < executionPriority) {
242249
_executionCount++;
@@ -320,20 +327,20 @@ class SimDartHelper {
320327
}
321328

322329
static void error({required SimDart sim, required StateError error}) {
330+
print('error');
323331
if(sim._error==null) {
324332
sim._error = error;
325333
sim._runState = RunState.error;
326334
}
327-
sim._disposeCompleteList();
328335
}
329336

330337
static void setDebugListener({required SimDart sim, required DebugListener? listener}) {
331338
sim._debugListener=listener;
332339
}
333340

334341
static void stop({required SimDart sim}) {
342+
print('stopando');
335343
sim._debugListener?.onStop();
336344
sim._runState = RunState.stopped;
337-
sim._disposeCompleteList();
338345
}
339346
}

test/stop_test.dart

+4-3
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ void main() {
6060
'[0][a][called]',
6161
'[0][a][yielded]',
6262
'[1][b][called]',
63-
'[1][b][finished]',
64-
'[1][a][interrupted]'
63+
'[1][b][finished]'
6564
]);
6665
helper.testTracks([
6766
'scheduleNextAction',
@@ -75,7 +74,6 @@ void main() {
7574
'executeAction',
7675
'stop',
7776
'scheduleNextAction',
78-
'scheduleNextAction',
7977
'nextAction'
8078
]);
8179
expect(sim.counter('counter').value, 1);
@@ -128,6 +126,9 @@ void main() {
128126
'scheduleNextAction',
129127
'nextAction',
130128
'executeAction',
129+
'scheduleNextAction',
130+
'nextAction',
131+
'executeAction',
131132
'stop',
132133
'scheduleNextAction',
133134
'nextAction'

0 commit comments

Comments
 (0)