Skip to content

Commit c0a1256

Browse files
committed
Added: runState to check if the simulation has not started, is
running, or has completed. #14
1 parent 721ce01 commit c0a1256

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## 0.3.0
22

33
* Access the list of created resources.
4+
* Added: `runState` to check if the simulation has not started, is running, or has completed.
45

56
## 0.2.0
67

lib/src/simdart.dart

+8-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ class SimDart implements SimDartInterface {
4545
: random = Random(seed),
4646
_now = now;
4747

48-
bool _hasRun = false;
48+
RunState _runState = RunState.notStarted;
49+
RunState get runState => _runState;
4950

5051
final Map<String, SimNum> _numProperties = {};
5152
final Map<String, SimCounter> _counterProperties = {};
@@ -113,11 +114,11 @@ class SimDart implements SimDartInterface {
113114
/// - [until]: The time at which execution should stop. Execution will include events
114115
/// scheduled at this time (inclusive). If null, execution will continue indefinitely.
115116
Future<SimResult> run({int? until}) async {
116-
if (_hasRun) {
117-
throw StateError('The simulation has already been run.');
117+
if (runState != RunState.notStarted) {
118+
throw StateError('Simulation has already started.');
118119
}
119120

120-
_hasRun = true;
121+
_runState = RunState.running;
121122
if (until != null && _now > until) {
122123
throw ArgumentError('`now` must be less than or equal to `until`.');
123124
}
@@ -139,6 +140,7 @@ class SimDart implements SimDartInterface {
139140
await _terminator?.future;
140141
_duration = _now - (_startTime ?? 0);
141142
_terminator = null;
143+
_runState = RunState.finished;
142144
return _buildResult();
143145
}
144146

@@ -277,6 +279,8 @@ class SimDart implements SimDartInterface {
277279
}
278280
}
279281

282+
enum RunState { notStarted, running, finished }
283+
280284
typedef StopCondition = bool Function(SimDart sim);
281285

282286
/// A helper class to access private members of the [SimDart] class.

0 commit comments

Comments
 (0)