forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.2
1966 lines (1389 loc) · 71 KB
/
ChangeLog-3.2
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 Jul 3 17:57:50 UTC 2012 Byron Harris <[email protected]>
* OpenDDS version 3.2 released.
Tue Jul 3 16:40:32 UTC 2012 Adam Mitz <[email protected]>
* java/dds/OpenDDS_DCPS_jni.cpp:
ACE::init() is now required since we don't call ORB_init() until
later (and only if it's needed). Java programs don't have ACE_TMAIN
to provide the automatic ACE::init() for us.
* java/tests/builtintopics/run_test.pl:
* java/tests/complex_idl/run_test.pl:
Removed fixed port numbers in -ORBListenEndpoints.
Tue Jul 3 14:24:35 UTC 2012 Byron Harris <[email protected]>
* tools/modeling/features/org.opendds.modeling.feature/feature.xml:
* tools/modeling/features/org.opendds.modeling.site/site.xml:
* tools/modeling/plugins/com.ociweb.emf.util/META-INF/MANIFEST.MF:
* tools/modeling/plugins/com.ociweb.gmf/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.common/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.common/about.properties:
* tools/modeling/plugins/org.opendds.modeling.diagram.datalib/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.diagram.dcpslib/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.diagram.policylib/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.gmf/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.gmf/diagrams/DataLib.gmfgen:
* tools/modeling/plugins/org.opendds.modeling.gmf/diagrams/DcpsLib.gmfgen:
* tools/modeling/plugins/org.opendds.modeling.gmf/diagrams/MainDiagram.gmfgen:
* tools/modeling/plugins/org.opendds.modeling.gmf/diagrams/PolicyLib.gmfgen:
* tools/modeling/plugins/org.opendds.modeling.graphics/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.help/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.model.edit/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.model.editor/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.model/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.validation/META-INF/MANIFEST.MF:
Replaced occurrences of "3.1" with "3.2" in preparation of OpenDDS 3.2 release.
Tue Jul 3 13:50:53 UTC 2012 Byron Harris <[email protected]>
* AUTHORS:
* README:
Update for OpenDDS 3.2 release.
Tue Jul 3 13:45:48 UTC 2012 Byron Harris <[email protected]>
* NEWS:
Updated to account for recent changes to OpenDDS.
Mon Jul 2 11:42:14 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/RTPS/RtpsDiscovery.cpp:
Removed trailing whitespace.
Sun Jul 1 13:28:26 UTC 2012 Paul Calabrese <[email protected]>
* tests/DCPS/Messenger/rtps_disc.ini:
Change the ResendPeriod back to two seconds. This should
increase the reliability of this test.
Fri Jun 29 21:24:26 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
In delete_participant(), don't log an ERROR when the participant is
non-empty. User code (including tests) could call this intentionally.
Fri Jun 29 21:02:12 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/DpShutdown/dpshutdown.cpp:
Set RTPS discovery's resend period to 2 seconds to
avoid the test occasionally running up to 2.5
minutes when using the default period of 30 seconds.
Fri Jun 29 20:11:26 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Fixed logic for handling ORBVerboseLogging in config file.
Fri Jun 29 19:47:18 UTC 2012 Adam Mitz <[email protected]>
* tests/DCPS/QueryCondition/QueryConditionTest.cpp:
Fixed memory management of a string value in the test.
Fri Jun 29 17:04:21 UTC 2012 Paul Calabrese <[email protected]>
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/RTPS/Spdp.cpp:
Modify the Spdp implementation to send participant announcements whenever
a new participant is discovered. This should reduce discovery time
with RTPS, especially when the default value of ResendPeriod=30 is used.
* tests/DCPS/Deadline/run_test.pl:
* tests/DCPS/Deadline/subscriber.cpp:
Clean up the perl script and change the subscriber to use a status
condition instead of a sleep. The sleep period was not long enough
for RTPS discovery.
* tests/DCPS/Messenger/rtps_disc.ini:
Remove ResendPeriod=30 from this test as it is no longer needed.
Fri Jun 29 16:14:55 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/RTPS/RtpsDiscovery.cpp:
In remove_domain_participant() don't delete
participant until lock has been released.
Thu Jun 28 20:08:57 UTC 2012 Byron Harris <[email protected]>
* dds/DdsDcps.mpc:
Added back server-side header files for local IDL
interfaces so that "make install" will still work.
Thu Jun 28 16:37:53 UTC 2012 Byron Harris <[email protected]>
* dds/DdsDcps.mpc:
When compiling OpenDDS_Dcps library's local IDL interfaces,
suppress generation of server-side source.
* DevGuideExamples/DCPS/Messenger/DataReaderListenerImpl.h:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/DataReaderListenerImpl.h:
* dds/DCPS/BitPubListenerImpl.h:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DomainParticipantFactoryImpl.h:
* dds/DCPS/EntityImpl.h:
* dds/DCPS/Registered_Data_Types.h:
* dds/DCPS/Service_Participant.h:
* dds/DCPS/TopicDescriptionImpl.h:
* dds/DCPS/TopicImpl.h:
* dds/DdsDcps.mpc:
* dds/InfoRepo/DomainParticipantListener_i.h:
* examples/DCPS/IntroductionToOpenDDS/ExchangeEventDataReaderListenerImpl.h:
* examples/DCPS/IntroductionToOpenDDS/QuoteDataReaderListenerImpl.h:
* examples/DCPS/Messenger_IOGR_Imr/DataReaderListener.h:
* examples/DCPS/Messenger_Imr/DataReaderListener.h:
* performance-tests/Bench/src/DataReaderListener.h:
* performance-tests/DCPS/InfoRepo_population/DataReaderListener.h:
* performance-tests/DCPS/MulticastListenerTest/DataReaderListener.h:
* performance-tests/DCPS/Priority/DataReaderListener.h:
* performance-tests/DCPS/SimpleLatency/PubListener.h:
* performance-tests/DCPS/SimpleLatency/SubListener.h:
* performance-tests/DCPS/TCPListenerTest/DataReaderListener.h:
* performance-tests/DCPS/TCPProfilingTest/DataReaderListener.h:
* performance-tests/DCPS/UDPListenerTest/DataReaderListener.h:
* tests/DCPS/BidirMessenger/DataReaderListener.h:
* tests/DCPS/BuiltInTopic/main.cpp:
* tests/DCPS/BuiltInTopicTest/DataReaderListener.h:
* tests/DCPS/CompatibilityTest/DataReaderListener.h:
* tests/DCPS/CompatibilityTest/DataWriterListenerImpl.h:
* tests/DCPS/ConfigTransports/DataReaderListener.h:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.h:
* tests/DCPS/CorbaSeq/DataReaderListener.h:
* tests/DCPS/DPFactoryQos/DataReaderListener.h:
* tests/DCPS/DcpsIntegration/DomainParticipantListener.h:
* tests/DCPS/DcpsIntegration/TopicListener.h:
* tests/DCPS/Deadline/DataReaderListener.h:
* tests/DCPS/Deadline/DataWriterListenerImpl.h:
* tests/DCPS/Federation/DataReaderListener.h:
* tests/DCPS/Federation/DataWriterListenerImpl.h:
* tests/DCPS/FooTest3_0/DataReaderListener.h:
* tests/DCPS/FooTest3_0/DataWriterListener.h:
* tests/DCPS/FooTest3_0/DomainParticipantListener.h:
* tests/DCPS/FooTest3_0/PublisherListener.h:
* tests/DCPS/FooTest3_1/DataReaderListener.h:
* tests/DCPS/FooTest3_2/DataReaderListener.h:
* tests/DCPS/FooTest4_0/DataReaderListener.h:
* tests/DCPS/FooTest5/DataReaderListener.h:
* tests/DCPS/GroupPresentation/DataReaderListener.h:
* tests/DCPS/GroupPresentation/SubscriberListener.h:
* tests/DCPS/LargeSample/DataReaderListener.h:
* tests/DCPS/LatencyBudget/DataReaderListener.h:
* tests/DCPS/LatencyBudget/DataWriterListenerImpl.h:
* tests/DCPS/Lifespan/DataReaderListener.h:
* tests/DCPS/Lifespan/DataWriterListenerImpl.h:
* tests/DCPS/LivelinessTest/DataReaderListener.h:
* tests/DCPS/LivelinessTimeout/DataReaderListenerImpl.h:
* tests/DCPS/LivelinessTimeout/DataWriterListenerImpl.h:
* tests/DCPS/ManualAssertLiveliness/DataReaderListener.h:
* tests/DCPS/ManualAssertLiveliness/DataWriterListenerImpl.h:
* tests/DCPS/ManyTopicTest/DataReaderListener.h:
* tests/DCPS/Messenger/DataReaderListener.h:
* tests/DCPS/Monitor/DPMDataReaderListener.h:
* tests/DCPS/Monitor/DRMDataReaderListener.h:
* tests/DCPS/Monitor/DRPerMDataReaderListener.h:
* tests/DCPS/Monitor/DWMDataReaderListener.h:
* tests/DCPS/Monitor/DWPerMDataReaderListener.h:
* tests/DCPS/Monitor/DataReaderListener.h:
* tests/DCPS/Monitor/PublisherMDataReaderListener.h:
* tests/DCPS/Monitor/SPMDataReaderListener.h:
* tests/DCPS/Monitor/SubscriberMDataReaderListener.h:
* tests/DCPS/Monitor/TopicMDataReaderListener.h:
* tests/DCPS/Monitor/TransportMDataReaderListener.h:
* tests/DCPS/MultiDPTest/DataReaderListener.h:
* tests/DCPS/MultiRepoTest/DataWriterListenerImpl.h:
* tests/DCPS/MultiRepoTest/ForwardingListener.h:
* tests/DCPS/NotifyTest/DataReaderListener.h:
* tests/DCPS/Ownership/DataReaderListener.h:
* tests/DCPS/Partition/DataReaderListener.h:
* tests/DCPS/Partition/DataWriterListener.h:
* tests/DCPS/PersistentDurability/DataReaderListener.h:
* tests/DCPS/PersistentDurability/DataWriterListenerImpl.h:
* tests/DCPS/Priority/DataReaderListener.h:
* tests/DCPS/Prst_delayed_subscriber/DataReaderListener.h:
* tests/DCPS/Reconnect/DataReaderListener.h:
* tests/DCPS/Reconnect/DataWriterListener.h:
* tests/DCPS/Rejects/DataReaderListener.h:
* tests/DCPS/Serializer_wstring/DataReaderListener.h:
* tests/DCPS/SetQosDeadline/DataReaderListener.h:
* tests/DCPS/SetQosPartition/DataReaderListener.h:
* tests/DCPS/StringKey/DataReaderListener.h:
* tests/DCPS/Thrasher/DataReaderListenerImpl.h:
* tests/DCPS/TransientDurability/DataReaderListener.h:
* tests/DCPS/TransientDurability/DataWriterListenerImpl.h:
* tests/DCPS/TransientLocalTest/DataReaderListener.h:
* tests/DCPS/TransientLocalTest/DataWriterListenerImpl.h:
* tests/DCPS/unit/Main.cpp:
* tools/modeling/codegen/model/NullListener.h:
* tools/modeling/codegen/model/NullParticipantListener.h:
* tools/modeling/codegen/model/NullPublisherListener.h:
* tools/modeling/codegen/model/NullReaderListener.h:
* tools/modeling/codegen/model/NullSubscriberListener.h:
* tools/modeling/codegen/model/NullTopicListener.h:
* tools/modeling/codegen/model/NullWriterListener.h:
#include client-side IDL generate code instead of
server-side code for local IDL interfaces.
Wed Jun 27 17:42:36 UTC 2012 Paul Calabrese <[email protected]>
Fix some deadlocking issues with discovery and transport
handshaking. These were specifically noticed using RTPS
discovery and transport, but may be present in other cases
as well. This patch definitely improves things, but I see
indications of other handshaking issues that need to be
addressed.
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.inl:
Encapsulate the reservation_lock_ contained in the
TransportImpl class. Allow multiple releases on
individual TransportImpl objects so that we can
release this lock while waiting for the handshake.
* dds/DCPS/transport/rtps_udp/RtpsUdpTransport.cpp:
Release the TransportImpl lock while waiting for the handshake
to complete.
* dds/DCPS/RTPS/Sedp.cpp:
Move initialization of the passive (reader) side of the
association to the calling thread (from the Task thread).
This helps avoid some handshaking deadlocking during
discovery.
* dds/DCPS/transport/rtps_udp/RtpsUdpDataLink.cpp:
Clean up a debug message
* dds/DCPS/transport/tcp/TcpTransport.h:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
Remove an unused lock.
Tue Jun 26 23:30:43 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/Service_Participant.cpp:
When setting up discovery for DEFAULT_RTPS we need to create a
section in the ACE_Configuration_Heap, or else the
load_discovery_configuration() call ends up being a no-op.
Tue Jun 26 21:49:22 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
Added a comment in Writer::write_control_msg().
* dds/DCPS/Service_Participant.cpp:
Delete the Discovery::Config objects when overwriting them
or during shutdown.
* dds/DCPS/Registered_Data_Types.h:
* dds/DCPS/Registered_Data_Types.cpp:
* dds/DCPS/Transient_Kludge.cpp:
Use ACE_Singleton instead of TAO_Singleton.
* dds/DCPS/transport/framework/DataLinkSet.inl:
In send_control(), shortcut the actual send in
the case where the data link set is empty.
Tue Jun 26 14:28:37 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Don't attempt to call set_handle_instance() on the built-in topic
data reader if the handle value is HANDLE_NIL.
This remove spurious errors when the handle lookup fails.
Tue Jun 26 09:29:53 UTC 2012 Marcel Smit <[email protected]>
* tests/DCPS/Inconsistent_Qos/inconsistent_qos.cpp:
Always retrieve the default qos first before retrieving
the actual QOS from file.
* tests/DCPS/Inconsistent_Qos/deadline.xml:
* tests/DCPS/Inconsistent_Qos/sample_rejected.xml:
Fixed inconsistencies. history depth should be
less than resources_limits.max_samples_per_instance.
Mon Jun 25 20:56:38 UTC 2012 Adam Mitz <[email protected]>
* MPC/config/dds_suppress_any_support.mpb:
* dds/DdsDcps.mpc:
For dds_suppress_anys=0 only, need to link against TAO_AnyTypeCode.
Mon Jun 25 20:52:21 UTC 2012 Adam Mitz <[email protected]>
* examples/DCPS/IntroductionToOpenDDS/StockQuoter.mpc:
Added required "after" for TAO's Svc_Utils.
* examples/DCPS/ishapes/README:
Removed invalid reference to HTML documentation.
Mon Jun 25 18:50:31 UTC 2012 Johnny Willemsen <[email protected]>
* bin/dcps_tests.lst:
Inconsistent_Qos test is dependent on DDS4CCM_OPENDDS
* dds/DCPS/ContentFilteredTopicImpl.h:
Doxygen fix
Mon Jun 25 09:30:06 UTC 2012 Marcel Smit <[email protected]>
* bin/dcps_tests.lst:
* dds/DCPS/QOS_XML_Handler/XML_File_Intf.h:
* tests/DCPS/Inconsistent_Qos:
* tests/DCPS/Inconsistent_Qos/Inconsistent_Qos.mpc:
* tests/DCPS/Inconsistent_Qos/Messenger.idl:
* tests/DCPS/Inconsistent_Qos/Messenger_export.h:
* tests/DCPS/Inconsistent_Qos/deadline.xml:
* tests/DCPS/Inconsistent_Qos/inconsistent_qos.cpp:
* tests/DCPS/Inconsistent_Qos/rtps_disc.ini:
* tests/DCPS/Inconsistent_Qos/run_test.pl:
* tests/DCPS/Inconsistent_Qos/sample_rejected.xml:
Added test/reproducer which reprocudes an issue in parsing
the datawriter QOS. It returns an invalid QOS error without
mentioning the error itself.
Fri Jun 22 22:55:29 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
Corrected setting max_instances restriction.
* tests/DCPS/RegisterInstance/register_instance.cpp:
* tests/DCPS/RegisterInstance/run_test.pl:
Corrected test to expect correct output and put error messags into
a separate output file.
Fri Jun 22 08:02:31 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/TopicImpl.h:
* dds/DCPS/TopicImpl.cpp:
Removed fast_listener_, not used anymore
Fri Jun 22 07:49:53 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/DCPS_Utils.h:
Doxygen improvements
* dds/DCPS/DataWriterImpl.cpp:
Initialise pointer with 0, const improvements
Fri Jun 22 07:26:09 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/GroupRakeData.cpp:
Use this-> to make clear it is a member we are using
* dds/DCPS/InstanceState.h:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/WriteDataContainer.h:
Doxygen fixes
* dds/DCPS/InstanceState.inl:
Use prefix increment, improves performance
* dds/DCPS/SubscriptionInstance.h:
No need to check a pointer for 0 before calling delete on it
Thu Jun 21 19:01:10 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/BitPubListenerImpl.cpp:
Added missing return, const changes, make exclude scoped block larger
* dds/DCPS/DomainParticipantImpl.cpp:
Initialize pointer to 0 and use _nil for object ptr
* dds/DCPS/Serializer.h:
Doxygen fixes
Thu Jun 21 17:57:25 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
* tests/DCPS/Rejects/publisher.cpp:
Whitespace changes to fix fuzz warnings.
Thu Jun 21 17:30:26 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/DomainParticipantId:
* tests/DCPS/RegisterInstance:
* tests/DCPS/Rejects:
* tests/DCPS/TopicReuse:
Have subversion ignore generated files.
Thu Jun 21 17:23:47 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/DCPSInfoRepo/pubsub.cpp:
* tests/DCPS/unit/Main.cpp:
Explicitly include PortableServer.h which was
being implicitly included from Service_Participant.h
before include of PortableServer.h was removed
from it.
Thu Jun 21 15:46:25 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/WriteDataContainer.cpp:
Avoid compiler warnings about ctor initialization order.
Thu Jun 21 15:17:21 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/Service_Participant.h:
Removed unneeded include of PortableServer.h.
Wed Jun 20 18:03:04 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/DdsDcps_pch.h:
* dds/DdsDcps.mpc:
With the ORB moved from service participant to the
info repo, removed dependency on TAO_PortableServer
lib and (implicitly) on TAO_AnyTypeCode lib.
Wed Jun 20 16:47:49 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/WriteDataContainer.h:
* NEWS:
* tests/DCPS/Rejects/DataReaderListener.cpp:
* tests/DCPS/Rejects/DataReaderListener.h:
* tests/DCPS/Rejects/publisher.cpp:
* tests/DCPS/Rejects/run_test.pl:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/Rejects/Writer.cpp:
* tests/DCPS/Rejects/Writer.h:
Added publication side checks for max_instances and
max_samples in reliable qos.
Tue Jun 19 16:02:10 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/DpShutdown/dpshutdown.cpp:
Each domain participant now has its own transport instance
as required when using RTPS transports.
Mon Jun 18 21:33:58 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Fixed logic for when to set log file name from config file value.
Mon Jun 18 18:08:44 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DomainParticipantImpl.cpp:
Bypass the topic entity refs check when the remove flag is true,
in which case the entire participant is being removed anyway.
Thu Jun 14 11:21:08 UTC 2012 Johnny Willemsen <[email protected]>
* tests/DCPS/TopicReuse/tpreuse.cpp:
Improved this test
Thu Jun 14 11:02:17 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Fixed compile error
Wed Jun 13 21:41:24 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Changed a few missed listener pointer references.
Wed Jun 13 18:46:23 UTC 2012 Trevor Fields <[email protected]>
* dds/idl/CPPTemplate.txt:
* tests/DCPS/Rejects/DataReaderListener.cpp:
* tests/DCPS/Rejects/publisher.cpp:
Fixes for warnings.
Wed Jun 13 17:06:22 UTC 2012 Trevor Fields <[email protected]>
* dds/idl/CPPTemplate.txt:
* tests/DCPS/Rejects/README:
* tests/DCPS/Rejects/subscriber.cpp:
Fixed fuzz errors.
Wed Jun 13 16:11:58 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DomainParticipantImpl.cpp:
In delete_topic(), check if a topic is used by any
reader or writer before allowing it to be deleted.
Fixes bugzilla bug #4045.
Wed Jun 13 15:49:14 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Fixing fuzz errors.
Wed Jun 13 14:38:48 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Fix for log file name handling when ACE_TCHAR is
a wchar_t.
Wed Jun 13 07:51:57 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.h:
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.cpp:
Fixed valgrind errors
* tests/DCPS/QoS_XML/dump/run_test.pl:
Simplified this script
Wed Jun 13 06:55:46 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Fixed warning
Tue Jun 12 21:32:52 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderCallbacks.h:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterCallbacks.h:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/TopicImpl.h:
* dds/DCPS/TopicImpl.cpp:
* dds/DdsDcpsInfoUtils.idl:
Allow a status change for InconsistentTopicStatus. This will only
occur with RTPS Discovery because the InfoRepo can enforce that topics
use the same type name at the time when the topics are created.
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Implement checking for consistent topic types and also enforcing
RTPS string length limits on topic and type names. See bugzilla
bugs #4023 and #4036.
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.h:
* tests/DCPS/DCPSInfoRepo/pubsub.cpp:
* tests/DCPS/RtpsDiscovery/RtpsDiscoveryTest.cpp:
Adjusted tests for the above changes.
Tue Jun 12 20:57:45 UTC 2012 Brian Johnson <[email protected]>
* tools/scripts/lcov.pl:
Fixing coverage script.
Tue Jun 12 20:20:59 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/Service_Participant.cpp:
In Service_Participant::shutdown(), handle reactor_
being null.
Tue Jun 12 18:48:15 UTC 2012 Johnny Willemsen <[email protected]>
* tests/DCPS/DpShutdown/dpshutdown.cpp:
Fixed compile errors when DDS_HAS_MINIMUM_BIT has been defined
Tue Jun 12 18:41:28 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.cpp:
* dds/DCPS/QOS_XML_Handler/XML_File_Intf.cpp:
Make all error output dependent on log level
* tests/DCPS/DomainParticipantId/DomainParticipantId.mpc:
Shortened project name
Tue Jun 12 18:28:21 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/DCPSInfoRepo/pubsub.cpp:
Replaced tabs with spaces.
Tue Jun 12 17:41:48 UTC 2012 Trevor Fields <[email protected]>
* dds/idl/CPPTemplate.txt:
Added rejection checking and notification for data readers.
* tests/DCPS/Rejects:
* tests/DCPS/Rejects/DataReaderListener.cpp:
* tests/DCPS/Rejects/DataReaderListener.h:
* tests/DCPS/Rejects/Messenger.idl:
* tests/DCPS/Rejects/pub.ini:
* tests/DCPS/Rejects/publisher.cpp:
* tests/DCPS/Rejects/README:
* tests/DCPS/Rejects/Rejects.mpc:
* tests/DCPS/Rejects/Rejects_export.h:
* tests/DCPS/Rejects/rtps_disc.ini:
* tests/DCPS/Rejects/run_test.pl:
* tests/DCPS/Rejects/sub.ini:
* tests/DCPS/Rejects/subscriber.cpp:
* tests/DCPS/Rejects/Writer.cpp:
* tests/DCPS/Rejects/Writer.h:
Added test that checks for rejections due to exceeding max_samples
max_instances, and max_samples_per_instance.
Tue Jun 12 15:21:29 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Move reactor initialization from ctor to
get_domain_participant_factory() to avoid
static initialization ordering issues
for DCPSInfoRepo under Windows.
Mon Jun 11 15:16:59 UTC 2012 Adam Mitz <[email protected]>
* docs/design/INSTANCE_HANDLES:
Formatting change only.
Mon Jun 11 13:37:52 UTC 2012 Byron Harris <[email protected]>
* Merged from branch "temp_orb_refactor" which moves the ORB management
from the Service_Participant to the InfoRepoDiscovery. For client code
that does not use the InfoRepoDiscovery for discovery,
this can remove an unneeded dependency on ORB code.
For details see the branch-specific change log at
docs/history/ChangeLog-ORB_refactor.
Sun Jun 10 17:42:36 UTC 2012 Johnny Willemsen <[email protected]>
* bin/dcps_tests.lst:
Added new test
* tests/DCPS/DpShutdown:
* tests/DCPS/DpShutdown/DpShutdown.mpc:
* tests/DCPS/DpShutdown/Messenger.idl:
* tests/DCPS/DpShutdown/Messenger_export.h:
* tests/DCPS/DpShutdown/dpshutdown.cpp:
* tests/DCPS/DpShutdown/run_test.pl:
New test that tests the fact that we can't remove a domain participant
when it still contains entities. Also shutdown the service participant
when it still has a domain participant registered, this triggers
frequently an assert.
Fri Jun 8 17:03:06 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
Added missing duplicate for internal listener usage.
Fri Jun 8 09:29:05 UTC 2012 Johnny Willemsen <[email protected]>
* tests/DCPS/TopicReuse/tpreuse.cpp:
Added find_topic, this would require us to call delete_topic
twice
Fri Jun 8 09:15:16 UTC 2012 Johnny Willemsen <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/TopicReuse/Messenger.idl:
* tests/DCPS/TopicReuse/Messenger_export.h:
* tests/DCPS/TopicReuse/TopicReuse.mpc:
* tests/DCPS/TopicReuse/rtps_disc.ini:
* tests/DCPS/TopicReuse/run_test.pl:
* tests/DCPS/TopicReuse/tpreuse.cpp:
New test that deletes the topic while still being used by the
datawriter
* tests/DCPS/DomainParticipantId/dp.cpp:
Updated test to allow same handles for domain id's
* tests/DCPS/BuiltInTopic/main.cpp:
* tests/DCPS/FooTest5_0/main.cpp:
* tests/DCPS/Messenger/Messenger.mpc:
Layout changes
Thu Jun 7 19:21:57 UTC 2012 Trevor Fields <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/OfferedDeadlineWatchdog.cpp:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/RequestedDeadlineWatchdog.cpp:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/idl/CPPTemplate.txt:
Converted internal listener usage to use refernce counted var.
Thu Jun 7 06:57:37 UTC 2012 Johnny Willemsen <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/DomainParticipantId:
* tests/DCPS/DomainParticipantId/DomainParticipantId.mpc:
* tests/DCPS/DomainParticipantId/dp.cpp:
* tests/DCPS/DomainParticipantId/rtps_disc.ini:
* tests/DCPS/DomainParticipantId/run_test.pl:
Added new test, domain participant id's should be unique to our
idea
Wed Jun 6 19:23:47 UTC 2012 Johnny Willemsen <[email protected]>
* MPC/config/dds4ccm_opendds.mpb:
Added additional idl flags to disable some files to be generated
* dds/DCPS/Service_Participant.cpp:
Removed noop return
* dds/DdsDcps.mpc:
Removed files that aren't generated anymore
Wed Jun 6 17:06:39 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Restored requires dds4ccm
Wed Jun 6 08:09:54 UTC 2012 Johnny Willemsen <[email protected]>
* MPC/config/dds4ccm_opendds.mpb:
* dds/DdsDcps.mpc:
More install fixes for dds4ccm
Wed Jun 6 05:44:31 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Add DdsDcps_lem_stub_export.h as header file
Tue Jun 5 18:18:21 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
More install fixes
Tue Jun 5 11:48:13 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
List inline files
Tue Jun 5 10:38:04 UTC 2012 Marcel Smit <[email protected]>
* tests/DCPS/RegisterInstance/register_instance.mpc:
Fixed final link issues.
Tue Jun 5 09:49:08 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/QOS_XML_Handler/qos_xml_handler.mpc:
Fixed header filename
Mon Jun 4 20:26:18 UTC 2012 Byron Harris <[email protected]>
* tests/DCPS/Ownership/Ownership.mpc:
Removed inheritance of ownership_profile and
replaced with a requires.
* MPC/config/ownership_profile.mpb:
Removed this file.
Mon Jun 4 15:16:52 UTC 2012 Byron Harris <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Replaced tab with spaces.
* dds/DCPS/FeatureDisabledQosCheck.h:
Removed trailing whitespace.
Mon Jun 4 14:42:42 UTC 2012 Adam Mitz <[email protected]>
* MPC/config/dcps_qos_xml_handler.mpb:
* MPC/config/dcps_qos_xml_handler_base.mpb:
* dds/DCPS/QOS_XML_Handler/optional_ace_xml_utils.mpb:
* dds/DCPS/QOS_XML_Handler/qos_xml_handler.mpc:
New ACE base project "ace_xml_utils" can't be included when
dds4ccm_opendds=0 because we may be building with an older ACE.
Mon Jun 4 11:43:04 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Added missing after of ciao session
Mon Jun 4 07:29:47 UTC 2012 Marcel Smit <[email protected]>
* tests/DCPS/RegisterInstance/register_instance.mpc:
Fixed link issues.
Sun Jun 3 19:21:33 UTC 2012 Johnny Willemsen <[email protected]>
* NEWS:
Document new qos xml library
Sun Jun 3 19:11:15 UTC 2012 Johnny Willemsen <[email protected]>
* bin/dcps_tests.lst:
Added QoS_XML/dump
Sun Jun 3 19:01:36 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.cpp:
Fixed search path
Sun Jun 3 18:37:26 UTC 2012 Johnny Willemsen <[email protected]>
* MPC/config/dcps_qos_xml_handler.mpb:
* MPC/config/dcps_qos_xml_handler_base.mpb:
* dds/DCPS/QOS_XML_Handler:
* dds/DCPS/QOS_XML_Handler/DataReaderQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/DataReaderQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/DataWriterQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/DataWriterQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/ParticipantQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/ParticipantQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/PublisherQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/PublisherQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_Common.h:
* dds/DCPS/QOS_XML_Handler/QOS_Common.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DataReader_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_DataReader_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DataWriter_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_DataWriter_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DwDrTp_Base_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_DwDrTp_Base_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_DwTp_Base_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_DwTp_Base_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_PubSub_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_PubSub_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_Topic_T.h:
* dds/DCPS/QOS_XML_Handler/QOS_Topic_T.cpp:
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.h:
* dds/DCPS/QOS_XML_Handler/QOS_XML_Loader.cpp:
* dds/DCPS/QOS_XML_Handler/SubscriberQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/SubscriberQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/TopicQos_Handler.h:
* dds/DCPS/QOS_XML_Handler/TopicQos_Handler.cpp:
* dds/DCPS/QOS_XML_Handler/XML_File_Intf.h:
* dds/DCPS/QOS_XML_Handler/XML_File_Intf.cpp:
* dds/DCPS/QOS_XML_Handler/XML_QOS_Handler_Export.h:
* dds/DCPS/QOS_XML_Handler/dds_qos.hpp:
* dds/DCPS/QOS_XML_Handler/dds_qos.cpp:
* dds/DCPS/QOS_XML_Handler/qos_xml_handler.mpc:
* docs/schema:
* docs/schema/dds_qos.xsd:
* docs/schema/xsc-banner.h:
* docs/schema/xsc-banner.cpp:
* tests/DCPS/QoS_XML:
* tests/DCPS/QoS_XML/dump:
* tests/DCPS/QoS_XML/dump/qos.xml:
* tests/DCPS/QoS_XML/dump/qos_dump.cpp:
* tests/DCPS/QoS_XML/dump/qos_dump.mpc:
* tests/DCPS/QoS_XML/dump/run_test.pl:
Added new library coming from CIAO DDS4CCM. It parses the dds4ccm
specification defined QoS XML files and makes these available
as IDL defined types. It currently only is enabled when
dds4ccm_opendds has been enabled.
Fri Jun 1 19:24:29 UTC 2012 Byron Harris <[email protected]>
* Merged from branch "compliance_profile_feature_guards",
which allows features described in the Compliance
section of the DDS spec to be excluded from compiler
output. For details see the branch-specific change
log at docs/history/ChangeLog-compliance_profile_feature_guards
Fri Jun 1 06:57:08 UTC 2012 Marcel Smit <[email protected]>
* tests/DCPS/RegisterInstance/register_instance.cpp:
Cleaned up includes.
Thu May 31 12:46:29 UTC 2012 Marcel Smit <[email protected]>
* MPC/config/dds4ccm_opendds.mpb:
Fixed compile issues on windows.
DdsDcps_lem_stub depends on ccm_lem_stub when
dds4ccm_opendds is enabled.
Wed May 30 12:52:37 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/DomainParticipantFactoryImpl.h:
* dds/DCPS/Service_Participant.h:
Doxygen fixes
Wed May 30 07:01:54 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc:
Added needed after for dds4ccm
Tue May 29 13:56:46 UTC 2012 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportRegistry.cpp:
Use proper ACE Logging formatting characters (%C vs %s).
Tue May 29 11:57:12 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DCPS/Qos_Helper.h:
Fixed typo
Tue May 29 09:25:29 UTC 2012 Johnny Willemsen <[email protected]>
* MPC/config/dds4ccm_opendds.mpb:
Added missing after
Tue May 29 09:20:58 UTC 2012 Marcel Smit <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/RegisterInstance:
* tests/DCPS/RegisterInstance/register_instance.mpc:
* tests/DCPS/RegisterInstance/register_instance.cpp:
* tests/DCPS/RegisterInstance/rtps_disc.ini:
* tests/DCPS/RegisterInstance/run_test.pl:
Added new test. This explicitly test the register_instance
method on the DataWriter. It also tests whether an instance
is implicitly created when a sample with an unknown instance
is written to DDS.
Fri May 25 09:47:52 UTC 2012 Johnny Willemsen <[email protected]>
* dds/DdsDcps.mpc: