forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.1
2478 lines (1653 loc) · 87 KB
/
ChangeLog-3.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
Wed Mar 28 17:41:16 UTC 2012 Adam Mitz <[email protected]>
* OpenDDS version 3.1 released.
Wed Mar 28 16:50:48 UTC 2012 Adam Mitz <[email protected]>
* NEWS:
Added note for new multicast async_send feature.
* tools/modeling/features/org.opendds.modeling.feature/feature.xml:
* tools/modeling/features/org.opendds.modeling.site/site.xml:
* tools/modeling/plugins/*/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.common/about.properties:
* tools/modeling/plugins/org.opendds.modeling.gmf/diagrams/*.gmfgen:
Updated version numbers for upcoming release.
Mon Mar 26 17:00:04 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportReactorTask.cpp:
* dds/DCPS/transport/multicast/MulticastSendStrategy.h:
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
Fix compile errors on platforms that have no ACE_HAS_AIO_CALLS.
Mon Mar 26 03:27:12 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
Fixed a coverity error.
Sat Mar 24 17:05:08 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
Fixed spurious errors from DataReaderImpl::get_handle_instance().
Fri Mar 23 22:47:29 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
With the new async send feature, need to tell the framework the
entire datagram was sent (unless there was an error).
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.cpp:
Fixed a warning on systems with 64-bit size_t.
* README:
Updated GCC versions used in testing.
Fri Mar 23 22:39:02 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportReactorTask.cpp:
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
Fixed Linux build errors.
Fri Mar 23 21:25:49 UTC 2012 Don Hudson <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportReactorTask.h:
* dds/DCPS/transport/framework/TransportReactorTask.inl:
* dds/DCPS/transport/framework/TransportReactorTask.cpp:
Added proactor when optional async send is used and setup integrated
proactor/reactor event loops. When async send is used, changed
reactor to ACE_WFMO_Reactor because it's required for the event loop
integration and the features of the additional features of the
ACE_Select_Reactor aren't required.
In TransportReactorTask, changed stop() method to only delete
proactor and reactor if proactor exists. Otherwise, deletion is left
to dtor.
* dds/DCPS/transport/multicast/MulticastDataLink.h:
* dds/DCPS/transport/multicast/MulticastDataLink.inl:
* dds/DCPS/transport/multicast/MulticastInst.h:
* dds/DCPS/transport/multicast/MulticastInst.cpp:
* dds/DCPS/transport/multicast/MulticastSendStrategy.h:
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Added optional async send on Windows platforms that supported it.
New configuration parameter is async_send. Defaults to false.
* bin/dcps_tests.lst:
* tests/DCPS/LargeSample/pub_multicast_async.ini:
* tests/DCPS/LargeSample/run_test.pl:
Added run of LargeSample multicast test with publishers sending async.
Wed Mar 21 21:46:51 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Updated DCPS_debug_level used for logging every single sample.
* dds/DCPS/RTPS/ParameterListConverter.cpp:
Encode TIME_BASED_FILTER QoS for subscription BIT.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
Use the task for BIT removal.
Allow a straight CDR (not ParameterList) key payload.
* dds/DCPS/RTPS/Spdp.cpp:
Allow a non-zero options field in the encapsulation header.
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/transport/framework/TransportSendBuffer.h:
Coverity fixes.
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.cpp:
For built-in endpoints: read the key from PID_KEY_HASH if no FLAG_K,
also write the key in PID_KEY_HASH in dispose/unregister.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Implemented sending of GAPs for durable data and completed
writer-side durability support.
* examples/DCPS/ishapes/ReaderQosDialog.cpp:
* examples/DCPS/ishapes/ShapeType.idl:
* examples/DCPS/ishapes/ShapesDialog.cpp:
* examples/DCPS/ishapes/ShapesDialog.hpp:
* examples/DCPS/ishapes/main.cpp:
* examples/DCPS/ishapes/readerQosForm.ui:
Allow PARTITION QoS as a command-line argument.
Default color assigned to OpenDDS is GREEN.
Cleaned up code.
Added TIME_BASED_FILTER QoS to the GUI.
Adjusted default timing parameters for SPDP and handshake.
* tests/transport/rtps_reliability/rtps_reliability.cpp:
Enable durability in this test.
Fri Mar 16 21:51:44 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
Start sequence numbers at 1. Don't even attempt to write on the
SEDP writers if there are no associated participants.
* dds/DCPS/transport/framework/TransportSendBuffer.h:
* dds/DCPS/transport/framework/TransportSendBuffer.cpp:
release()ing a buffer needs to remove it from the buffers_ map.
This avoids a double-delete during shutdown.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Skip wait_for_handshake() in the loopback case, we should already
be guaranteed that the reader is ready (since it's local).
* dds/idl/CPPTemplate.txt:
In store_synthetic_data(), handle the case where store_instance_data()
has failed to give us a SubscriptionInstance. This is a problem with
RTPS-based built-in topics that needs further investigation.
* README:
Updated required 2.0a patch level.
Fri Mar 16 12:56:49 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/RakeResults_T.h:
Fixed typo
Thu Mar 15 18:44:34 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/ZeroCopySeq_T.h:
* dds/DCPS/ZeroCopySeq_T.inl:
* dds/DCPS/ZeroCopySeq_T.cpp:
Allow for indexing the sequence even when there is no "valid_data"
present. In these cases it will return a reference to a
default-constructed instance of the data type. Users should not read
or modify this instance. This change makes the zero-copy sequence
closer to a conforming CORBA sequence and fixes a crash in the Java
wrappers.
* java/tests/dcps_java_tests.lst:
* java/tests/zerocopy/ZeroCopy.java:
* java/tests/zerocopy/run_test.pl:
* java/tests/zerocopy/zerocopy.mpc:
New test for this bug.
* java/tests/messenger/both/run_test.pl:
Fixed typo.
Wed Mar 14 15:41:55 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Fixed a locking bug during durability resend.
Wed Mar 14 15:05:18 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
For reader-side durability, need to send nacks if data is
received but there are still missing lower sequence numbers.
Tue Mar 13 23:15:11 UTC 2012 Adam Mitz <[email protected]>
* NEWS:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/RTPS/RtpsDiscovery.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DdsDcpsSubscriptionExt.idl:
* tests/DCPS/DCPSInfoRepo/DCPSSubscriberI.h:
Removed DataReaderQosExt from DdsDcpsSubscriptionExt.idl. This was
only being used to provide a non-standard-compliant
backwards-compatibility setting to get the DURABILITY QoS behavior
matching that of OpenDDS v1.2 and earlier. It was not being used in
any OpenDDS code.
* tests/DCPS/PersistentDurability/DataWriterListenerImpl.h:
* tests/DCPS/PersistentDurability/DataWriterListenerImpl.cpp:
* tests/DCPS/PersistentDurability/publisher.cpp:
* tests/DCPS/PersistentDurability/subscriber.cpp:
Change the test to use PERSISTENT_DURABILITY_QOS instead of the
OpenDDS-custom QoS value.
Tue Mar 13 20:09:45 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpInst.cpp:
Add writer-side handling of durable data. Durable data for each
reader is queued until a timeout expires or the reader requests
it using an ACKNACK, the writer writes it an the reader acknowledges.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Now that the transport is doing the above, discovery can't hijack
the transport's reactor thread during add_association(). Instead
Sedp will have a dedicated thread for processing both SEDP Association
events and also incoming data on the two SEDP readers.
Tue Mar 13 13:28:35 UTC 2012 Brian Johnson <[email protected]>
* bin/dcps_tests.lst:
Added tests/Messenger/run_test.pl runs with thread_per_connection for
tcp and rtps_disc_tcp.
Tue Mar 13 13:16:30 UTC 2012 Brian Johnson <[email protected]>
* tests/DCPS/Messenger/Args.h:
Added "-p" flag to set thread_per_connection_=true.
* tests/DCPS/Messenger/run_test.pl:
Added "thread_per" flag to set "-p" flag for publisher.
Mon Mar 12 13:08:33 UTC 2012 Paul Calabrese <[email protected]>
* tools/scripts/lcov.pl:
Fix fuzz error.
Fri Mar 9 23:19:06 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
Track which readers are durable, only send durable data to them.
* dds/DCPS/Definitions.h:
Fuzz fixed.
* dds/DCPS/RTPS/Spdp.cpp:
Removed unused #include.
* java/tests/messenger/publisher/run_test.pl:
* java/tests/messenger/run_test.pl:
* java/tests/messenger/subscriber/run_test.pl:
* tests/DCPS/Messenger/run_test.pl:
Extended timeout for the subscriber process. With RTPS discovery
it may take until the lease duration for the publisher has expired.
* tests/DCPS/TransientLocalTest/subscriber.cpp:
Enable Reliable RELIABILTY QoS for the DataReader.
Fri Mar 9 20:48:25 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/InfoRepoDiscovery.h:
* dds/DCPS/InfoRepoDiscovery.cpp:
Moved FailoverListener to InfoRepoDiscovery that
was missed when r5266.
* dds/DCPS/WriteDataContainer.h:
* dds/DCPS/WriteDataContainer.cpp:
Removed unused public interface.
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/DCPS/ConfigFile/test1.ini:
Added missing config of dx for rtps.
Fri Mar 9 14:37:49 UTC 2012 Paul Calabrese <[email protected]>
* DevGuideExamples/DCPS/Messenger.minimal/DataReaderListenerImpl.h:
* DevGuideExamples/DCPS/Messenger.minimal/DataReaderListenerImpl.cpp:
* DevGuideExamples/DCPS/Messenger/DataReaderListenerImpl.h:
* DevGuideExamples/DCPS/Messenger/DataReaderListenerImpl.cpp:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/DataReaderListenerImpl.h:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/DataReaderListenerImpl.cpp:
* dds/DCPS/BitPubListenerImpl.h:
* dds/DCPS/BitPubListenerImpl.cpp:
* dds/DCPS/ContentFilteredTopicImpl.h:
* dds/DCPS/ContentFilteredTopicImpl.cpp:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderRemoteImpl.h:
* dds/DCPS/DataReaderRemoteImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterRemoteImpl.h:
* dds/DCPS/DataWriterRemoteImpl.cpp:
* dds/DCPS/DomainParticipantFactoryImpl.h:
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/EntityImpl.h:
* dds/DCPS/EntityImpl.cpp:
* dds/DCPS/FailoverListener.h:
* dds/DCPS/FailoverListener.cpp:
* dds/DCPS/GuardCondition.h:
* dds/DCPS/GuardCondition.cpp:
* dds/DCPS/MultiTopicDataReaderBase.h:
* dds/DCPS/MultiTopicDataReaderBase.cpp:
* dds/DCPS/MultiTopicDataReader_T.h:
* dds/DCPS/MultiTopicDataReader_T.cpp:
* dds/DCPS/MultiTopicImpl.h:
* dds/DCPS/MultiTopicImpl.cpp:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/QueryConditionImpl.h:
* dds/DCPS/QueryConditionImpl.cpp:
* dds/DCPS/ReadConditionImpl.h:
* dds/DCPS/ReadConditionImpl.cpp:
* dds/DCPS/StatusConditionImpl.h:
* dds/DCPS/StatusConditionImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/TopicDescriptionImpl.h:
* dds/DCPS/TopicDescriptionImpl.cpp:
* dds/DCPS/TopicImpl.h:
* dds/DCPS/TopicImpl.cpp:
* dds/DCPS/WaitSet.h:
* dds/DCPS/WaitSet.cpp:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
* dds/InfoRepo/DomainParticipantListener_i.h:
* dds/InfoRepo/DomainParticipantListener_i.cpp:
* dds/InfoRepo/FederatorManagerImpl.h:
* dds/InfoRepo/FederatorManagerImpl.cpp:
* dds/InfoRepo/UpdateListener_T.h:
* dds/InfoRepo/UpdateListener_T.cpp:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
* etc/dds.doxygen:
* examples/DCPS/DistributedContent/FileInfoListener.h:
* examples/DCPS/DistributedContent/FileInfoListener.cpp:
* java/idl2jni/codegen/im_jni.cpp:
* java/idl2jni/runtime/idl2jni_runtime.h:
* performance-tests/DCPS/MulticastListenerTest/DataReaderListener.h:
* performance-tests/DCPS/MulticastListenerTest/DataReaderListener.cpp:
* performance-tests/DCPS/TCPListenerTest/DataReaderListener.h:
* performance-tests/DCPS/TCPListenerTest/DataReaderListener.cpp:
* performance-tests/DCPS/TCPProfilingTest/DataReaderListener.h:
* performance-tests/DCPS/TCPProfilingTest/DataReaderListener.cpp:
* performance-tests/DCPS/UDPListenerTest/DataReaderListener.h:
* performance-tests/DCPS/UDPListenerTest/DataReaderListener.cpp:
* tests/DCPS/CompatibilityTest/DataReaderListener.h:
* tests/DCPS/CompatibilityTest/DataReaderListener.cpp:
* tests/DCPS/CompatibilityTest/DataWriterListenerImpl.h:
* tests/DCPS/CompatibilityTest/DataWriterListenerImpl.cpp:
* tests/DCPS/ConfigTransports/DataReaderListener.h:
* tests/DCPS/ConfigTransports/DataReaderListener.cpp:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.h:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSSubscriberI.h:
* tests/DCPS/DcpsIntegration/DomainParticipantListener.h:
* tests/DCPS/DcpsIntegration/DomainParticipantListener.cpp:
* tests/DCPS/DcpsIntegration/TopicListener.h:
* tests/DCPS/DcpsIntegration/TopicListener.cpp:
* tests/DCPS/Deadline/DataWriterListenerImpl.h:
* tests/DCPS/Deadline/DataWriterListenerImpl.cpp:
* tests/DCPS/Federation/DataReaderListener.h:
* tests/DCPS/Federation/DataReaderListener.cpp:
* tests/DCPS/Federation/DataWriterListenerImpl.h:
* tests/DCPS/Federation/DataWriterListenerImpl.cpp:
* tests/DCPS/FooTest3_0/DataWriterListener.h:
* tests/DCPS/FooTest3_0/DataWriterListener.cpp:
* tests/DCPS/FooTest3_0/DomainParticipantListener.h:
* tests/DCPS/FooTest3_0/DomainParticipantListener.cpp:
* tests/DCPS/FooTest3_0/PublisherListener.h:
* tests/DCPS/FooTest3_0/PublisherListener.cpp:
* tests/DCPS/FooTest4_0/DataReaderListener.h:
* tests/DCPS/FooTest4_0/DataReaderListener.cpp:
* tests/DCPS/FooTest5/DataReaderListener.h:
* tests/DCPS/FooTest5/DataReaderListener.cpp:
* tests/DCPS/FooType2/FooDataReaderImpl.h:
* tests/DCPS/FooType2/FooDataReaderImpl.cpp:
* tests/DCPS/FooType2/FooDataWriterImpl.h:
* tests/DCPS/FooType2/FooDataWriterImpl.cpp:
* tests/DCPS/FooType2/FooTypeSupportImpl.h:
* tests/DCPS/FooType2/FooTypeSupportImpl.cpp:
* tests/DCPS/GroupPresentation/SubscriberListener.h:
* tests/DCPS/GroupPresentation/SubscriberListener.cpp:
* tests/DCPS/LatencyBudget/DataWriterListenerImpl.h:
* tests/DCPS/LatencyBudget/DataWriterListenerImpl.cpp:
* tests/DCPS/Lifespan/DataWriterListenerImpl.h:
* tests/DCPS/Lifespan/DataWriterListenerImpl.cpp:
* tests/DCPS/LivelinessTest/DataReaderListener.h:
* tests/DCPS/LivelinessTest/DataReaderListener.cpp:
* tests/DCPS/LivelinessTimeout/DataReaderListenerImpl.h:
* tests/DCPS/LivelinessTimeout/DataReaderListenerImpl.cpp:
* tests/DCPS/LivelinessTimeout/DataWriterListenerImpl.h:
* tests/DCPS/LivelinessTimeout/DataWriterListenerImpl.cpp:
* tests/DCPS/ManualAssertLiveliness/DataWriterListenerImpl.h:
* tests/DCPS/ManualAssertLiveliness/DataWriterListenerImpl.cpp:
* tests/DCPS/ManyTopicTest/DataReaderListener.h:
* tests/DCPS/ManyTopicTest/DataReaderListener.cpp:
* tests/DCPS/MultiDPTest/DataReaderListener.h:
* tests/DCPS/MultiDPTest/DataReaderListener.cpp:
* tests/DCPS/MultiRepoTest/DataWriterListenerImpl.h:
* tests/DCPS/MultiRepoTest/DataWriterListenerImpl.cpp:
* tests/DCPS/MultiRepoTest/ForwardingListener.h:
* tests/DCPS/MultiRepoTest/ForwardingListener.cpp:
* tests/DCPS/Partition/DataWriterListener.h:
* tests/DCPS/Partition/DataWriterListener.cpp:
* tests/DCPS/PersistentDurability/DataWriterListenerImpl.h:
* tests/DCPS/PersistentDurability/DataWriterListenerImpl.cpp:
* tests/DCPS/Reconnect/DataWriterListener.h:
* tests/DCPS/Reconnect/DataWriterListener.cpp:
* tests/DCPS/TestFramework/TestFramework.h:
* tests/DCPS/TestFramework/TestFramework.cpp:
* tests/DCPS/TestFramework/TestFramework_T.h:
* tests/DCPS/TestFramework/TestFramework_T.cpp:
* tests/DCPS/TransientDurability/DataWriterListenerImpl.h:
* tests/DCPS/TransientDurability/DataWriterListenerImpl.cpp:
* tests/DCPS/TransientLocalTest/DataWriterListenerImpl.h:
* tests/DCPS/TransientLocalTest/DataWriterListenerImpl.cpp:
* tests/DCPS/unit/MyTypeSupportImpl.h:
* tests/DCPS/unit/MyTypeSupportImpl.cpp:
* tools/modeling/codegen/model/NullListener.h:
* tools/modeling/codegen/model/NullListener.cpp:
* tools/modeling/codegen/model/NullParticipantListener.h:
* tools/modeling/codegen/model/NullParticipantListener.cpp:
* tools/modeling/codegen/model/NullPublisherListener.h:
* tools/modeling/codegen/model/NullPublisherListener.cpp:
* tools/modeling/codegen/model/NullReaderListener.h:
* tools/modeling/codegen/model/NullReaderListener.cpp:
* tools/modeling/codegen/model/NullSubscriberListener.h:
* tools/modeling/codegen/model/NullSubscriberListener.cpp:
* tools/modeling/codegen/model/NullTopicListener.h:
* tools/modeling/codegen/model/NullTopicListener.cpp:
* tools/modeling/codegen/model/NullWriterListener.h:
* tools/modeling/codegen/model/NullWriterListener.cpp:
* tools/modeling/tests/Arrays/subscriber.cpp:
* tools/modeling/tests/CfTopic/subscriber.cpp:
* tools/modeling/tests/Chained/subscriber.cpp:
* tools/modeling/tests/Chained_Data/subscriber.cpp:
* tools/modeling/tests/Chained_Topic/subscriber.cpp:
* tools/modeling/tests/Comments/subscriber.cpp:
* tools/modeling/tests/CompositeKey/subscriber.cpp:
* tools/modeling/tests/CopyTopicQos/subscriber.cpp:
* tools/modeling/tests/DataLibRef/subscriber.cpp:
* tools/modeling/tests/Deep/Down/Reference/subscriber.cpp:
* tools/modeling/tests/DomainZero/subscriber.cpp:
* tools/modeling/tests/EmptyLibs/subscriber.cpp:
* tools/modeling/tests/Exchange/subscriber.cpp:
* tools/modeling/tests/ExternalPolicies/subscriber.cpp:
* tools/modeling/tests/InvalidNames/subscriber.cpp:
* tools/modeling/tests/Looped/subscriber.cpp:
* tools/modeling/tests/Messenger/subscriber.cpp:
* tools/modeling/tests/MessengerDpQos/subscriber.cpp:
* tools/modeling/tests/MessengerGlobalNs/subscriber.cpp:
* tools/modeling/tests/MessengerMC/subscriber.cpp:
* tools/modeling/tests/MessengerMixed/subscriber.cpp:
* tools/modeling/tests/MessengerMulti/subscriber.cpp:
* tools/modeling/tests/MessengerNoPub/subscriber.cpp:
* tools/modeling/tests/MessengerPubQos/subscriber.cpp:
* tools/modeling/tests/MessengerSimpleTypes/subscriber.cpp:
* tools/modeling/tests/MessengerSplit/subscriber.cpp:
* tools/modeling/tests/MessengerWriterQos/subscriber.cpp:
* tools/modeling/tests/ModuleNameConflict/subscriber.cpp:
* tools/modeling/tests/MultiDCPS/subscriber.cpp:
* tools/modeling/tests/MultiInstance/subscriber.cpp:
* tools/modeling/tests/MultiTopic/subscriber.cpp:
* tools/modeling/tests/PolicyLib/subscriber.cpp:
* tools/modeling/tests/ReaderQos/subscriber.cpp:
* tools/modeling/tests/ReferExternalProj/subscriber.cpp:
* tools/modeling/tests/RemoteInstHandles/publisher.cpp:
* tools/modeling/tests/RemoteInstHandles/subscriber.cpp:
* tools/modeling/tests/ReusedExtTypes/subscriber.cpp:
* tools/modeling/tests/ReusedTypes/subscriber.cpp:
* tools/modeling/tests/Sequences/subscriber.cpp:
* tools/modeling/tests/StockQuoter/subscriber.cpp:
* tools/modeling/tests/SubscriberQos/subscriber.cpp:
* tools/modeling/tests/TopicQos/subscriber.cpp:
* tools/modeling/tests/UDP/subscriber.cpp:
* tools/scripts/style/style.d/02_obsolete.sed:
Remove usage of ACE_THROW_SPEC. Since we no longer
support TAO 1.5a this macro is no longer needed. I
did leave the macro definition in dds/DCPS/Definitions.h
so as to not break any usage of this macro by OpenDDS
users.
* tools/scripts/style/style.d/03_ACE_THROW_SPEC.sed:
Removed this file.
Thu Mar 8 20:36:02 UTC 2012 Brian Johnson <[email protected]>
* bin/PerlDDS/Process.pm:
* bin/PerlDDS/Run_Test.pm:
Coverage fixes.
Thu Mar 8 19:25:15 UTC 2012 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Corrected value returned for process when max processes are reached.
* tools/scripts/lcov.pl:
Cleanup.
Thu Mar 8 16:47:13 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportCustomizedElement.h:
* dds/DCPS/transport/framework/TransportCustomizedElement.cpp:
* dds/DCPS/transport/framework/TransportQueueElement.h:
* dds/DCPS/transport/framework/TransportSendElement.h:
* dds/DCPS/transport/framework/TransportSendElement.inl:
* dds/DCPS/transport/framework/TransportSendElement.cpp:
Provide a subscription_id() accessor for Queue Elements.
This is only used when sending to a particular single subscription.
DataWriterImpl uses that feature to implement durability.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpSendStrategy.cpp:
If sending to a (single) subscription, only use that one locator.
* NEWS:
Updated info for upcoming release.
Thu Mar 8 16:49:28 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Added flag to indicate staging area for coverage.
Thu Mar 8 16:01:32 UTC 2012 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Reducing the number of Coverage processes.
Thu Mar 8 15:39:18 UTC 2012 Brian Johnson <[email protected]>
* bin/PerlDDS/Process.pm:
* bin/PerlDDS/ProcessFactory.pm:
* bin/PerlDDS/Run_Test.pm:
Changing Coverage to try to capture all coverage during one test
run and ensure that all executables contribute to coverage.
Wed Mar 7 21:19:15 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
When a remote participant lease expires or shuts down,
removing its endpoints needs to unmatch any locally-matched
endpoints.
Cleaned-up logging.
* tests/DCPS/Messenger/subscriber.cpp:
Updated the WaitSet/StatusCondition usage pattern to check
the status before waiting.
* README:
Updated info for upcoming release.
Wed Mar 7 16:37:11 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/StatusConditionImpl.h:
Made virtual explicit and intialized mask to constant.
* tests/DCPS/FooTest3_0/SubDriver.cpp:
Added calls to participant_->contains_entity, like PubDriver already does.
* tests/DCPS/StatusCondition/StatusConditionTest.cpp:
Added test to verify enabled status.
Wed Mar 7 14:52:35 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Reducing some of the noise in the no coverage file reporting.
Wed Mar 7 13:55:13 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Fixing identifying files with no coverage.
Wed Mar 7 13:22:48 UTC 2012 Brian Johnson <[email protected]>
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Removed unused variable.
Tue Mar 6 23:31:35 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DisjointSequence.cpp:
* tests/DCPS/UnitTests/DisjointSequence.cpp:
Fixed a bug in handling sequence number 0 combining with 1.
Tue Mar 6 20:16:10 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Maintaining old list.
Tue Mar 6 20:00:43 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/ReceivedDataElementList.h:
Removing dead code.
* tools/scripts/lcov.pl:
Added check to identify when code has no coverage at all.
Tue Mar 6 19:51:39 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/Definitions.h:
Allow a 0-valued sequence number only with a special accessor
function like the unknown sequence number.
Less-than comparison for SequenceNumber no longer accounts for
wrap-around (which won't happen with 64-bit sequence numbers).
Cleaned up some other cruft in the SequenceNumber class.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Use the 0 sequence number to avoid needing special case code when
the heartbeat low is 1.
* tests/DCPS/UnitTests/DisjointSequence.cpp:
* tests/DCPS/UnitTests/SequenceNumber.cpp:
Updated unit tests for sequence number changes.
Tue Mar 6 14:34:37 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Clearing cache at shutdown.
* tests/DCPS/FooTest3_0/PubDriver.cpp:
Added verification that lookup would succeed before cleanup.
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Expanded tests to exercise getting and setting expression and parameters.
* tests/DCPS/TransientDurability/publisher.cpp:
Fixed test so it actually ran code that was currently being skipped.
Tue Mar 6 00:36:46 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
Pass durability attribute down from DCPS to transport.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.h:
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
Keep track of whether or not each local (reliable) reader using the
data link is durable (has a durability level greater than volatile).
Implemented reader's side of transient-local durability for RTPS.
Disabled sending of INFO_REPLY submessage as this caused problems for
interoperability.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
SEDP readers and writers have transient-local durability.
* tests/transport/rtps/publisher.cpp:
* tests/transport/rtps/subscriber.cpp:
* tests/transport/rtps_reliability/rtps_reliability.cpp:
* tests/transport/simple/PubDriver.cpp:
* tests/transport/simple/SubDriver.cpp:
Updated tests to account for changed transport client API.
* docs/design/RTPS:
Updated note about Original Writer Info.
Sat Mar 3 06:28:35 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Minor context log message.
Sat Mar 3 05:35:51 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/DataSampleList.h:
* dds/DCPS/DataSampleList.cpp:
Removed copy ctor & operator= and let compiler generate,
removed and prevented default ctor.
Fri Mar 2 21:18:21 UTC 2012 Brian Johnson <[email protected]>
* tests/DCPS/UnitTests/DisjointSequence.cpp:
* dds/DCPS/DisjointSequence.cpp:
Added test to cover when the disjoint sequence
has more data than could fit in a bitmap range
and fixed error exposed in fill_bitmap_range.
* dds/DCPS/DataBlockLockPool.h:
* dds/DCPS/DataBlockLockPool.cpp:
Removed unused functions.
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* tests/DCPS/unit/MyTypeSupportImpl.h:
Moved simple functions to inline, removed unused functions,
and made unregistered pure virtual.
* dds/DCPS/DomainParticipantFactoryImpl.h:
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/Service_Participant.cpp:
Removed unused function and useless comments.
* dds/idl/dds_visitor.cpp:
* dds/idl/dds_generator.h:
* dds/idl/dds_generator.cpp:
* dds/idl/keys_generator.h:
* dds/idl/marshal_generator.h:
* dds/idl/marshal_generator.cpp:
* dds/idl/metaclass_generator.h:
* dds/idl/ts_generator.h:
* dds/idl/ts_generator.cpp:
* dds/idl/wireshark_generator.h:
* dds/idl/wireshark_generator.cpp:
Removed dead code and unused function parameters.
* dds/monitor/MonitorFactoryImpl.cpp:
Fixing coverity identified errors.
* tests/DCPS/unit/Main.cpp:
Added unit tests to cover DataSampleListIterator.
Thu Mar 1 19:13:47 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Added ability to only run coverage on certain build days.
Thu Mar 1 19:06:33 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DataSampleList.h:
* dds/DCPS/DataSampleList.inl:
* dds/DCPS/DataWriterImpl.cpp:
Go back to the earlier (pre-RTPS-merge) strategy of using the same
sequence number for durability resends.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
Write durability data to a particular reader GUID,
and use the same sequence number as the original send.
Allocate the DataSampleListElement on the heap, since (once the
transport gets support for it) the TransportSendElement could
be held after the send() returns.
* dds/DCPS/transport/rtps_udp/RtpsSampleHeader.cpp:
Removed OriginalWriterInfo, it's no longer needed since the
sequence numbers are the same for durability resends.
Get initial QoS values from TheServiceParticipant.
Thu Mar 1 14:10:48 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Fixing genhtml prefix removal.
Wed Feb 29 20:03:51 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Removing some verbose logging.
Wed Feb 29 18:56:26 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Spdp.cpp:
More changes for interoperability:
- Send the "key" in the SPDP dispose/unregister message
- Better support for skipping unrecognized data received on SPDP
Wed Feb 29 15:00:12 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Cleanup whitespace.
Tue Feb 28 19:20:55 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Removing prefix for generated coverage html.
Tue Feb 28 17:01:00 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Script for processing DDS coverage data with lcov.
Thu Feb 23 17:12:24 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/ParameterListConverter.cpp:
* tests/DCPS/UnitTests/ut_ParameterListConverter.cpp:
For interoperability, always encode the RELIABILITY QoS
value (even when it's the default and therefore not required
to be included).
Thu Feb 23 16:37:44 UTC 2012 Jeff Schmitz <[email protected]>
* dds/DCPS/RTPS/ParameterListConverter.cpp:
Adjust comments to no longer say TODO.
Thu Feb 23 15:08:10 UTC 2012 Brian Johnson <[email protected]>
* MPC/config/coverage_optional.mpb:
Changed to "--coverage" flags which set all appropriate flags
for coverage.
* dds/DCPS/DataReaderImpl.cpp:
Fixed initialization order.
Wed Feb 22 20:02:27 UTC 2012 Brian Johnson <[email protected]>
* dds/DCPS/ConfigUtils.cpp:
Verifying section was actually opened (coverity).
* dds/DCPS/DataReaderImpl.cpp:
Cleaned up overly complex code and ctor initialization
(coverity).
* dds/DCPS/RepoIdConverter.h:
* dds/DCPS/RepoIdConverter.cpp:
Changed federationId and participantId to use appropriate
type (coverity).
* dds/DCPS/ZeroCopySeq_T.cpp:
Fixed missed setting of sc_buffer_ (coverity).
Wed Feb 22 19:52:02 UTC 2012 Brian Johnson <[email protected]>
* tests/DCPS/KeyTest/run_test.pl:
* tests/DCPS/PersistentDurability/run_test.pl:
* tests/DCPS/UnitTests/run_test_coverage.pl:
Added "lone" process flag to create_process to allow better
coverage metrics.
Wed Feb 22 18:49:42 UTC 2012 Brian Johnson <[email protected]>
* bin/PerlDDS/ProcessFactory.pm:
Added optional parameter to create_process to indicate that
a process will be a "lone" process, so more than one coverage
process can be created in a single run.
* tests/DCPS/UnitTests/run_test.pl:
Called create_process passing in "lone" process, so each unit
test will collect coverage metrics.
Wed Feb 22 18:21:39 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/ParameterListConverter.cpp:
Allow infinite durations with 0xffffffff as the nanoseconds.
Adjust how we support PIDMASK_INCOMPATIBLE.
Write PID_BUILTIN_ENDPOINT_SET.
Read PID_TIME_BASED_FILTER in discovered reader data.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Spdp.cpp:
Reverted the following change, it was not necessary:
Thu Feb 16 23:32:54 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportHeader.h:
* dds/DCPS/transport/framework/TransportReceiveStrategy_T.cpp:
Added a method for handling incomplete (too-short) transport headers.
* dds/DCPS/transport/rtps_udp/RtpsTransportHeader.h:
* dds/DCPS/transport/rtps_udp/RtpsTransportHeader.inl:
Allow (and drop) datagrams with incomplete RTPS Headers.
* examples/DCPS/ishapes/main.cpp:
Added #include for static build.
* tests/DCPS/UnitTests/ut_ParameterListConverter.cpp:
Test the PID_BUILTIN_ENDPOINT_SET change.