-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathChangeLog
More file actions
1063 lines (632 loc) · 28.2 KB
/
ChangeLog
File metadata and controls
1063 lines (632 loc) · 28.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2025-11-10 ------ omnetpp-6.3.0 released ------
2025-09-24 Andras Varga
* Event banners: added event info and fingerprint (if being computed).
2025-08-20 Andras Varga
* Fix: The "Refusing to run abstract configuration" error did not
cause nonzero exit code.
2025-07-14 ------ omnetpp-6.2.0 released ------
2025-07-04 Andras Varga
* Fix: Refuse running an abstract configuration.
2025-06-05 ------ omnetpp-6.2.0pre1 released ------
2025-02-19 Levente Meszaros
* Added Cmdenv::setMatchEventCondition(), a non-public function that
may be used to pause execution at programmatically selected events.
The user is expected to set a function pointer that checks for specific
events and set a breakpoint on the handleMatchingEvent function. This is
much faster than using the conditional breakpoint of the debugger,
because that would require a context switch at each event.
2024-11-27 Andras Varga
* Turn off logging during cleanup (network deletion) by default.
2024-11-21 Andras Varga
* Improved "run info" line printed when running in non-verbose mode (-s option):
added run ID, and "#" in front of run number.
2024-11-23 Andras Varga
* Added boolean options for finer-grained control of when to log and when not:
cmdenv-log-initialization, cmdenv-log-simulation, cmdenv-log-finalization,
cmdenv-log-cleanup.
2024-11-22 Andras Varga
* Follow change: implement `-S` option that suppresses all stdout output.
2024-11-21 Andras Varga
* Added `cmdenv-progress-updates` option. Disables printing periodic progress
updates in express mode; this was not possible before.
2024-10-08 ------ omnetpp-6.1.0 released ------
2024-09-10 Andras Varga
* Fix #791 by removing unused variables.
2024-09-06 Andras Varga
* Suppress logging (EV<<) output during network teardown in express mode.
2024-02-01 ------ omnetpp-6.0.3 released ------
2023-10-06 ------ omnetpp-6.0.2 released ------
2022-09-01 ------ omnetpp-6.0.1 released ------
2022-05-18 Andras Varga
* Fix #705: Configuration option "cmdenv-config-name" is ignored
2022-05-18 Attila Torok
* build: Disable implicit make rules by setting .SUFFIXES to empty
2022-04-11 ------ omnetpp-6.0 released ------
2022-04-06 Andras Varga
* Working around compiler bug on macOS.
2021-12-17 Andras Varga
* Wording of an error message refined
2021-06-09 Attila Torok
* Add cEnvir::pausePoint() and stubs
2021-08-05 Attila Torok
* Cmdenv::componentInitBegin(): call base class method, as it is no longer empty
2021-05-13 Andras Varga
* Cosmetics on '// namespace' comments
2021-05-12 Attila Torok
* Added cmdenv-fake-gui-seed config option
2021-03-21 Andras Varga
* Refactoring: factor out some repeated code.
2020-11-09 Andras Varga
* Fake GUI: change the way it is configured. The set of currently
supported options: cmdenv-fake-gui-before-event-probability,
cmdenv-fake-gui-after-event-probability, cmdenv-fake-gui-on-hold-probability,
cmdenv-fake-gui-on-hold-numsteps, cmdenv-fake-gui-on-simtime-probability,
cmdenv-fake-gui-on-simtime-numsteps
2020-11-13 Attila Torok
* Modernizing: Use in-class member initializers wherever possible;
use "=default" syntax for copy constructors where appropriate.
Tool: clang-tidy plus manual editing where needed.
2019-07-24 Andras Varga
* Print a warning that Fake GUI is an experimental feature.
2019-07-11 Andras Varga
* Added cmdenv-fake-gui=true/false option. Fake GUI means that
refreshDisplay() is called periodically during simulation, in order to mimic
the behavior of a graphical user interface like Qtenv. It is useful for
testing simulation models with visualization using Cmdenv, e.g. in smoke or
fingerprint tests.
2019-07-11 Andras Varga
* Micro-optimization: Spare repeated getSimulation() calls in the event loop
2019-07-11 Andras Varga
* Cosmetics: Changed config option constants to match option names (added
"CMDENV_" to them)
2019-07-02 Attila Torok
* Implemented cEnvir::getConnectionLine() as dummy
2019-04-04 Rudolf Hornig
* More Makefile refinements
2019-03-19 Andras Varga
* Nicer error message about missing network= option
2019-01-30 Andras Varga
* Follow EnvirBase changes: startRun() renamed, endRun() eliminated.
2019-01-16 Rudolf Hornig
* Makefile refinements
2020-01-06 ------ omnetpp-5.6 released ------
2019-05-15 ------ omnetpp-5.5 released ------
2018-06-25 ------ omnetpp-5.4.1 released ------
2018-06-11 ------ omnetpp-5.4 released ------
2018-04-11 ------ omnetpp-5.3 released ------
2018-01-26 Andras Varga
* Follow recent histogram API changes
2017-12-15 Attila Torok
* Follow cEnvir change: Add dummy implementation for getZoomLevel()
2017-01-16 Andras Varga
* Replace gettimeofday() occurrences with opp_get_monotonic_clock_usecs(),
and struct timeval with plain int64_t.
2017-12-08 ------ omnetpp-5.2.1 released ------
2017-10-16 Attila Torok
* Fix: Prevent a division by zero causing a buffer overflow.
If the simtimeLimit was set to zero (--sim-time-limit=0s), 'simtimeRatio'
became NaN as a result of the division by zero. NaN was cast to int,
yielding a very large negative number (-2147483648). The final effect
was that we printed 47 bytes into a 32 byte long buffer.
2017-09-18 ------ omnetpp-5.2 released ------
2017-04-06 Andras Varga
* Modernizing: use C++11's range-based for loops where applicable, using
clang-tidy's modernize-loop-convert.
* Modernizing: replace INT64_PRINTF_FORMAT and LL with C++11's PRId64.
Note: PRId64 includes the "d" that was not part of INT64_PRINTF_FORMAT
alias LL.
2017-05-25 Rudolf Hornig
* Updated makefiles for speeding up the build:
- generated files are created only once, even when using parallel build
- binaries are copied to their final destination using proper makefile
targets
2017-05-12 Rudolf Hornig
* Added (% total) to the event banner. The event banner now display
progress both in terms of % of the run and % of the total batch.
The two are different if several runs are executed in the same process.
2017-05-08 ------ omnetpp-5.1.1 released ------
2017-03-31 ------ omnetpp-5.1 released ------
2017-02-06 ------ omnetpp-5.1pre3 released ------
2016-12-23 ------ omnetpp-5.1pre2 released ------
2016-12-19 Andras Varga
* Completion percentage computation updated: take real-time-limit into
account.
2016-11-30 Rudolf Hornig
* build: Makefile refactored. Added clang-c2 support and optimized
the build process.
* build: removed Makefile.vc, as Visual C++ builds are now handled
by the standard Makefiles.
2016-11-21 Andras Varga
* Follow change: sim-time-limit=0s and cpu-time-limit=0s now take effect
2016-11-18 Andras Varga
* Added the cmdenv-stop-batch-on-error=<bool> option. It defaults
to true.
* cmdenv-interactive can now be specified on per-run basis.
* Refined printing of run statistics at the end. Example output:
'Run statistics: total 42, successful 30, errors 1, skipped 11'
2016-11-18 Andras Varga
* Follow cEnvir API change: added appendToImagePath(), loadImage(),
getSubmodulePosition() as no-ops.
2016-11-10 Andras Varga
* Standardized error messages: Start with uppercase letter, use
'apostrophe quoting' instead of `mixed quoting', etc.
2016-10-27 Andras Varga
* Follow cEnvir API change regarding getImageSize()/getTextExtent()
2016-10-19 Andras Varga
* Follow cEnvir API change regarding askyesno(), putmsg(), alert() etc.
* Standardised printing of error messages (err()/warn())
2016-10-05 Andras Varga
* Internals: use C++-style I/O for all logging
2016-10-03 Andras Varga
* Output: Implemented the -s (silent, i.e. non-verbose) command-line
option.
2016-09-29 Andras Varga
* Output: cmdenv-output-file option can now be specificied per run,
and it defaults to a file name similar to result files (in the results/
directory etc, but with the .out extension.) Since saving the output
can no longer be disabled by omitting the cmdenv-output-file setting,
it can now be controlled with the new cmdenv-redirect-output=<bool>.
2016-08-08 Andras Varga
* Follow cEnvir API change: added getAnimationTime(), getAnimationSpeed(),
getRemainingAnimationHoldTime()) as no-ops.
2016-09-25 Andras Varga
* Run filtering: The -r option and cmdenv-runs-to-execute= now also
accept a run filter expression as an altenative to a list of run
numbers and run number ranges. Use -q to query the list of matching
runs.
Example: -c Aloha -r '$numHosts>20 and $numHosts<=100' -q runconfig
2016-11-30 Rudolf Hornig
* The updated build system now uses the ./configure file only to detect
certain flags and libraries. Most of the build logic is handled by the
Makefile.inc file itslef. This allows you to enable/disable optional
components (i.e. Tkenv,Qtenv,OSG and osgEarth support) without even
re-running the ./configure file.
2016-08-31 Andras Varga
* Print summary at the end when doing multiple runs:
"Done %d simulation runs, %d successful, %d errors"
2016-07-21 Attila Torok
* Follow cEnvir API change: added getImageSize(), getTextExtent() as no-ops
2016-06-23 Rudolf Hornig
* The makefile now uses compiler-generated dependency files.
2016-04-13 ------ omnetpp-5.0 released ------
2016-03-31 Levente Meszaros
* Refined markup in config option descriptions.
2016-03-23 Zoltan Bojthe
* Added markup to config option descriptions.
2016-03-10 ------ omnetpp-5.0rc released ------
2016-03-10 Levente Meszaros
* cmdenv-log-format option renamed to cmdenv-log-prefix.
2016-03-09 Rudolf Hornig
* Change in event bannner format (display "T=<time>" with lowercase t).
2016-02-22 Levente Meszaros & Andras Varga
* With the recent simulation kernel changes, printEventBanner() needs to be
called inside simulationEvent() so that it prints the correct (updated)
simulation time and event number.
2016-02-15 Levente Meszaros
* Removed the cmdenv-global-log-level configuration option. It was
confusing due to being redundant with the per-component configuration
option. The equivalent is the **.cmdenv-log-level configuration option, it
should be used instead.
2016-02-08 Levente Meszaros
* Fixed isExpressMode() to actually return true in express mode.
* Changed Cmdenv::log() to write to stdout whenever its called. Added a
check for blank log prefix for performance reasons.
* Removed the per-component cmdenv-ev-output configuration option. It's
superseded by per-component cmdenv-log-level configuration option.
* Removed the cmdenv-module-messages configuration option. It's superseded
by **.cmdenv-log-level = OFF configuration option.
* Removed the cmdenv-message-trace configuration option. It had very
limited usefulness, and it was somewhat overlapping with eventlog.
2016-02-05 Andras Varga
* Moved per-component log level from sim to cmdenv.
2015-12-07 ------ omnetpp-5.0b3 released ------
2015-10-16 Andras Varga
* omnetpp namespace made permanent (cannot be turned off):
- removed configure option and preprocessor symbol USE_NAMESPACE
- removed related macros: NAMESPACE_BEGIN, NAMESPACE_END,
USING_NAMESPACE, OPP, OPP_STR, OPP_PREFIX etc.
2015-07-20 ------ omnetpp-5.0b2 released ------
2015-06-16 Andras Varga
* Cleanup: prefer ++it to it++ (less copying)
2015-06-08 Andras Varga
* Cleanup: longer header guards
2015-06-08 Andras Varga
* Cleanup: code formatting
2015-05-15 Andras Varga
* Cleanup: use per-folder nested namespaces: omnetpp::envir, omnetpp::tkenv,
omnetpp::layout, omnetpp::common, omnetpp::eventlog, etc.
2015-05-22 Andras Varga
* Modernizing: added the 'override' keyword (C++11) to overridden methods;
it becomes blank when using with an older compiler.
2015-05-21 Rudolf Hornig
* Modernizing: replaced NULLs by 'nullptr' (C++11); it is defined as 0
when using an older compiler.
2015-05-11 Andras Varga
* Cleanup: data members renamed to camelCase
2015-04-20 Andras Varga
* Cleanup: use C++ names of C headers (e.g. <cstdio> instead of <stdio.h>)
2015-04-14 Andras Varga
* Occurrences of the "simulation" macro replaced by getSimulation() calls
2015-04-12 Andras Varga
* Cleanup: copyright years updated
2015-04-08 Andras Varga
* Modernizing:
- Use a fixed include path (-Iinclude -Isrc) for all source folders
under src/, and qualify cross-folder #includes with the folder
name (e.g. change #include "stringutil.h" to #include "common/stringutil.h").
This increases readbility and reduces the chance of including a wrong
header.
- In source files, sort #include statements by folder.
2015-03-04 ------ omnetpp-5.0b1 released ------
2013-09-26 Andras Varga
* Follow logging API changes (sputn() replaced by log() function); see
see related ChangeLog entry in envir/
* New configuration options, to control the format of the log prefix
(with % tags, e.g. %l stands for log level), and the detail level of
logging (INFO, DEBUG, TRACE, etc):
- cmdenv-log-format=<string>, default: "[%l]\t"
- cmdenv-log-level=<string>, default: "DEBUG"
2013-01-28 Andras Varga
* Follow through with the introduction of cEvent; see related ChangeLog
entry in include/.
2013-01-28 Andras Varga
* Fire simulation lifecycle events; see related ChangeLog entry
in include/.
2014-11-27 ------ omnetpp-4.6 released ------
2014-06-30 ------ omnetpp-4.5 released ------
2014-02-13 ------ omnetpp-4.4.1 released -----
2013-12-20 ------ omnetpp-4.4 released ------
2013-11-14 Rudolf Hornig
* Fixes for compiling with clang
2013-09-12 ------ omnetpp-4.3.1 released ------
2013-04-02 ------ omnetpp-4.3 released ------
2013-02-08 ------ omnetpp-4.3rc1 released ------
2012-03-13 ------ omnetpp-4.2.2 released ------
2012-01-17 ------ omnetpp-4.2.1 released ------
2011-10-28 ------ omnetpp-4.2 released ------
2011-09-14 Andras Varga
* fix #219: initialization messages were printed even in express mode
2011-09-14 Andras Varga
* fix #328: printing of "Initializing <module>, stage <i>" messages
now obeys the same flags as printing the event banners
(cmdenv-event-banners and **.cmdenv-ev-output)
2011-09-11 ------ omnetpp-4.2rc1 released ------
2011-05-05 ------ omnetpp-4.2b2 released ------
2011-02-23 ------ omnetpp-4.2b1 released ------
2010-06-11 ------ omnetpp-4.1 released ------
2010-05-31 ------ omnetpp-4.1rc2 released ------
2010-04-20 ------ omnetpp-4.1b4 released ------
2010-04-12 Rudolf Hornig, Andras Varga
* improvement: in express mode, do not print log messages during
initialization
2010-03-14 ------ omnetpp-4.1b3 released ------
2009-09-10 Andras Varga
* fix: cmdenv.cc: opt_autoflush was used before getting initialized
[from Thomas Dreibholz]
2009-07-07 Andras Varga
* fix: there was no error message if a nonexistent configuration name
was given via -c or cmdenv-config-name.
2009-03-12 ------ omnetpp-4.0 released ------
2009-02-27 ------ omnetpp-4.0rc2 released ------
2008-12-14 Andras Varga
* added -a option: lists all configurations and the number of runs
in them
2008-12-12 ------ omnetpp-4.0rc1 released ------
2008-12-10 Andras Varga
* express mode status updates are now always flushed (no need to set
cmdenv-autoflush)
* cmdenv-status-frequency is now interpreted in seconds (default
is every 2 seconds)
* express mode: when simulation stops (on Ctrl+C, exception, normally,
etc), Cmdenv prints a final status update
2008-11-26 Andras Varga
* library renamed to oppcmdenv
2008-06-19 Andras Varga
* refined signal handling: only turn on special signal handling while
the simulation is processing events. During lengthy initializations
etc, one can still abort the program via Ctrl-C. SIGTERM and SIGINT
are handled. [suggested by Bradley Settlemyer]
2008-02-23 Andras Varga
Summary of changes for omnetpp-4.0 (2006..2008):
* inifile syntax change: [Cmdenv] config entries became cmdenv-... ones
* cmdenv-express-mode= now defaults to true
* new inifile entry: cmdenv-interactive=. When false, Cmdenv will
never read stdin, which is better suited for batch execution.
* -c option and cmdenv-config-name= inifile entry for specifying the
configuration name to run; specific runs for the configuration can
be selected with existing -r option or cmdenv-runs-to-execute=.
For example, "-c Foo -r 1..5" does 5 runs from [Config Foo]
in the ini file.
* prints progress percentages "nn% completed" during simulation.
It is used by the simulation launcher's progress bar in the IDE.
The algorithm computes percentage both from sim-time-limit and
cpu-time-limit, and prints the larger one.
* for run iterations (-r option and cmdenv-runs-to-execute=), accept
both ".." and "-" as range separator, i.e. both "2..5" and "2-5" are
valid
* from now on, you need to specify "-u _cmdenv_lib" (gcc) or
"/include:_cmdenv_lib" (vc++) in addition to -lcmdenv (or cmdenv.lib)
on the linker command line. But: now you can have a program with both
Cmdenv and Tkenv in it.
* out-of-directory build, and other Makefile changes
* obsolete source heap.cc removed
* SEE CHANGES FOR ENVIR TOO. (Envir is the common part of Cmdenv and
Tkenv).
2006-10-21 ------ omnetpp-3.3 released ------
2006-01-12 ------ omnetpp-3.2p1 released ------
2005-10-19 ------ omnetpp-3.2 released ------
2005-03-31 ------ omnetpp-3.1 released ------
2005-03-22 Andras Varga
* cmdenv.cc/h: handling of -h option moved into TOmnetApp base class.
2005-03-02 Andras Varga
* cmdenv.h/cc: makeOptionsEffective() merged into readPerRunOptions()
2005-01-10 Andras Varga
* cmdenv.cc: factored out platform dependencies to include/platdep
2004-12-29 ------ omnetpp-3.0 released ------
2004-12-15 Andras Varga
* extra-stack= option replaced with extra-stack-kb. (Default is 8K)
2004-11-23 ------ omnetpp-3.0b1 released ------
2004-11-03 ------ omnetpp-3.0a9 released ------
2004-10-27 Andras Varga
* cmdenv.cc: minor ajustment: makeOptionsEffective() should be called
right after readPerRunOptions()
2004-10-25 Andras Varga
* cmdenv.cc: updated for info() and fullPath() signature changes
(see include/ChangeLog)
2004-10-04 ------ omnetpp-3.0a8 released ------
2004-09-24 ------ omnetpp-3.0a7 released ------
2004-07-22 ------ omnetpp-3.0a6 released ------
2004-07-10 Andras Varga
* cmdenv.cc/h: now it's possible to control which modules' ev<< output
Cmdenv prints when run with express-mode=false and module-messages=
true. The configuration is: [Cmdenv]/<modulepath>.ev-output=true/false.
An example which enables only output from modules named "tcpdump":
[Cmdenv]
module-messages=true
**.tcpdump.ev-output=true
**.ev-output=false
ev<< in finish() is always fully printed.
2004-07-06 Andras Varga
* cmdenv.cc: fixed Speedometer usage; added milliseconds to elapsed
time. FIXME calculated + speedometer values don't correspond because
the two call ftime() independently
2004-06-07 ------ omnetpp-3.0a5 released ------
2004-05-15 ------ omnetpp-3.0a4 released ------
2004-03-22 ------ omnetpp-3.0a3 released ------
2004-03-03 ------ omnetpp-3.0a2 released ------
2004-02-23 Andras Varga
* cmdenv.cc: new omnetpp.ini option:
event-banner-details= true/false (default: false).
It is in effect with normal mode (express-mode=false), and causes
elapsed time and number of messages (created,present, in FES) to be
printed in a second line below the event banner. Format:
Elapsed: 131s (2m 11s) Messages: created: 45 present: 45 in FES: 18
Also changed the format of elapsed time display in express mode:
prints it in seconds as well.
2004-02-11 Andras Varga
* cmdenv.cc: propagated semantic change in getNextEvent()'s and
selectNextModule()'s return value (see include/ChangeLog)
2004-02-05 Andras Varga
* heap.cc made disabled by default (and has to be explicitly enabled
by defining USE_CMDENV_HEAPDEBUG), and changed to throw std::alloc
on out-of-memory condition.
2004-02-04 ------ omnetpp-3.0pre1 released ------
2004-01-06 Andras Varga
* cmdenv.h: added isGUI()
2003-12-11 Andras Varga
* all files: follow changes in sim/; C-style casts replaced with
static_cast<>
2003-11-13 Andras Varga
* Checked in parallel simulation code that was developed March-May 2003,
during my stay at Monash University. Changes:
2003-04-18 Andras Varga
* new ini file option:
output-file=<filename>
If present, output will be redirected to the given file. If the
[General]/fname-append-host setting is turned on, the the host
name and pid (process id) will be appended to the file name.
Particularly useful when a parallel simulation is run from a shared
directory.
2003-10-02 Andras Varga
* cmdenv.cc/h: added new method cEnvir::moduleMethodCalled()
2003-09-22 Andras Varga
* cmdenv.cc/h: messageSent() signature change, see include/ChangeLog
2003-06-16 ------ omnetpp-2.3 released ------
2003-03-15 ------ omnetpp-2.3b2 released ------
2003-02-15 ------ omnetpp-2.3b1 released ------
2003-01-07 Andras Varga
* new ini file options:
autoflush=yes/no (default: no)
call fflush(stdout) after each event banner or status update;
affects both express and normal mode.
message-trace=yes/no (default: no)
log message sending (by send(),scheduleAt(), etc) and delivery
on standard output; effective only in normal mode
* format of event banner slightly changed
2002-11-03 Andras Varga
* cmdenv.cc: improved status display
2002-10-20 Andras Varga
* cmdenv.cc: revised omnetpp.ini entries understood by Cmdenv.
A new entry was introduced to make it easier to switch between
typical uses of Cmdenv.
express-mode=yes/no (default: no)
Normal (non-express) mode is for debugging: detailed information
will be written to the standard output (event banners, module output,
etc). Express mode can be used for long simulation runs: only
periodical status update is displayed about the progress of the
simulation.
When in normal (non-express) mode, the following ini file entries
are taken into account:
module-messages=yes/no (default: yes)
- printing module ev<< output on/off (as before)
event-banners=yes/no (default: yes)
- printing event banners on/off; replaces verbose-simulation=
When in express mode, these entries are used:
status-frequency=<integer> (default: 50000)
- print status update every n events (on today's computers, and
for a typical model, this will produce an update every few seconds,
perhaps a few times per second)
performance-display=yes/no (default: yes)
- print detailed performance status
Obsoleted entries: display-update=, verbose-simulation=.
2002-10-08 Andras Varga
* cmdenv.cc: -h command-line option now lists linked-in modules too
2002-10-04 Andras Varga
* error handling changed from simulation.ok() to exceptions.
2002-05-04 ------ omnetpp-2.2 released ------
2002-01-13 Andras Varga
* Graceful handling of SIGTERM and SIGINT signals: calls finish()
for current simulation and exits. Works on Unix only (Win32 doesn't
support SIGTERM and SIGINT, among others). Based on suggestion and
patch from Michele Baresi.
2000-06-06 Andras Varga
* ------ omnetpp-2.1 released ------
* Borland C++ support removed: I deleted the project files
(*.ide). I added equivalent Makefile.bc files (generated from the
BC IDE), but they are completely unsupported at the moment. If
there's interest, it's possible that later I'll add makefiles for
the free command-line bc5.5 compiler.
* ------ omnetpp-2.0p1 released ------
* ------ omnetpp-2.0 released ------
* heap.cc, operator new fixed: when out of memory, it doesn't
return NULL but calls exit(1). (According to the ISO standard, op
new should throw an exception when out of memory. Unfortunately,
exceptions are incompatible with the coroutine library's
setjmp/longjmp magic, so OMNeT++ doesn't use exceptions at all.)
HEAP.CC TO BE TESTED!!!
2000-05-10 Andras Varga
* ------ omnetpp-2.0b5 released ------
* ------ omnetpp-2.0b4 released ------
* [Cmdenv]/extra-stack= option added, it specifies (in bytes) how
much extra stack each activity() module needs when executing under
Cmdenv. This used to be hardcoded (8192), now users can fine-tune
it.
2000-05-07 Andras Varga
* Makefile.vc improvements from Balazs Kelemen
2000-04-10 Andrea Varga
* changes to enable linking a Windows DLL from the library
* memoryIsLow() reorganized; cosmetic changes on heap.cc
* adjustments because of TOmnetApp constructor changes
* added cmdenvDummy()/envirDummy(): functions which can/should be
called from Envir in order to force the linker to include the
Cmdenv library into the executable. (These functions do absolutely
nothing.)
* TRUE/FALSE (defines) replaced by true/false (C++ keywords)
* in printf() statements, all "%lf","%lg","%le" was replaced by
"%f","%g","%e"
2000-04-04 Andras Varga
* dynamic registration of user interface (TOmnetApp) classes
introduced: Register_OmnetApp() macro added to cmdenv.cc
2000-03-26 Andras Varga
* 'char *' pointers made const-correct (lots of 'char *' -->
'const char *' replacements throughout the code)
1999-12-05 Andras Varga
* ------ omnetpp-2.0b3 released ------
* Makefile.vc added
1999-12-04 Andras Varga
* compiled with MSVC. cmdenv.dsp added. NOTE: one has to rename
all .cc files to .cpp for compiling (ren *.cc *.cpp)!
* To Do: check heap.cc
1999-09-20 Andras Varga
* ------ omnetpp-2.0b2 released ------
* typo fixed in Makefile.in: $(CLFAGS) --> $(CFLAGS)
1999-08-13 Andras Varga
* ------ omnetpp-2.0b released ------
* _dummy_for_tkenv_inspect() bug fixed
1999-06-21 Andras Varga
* all sources checked in under CVS
* makefile.in modified for use with GNU Autoconf; also renamed to
Makefile.in
* version.log renamed to ChangeLog
* removed support for DOS with BC3.1
1999-02-07 Andras Varga
* small fixes
1999-01-25 Andras Varga
* updated for sim172d
1998-12-27 Andras Varga
* updated for sim170
* extraStackForEnvir() raised to 8K (was zero)
* some bugs fixed in heap.cc
* makefile renamed to makefile.in
* runningModule() corrected to contextModule()
1998-08-14 Andras Varga
* makefile fix
1998-08-12 Andras Varga
* Borland C++ 5.0 project file added
* small fixes
1998-07-15 Andras Varga
* small fixes
* callFinish() added
1998-06-24 Andras Varga
* callFinish() added
1998-05-18 Andras Varga
* inspectors made compatible with sim162
1998-05-18 Andras Varga
* inspectors made compatible with sim160
1998-05-12 Andras Varga
* makefile updated
1998-04-26 Andras Varga
* makefile can now create shared object (libcmdenv.so)
1998-02-15 Andras Varga
* makefile changed; cmdenv.a-->libcmdenv.a
1997-12-13 Andras Varga
* brought up-to-date with sim151
1997-10-06 Andras Varga
* further renaming; compatible with sim148
1997-10-02 Andras Varga
* cleaned up & renamed several member functions; compatible with
sim147
1997-08-17 Andras Varga
* "Network not found" msg improved
1997-08-17 Andras Varga
* updated for sim146a
1997-08-07 Andras Varga
* cNetSimpleMod corrected to cNetMod
* [Cmdenv]/runs-to-execute default value changed: NULL-->""
* compatibility: sim144a or up
1997-07-31 Andras Varga
* [General]/number-of-runs= ini file option was replaced by
[Cmdenv]/runs-to-execute=.
Now it's possible to say things like:
[Cmdenv]
runs-to-execute = 1,2, 5-8
There is a command-line equivalent: -r1,2,5-8
If the list of runs is not given explicitly, executes all runs
that have an ini file section; if no runs are given in the ini file,
does one run.
* compatibility: envir97 or newer
1997-07-20 Andras Varga
* removed TCmdenv::foreignputs()