forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-2.1.1
1208 lines (771 loc) · 42 KB
/
ChangeLog-2.1.1
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
Tue Mar 9 08:08:06 UTC 2010 Trevor Fields <[email protected]>
* OpenDDS version 2.1.1 released.
Mon Mar 8 22:29:08 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/images/bidirtest.jpg:
* performance-tests/Bench/doc/images/latencytest.jpg:
* performance-tests/Bench/doc/images/pubboundtest.jpg:
* performance-tests/Bench/doc/images/subboundtest.jpg:
Added more diagrams to user guide. JPEG format is actually
more compact for these diagrams, so convert the existing one to
that format as well.
* performance-tests/Bench/doc/userguide.html:
Updated existing test descriptions and stubbed the data
reduction and visualization sections.
* performance-tests/Bench/doc/images/latencytest.png:
Removed this file.
Mon Mar 8 19:01:09 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
* README:
Updated documentation for next release.
Sat Mar 6 19:16:09 UTC 2010 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Removed ccm base project, gives a hard dependency on CIAO,
have to solve this differently
Sat Mar 6 06:47:09 UTC 2010 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Added needed base project for ccm lem library
Fri Mar 5 23:29:38 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Added ability to simply tailor statistics gathering commands by
system type. This was necessitated after discovering that the
solaris environment did not support several of the command
options used.
* performance-tests/Bench/doc/userguide.html:
* performance-tests/Bench/doc/images/latencytest.png:
Minor updates from review comments (Scott).
Fri Mar 5 14:34:08 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_packet.cpp:
Dropped unnecessary inlines; adjusted conditional behavior in
dissect_odds_heur.
Fri Mar 5 00:31:48 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/images/latencytest.png:
Diagram describing existing latency test.
* performance-tests/Bench/doc/userguide.html:
Ongoing documentation. Started to describe existing tests.
Thu Mar 4 22:27:23 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Fixed formatting.
Thu Mar 4 22:22:53 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Updated documentation for next release.
Thu Mar 4 22:14:22 UTC 2010 Adam Mitz <[email protected]>
* MPC/config/dcps_udp.mpb:
* dds/DCPS/transport/udp/udp.mpc:
Renamed the project opendds_udp. "udp" alone is too general and
will easily conflict (for example, TAO/performance-tests/UDP).
* bin/dcps_tests.lst:
Exclude the Priority test on QNX. It is hanging in
pthread_setschedparam().
Wed Mar 3 23:32:36 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Added specification for which statistics to gather.
Updated the documentation.
* performance-tests/Bench/doc/userguide.html:
Ongoing documentation effort. Todays installment.
* performance-tests/Bench/tests/thru/test-commands.txt:
Updated to use the new statistics specification argument.
Wed Mar 3 00:22:48 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/userguide.html:
Updated with installation, quick start, and start of FAQ.
Mon Mar 1 21:40:59 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/StatisticalValue.h:
Remove a compiler warning.
Fri Feb 26 16:25:07 UTC 2010 Steven Stallion <[email protected]>
* docs/html/multicast/multicast.html:
Updated documentation.
* performance-tests/Bench/tests/spray/transport.ini:
Updated transport configuration options; increased nak_interval
to more easily identify NACK suppression.
Fri Feb 26 03:42:01 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/tests/spray:
* performance-tests/Bench/tests/spray/pub-1.ini:
* performance-tests/Bench/tests/spray/pub-2.ini:
* performance-tests/Bench/tests/spray/pub-3.ini:
* performance-tests/Bench/tests/spray/pub-4.ini:
* performance-tests/Bench/tests/spray/sub.ini:
* performance-tests/Bench/tests/spray/test-commands.txt:
* performance-tests/Bench/tests/spray/transport.ini:
* performance-tests/Bench/tools/mkpkg:
Added test for measuring reliable multicast sample loss on a
lossy network.
Thu Feb 25 23:45:55 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/Options.cpp:
Ensure the message rate is interpreted consistently for both
exponential and fixed types.
Initialize and manage the default instance profile value.
* performance-tests/Bench/tests/thru/test-commands.txt:
Fix a logfile misnaming in the reliable subscription bound
testing commands.
* performance-tests/Bench/tools/mkpkg:
Account for moving the original scenario configurations to a
sub-directory.
Thu Feb 25 20:35:25 UTC 2010 Steven Stallion <[email protected]>
* etc/multicast.conf:
* etc/tcp.conf:
* etc/udp.conf:
Added default svc.conf files for supported transports.
Thu Feb 25 17:26:34 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/tests.txt:
* performance-tests/Bench/doc/userguide.html:
* performance-tests/Bench/src/Options.cpp:
Ensured that a default FIXED variable is available even if no
specification is made for MessageSizeType, MessageRateType, and
InstanceType.
* performance-tests/Bench/src/Test.idl:
Removed priority as instance key.
* performance-tests/Bench/tests/latency/*.ini:
* performance-tests/Bench/tests/scaling/*.ini:
* performance-tests/Bench/tests/thru/*.ini:
Updated to use new *Type specifications.
* performance-tests/Bench/tests/scenarios/*.ini:
Moved from tests directory to new tests/scenarios sub-directory.
Updated to use new *Type specifications.
* performance-tests/Bench/tests/scenarios/test-descriptions.txt:
Moved and renamed from tests/README for consistency.
* performance-tests/Bench/tests/README:
* performance-tests/Bench/tests/s1-p1.ini:
* performance-tests/Bench/tests/s1-p2.ini:
* performance-tests/Bench/tests/s2-p1.ini:
* performance-tests/Bench/tests/s2-p2.ini:
* performance-tests/Bench/tests/s2-p3.ini:
* performance-tests/Bench/tests/s2-p4.ini:
* performance-tests/Bench/tests/s2-p5.ini:
* performance-tests/Bench/tests/s2-p6.ini:
* performance-tests/Bench/tests/s3-p1.ini:
* performance-tests/Bench/tests/s3-p2.ini:
* performance-tests/Bench/tests/s3-p3.ini:
Removed these files. They were moved into the 'scenarios'
sub-directory.
Thu Feb 25 08:54:12 UTC 2010 Johnny Willemsen <[email protected]>
* dds/DdsDcpsDataReaderRemote.idl:
* dds/DdsDcpsDataWriterRemote.idl:
* dds/DdsDcpsDomainExt.idl:
* dds/DdsDcpsInfo.idl:
Removed ciao leam
* dds/DdsDcps.mpc:
Removed generation of lem for OpenDDS specific interfaces
Wed Feb 24 22:43:05 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/userguide.html:
Current state of the documentation. This is still an ongoing
activity.
* performance-tests/Bench/bin/run_test:
Extended POD description.
Added 'netstat -ntpc' statistics gathering to periodically grab
the network information. This has not been tested yet, so
consider it experimental at this time.
* performance-tests/Bench/doc/datamodel.txt:
Added new Instance* test configuration parameters to allow
specifying a number of instances to send data on.
Modified the mechanism to select the type of message size,
message rate, and instance selection to be explicit using the
new *Type specification parameters.
* performance-tests/Bench/src/EntityProfiles.h:
* performance-tests/Bench/src/Options.cpp:
* performance-tests/Bench/src/Publication.cpp:
Implemented new instance test configuration parameters and
modified type specifications.
* performance-tests/Bench/src/Test.idl:
Added a key field to be used in when specifying more than one
instance to send data on.
* performance-tests/Bench/src/TestProcess.mpc:
* performance-tests/Bench/src/StatisticalValue.h:
* performance-tests/Bench/src/StatisticalValue.cpp:
Replaced the previous statistical classes with a hierarchy that
includes a StatisticalValue<Type> intervace base class and
various implementations:
FixedValue<Type>
UniformValue<Type>
ExponentialValue<Type>
GaussianValue<Type>
* performance-tests/Bench/src/Exponential.h:
* performance-tests/Bench/src/Exponential.cpp:
* performance-tests/Bench/src/Gaussian.h:
* performance-tests/Bench/src/Gaussian.cpp:
Removed these files.
Wed Feb 24 20:36:48 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/Definitions.h:
Made DataBlockAllocator to have mutex protected. This resolved
cores in throughput tests.
Wed Feb 24 14:50:02 UTC 2010 Adam Mitz <[email protected]>
* tests/DCPS/FooTest3NoKey/InstanceDataMap.h:
Corrected an #include.
Wed Feb 24 13:20:12 UTC 2010 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Added projects to generate the lem needed for dds4ccm. When the
MPC feature dds4ccm_opendds is set to 1, the lem and the lem
stub dll will be generated.
* dds/DdsDcpsDataReaderRemote.idl:
* dds/DdsDcpsDataWriterRemote.idl:
* dds/DdsDcpsDomain.idl:
* dds/DdsDcpsDomainExt.idl:
* dds/DdsDcpsInfo.idl:
* dds/DdsDcpsInfrastructure.idl:
* dds/DdsDcpsPublication.idl:
* dds/DdsDcpsSubscription.idl:
* dds/DdsDcpsTopic.idl:
Added ciao lem pragma which we need for dds4ccm
* MPC/config/dcps_tcp.mpb:
* MPC/config/dds_suppress_any_support.mpb:
* MPC/config/dds_wrapper.mpb:
* MPC/config/idl2jni.mpb:
* MPC/config/java.mpb:
* MPC/config/optional_jni_check.mpb:
Added Id tag
* MPC/config/dds4ccm_opendds.mpb:
New base project
Tue Feb 23 20:57:44 UTC 2010 Phil Mesnier <[email protected]>
* tools/odds_repoctl/odds_repoctl.mpc:
Added explicit dependency on InfoRepoLib, as it is required
by the Federator lib.
Tue Feb 23 17:42:03 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/userguide.html:
Current state of documentation.
* performance-tests/Bench/doc/datamodel.txt:
* performance-tests/Bench/src/EntityProfiles.h:
* performance-tests/Bench/src/Options.cpp:
Added AckDelay configuration parameter to Publication profile.
* performance-tests/Bench/src/Publication.cpp:
Use AckDelay configuration parameter to selectively call
wait_for_acknowledgments() at publication termination.
* performance-tests/Bench/tools/convert-all:
Removed a gratuitous change.
Tue Feb 23 16:48:25 UTC 2010 Adam Mitz <[email protected]>
* NEWS:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DdsDcpsDomain.idl:
* dds/DdsDcpsTopic.idl:
Added IDL for ContentFilteredTopic and MultiTopic, but they are not
yet implemented (operations will return NULL or RETCODE_UNSUPPORTED).
Mon Feb 22 20:57:32 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/colorfilters:
Updated syntax to match that of built-in filters.
Sun Feb 21 22:09:46 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/bin/plot-transports-scaling.gp:
Reverted changes introduced by previous commit.
Sun Feb 21 19:47:46 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/bin/plot-transports-scaling.gp:
Updated output image size.
Sun Feb 21 05:20:25 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Switched from ACE_SYNCH_RW_MUTEX to ACE_SYNCH_MUTEX; there
is no longer any benefit to using a RW mutex here.
Sun Feb 21 05:13:53 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Reduced lock scopes; reverted change made in r3050 which
prevented the NACK mechanism from triggering properly.
Sun Feb 21 04:44:54 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Corrected locking behavior in start.
Sun Feb 21 02:41:30 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Clarified language concerning color filter ordering.
Sat Feb 20 16:29:31 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/bin/plot-transports-scaling.gp:
Updated output image size.
Sat Feb 20 04:51:30 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/tools/convert-all:
Added missing bash interpreter directive.
* performance-tests/Bench/bin/plot-transports-scaling.gp:
* performance-tests/Bench/tools/convert-scaling:
* performance-tests/Bench/tools/plot-scaling.gp:
Added support for analyzing scaling results.
Sat Feb 20 02:20:54 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Updated next release version; updated release notes with recent
changes to multicast and the transport framework.
* README:
* tools/odds_dissector/README:
Updated next release version.
Sat Feb 20 00:15:10 UTC 2010 Steven Stallion <[email protected]>
* performance-tests/Bench/tests/scaling:
* performance-tests/Bench/tests/scaling/pub-1.ini:
* performance-tests/Bench/tests/scaling/pub-2.ini:
* performance-tests/Bench/tests/scaling/pub-3.ini:
* performance-tests/Bench/tests/scaling/pub-4.ini:
* performance-tests/Bench/tests/scaling/pub-5.ini:
* performance-tests/Bench/tests/scaling/pub-6.ini:
* performance-tests/Bench/tests/scaling/pub-7.ini:
* performance-tests/Bench/tests/scaling/pub-8.ini:
* performance-tests/Bench/tests/scaling/sub.ini:
* performance-tests/Bench/tests/scaling/test-commands.txt:
* performance-tests/Bench/tools/mkpkg:
Added scaling test for measuring round-trip latency as the
number of subscribing endpoints increase.
Sat Feb 20 00:14:23 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Fixed incorrect conditional introduced by previous commit.
Sat Feb 20 00:07:56 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Fixed deadlock caused by buggy ACE_Select_Reactor behavior.
Fri Feb 19 19:53:34 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Dropped unnecessary lock in syn_received.
Fri Feb 19 15:19:59 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/transport/multicast/multicast.rc:
* dds/DCPS/transport/udp/udp.rc:
* dds/monitor/monitor.rc:
Added resource files to new core libraries so that their DLLs
will contain descriptive names and version information.
Fri Feb 19 03:56:04 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Added missing whitespace.
Fri Feb 19 03:44:59 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Updated path information.
Fri Feb 19 03:09:30 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/images:
* performance-tests/Bench/doc/userguide.html:
Initial outline of user guide.
* performance-tests/Bench/src/DataReaderListener.cpp:
Adjust output radix to be more useful (counts in decimal make
more sense).
Thu Feb 18 22:37:42 UTC 2010 Adam Mitz <[email protected]>
* bin/DCPS/HTemplate.pm:
#include the tao_idl-generated *C.h instead of *S.h.
Thu Feb 18 22:08:14 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.mpc:
* tools/odds_dissector/odds_export.h:
* tools/odds_dissector/odds_packet.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Updates to support hidden visibility on GCC 4.1.x and up.
Thu Feb 18 21:41:25 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Dropped use of acked_ flag for passive sessions.
Thu Feb 18 21:22:42 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.inl:
Fixed bad bit twiddling for historic samples introduced by
submessage_id_.
Wed Feb 17 19:56:32 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Clarified platform_macros.GNU language.
Wed Feb 17 19:42:41 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
* tools/odds_dissector/colorfilters:
Added additional instructions for UNIX builds; minor formatting
updates.
Tue Feb 16 20:41:50 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_packet.cpp:
Fixed compiler warnings/errors for GCC.
Tue Feb 16 19:03:46 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/DataReaderListener.cpp:
Adding even more information to diagnostic message.
Tue Feb 16 17:51:26 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Updated README with additional pointers for applying color
filters.
Tue Feb 16 17:42:10 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Updated README with additional pointers for verifying the
plugin install and applying color filters.
Tue Feb 16 17:32:24 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.rc:
Updated include Version.h include.
Tue Feb 16 17:23:47 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/colorfilters:
Updated coloring rule for important DCPS packets.
Tue Feb 16 17:21:12 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/DataReaderListener.cpp:
Added more information to a diagnostic message.
* performance-tests/Bench/tests/thru/test-commands.txt:
Corrected the command name being used.
Tue Feb 16 17:01:23 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
* tools/odds_dissector/colorfilters:
Added canned color filters to identify DCPS protocol packets.
* tools/odds_dissector/odds_packet.cpp:
Minor formatting updates.
Tue Feb 16 15:24:20 UTC 2010 Adam Mitz <[email protected]>
* java/idl2jni/tests/simple/idl2jni_test_simple.mpc:
* java/idl2jni/tests/simple/simple.idl:
Enabled the test after commenting-out some unsupported IDL
constructs (passing arrays as parameters to operations).
Tue Feb 16 06:44:29 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/README:
Minor formatting updates.
Tue Feb 16 00:08:15 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/src/Process.cpp:
Updated flow control depending on the publication and
subscription matching status.
* performance-tests/Bench/src/Publication.h:
* performance-tests/Bench/src/Publication.cpp:
associations()
missing_associations()
- new accessors for state information.
* performance-tests/Bench/src/Subscription.h:
* performance-tests/Bench/src/Subscription.cpp:
associations() - new accessor for state information.
* performance-tests/Bench/tests/latency/*.ini
Updated publication specifications with an Associations value
for the updated flow control.
* performance-tests/Bench/tests/thru/bidir-*-*-*.ini:
Updated modified latency tests to current flow control and test
requirements. Renamed from Mibi bps to Mbps.
* performance-tests/Bench/tests/thru/bidir-remote-be.ini:
* performance-tests/Bench/tests/thru/bidir-remote-rel.ini:
Renamed the remote end configuration files to better reflect
their semantics.
* performance-tests/Bench/tests/thru/pub-1sub-*-*.ini:
Updated subscription bound tests to current flow control and test
requirements. Renamed from Mibi bps to Mbps.
* performance-tests/Bench/tests/thru/pub-2sub-*-*.ini:
Updated publication bound tests to current flow control and test
requirements. Renamed from Mibi bps to Mbps.
* performance-tests/Bench/tests/thru/test-commands.txt:
Updated test command summary with current test configuration
file information. Simplified test execution through use of
even more shell variables.
* performance-tests/Bench/tests/thru/test-descriptions.txt:
Segregated test descriptions from the command summary.
* performance-tests/Bench/tests/thru/p1-be-1220.ini:
* performance-tests/Bench/tests/thru/p1-be-1907.ini:
* performance-tests/Bench/tests/thru/p1-be-191r.ini:
* performance-tests/Bench/tests/thru/p1-be-191s.ini:
* performance-tests/Bench/tests/thru/p1-be-286r.ini:
* performance-tests/Bench/tests/thru/p1-be-286s.ini:
* performance-tests/Bench/tests/thru/p1-be-305.ini:
* performance-tests/Bench/tests/thru/p1-be-381r.ini:
* performance-tests/Bench/tests/thru/p1-be-381s.ini:
* performance-tests/Bench/tests/thru/p1-be-477r.ini:
* performance-tests/Bench/tests/thru/p1-be-477s.ini:
* performance-tests/Bench/tests/thru/p1-be-687.ini:
* performance-tests/Bench/tests/thru/p1-be-76.ini:
* performance-tests/Bench/tests/thru/p1-rel-1220.ini:
* performance-tests/Bench/tests/thru/p1-rel-1907.ini:
* performance-tests/Bench/tests/thru/p1-rel-191r.ini:
* performance-tests/Bench/tests/thru/p1-rel-191s.ini:
* performance-tests/Bench/tests/thru/p1-rel-286r.ini:
* performance-tests/Bench/tests/thru/p1-rel-286s.ini:
* performance-tests/Bench/tests/thru/p1-rel-305.ini:
* performance-tests/Bench/tests/thru/p1-rel-381r.ini:
* performance-tests/Bench/tests/thru/p1-rel-381s.ini:
* performance-tests/Bench/tests/thru/p1-rel-477r.ini:
* performance-tests/Bench/tests/thru/p1-rel-477s.ini:
* performance-tests/Bench/tests/thru/p1-rel-687.ini:
* performance-tests/Bench/tests/thru/p1-rel-76.ini:
* performance-tests/Bench/tests/thru/p2-be.ini:
* performance-tests/Bench/tests/thru/p2-rel.ini:
* performance-tests/Bench/tests/thru/pub-be-1220-half.ini:
* performance-tests/Bench/tests/thru/pub-be-1220.ini:
* performance-tests/Bench/tests/thru/pub-be-1907-half.ini:
* performance-tests/Bench/tests/thru/pub-be-1907.ini:
* performance-tests/Bench/tests/thru/pub-be-191r.ini:
* performance-tests/Bench/tests/thru/pub-be-191s.ini:
* performance-tests/Bench/tests/thru/pub-be-286-rate.ini:
* performance-tests/Bench/tests/thru/pub-be-286-size.ini:
* performance-tests/Bench/tests/thru/pub-be-286r.ini:
* performance-tests/Bench/tests/thru/pub-be-286s.ini:
* performance-tests/Bench/tests/thru/pub-be-305.ini:
* performance-tests/Bench/tests/thru/pub-be-381-size.ini:
* performance-tests/Bench/tests/thru/pub-be-381r.ini:
* performance-tests/Bench/tests/thru/pub-be-381s.ini:
* performance-tests/Bench/tests/thru/pub-be-477-rate.ini:
* performance-tests/Bench/tests/thru/pub-be-477-size.ini:
* performance-tests/Bench/tests/thru/pub-be-477r.ini:
* performance-tests/Bench/tests/thru/pub-be-477s.ini:
* performance-tests/Bench/tests/thru/pub-be-687-half.ini:
* performance-tests/Bench/tests/thru/pub-be-687.ini:
* performance-tests/Bench/tests/thru/pub-be-76-half.ini:
* performance-tests/Bench/tests/thru/pub-be-76-rate.ini:
* performance-tests/Bench/tests/thru/pub-be-76.ini:
* performance-tests/Bench/tests/thru/pub-rel-1220-half.ini:
* performance-tests/Bench/tests/thru/pub-rel-1220.ini:
* performance-tests/Bench/tests/thru/pub-rel-1907-half.ini:
* performance-tests/Bench/tests/thru/pub-rel-1907.ini:
* performance-tests/Bench/tests/thru/pub-rel-191r.ini:
* performance-tests/Bench/tests/thru/pub-rel-191s.ini:
* performance-tests/Bench/tests/thru/pub-rel-286-rate.ini:
* performance-tests/Bench/tests/thru/pub-rel-286-size.ini:
* performance-tests/Bench/tests/thru/pub-rel-286r.ini:
* performance-tests/Bench/tests/thru/pub-rel-286s.ini:
* performance-tests/Bench/tests/thru/pub-rel-305.ini:
* performance-tests/Bench/tests/thru/pub-rel-381-size.ini:
* performance-tests/Bench/tests/thru/pub-rel-381r.ini:
* performance-tests/Bench/tests/thru/pub-rel-381s.ini:
* performance-tests/Bench/tests/thru/pub-rel-477-rate.ini:
* performance-tests/Bench/tests/thru/pub-rel-477-size.ini:
* performance-tests/Bench/tests/thru/pub-rel-477r.ini:
* performance-tests/Bench/tests/thru/pub-rel-477s.ini:
* performance-tests/Bench/tests/thru/pub-rel-687-half.ini:
* performance-tests/Bench/tests/thru/pub-rel-687.ini:
* performance-tests/Bench/tests/thru/pub-rel-76-half.ini:
* performance-tests/Bench/tests/thru/pub-rel-76-rate.ini:
* performance-tests/Bench/tests/thru/pub-rel-76.ini:
Removed these files.
Tue Feb 16 00:04:34 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
* tools/odds_dissector/README:
* tools/odds_dissector/odds_dissector.rc:
Updated documentation for odds_dissector.
Mon Feb 15 21:17:42 UTC 2010 Adam Mitz <[email protected]>
* java/README:
Added a description of what the contents of the hypothetical
Foo.idl file would look like.
Mon Feb 15 19:35:00 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.mpc:
* tools/odds_dissector/odds_dissector.rc:
Added resource file for Windows builds.
Mon Feb 15 05:33:44 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_packet.cpp:
Updated output for sample byte_order flag.
Mon Feb 15 05:07:22 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.mpc:
* tools/odds_dissector/odds_packet.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Updates for VC++ support.
Sun Feb 14 07:19:10 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_packet.cpp:
Added additional guard to only show sample sequence numbers
for SAMPLE_DATA payloads.
Sun Feb 14 06:47:22 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.mpc:
* tools/odds_dissector/odds_packet.cpp:
Renamed odds_dissector.cpp to odds_packet.cpp to reflect
naming conventions used by other wireshark plugins.
* tools/odds_dissector/odds_dissector.cpp:
Removed this file.
Sun Feb 14 06:40:43 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.cpp:
Formatting updates; added additional guard for sub-messages
and lifespan.
* tools/odds_dissector/odds_plugin.cpp:
Dropped use of ACE_AS_STATIC_LIBS.
Sun Feb 14 06:04:22 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Switched to glib model of managing exports to match other
wireshark plugins.
* tools/odds_dissector/odds_Export.h:
Removed this file.
Sun Feb 14 05:45:06 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.mpc:
Added verbatim clause to omit library prefix on gnuace.
Sun Feb 14 04:37:22 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.cpp:
Renamed Message ID and Sub-Message ID fields to ID and Sub-ID,
respectively.
Sun Feb 14 03:00:23 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.cpp:
Corrected overly greedy search and replace error.
Sun Feb 14 02:55:16 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_dissector.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Corrected minor nits; updated plugin version number to
use DDS_VERSION.
Sat Feb 13 23:18:43 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.inl:
* dds/DCPS/DataSampleHeader.cpp:
Updated stream operators to provide output compatible with
wireshark.
* dds/DCPS/transport/multicast/ReliableSession.h:
Moved SubMessageId enum to DataSampleHeader; we need a single
place to maintain Sub-Message IDs.
* tools/odds_dissector/odds_dissector.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Finalized dissector plugin for wireshark.
Sat Feb 13 00:47:20 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.cpp:
Promoted init to public scope; this allows a sample header
to be initialized with an ACE_Message_Block without making an
extraneous copy.
Updated stream operators to provide output compatible with
wireshark.
Fri Feb 12 22:30:32 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_plugin.cpp:
Added missing line terminator.
Fri Feb 12 22:26:29 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportHeader.h:
Promoted init to public scope; this allows a transport header
to be initialized with an ACE_Message_Block without making an
extraneous copy.
* tools/odds_dissector/odds_dissector.cpp:
* tools/odds_dissector/odds_plugin.cpp:
DCPS packets are properly recognized and header fields are
exposed.
Fri Feb 12 20:54:38 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Simplified, removing some less than correct syntax in the process.
* performance-tests/Bench/src/Process.cpp:
Updated startup checking to allow for no-publication
configurations to work. Again.
Fri Feb 12 00:15:35 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_plugin.cpp:
Updated keyword for version.
Fri Feb 12 00:13:39 UTC 2010 Steven Stallion <[email protected]>
* tools/odds_dissector/odds_Export.h:
* tools/odds_dissector/odds_dissector.mpc:
* tools/odds_dissector/odds_dissector.cpp:
* tools/odds_dissector/odds_plugin.cpp:
Finished bootstrap code; plugin now initializes correctly
in wireshark and registers itself as a proper dissector.
Thu Feb 11 22:52:45 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/run_test:
Updated to simplify process management. Added use of anonymous
closures for statistics gathering to factor common processing.
* performance-tests/Bench/doc/datamodel.txt:
Added documentation for new Publication "StartAfterDelay" and
existing but undocumented "Associations" test parameters.
* performance-tests/Bench/src/EntityProfiles.h:
PublicationProfile
- added new 'delay' member to hold the "StartAfterDelay"
test parameter value.
* performance-tests/Bench/src/Options.cpp:
loadPublication() - added new "StartAfterDelay" test parameter.
* performance-tests/Bench/src/Gaussian.cpp:
value() - make deviation_ comparison to floating point literal.
* performance-tests/Bench/src/Process.cpp:
run()
- simplified initiation processing to use new
Publication::ready() state information directly rather than
examining changed status conditions.
- simplified termination processing to use new
Subscription::active() state information directly rather than
examining changed status conditions.
- print timeout and duration information as well as message
count on test termination.
* performance-tests/Bench/src/Publication.h:
* performance-tests/Bench/src/Publication.cpp:
timeouts()
duration()
ready()
- new accessors for state information.
write()