forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.5.1
3124 lines (1888 loc) · 97.5 KB
/
ChangeLog-3.5.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 Aug 20 20:18:45 UTC 2014 Jeff Schmitz <[email protected]>
* NEWS:
* docs/history/ChangeLog-3.5.1:
* ChangeLog:
OpenDDS version 3.5.1 released.
Tue Aug 19 16:49:02 UTC 2014 Jeff Schmitz <[email protected]>
* OpenDDS version 3.5.1 released.
Tue Aug 19 16:39:54 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Revert filtering by awaiting_historic_samples, so that 3.5.1 is
backward-compatible with 3.5.0.
* NEWS:
Add note about the possibility of an error message when 3.5.0
receives an END_HISTORIC_SAMPLES control message.
* tests/DCPS/ManyToMany:
Set svn:ignore.
Tue Aug 19 14:36:56 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/PublisherImpl.cpp:
Fix fuzz.
Mon Aug 18 21:45:13 UTC 2014 Jeff Schmitz <[email protected]>
* NEWS:
Minor updates for 3.5.1 release.
* dds/DCPS/DataReaderImpl.cpp:
Removed unwanted log message.
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/PublisherImpl.cpp:
Validate non-null result of dynamic cast.
* dds/DCPS/WriteDataContainer.cpp:
Get and store instance handle prior to deleting sample.
When deleting sample, set pointer to null to avoid later use.
* dds/DCPS/ZeroCopySeq_T.cpp:
Added comment.
* dds/InfoRepo/PersistenceUpdater.cpp:
Initialize all data members.
* tests/DCPS/Messenger/publisher.cpp:
Correct spelling error.
* tests/DCPS/PersistentInfoRepo:
Set svn:ignore.
* tests/transport/simple/PubDriver.cpp:
Correct parsing of command line options.
Fri Aug 15 20:53:30 UTC 2014 Byron Harris <[email protected]>
* README:
Updated list of operating systems and compilers OpenDDS
was tested on to reflect the test configurations used
for daily testing by OCI.
Fri Aug 15 14:16:22 UTC 2014 Byron Harris <[email protected]>
* AUTHORS:
Added Peter Oschwald to list of authors.
Thu Aug 14 16:37:40 UTC 2014 Peter Oschwald <[email protected]>
* NEWS:
Edited content that I added to this release.
Thu Aug 14 16:29:55 UTC 2014 Byron Harris <[email protected]>
* NEWS:
Edited content that I added to this release.
Thu Aug 14 16:11:10 UTC 2014 Byron Harris <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/WriterInfo.h:
* dds/DCPS/WriterInfo.cpp:
Revert end_historic_samples cleanup changes from Tue Aug 12 15:01:54 UTC 2014
and Mon Aug 11 21:20:50 UTC 2014 as it was observed sometimes subscribers
were not getting the control message and so were running indefinitely.
Wed Aug 13 14:28:12 UTC 2014 Brian Johnson <[email protected]>
* NEWS:
Edited content that I added to this release.
Tue Aug 12 20:53:34 UTC 2014 Jeff Schmitz <[email protected]>
* configure:
Use the _no_makefiles version of the archive. Previously, it
contained more than the 65k+ file limit. We don't need them
anyway.
Tue Aug 12 19:19:29 UTC 2014 Jeff Schmitz <[email protected]>
* NEWS:
Updates for 3.5.1 release.
* dds/DCPS/WriterInfo.h:
Fix fuzz.
Tue Aug 12 15:01:54 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Properly retain timer for end_historic_samples cleanup, and
handle when not cancelled.
Mon Aug 11 21:20:50 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/WriterInfo.h:
* dds/DCPS/WriterInfo.cpp:
Recover from missing end_historic_samples message and resume
sample processing.
Sat Aug 9 18:20:37 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
Fuzz fix.
Fri Aug 8 22:23:33 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
Restore durable history processing, detect RTPS_UDP and ignore.
* dds/DCPS/transport/framework/TransportClient.h:
Make add_link() virtual.
* dds/DCPS/transport/framework/TransportImpl.h:
Make transport_type() protected.
* tests/DCPS/PersistentInfoRepo:
Set svn:ignore
* tests/DCPS/TransientLocalTest/DataReaderListener.cpp:
Log using thread/PID and ACE_DEBUG.
* tests/DCPS/TransientLocalTest/run_test.pl:
Remove extra logging of subscriber command line.
Thu Aug 7 17:09:50 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/subscriber.cpp:
Include RtpsDiscover.h in static builds.
Wed Aug 6 18:41:21 UTC 2014 Peter Oschwald <[email protected]>
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/subscriber.cpp:
Fixed for wchar builds.
Wed Aug 6 14:46:33 UTC 2014 Jeff Schmitz <[email protected]>
* tests/Utils/DataReaderListenerImpl.h:
Fix compile error (hopefully)
Wed Aug 6 14:21:41 UTC 2014 Peter Oschwald <[email protected]>
* tests/DCPS/ManyToMany/run_test.pl:
Replaced uses of perl feature 'say' with simple print to
file statements for older version support.
Tue Aug 5 20:01:00 UTC 2014 Byron Harris <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/idl/CPPTemplate.txt:
* dds/idl/HTemplate.txt:
Fixed a possible deadlock condition that can occur while
waiting inside WaitSet::wait() in one thread and
DataReaderImpl::data_received() is called from another.
Tue Aug 5 19:09:06 UTC 2014 Peter Oschwald <[email protected]>
* bin/dcps_tests.lst:
Re-enabled ManyToMany test for rtps_disc 12To12
Tue Aug 5 18:38:36 UTC 2014 Peter Oschwald <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added space before the added DCPSBit parameter to that it
doesn't get concatenated with the log file name.
Tue Aug 5 17:49:33 UTC 2014 Peter Oschwald <[email protected]>
* tests/DCPS/ManyToMany/publisher.cpp:
* tests/DCPS/ManyToMany/run_test.pl:
* tests/DCPS/ManyToMany/subscriber.cpp:
Fixed problem with ManyToMany test using transport type
rtps_udp to use a separate transport instance for each
participant created. In these cases, a new .ini file is
generated to provide configurations for each participant
and the subscriber or publisher binds the proper config to each.
Mon Aug 4 20:51:13 UTC 2014 Byron Harris <[email protected]>
* tests/DCPS/Instances/Instances.mpc:
* tests/DCPS/PersistentInfoRepo/PersistentInfoRepo.mpc:
Added dependency on the model library which is needed for
static builds.
Fri Aug 1 21:16:52 UTC 2014 Jeff Schmitz <[email protected]>
* bin/dcps_tests.lst:
Remove ManyToMany rtps_disc test - not supported
Fri Aug 1 19:49:06 UTC 2014 Byron Harris <[email protected]>
* tests/Utils/Sync.h:
* tests/Utils/Sync.cpp:
* tests/Utils/TestUtils.mpc:
Add read and writer sync helper classes that are currently
wrappers around those in OpenDDS::Model. This avoid the need
for test code to include the model library and allow for
expansion of the classes based on test needs.
* tests/DCPS/Instances/Instances.mpc:
* tests/DCPS/Instances/SubDriver.h:
* tests/DCPS/PersistentInfoRepo/PersistentInfoRepo.mpc:
* tests/DCPS/PersistentInfoRepo/Publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Subscriber.cpp:
Update to no longer explicitly depend on the modeling library.
Fri Aug 1 17:39:37 UTC 2014 Byron Harris <[email protected]>
* tests/Utils/DDSApp.h:
* tests/Utils/DDSTopicFacade.h:
* tests/Utils/DataReaderListenerImpl.h:
* tests/Utils/Options.h:
* tests/Utils/TestUtils.mpc:
Remove dependency on modeling library.
Fri Aug 1 15:24:01 UTC 2014 Phillip LaBanca <[email protected]>
* bin/dcps_tests.lst:
Removed DCPS FooTest3_1 tests entries that were replaced by
DCPS Instances test
Wed Jul 30 13:25:10 UTC 2014 Byron Harris <[email protected]>
* configure:
Specify version of TAO used in variable so only one place
needs to be updated when TAO version to download changes.
Put common message content about TAO version into variable.
Tue Jul 29 18:53:26 UTC 2014 Byron Harris <[email protected]>
* DDS.mwc:
* DDS_TAO.mwc:
* DDS_TAOv2.mwc:
Add a comment about generating the MPC file to generate
the modeling library test makefiles.
Fri Jul 25 21:00:22 UTC 2014 Jeff Schmitz <[email protected]>
* tools/excelRTD/RTDServerDLL.cpp:
Change wchar_t to ACE_TCHAR
Fri Jul 25 17:57:12 UTC 2014 Jeff Schmitz <[email protected]>
* tools/excelRTD/RTDServerDLL.cpp:
Fix windows wide char build with QT.
Fri Jul 25 17:56:19 UTC 2014 Jeff Schmitz <[email protected]>
* tools/modeling/codegen/model/Service_T.cpp:
Fix warnings
Thu Jul 24 21:50:08 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/transport/framework/EntryExit.h:
Fix fuzz error.
Wed Jul 23 18:44:58 UTC 2014 Phillip LaBanca <[email protected]>
* dds/DCPS/transport/framework/EntryExit.h:
Added ACE_UNUSED_ARG call for unused member variable to
resolve clang compiler warning
Wed Jul 23 14:08:01 UTC 2014 Byron Harris <[email protected]>
* docs/design/UML/OpenDDS_UML_sketches.asta:
* docs/design/UML/README:
Added a file containing class and sequence diagrams of
some of the current OpenDDS DCPS implementation code.
* docs/design/UML/history/Analysis.unt:
* docs/design/UML/history/Create_DataReader_Detail.jpg:
* docs/design/UML/history/Create_DataReader_Simple.jpg:
* docs/design/UML/history/Create_DataWriter_Detail.jpg:
* docs/design/UML/history/Create_DataWriter_Simple.jpg:
* docs/design/UML/history/DDS.uml:
* docs/design/UML/history/DDS.xmi:
* docs/design/UML/history/InDepthOverview.unt:
* docs/design/UML/history/Overview.unt:
* docs/design/UML/history/README:
* docs/design/UML/history/Register_Sample_Detail.jpg:
* docs/design/UML/history/Register_Sample_Simple.jpg:
* docs/design/UML/history/Repo_Pub_Sub_Detail.jpg:
* docs/design/UML/history/Repo_Pub_Sub_Simple.jpg:
* docs/design/UML/history/Send_Remote_Detail.jpg:
* docs/design/UML/history/Send_Remote_Simple.jpg:
* docs/design/UML/history/Write_Data_Detail.jpg:
* docs/design/UML/history/Write_Data_Simple.jpg:
Moved outstated modeling files into history directory.
* docs/design/UML/Analysis.unt:
* docs/design/UML/Create_DataReader_Detail.jpg:
* docs/design/UML/Create_DataReader_Simple.jpg:
* docs/design/UML/Create_DataWriter_Detail.jpg:
* docs/design/UML/Create_DataWriter_Simple.jpg:
* docs/design/UML/DDS.uml:
* docs/design/UML/DDS.xmi:
* docs/design/UML/InDepthOverview.unt:
* docs/design/UML/Overview.unt:
* docs/design/UML/Register_Sample_Detail.jpg:
* docs/design/UML/Register_Sample_Simple.jpg:
* docs/design/UML/Repo_Pub_Sub_Detail.jpg:
* docs/design/UML/Repo_Pub_Sub_Simple.jpg:
* docs/design/UML/Send_Remote_Detail.jpg:
* docs/design/UML/Send_Remote_Simple.jpg:
* docs/design/UML/Write_Data_Detail.jpg:
* docs/design/UML/Write_Data_Simple.jpg:
Removed these files.
Tue Jul 22 20:28:21 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/Publisher.cpp:
* tests/DCPS/Instances/Subscriber.cpp:
Added static build required headers StaticIncludes.h and
Service_Participant.h
Mon Jul 21 23:27:31 UTC 2014 Phillip LaBanca <[email protected]>
* bin/dcps_tests.lst:
Added Instances tests
Mon Jul 21 23:21:04 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/PubDriver.h:
Removed unneccessary datawriter vector
Mon Jul 21 19:25:59 UTC 2014 Byron Harris <[email protected]>
* dds/DCPS/transport/framework/DataLinkSet.h:
* dds/DCPS/transport/framework/DataLinkSet.inl:
* dds/DCPS/transport/framework/TransportClient.h:
Clean up comments related to TransportClient::send_links_.
* dds/DdsDcpsSubscriptionExt.idl:
Avoid Doxygen treating comment as a general comment about
OpenDDS namespace.
Mon Jul 21 17:30:47 UTC 2014 Byron Harris <[email protected]>
* bin/dcps_tests.lst:
Fix misleading header comments.
Mon Jul 21 15:30:57 UTC 2014 Jeff Schmitz <[email protected]>
* tools/excelRTD/RTDServerDLL.cpp:
Reverted previous change.
Fri Jul 18 23:04:50 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/README:
* tests/DCPS/Instances/run_test.pl:
Updated README and modified run_test.pl's argument processing
Fri Jul 18 17:35:27 UTC 2014 Jeff Schmitz <[email protected]>
* tools/excelRTD/RTDServerDLL.cpp:
Fixed build error for wide-char builds.
Fri Jul 18 16:24:37 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/PubDriver.h:
Made std::string topic_name const
* tests/DCPS/Instances/SubDriver.h:
Provided template call parameter to topic_facade.reader()
method to set DATAREADER_QOS_USE_TOPIC_QOS QOS property when
creating a datareader.
Made std::string topic_name const
Fri Jul 18 00:14:49 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances:
Updated svn:ignore list
* tests/DCPS/Instances/SubDriver.h:
removed SetDataReaderQOS setting
Thu Jul 17 23:45:35 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances:
Added svn:ignore property
* tests/DCPS/Instances/PubDriver.h:
* tests/DCPS/Instances/Publisher.cpp:
* tests/DCPS/Instances/SubDriver.h:
* tests/DCPS/Instances/Subscriber.cpp:
Resolved wait logic errors and made most log output conditional
on DCPSLogLevel setting
Thu Jul 17 13:21:31 UTC 2014 Byron Harris <[email protected]>
* dds/DCPS/WriteDataContainer.cpp:
Fixed wait_pending() so timeout condition is properly detected.
Wed Jul 16 17:43:31 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/Instances.mpc:
* tests/DCPS/Instances/KeyedData.idl:
* tests/DCPS/Instances/NoKeyData.idl:
* tests/DCPS/Instances/PubDriver.h:
* tests/DCPS/Instances/Publisher.cpp:
* tests/DCPS/Instances/Subscriber.cpp:
* tests/DCPS/Instances/run_test.pl:
Changed Foo types to Keyed and NoKey Data types and refactored to
use keyed_data option flag
* tests/DCPS/Instances/InstanceFoo1.idl:
* tests/DCPS/Instances/InstanceFoo2.idl:
Removed these files.
Wed Jul 16 17:10:23 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/Instances/PubDriver.h:
Fix mismatched text error for wide build.
Tue Jul 15 18:39:31 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances/InstanceFoo1.idl:
Changed typedef of basic type Float sequence to CORBA::FloatSeq to
avoid Windows DLL link error when building the Instances test.
Tue Jul 15 17:03:39 UTC 2014 Byron Harris <[email protected]>
* tests/Utils/DDSTopicFacade.h:
Renamed class DDSTopic to DDSTopicFacade.
* tests/DCPS/Instances/PubDriver.h:
* tests/DCPS/Instances/Publisher.cpp:
* tests/DCPS/Instances/SubDriver.h:
* tests/DCPS/PersistentInfoRepo/Publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Subscriber.cpp:
* tests/Utils/DDSApp.h:
Updated to account for renaming DDSTopic to DDSTopicFacade.
Changed name of DDSApp instances from dds to ddsApp.
* tests/DCPS/Instances/InstanceFoo1.idl:
Fixed typo.
* tests/Utils/DDSTopic.h:
Removed this file.
Mon Jul 14 17:29:32 UTC 2014 Byron Harris <[email protected]>
* bin/dcps_tests.lst:
Fix change I made on Fri Jul 11 20:43:52 UTC 2014 so RTPS discovery
usage in ManyToMany test is in right place and another ManyTopicTest
test.
Mon Jul 14 15:17:47 UTC 2014 Phillip LaBanca <[email protected]>
* tests/DCPS/Instances:
* tests/DCPS/Instances/InstanceDataMap.h:
* tests/DCPS/Instances/InstanceFoo1.idl:
* tests/DCPS/Instances/InstanceFoo2.idl:
* tests/DCPS/Instances/Instances.mpc:
* tests/DCPS/Instances/PubDriver.h:
* tests/DCPS/Instances/Publisher.cpp:
* tests/DCPS/Instances/README:
* tests/DCPS/Instances/SubDriver.h:
* tests/DCPS/Instances/Subscriber.cpp:
* tests/DCPS/Instances/TestException.h:
* tests/DCPS/Instances/instanceslib_export.h:
* tests/DCPS/Instances/run_test.pl:
Added Instances test (adapted from FooTest3_1) to utilize
TestUtils test framework.
Fri Jul 11 22:12:18 UTC 2014 Jeff Schmitz <[email protected]>
* tests/transport/rtps/publisher.cpp:
Must return a value.
* tests/transport/simple/SimpleDataWriter.h:
Missing include.
Fri Jul 11 20:43:52 UTC 2014 Byron Harris <[email protected]>
* tests/DCPS/ManyToMany/README:
* tests/DCPS/ManyToMany/run_test.pl:
* tests/DCPS/ManyToMany/svc_csdtp.conf:
Extended ManyToMany test so that a TAO service config
file can be used to avoid stack overflows when there
are a large number fo writers or readers.
* bin/dcps_tests.lst:
Added ManyToMany 20to20 test with TAO service config
usage to avoid stack overflow.
Fri Jul 11 18:58:28 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/DataSampleElement.cpp:
* dds/DCPS/PublicationInstance.h:
Fixed Windows build errors.
Fri Jul 11 15:12:19 UTC 2014 Peter Oschwald <[email protected]>
* dds/DCPS/InstanceDataSampleList.inl:
* dds/DCPS/SendStateDataSampleList.cpp:
* dds/DCPS/WriterDataSampleList.inl:
Fixed fuzz errors
* dds/DCPS/WriteDataContainer.h:
* dds/DCPS/WriteDataContainer.cpp:
Replaced foward declaration of DataSampleElement to a full
include in WriteDataContainer.h to capture the typedef for
the allocator.
Thu Jul 10 16:17:35 UTC 2014 Byron Harris <[email protected]>
* bin/dcps_tests.lst:
* tests/DCPS/ManyToMany/README:
* tests/DCPS/ManyToMany/rtps_disc.ini:
* tests/DCPS/ManyToMany/rtps_disc_tcp.ini:
Added RTPS discovery options to the ManyToMany test.
Thu Jul 10 15:01:11 UTC 2014 Peter Oschwald <[email protected]>
* Merged the branch "DataSampleList_split" which:
Split the DataSampleList interface into three distinct list
interfaces denoting and clarifying their functionality and
responsibilities. This eliminates the requirement that an
DataSampleList instance is to only be used in a certain "mode"
--a list for a data writer, a list for a instance, or a list
for send state--.
DataSampleList is replaced by:
WriterDataSampleList
InstanceDataSampleList
SendStateDataSampleList
struct DataSampleListElement has been replaced by a first
class object DataSampleElement. This was done to control
access to the list pointer elements, which now are only
modified through the list interfaces.
Wed Jul 9 20:19:51 UTC 2014 Brian Johnson <[email protected]>
* tests/DCPS/ManyToMany/README:
Added information about how to pass parameters to run_test.pl.
Wed Jul 9 17:59:26 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.cpp:
Fixed logic for reporting and exiting after wait timed out.
* tests/DCPS/QueryCondition/run_test.pl:
Added printing out command line for executables that are started.
Wed Jul 9 17:25:49 UTC 2014 Jeff Schmitz <[email protected]>
* tests/DCPS/ManualAssertLiveliness/DataReaderListener.cpp:
* tests/DCPS/ManualAssertLiveliness/Writer.cpp:
Logging changes.
Wed Jul 9 15:12:35 UTC 2014 Jeff Schmitz <[email protected]>
* bin/dcps_tests.lst:
Add back Thrasher test cases.
Tue Jul 8 19:42:52 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/DomainParticipantImpl.cpp:
Calling fini_bit on discovery before deleting
BIT entities.
* dds/DCPS/Discovery.h:
* dds/DCPS/InfoRepoDiscovery/InfoRepoDiscovery.h:
* dds/DCPS/InfoRepoDiscovery/InfoRepoDiscovery.cpp:
* dds/DCPS/RTPS/RtpsDiscovery.h:
* dds/DCPS/RTPS/RtpsDiscovery.cpp:
Added fini_bit to indicate that BIT entities are being
deleted (and should no longer be used).
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
Added class to wait for acknowledgements from other thread and
added method to request for Sedp::Task to acknowledge to spdp.
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/RTPS/Spdp.cpp:
Added a WaitForAcks object to use in fini_bit to wait for
SpdpTransport (actually reactor) thread and Sedp::Task have sent
an acknowledgement, so that we know that all threads will see
that subscriber_bit_ is nil.
Tue Jul 8 14:40:32 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/RTPS/Sedp.h:
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/RTPS/Spdp.cpp:
* dds/idl/CPPTemplate.txt:
Reverted revisions 6373 and 6376.
Tue Jul 8 14:15:38 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Increased the log level for messages on shutdown.
Tue Jul 8 02:49:18 UTC 2014 Brian Johnson <[email protected]>
* dds/idl/CPPTemplate.txt:
Fixed fuzz error.
Mon Jul 7 21:15:36 UTC 2014 Jeff Schmitz <[email protected]>
* bin/PerlDDS/Cross_Sync.pm:
* bin/PerlDDS/Cross_Sync_Common.pm:
Force verbose.
Mon Jul 7 21:02:05 UTC 2014 Brian Johnson <[email protected]>
* dds/idl/CPPTemplate.txt:
Added check for get_deleted in store_synthetic_data and
set_instance_state to prevent spdp/sedp from writing
while the data reader is being deleted.
* dds/DCPS/RTPS/Sedp.h:
Added Psuedovar to keep var to data readers while providing
derived pointer and change *_bit() methods to return
Psuedovars.
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.h:
* dds/DCPS/RTPS/Spdp.cpp:
Changed *_bit() methods to return Psuedovars.
* bin/PerlDDS/Run_Test.pm:
Cleanup of temporary diagnostics.
Thu Jul 3 19:45:42 UTC 2014 Jeff Schmitz <[email protected]>
* configure:
Download TAO 2.2a instead of 1.6a
Thu Jul 3 03:34:14 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/RTPS/Sedp.cpp:
Improved logging.
* dds/DCPS/RTPS/Spdp.cpp:
Moved shutting down sedp before shutting down transport.
Wed Jul 2 18:22:15 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Fixed to only report that their are errors in log files if the status is
still good.
* dds/DCPS/RTPS/Sedp.cpp:
* dds/DCPS/RTPS/Spdp.cpp:
Added log statements to identify where ACCESS VIOLATION is occurring.
Tue Jul 1 20:20:50 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Adding tracking of wait*_pending in TestFramework.
Tue Jul 1 20:04:13 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.h:
Added include file.
Tue Jul 1 18:40:48 UTC 2014 Brian Johnson <[email protected]>
* tests/DCPS/ManyToMany/run_test.pl:
Letting TestFramework add DCPS_debug_level flag.
Tue Jul 1 18:34:14 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Cleaned up preventing adding flags.
* tests/DCPS/ManyToMany/run_test.pl:
Changed to use TestFramework.
Tue Jul 1 17:50:00 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added logic to indicate errors in log files that TestFramework
should ignore.
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/Service_Participant.cpp:
Added log messages indicating when dtor is called.
* dds/DCPS/MessageTracker.cpp:
Added traceability to redmine issue and fixed log statement.
* dds/DCPS/WriteDataContainer.cpp:
Fixed log statement.
* tests/DCPS/Messenger/run_test.pl:
* tests/DCPS/LargeSample/run_test.pl:
Added ignoring already identified redmine issue.
Tue Jul 1 17:16:24 UTC 2014 Jeff Schmitz <[email protected]>
* dds/DCPS/transport/framework/DataLinkSet.h:
* dds/DCPS/transport/framework/DataLinkSet.inl:
Copy map_ and release lock in send_control prior to calling send_i
due to deadlock.
* tests/DCPS/ManualAssertLiveliness/Writer.cpp:
Identify sending writer in sample.
* tests/DCPS/ManualAssertLiveliness/subscriber.cpp:
Keep last 4 messages, due to multiple writers.
Tue Jul 1 15:45:06 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Increased time to wait for 2nd and all following processes to
shutdown before killing and added missing _alternate_transport.
* tests/DCPS/LargeSample/run_test.pl:
Increased time to wait before killing the subscriber.
* tests/DCPS/Messenger/run_test.pl:
Changed order of creation to cause subscriber to be killed first,
increased time to wait for subscriber to be kill, and changed to use
default TestFramework functionality.
Tue Jul 1 15:09:38 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.h:
* dds/DCPS/MessageTracker.cpp:
Added description in log messages of the source of the messages and
fixed for wide character builds.
* dds/DCPS/WriteDataContainer.cpp:
Fixed for wide character builds.
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/DataLinkSet.cpp:
Added passing in message source to the MessageTracker.
* dds/DCPS/transport/framework/SendResponseListener.h:
* dds/DCPS/transport/framework/SendResponseListener.cpp:
Added passing through the message source.
* tests/DCPS/LargeSample/run_test.pl:
Cleanup of unneeded variables.
Tue Jul 1 13:04:06 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added more default flags provided.
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Fixed wide character error.
* tests/DCPS/LargeSample/run_test.pl:
Using defaulted flags.
Mon Jun 30 18:34:55 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.h:
* dds/DCPS/MessageTracker.cpp:
Added static method to return a timestamp, since
ACE::timestamp for any time is not supported in
TAO 1.6a.
* dds/DCPS/WriteDataContainer.cpp:
Changed to used MessageTracker::timestamp.
Mon Jun 30 17:08:33 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Fixed include file case.
Mon Jun 30 16:39:11 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Added logging when the pending timeout wait time is over.
* tests/DCPS/PersistentInfoRepo/Publisher.cpp:
* tests/DCPS/PersistentInfoRepo/Subscriber.cpp:
Fixed const-ness.
Mon Jun 30 14:35:49 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Fixed formatting dates and times with leading 0s.
Mon Jun 30 12:51:23 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Fixed fuzz errors.
Fri Jun 27 21:42:27 UTC 2014 Brian Johnson <[email protected]>
* bin/PerlDDS/Run_Test.pm:
Added more common functionality for tests.
* tests/DCPS/LargeSample/run_test.pl:
Converted to use TestFramework.
* tests/DCPS/ManyToMany/run_test.pl:
Fixed flags.
* tests/DCPS/Messenger/run_test.pl:
More cleanup and using TestFramework default values.
Fri Jun 27 15:44:13 UTC 2014 Brian Johnson <[email protected]>
* tests/DCPS/LargeSample/run_test.pl:
* tests/DCPS/ManyToMany/run_test.pl:
* tests/DCPS/Messenger/run_test.pl:
Setting the pending message wait time to 1 second.
Fri Jun 27 15:07:51 UTC 2014 Brian Johnson <[email protected]>
* dds/DCPS/MessageTracker.cpp:
* dds/DCPS/WriteDataContainer.cpp:
Changed to only report an error on timeout if messages are still pending.