forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-2.1
3621 lines (2502 loc) · 134 KB
/
ChangeLog-2.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
Fri Feb 5 21:47:14 UTC 2010 Steven Stallion <[email protected]>
* OpenDDS version 2.1 released.
Fri Feb 5 20:45:41 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Fixed spurious byte swapping for received transport control
samples.
Fri Feb 5 18:44:30 UTC 2010 Steven Stallion <[email protected]>
* INSTALL:
* NEWS:
Updated documentation for next release.
Fri Feb 5 17:34:12 UTC 2010 Paul Calabrese <[email protected]>
* dds/monitor/README:
Add missing README with Monitor library documentation.
Fri Feb 5 16:43:30 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Dropped remaining use of TransportRetained element from
remove_sample; this causes spurious ACE_Message_Block allocations
which are not subsequently released.
Fri Feb 5 16:34:13 UTC 2010 Adam Mitz <[email protected]>
* tools/odds_monitor/doc/userguide.html:
Documented the QT_CFG environment variable and added steps
for building with VC++.
Fri Feb 5 16:13:51 UTC 2010 Mike Martinez <[email protected]>
* tools/odds_monitor/README:
Replaced explicit environment setup and build instructions with
a reference to the user guide.
Fri Feb 5 15:59:27 UTC 2010 Mike Martinez <[email protected]>
* NEWS:
Added a reference to the OpenDDS-Bench documentation directory.
* performance-tests/Bench/doc/scenarios.txt:
* performance-tests/Bench/doc/tests-latency.txt:
* performance-tests/Bench/doc/tests.txt:
Added '.txt' extension to these text files to accommodate those
who need it.
Fri Feb 5 15:39:33 UTC 2010 Mike Martinez <[email protected]>
* tools/odds_monitor/doc/odds_monitor.man1:
Removed this file.
Fri Feb 5 15:24:19 UTC 2010 Paul Calabrese <[email protected]>
* NEWS:
Add Monitor library entry (README to follow shortly).
Fri Feb 5 14:08:04 UTC 2010 Steven Stallion <[email protected]>
* docs/html/multicast/multicast.html:
Updated documentation for next release.
Fri Feb 5 13:22:12 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/TestFramework/TestFramework.h:
* tests/DCPS/TestFramework/TestFramework.cpp:
Fixed compiler warnings/errors for GCC and VC++.
Fri Feb 5 12:58:18 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/SharedTransport/SharedTransport.mpc:
* tests/DCPS/SharedTransport/TestCase.cpp:
* tests/DCPS/TestFramework/TestFramework.cpp:
Fixed compiler warnings/errors for GCC and VC++.
Fri Feb 5 02:18:21 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/DataLink.cpp:
Fixed bugs that sub_map_ removing elements are not protected
in a few places.
* dds/DCPS/transport/simpleTCP/SimpleTcpConnection.cpp:
* dds/DCPS/transport/simpleTCP/SimpleTcpDataLink.h:
* dds/DCPS/transport/simpleTCP/SimpleTcpDataLink.cpp:
* dds/DCPS/transport/simpleTCP/SimpleTcpTransport.cpp:
Added flag to indicate if a datalink is in pending releasing.
When it's in pending release state, the connection reconnect
task will not try to reconnect. This should fix the failure
of "Failed to connect" during shutdown.
Thu Feb 4 23:26:55 UTC 2010 Steven Stallion <[email protected]>
* docs/html/multicast/multicast.html:
Minor edits for correctness.
Thu Feb 4 23:25:04 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
* README:
* docs/html/multicast/multicast.html:
Updated documentation for next release.
Thu Feb 4 22:14:41 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/udp/UdpTransport.cpp:
Corrected refcounts in find_or_create_datalink for subsequent
loans of server_link_.
Thu Feb 4 21:27:54 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/Messenger/Writer.cpp:
Reverted changes accidentally introduced in previous commit.
Thu Feb 4 21:08:09 UTC 2010 Adam Mitz <[email protected]>
* tests/DCPS/CorbaSeq/CorbaSeq.mpc:
Added a separate mpc project for the code-generation steps,
which helps enable parallel builds.
Thu Feb 4 20:41:14 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/SharedTransport:
* tests/DCPS/SharedTransport/SharedTransport.mpc:
* tests/DCPS/SharedTransport/TestCase.h:
* tests/DCPS/SharedTransport/TestCase.cpp:
* tests/DCPS/SharedTransport/run_test.pl:
* tests/DCPS/SharedTransport/svc.conf:
* tests/DCPS/SharedTransport/test.ini:
Added experimental test for sharing the same TransportImpl
between Subscriber and Publisher instances.
* tests/DCPS/TestFramework/TestFramework.h:
* tests/DCPS/TestFramework/TestFramework.cpp:
* tests/DCPS/TestFramework/TestFramework_T.cpp:
Updates to the TestFramework to support sharing the same
TransportImpl between Subscriber and Publisher instances.
Thu Feb 4 19:30:49 UTC 2010 Adam Mitz <[email protected]>
* tests/DCPS/Crossplatform/Messenger_run_test.pl:
Need to reference the SERVER constant using the
correct Perl package.
Thu Feb 4 17:15:52 UTC 2010 Adam Mitz <[email protected]>
* java/tests/messenger/subscriber/TestSubscriber.java:
Determine when to end the process based on the subscription
becoming un-matched using a WaitSet and StatusCondition.
This replaces the old method of counting the number of samples
received, which is not appropraite for unreliable transports.
Thu Feb 4 17:02:23 UTC 2010 Mike Martinez <[email protected]>
* NEWS:
Corrected spelling.
* performance-tests/Bench/bin/mktable.pl:
Renamed to allow for additional output formats. Added HTML
output option (unimplemented).
* performance-tests/Bench/doc/tests-latency:
Updated documentation.
* performance-tests/Bench/tests/latency/test-commands:
Moved from doc to tests/latency subdirectory. Removed
extraneous intermediate directory in data generation commands.
* performance-tests/Bench/tools/convert-all:
Removed extraneous intermediate directory.
* performance-tests/Bench/bin/mktiddler.pl:
* performance-tests/Bench/doc/latency-commands:
Removed these files. They were moved or renamed
Wed Feb 3 23:52:09 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Dropped release notes concerning reliable transport teardown.
* dds/DCPS/DisjointSequence.h:
* dds/DCPS/DisjointSequence.inl:
* dds/DCPS/DisjointSequence.cpp:
Dropped overflow checking for SequenceNumbers; these values are
indistinguishable from valid, already seen numbers.
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/transport/framework/DataLink.h:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportInterface.h:
* dds/DCPS/transport/framework/TransportInterface.cpp:
* dds/DCPS/transport/multicast/BestEffortSession.h:
* dds/DCPS/transport/multicast/BestEffortSession.cpp:
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastSession.h:
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Dropped support for reliable transport teardown in this release.
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
Disabled reassociation timer by default; this feature is still
considered experimental and should not be used.
* docs/html/README:
* docs/html/multicast/multicast.html:
Updated documentation.
Wed Feb 3 23:03:01 UTC 2010 Mike Martinez <[email protected]>
* NEWS:
Updated for upcoming release with odds_monitor and Bench
changes.
* docs/html/README:
Made the copy instructions explicit to use subversion copy
command.
* tools/odds_monitor/Monitor_main.cpp:
Simple cleanup - adding GUI loop executions in more places
while splash is displayed.
Wed Feb 3 19:26:53 UTC 2010 Mike Martinez <[email protected]>
* tools/odds_monitor/doc/userguide.html:
This time I actually *saved* the HTML file before commiting the
changes.
Wed Feb 3 19:09:24 UTC 2010 Mike Martinez <[email protected]>
* tools/odds_monitor/Monitor_main.cpp:
Added an ACE_Service_Config::process_directive() call to load
the SimpleTcp library always. This eliminates the need for a
service configuration file for the most common use case.
* tools/odds_monitor/doc/userguide.html:
Removed service configuration file from invocation example.
Some additional cleanup.
Wed Feb 3 15:05:43 UTC 2010 Adam Mitz <[email protected]>
* tests/transport/dds_comparative/PubWriter.h:
* tests/transport/dds_comparative/PubWriter.cpp:
* tests/transport/simple/SimpleDataWriter.h:
* tests/transport/simple/SimpleDataWriter.cpp:
* tests/transport/simple_bp/SimpleDataWriter.h:
* tests/transport/simple_bp/SimpleDataWriter.cpp:
* tests/transport/simple_bp_rm/SimpleDataWriter.h:
* tests/transport/simple_bp_rm/SimpleDataWriter.cpp:
* tests/transport/simple_n/SimpleDataWriter.h:
* tests/transport/simple_n/SimpleDataWriter.cpp:
Updated tests that have their own implementations of the
TransportSendListener.
Wed Feb 3 00:18:35 UTC 2010 Mike Martinez <[email protected]>
* etc/monitor.conf:
Added this here to simplify odds_monitor operation.
* tools/odds_monitor/Monitor.mpc:
Added installation to $DDS_ROOT/bin
* tools/odds_monitor/doc/images:
Documentation images.
* tools/odds_monitor/doc/userguide.html:
Initial User Guide.
Tue Feb 2 23:39:52 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Added additional filtering based on acked status for both active
and passive peers.
* dds/DCPS/transport/multicast/multicast.ini-dist:
* docs/html/multicast/multicast.html:
Updated default port number documentation.
Tue Feb 2 22:24:56 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Added an #include that was necessary for inline=0 builds.
Tue Feb 2 21:59:28 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
In remove_sample(), TransportReatinedElement can't be used when there
is no send_buffer_ because it creates a new ACE_Message_Block which
is never cleaned up. Replaced it with the TransportSendElement.
* dds/DCPS/transport/framework/TransportSendElement.h:
* dds/DCPS/transport/framework/TransportSendElement.inl:
Construct a TransportSendElement from a pointer to a const
DataSampleListElement.
* dds/DCPS/DataSampleList.h:
* dds/DCPS/DataSampleList.inl:
* dds/DCPS/DataSampleList.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/WriteDataContainer.h:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/transport/framework/SendResponseListener.h:
* dds/DCPS/transport/framework/SendResponseListener.cpp:
* dds/DCPS/transport/framework/TransportSendListener.h:
* dds/DCPS/transport/framework/TransportSendListener.cpp:
data_dropped() and data_delivered() callbacks now take a pointer to
a const DataSampleListElement, which required other const-ness
changes. Unfortunately this is incomplete, but it's a start.
Tue Feb 2 18:41:21 UTC 2010 Steven Stallion <[email protected]>
* docs/html/multicast/diagrams/class.dia:
* docs/html/multicast/images/class.png:
* docs/html/multicast/multicast.html:
Updated documentation.
Tue Feb 2 16:17:04 UTC 2010 Steven Stallion <[email protected]>
* java/idl2jni/codegen/idl2jni_visitor.cpp:
Uncommented guards for DOC x.7.6 release.
Tue Feb 2 16:14:44 UTC 2010 Steven Stallion <[email protected]>
* java/idl2jni/codegen/idl2jni_visitor.h:
Uncommented guards for DOC x.7.6 release.
Tue Feb 2 14:13:37 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Minor fix to DDS::DomainId_t ranges.
Tue Feb 2 14:10:43 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Updated with changes to supported DDS::DomainId_t ranges.
Mon Feb 1 23:47:09 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Updated pre-allocated chunks for header blocks.
Mon Feb 1 23:25:35 UTC 2010 Steven Stallion <[email protected]>
* NEWS:
Updated with new reliable transport teardown details.
Mon Feb 1 22:31:50 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
- Made the header_block_ released before it was created again
- Increased header_chunks to be 2.
These fixed the memory leaks seen in a stress test that sends
large number of messages without delay.
Mon Feb 1 21:18:58 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Initialize WriterInfo::seen_data_ in the 2-arg constructor.
Mon Feb 1 18:55:50 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/DataLinkWatchdog_T.h:
Added missing initializer for cancelled_ member.
Mon Feb 1 16:50:50 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Removed bogus acked_ check for passive peers.
Mon Feb 1 16:13:15 UTC 2010 Mike Martinez <[email protected]>
* docs/html/README:
Added instructions to create new documents. This includes
copying the 'images' subdirectory to reflect some changes in
the template.html. Added instructions to publish document as
static HTML pages.
* docs/html/template/template.html:
- changed the path to the 'opendds.png' logo to be in the local
'images' directory to remove a dependency on the '../template'
directory.
- added the 'PublishMacro' plugin to allow publication of the
TiddlyWiki document as separate static HTML pages.
Mon Feb 1 15:34:10 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Minor nits corrected; documentation updates.
Mon Feb 1 15:12:09 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Reverted previous commit (r2948); this change affected retained
PDU behavior in the TransportSendBuffer used by the multicast
transport.
Mon Feb 1 06:34:39 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Made header_block_ created once instead of for every packet.
This should fix memory leak due to header_block_ not released
and reduce the heap allocation which should improve performance.
Sat Jan 30 23:44:13 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/lj-plots.gp:
* performance-tests/Bench/bin/plot-transports.gp:
Changed Latency and Jitter units to microseconds.
Fri Jan 29 21:57:37 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.cpp:
Corrected refcounts.
Fri Jan 29 20:55:00 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Moved pkt_chain_ release from destructor to stop() before
MB allocators is deleted. This should fix a SEGV caused by
this incorrect deletion order.
Fri Jan 29 16:51:05 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/BestEffortSession.h:
* dds/DCPS/transport/multicast/BestEffortSession.cpp:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastSession.h:
* dds/DCPS/transport/multicast/MulticastSession.inl:
* dds/DCPS/transport/multicast/MulticastSession.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
Updated reliability_lost behavior; added additional check in
header_received to avoid spuriously updating nak_sequence_.
Thu Jan 28 20:43:58 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/expandColors.pl:
New script to post process a published static HTML version of a
TiddlyWiki document to translate the ColorPalette. This
replaces development of a plugin to do the processing
internally.
* performance-tests/Bench/bin/plot-jitter.gp:
* performance-tests/Bench/bin/plot-transports.gp:
Change the zoom range to [0:2500]
Thu Jan 28 16:36:26 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Fixed compiler warnings/errors for GCC and VC++.
Thu Jan 28 16:02:50 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/UnitTests/DisjointSequence.cpp:
Fixed missing change to DisjointSequence unit test.
Wed Jan 27 23:37:53 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DisjointSequence.h:
* dds/DCPS/DisjointSequence.cpp:
* dds/DCPS/transport/framework/DataLink.h:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/DataLinkWatchdog_T.h:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/multicast/BestEffortSession.h:
* dds/DCPS/transport/multicast/BestEffortSession.cpp:
* dds/DCPS/transport/multicast/BestEffortSessionFactory.h:
* dds/DCPS/transport/multicast/BestEffortSessionFactory.cpp:
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastDataLink.inl:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
* dds/DCPS/transport/multicast/MulticastSession.h:
* dds/DCPS/transport/multicast/MulticastSession.inl:
* dds/DCPS/transport/multicast/MulticastSession.cpp:
* dds/DCPS/transport/multicast/MulticastSessionFactory.h:
* dds/DCPS/transport/multicast/MulticastSessionFactory.cpp:
* dds/DCPS/transport/multicast/MulticastSessionFactory_rch.h:
* dds/DCPS/transport/multicast/MulticastSession_rch.h:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/MulticastTypes.h:
* dds/DCPS/transport/multicast/ReliableSession.h:
* dds/DCPS/transport/multicast/ReliableSession.cpp:
* dds/DCPS/transport/multicast/ReliableSessionFactory.h:
* dds/DCPS/transport/multicast/ReliableSessionFactory.cpp:
Refactored multicast transport to support sessions over a
single DataLink.
* dds/DCPS/transport/multicast/BestEffortMulticast.h:
* dds/DCPS/transport/multicast/BestEffortMulticast.cpp:
* dds/DCPS/transport/multicast/ReliableMulticast.h:
* dds/DCPS/transport/multicast/ReliableMulticast.inl:
* dds/DCPS/transport/multicast/ReliableMulticast.cpp:
Removed these files.
Wed Jan 27 23:03:18 UTC 2010 Adam Mitz <[email protected]>
* DevGuideExamples/DCPS/Messenger/Publisher.cpp:
Update the "count" field in the message struct each time through
the loop.
Wed Jan 27 17:00:31 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DisjointSequence.inl:
Fixed bad iterator dereference on second-to-last element
accesses.
Wed Jan 27 16:21:36 UTC 2010 Adam Mitz <[email protected]>
* tests/DCPS/Messenger/stack_subscriber.cpp:
Enable static loading of transports in static builds.
Tue Jan 26 22:34:19 UTC 2010 Adam Mitz <[email protected]>
* dds/DdsDcpsInfrastructure.idl:
* dds/InfoRepo/Federator.idl:
* dds/monitor/monitor.idl:
Provide a constant for the maximum user Domain ID. Move all Domain
IDs used by OpenDDS to the range above that constant.
Tue Jan 26 15:22:28 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
inline=0 builds now require an #include of TransportInterface.h
Mon Jan 25 17:29:06 UTC 2010 Adam Mitz <[email protected]>
* java/idl2jni/codegen/idl2jni_visitor.h:
* java/idl2jni/codegen/idl2jni_visitor.cpp:
Added compatibility with latest DOC group TAO_IDL compiler.
Mon Jan 25 17:05:00 UTC 2010 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.h:
Went back to just a fwd decl (not an include) of TransportImpl.
This was required for gcc 3.3.2.
Fri Jan 22 22:13:53 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/mktiddler.pl:
New script to generate a TiddlyWiki format table from latency
test data created with the bin/extract.pl script.
* performance-tests/Bench/bin/run_test:
Added DDS_ROOT and ACE_ROOT to the search path so the script
can execute from a local directory.
* performance-tests/Bench/tools/plot-all.gp:
Cosmetic cleanup for readability.
Fri Jan 22 20:20:35 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/Messenger/subscriber.cpp:
Fixed locally modified conditional used for stress testing.
Fri Jan 22 19:46:57 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/ReceiveListenerSetMap.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Fixed `interface' naming conflicts which affect some platforms.
Fri Jan 22 17:53:20 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/bin/extract.pl:
* performance-tests/Bench/bin/genstats.pl:
* performance-tests/Bench/bin/lj-plots.gp:
* performance-tests/Bench/bin/plot-jitter.gp:
* performance-tests/Bench/bin/plot-transports.gp:
* performance-tests/Bench/bin/reduce.pl:
New data reduction and data visualization scripts to process
latency testing results.
* performance-tests/Bench/tools/convert-all:
* performance-tests/Bench/tools/plot-all.gp:
New data reduction and plotting scripts usable in a Linux
environment after executing the latency tests as described in
the doc/latency-commands file.
Fri Jan 22 16:09:19 UTC 2010 Steven Stallion <[email protected]>
* bin/dcps_tests.lst:
Temporarily disabled nightly BidirMessenger tests until
transport issues have been resolved.
* tests/DCPS/Messenger/Writer.cpp:
Fixed locally modified constant used for stress testing.
Thu Jan 21 19:06:39 UTC 2010 Steven Stallion <[email protected]>
* tests/DCPS/BidirMessenger/DataReaderListener.h:
* tests/DCPS/BidirMessenger/DataReaderListener.cpp:
* tests/DCPS/BidirMessenger/Writer.h:
* tests/DCPS/BidirMessenger/Writer.cpp:
* tests/DCPS/BidirMessenger/pubsub.cpp:
* tests/DCPS/BidirMessenger/run_test.pl:
* tests/DCPS/Messenger/Writer.cpp:
* tests/DCPS/Messenger/subscriber.cpp:
Applied changes submitted by Don Busch to BidirMessenger test.
Thu Jan 21 18:42:57 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.h:
Fixed incorrect access modifier on default ctor.
Thu Jan 21 18:41:09 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Add NULL initializers for pointer types.
Thu Jan 21 18:36:56 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Documentation updates.
Thu Jan 21 18:33:56 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Documentation updates; added NULL initializers for pointer
types.
* dds/DCPS/transport/udp/UdpDataLink.h:
* dds/DCPS/transport/udp/UdpDataLink.inl:
* dds/DCPS/transport/udp/UdpDataLink.cpp:
* dds/DCPS/transport/udp/UdpReceiveStrategy.h:
* dds/DCPS/transport/udp/UdpSendStrategy.h:
* dds/DCPS/transport/udp/UdpTransport.h:
* dds/DCPS/transport/udp/UdpTransport.cpp:
Re-worked refcounting behavior.
* dds/DCPS/transport/udp/UdpConfiguration_rch.h:
* dds/DCPS/transport/udp/UdpTransport_rch.h:
Removed these files.
Thu Jan 21 00:13:13 UTC 2010 Yan Dai <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Corrected the if condition in repository_lost().
Wed Jan 20 22:07:26 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/DataLink.h:
* dds/DCPS/transport/framework/DataLink.cpp:
Added stop operation to allow a DataLink to stop sending and
receiving data without tearing down resources.
transport_shutdown now exhibits idempotent behavior if a
DataLink is already stopped.
* dds/DCPS/transport/framework/DataLinkWatchdog_T.h:
Fixed deadlock problem on upcall in on_timeout.
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportSendBuffer.cpp:
Minor reformatting.
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/ReliableMulticast.h:
* dds/DCPS/transport/multicast/ReliableMulticast.inl:
* dds/DCPS/transport/multicast/ReliableMulticast.cpp:
Updated reliability_lost behavior.
Wed Jan 20 16:23:33 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Updated reliability_lost callback behavior.
Wed Jan 20 15:50:04 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.h:
Added missing include for TransportInterface.h.
Tue Jan 19 22:55:47 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Minor resource management updates.
Tue Jan 19 22:47:38 UTC 2010 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfoRepoServ.h:
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Added finalize operation on TAO_DDS_DCPSInfo_i to cleanup
state when the DCPSInfoRepo is shutdown.
Tue Jan 19 22:22:48 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportSendBuffer.h:
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastDataLink.inl:
* dds/DCPS/transport/multicast/MulticastReceiveStrategy.h:
* dds/DCPS/transport/multicast/MulticastSendStrategy.h:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/ReliableMulticast.cpp:
Re-worked refcounting behavior.
* dds/DCPS/transport/multicast/MulticastConfiguration_rch.h:
* dds/DCPS/transport/multicast/MulticastTransport_rch.h:
Removed these files.
Tue Jan 19 17:20:16 UTC 2010 Steven Stallion <[email protected]>
* docs/html/multicast/multicast.html:
Updated documentation.
Tue Jan 19 17:13:18 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/DisjointSequence.h:
* dds/DCPS/DisjointSequence.inl:
* dds/DCPS/DisjointSequence.cpp:
Added support for checking overflowed sequences.
* dds/DCPS/transport/framework/TransportImpl.cpp:
Fixed GCC warnings related to unused parameters.
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/multicast/ReliableMulticast.h:
* dds/DCPS/transport/multicast/ReliableMulticast.cpp:
Added support for reliability_lost callback.
* dds/InfoRepo/DCPSInfo_i.cpp:
Fixed bug in disassociate_participant which caused iterators
to not be incremented correctly.
Mon Jan 18 22:11:13 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.cpp:
Added copy-out to avoid holding locks over possible remote
calls as a result of reliability_lost.
Mon Jan 18 21:58:22 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/latency-commands:
* performance-tests/Bench/doc/tests-latency:
Updated documentation to explain how to execute the latency
testing as it was performed during development.
* performance-tests/Bench/etc/transport-udp.ini:
Included a hostname placeholder that needs to be specified for
each host on which a test will be executed.
* performance-tests/Bench/tests/latency/p1-100.ini:
* performance-tests/Bench/tests/latency/p1-1000.ini:
* performance-tests/Bench/tests/latency/p1-16000.ini:
* performance-tests/Bench/tests/latency/p1-250.ini:
* performance-tests/Bench/tests/latency/p1-2500.ini:
* performance-tests/Bench/tests/latency/p1-32000.ini:
* performance-tests/Bench/tests/latency/p1-50.ini:
* performance-tests/Bench/tests/latency/p1-500.ini:
* performance-tests/Bench/tests/latency/p1-5000.ini:
* performance-tests/Bench/tests/latency/p1-8000.ini:
Updated with a common rate to execute latency tests at.
Mon Jan 18 20:04:25 UTC 2010 Steven Stallion <[email protected]>
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportInterface.h:
* dds/DCPS/transport/framework/TransportInterface.cpp:
Added client interface to disassociate_* InfoRepo operations.
Also added new reliability_lost_i entry point to TransportImpl
to allow a transport to report a loss in reliability.
Mon Jan 18 14:59:13 UTC 2010 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfo_i.cpp:
Fixed compiler warnings/errors for GCC and VC++.
Sat Jan 16 00:14:19 UTC 2010 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfoRepoServ.h:
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Completed back-end half to reassociation.
* java/jms/src/org/opendds/jms/management/argument/InfoRepoArguments.java:
Added support for new -ReassociateDelay command line option.
Fri Jan 15 21:52:35 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/etc/transport-multi-rel.ini:
* performance-tests/Bench/etc/transport-udp.ini:
Corrected transport type specifications.
Fri Jan 15 21:23:38 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/latency-commands:
* performance-tests/Bench/tools/mkpkg:
Minor corrections from debug.
Fri Jan 15 20:17:05 UTC 2010 Mike Martinez <[email protected]>
* performance-tests/Bench/doc/latency-commands:
* performance-tests/Bench/doc/tests-latency:
Added documentation describing support for the message size
based performance test configurations just added.
* performance-tests/Bench/etc/transport-multi-be.ini:
* performance-tests/Bench/etc/transport-multi-rel.ini:
* performance-tests/Bench/etc/transport-tcp.ini:
* performance-tests/Bench/etc/transport-udp.ini:
Added transport specific configurations supporting the message
size based performance testing configurations.
* performance-tests/Bench/tests/latency:
Added test configurations for message size based latency
performance testing.
* performance-tests/Bench/tools/mkpkg:
Changed to include all test specification files in the
generated distribution package.
Fri Jan 15 16:54:35 UTC 2010 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPS_IR_Topic_Description.cpp:
Fixed compiler warnings related to missing return.
Thu Jan 14 23:45:46 UTC 2010 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPS_IR_Publication.cpp:
* dds/InfoRepo/DCPS_IR_Subscription.h:
* dds/InfoRepo/DCPS_IR_Subscription.cpp:
Completed front-end half to reassociation.
Thu Jan 14 22:42:06 UTC 2010 Steven Stallion <[email protected]>
* dds/DdsDcpsInfo.idl:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
* dds/InfoRepo/DCPS_IR_Participant.h:
* dds/InfoRepo/DCPS_IR_Participant.cpp:
* dds/InfoRepo/DCPS_IR_Publication.h:
* dds/InfoRepo/DCPS_IR_Publication.cpp: