forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-3.0
1685 lines (1301 loc) · 76.3 KB
/
ChangeLog-3.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Fri Aug 19 13:47:18 UTC 2011 Adam Mitz <[email protected]>
* OpenDDS version 3.0 released.
Thu Aug 18 22:25:59 UTC 2011 Trevor Fields <[email protected]>
Reverting Thu Aug 18 21:59:26 UTC 2011 Trevor Fields <[email protected]>
Thu Aug 18 20:06:39 UTC 2011 Adam Mitz <[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:
Updated version numbers. We are now syncing the Modeling SDK
versions (at least the first two numbers) with the OpenDDS versions.
This will be Modeling SDK 3.0.0.
* tools/modeling/update_version.pl:
New script for updating version numbers.
Thu Aug 18 19:44:09 UTC 2011 Adam Mitz <[email protected]>
* DevGuideExamples/DCPS/Messenger/DataReaderListenerImpl.cpp:
Simplify the is_nil() check to match how Subscriber.cpp does it.
Thu Aug 18 19:08:27 UTC 2011 Adam Mitz <[email protected]>
* NEWS:
More updates for the upcoming 3.0 release.
Thu Aug 18 16:30:32 UTC 2011 Paul Calabrese <[email protected]>
* examples/DCPS/IntroductionToOpenDDS/dds_tcp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/dds_udp_conf.ini:
Remove the local_address from the udp config file and
normalize the formatting a little.
Thu Aug 18 16:28:19 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/subscriber.cpp:
Changes missed with the commit from Thu Aug 18 01:47:27 UTC 2011.
Thu Aug 18 16:15:14 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.help/html/gettingstarted/maintopic.html:
Set version number.
Thu Aug 18 16:05:32 UTC 2011 Paul Calabrese <[email protected]>
* examples/DCPS/IntroductionToOpenDDS/AAA_README.txt:
* examples/DCPS/IntroductionToOpenDDS/StockQuoter.mpc:
* examples/DCPS/IntroductionToOpenDDS/dds_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/run_test.pl:
* examples/DCPS/IntroductionToOpenDDS/run_udp.bat:
* examples/DCPS/IntroductionToOpenDDS/run_udp_bit_off.bat:
Collapse udp config files into a single udp config
file. Update the various scripts and docs that
reference them.
* examples/DCPS/IntroductionToOpenDDS/pub_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/sub2_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/sub_udp_conf.ini:
Removed these files.
Thu Aug 18 01:47:27 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/DDSTEST.cpp:
* tests/DCPS/ConfigTransports/DataReaderListener.h:
* tests/DCPS/ConfigTransports/DataReaderListener.cpp:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.cpp:
* tests/DCPS/ConfigTransports/Puller.h:
* tests/DCPS/ConfigTransports/Puller.cpp:
* tests/DCPS/ConfigTransports/Pusher.h:
* tests/DCPS/ConfigTransports/common.h:
* tests/DCPS/ConfigTransports/common.cpp:
* tests/DCPS/ConfigTransports/publisher.cpp:
* tests/DCPS/ConfigTransports/run_test.pl:
Improved support for testing autonegotiation. Added publishing
and receip of samples. Added ability to detect the
negotiated transport. Additional tests cases added.
Wed Aug 17 22:31:20 UTC 2011 Adam Mitz <[email protected]>
* AUTHORS:
Updated for upcoming release.
* tools/modeling/plugins/org.opendds.modeling.help/html/gettingstarted/maintopic.html:
Added section to describe changes in this release.
Wed Aug 17 16:05:01 UTC 2011 Adam Mitz <[email protected]>
* NEWS:
* README:
* docs/OpenDDS_3.0_Transition.txt:
Updated docs for basic typos, formatting, clarifications, etc.
Wed Aug 17 14:58:14 UTC 2011 Adam Mitz <[email protected]>
* performance-tests/Bench/tests/latency/run_test.pl:
Fixed udp and best-effort multicast with non-default payload size.
Wed Aug 17 14:47:35 UTC 2011 Adam Mitz <[email protected]>
* tests/DCPS/ConfigTransports/subscriber.cpp:
Fix for SunCC compile error.
Tue Aug 16 22:17:00 UTC 2011 Adam Mitz <[email protected]>
* tools/modeling/tests/Arrays/publisher.cpp:
* tools/modeling/tests/Arrays/subscriber.cpp:
* tools/modeling/tests/CfTopic/publisher.cpp:
* tools/modeling/tests/CfTopic/subscriber.cpp:
* tools/modeling/tests/Chained/publisher.cpp:
* tools/modeling/tests/Chained/subscriber.cpp:
* tools/modeling/tests/Chained_Data/publisher.cpp:
* tools/modeling/tests/Chained_Data/subscriber.cpp:
* tools/modeling/tests/Chained_Topic/publisher.cpp:
* tools/modeling/tests/Chained_Topic/subscriber.cpp:
* tools/modeling/tests/Comments/publisher.cpp:
* tools/modeling/tests/Comments/subscriber.cpp:
* tools/modeling/tests/CompositeKey/publisher.cpp:
* tools/modeling/tests/CompositeKey/subscriber.cpp:
* tools/modeling/tests/CopyTopicQos/publisher.cpp:
* tools/modeling/tests/CopyTopicQos/subscriber.cpp:
* tools/modeling/tests/DataLibRef/publisher.cpp:
* tools/modeling/tests/DataLibRef/subscriber.cpp:
* tools/modeling/tests/Deep/Down/Reference/publisher.cpp:
* tools/modeling/tests/Deep/Down/Reference/subscriber.cpp:
* tools/modeling/tests/DomainZero/publisher.cpp:
* tools/modeling/tests/DomainZero/subscriber.cpp:
* tools/modeling/tests/EmptyLibs/publisher.cpp:
* tools/modeling/tests/EmptyLibs/subscriber.cpp:
* tools/modeling/tests/Exchange/publisher.cpp:
* tools/modeling/tests/Exchange/subscriber.cpp:
* tools/modeling/tests/ExternalPolicies/publisher.cpp:
* tools/modeling/tests/ExternalPolicies/subscriber.cpp:
* tools/modeling/tests/InvalidNames/publisher.cpp:
* tools/modeling/tests/InvalidNames/subscriber.cpp:
* tools/modeling/tests/Looped/publisher.cpp:
* tools/modeling/tests/Looped/subscriber.cpp:
* tools/modeling/tests/Messenger/publisher.cpp:
* tools/modeling/tests/Messenger/subscriber.cpp:
* tools/modeling/tests/MessengerDpQos/publisher.cpp:
* tools/modeling/tests/MessengerDpQos/subscriber.cpp:
* tools/modeling/tests/MessengerGlobalNs/publisher.cpp:
* tools/modeling/tests/MessengerGlobalNs/subscriber.cpp:
* tools/modeling/tests/MessengerMC/publisher.cpp:
* tools/modeling/tests/MessengerMC/subscriber.cpp:
* tools/modeling/tests/MessengerMixed/publisher.cpp:
* tools/modeling/tests/MessengerMixed/subscriber.cpp:
* tools/modeling/tests/MessengerMulti/publisher.cpp:
* tools/modeling/tests/MessengerMulti/subscriber.cpp:
* tools/modeling/tests/MessengerNoPub/subscriber.cpp:
* tools/modeling/tests/MessengerNoSub/publisher.cpp:
* tools/modeling/tests/MessengerPubQos/publisher.cpp:
* tools/modeling/tests/MessengerPubQos/subscriber.cpp:
* tools/modeling/tests/MessengerSimpleTypes/publisher.cpp:
* tools/modeling/tests/MessengerSimpleTypes/subscriber.cpp:
* tools/modeling/tests/MessengerSplit/publisher.cpp:
* tools/modeling/tests/MessengerSplit/subscriber.cpp:
* tools/modeling/tests/MessengerWriterQos/publisher.cpp:
* tools/modeling/tests/MessengerWriterQos/subscriber.cpp:
* tools/modeling/tests/ModuleNameConflict/publisher.cpp:
* tools/modeling/tests/ModuleNameConflict/subscriber.cpp:
* tools/modeling/tests/MultiDCPS/publisher.cpp:
* tools/modeling/tests/MultiDCPS/subscriber.cpp:
* tools/modeling/tests/MultiInstance/publisher.cpp:
* tools/modeling/tests/MultiInstance/subscriber.cpp:
* tools/modeling/tests/MultiTopic/publisher.cpp:
* tools/modeling/tests/MultiTopic/subscriber.cpp:
* tools/modeling/tests/PolicyLib/publisher.cpp:
* tools/modeling/tests/PolicyLib/subscriber.cpp:
* tools/modeling/tests/ReaderQos/publisher.cpp:
* tools/modeling/tests/ReaderQos/subscriber.cpp:
* tools/modeling/tests/ReferExternalProj/publisher.cpp:
* tools/modeling/tests/ReferExternalProj/subscriber.cpp:
* tools/modeling/tests/RemoteInstHandles/publisher.cpp:
* tools/modeling/tests/RemoteInstHandles/subscriber.cpp:
* tools/modeling/tests/ReusedExtTypes/publisher.cpp:
* tools/modeling/tests/ReusedExtTypes/subscriber.cpp:
* tools/modeling/tests/ReusedTypes/publisher.cpp:
* tools/modeling/tests/ReusedTypes/subscriber.cpp:
* tools/modeling/tests/Sequences/publisher.cpp:
* tools/modeling/tests/Sequences/subscriber.cpp:
* tools/modeling/tests/StockQuoter/publisher.cpp:
* tools/modeling/tests/StockQuoter/subscriber.cpp:
* tools/modeling/tests/SubscriberQos/publisher.cpp:
* tools/modeling/tests/SubscriberQos/subscriber.cpp:
* tools/modeling/tests/TopicQos/publisher.cpp:
* tools/modeling/tests/TopicQos/subscriber.cpp:
* tools/modeling/tests/UDP/publisher.cpp:
* tools/modeling/tests/UDP/subscriber.cpp:
Fixed the #include of Tcp.h (only used in static builds) to use
the new directory and file name.
Tue Aug 16 21:43:02 UTC 2011 Adam Mitz <[email protected]>
* bin/PerlDDS/Cross_Sync_Common.pm:
Fixed Perl warnings.
* performance-tests/Bench/tests/latency/run_test.pl:
Added a mechanism for running udp and multicast (best-effort) tests
without the DataReader's RELIABLE QoS.
* tests/DCPS/ConfigTransports/ConfigTransports.mpc:
Need an "after" to avoid building overlapping projects in parallel.
Tue Aug 16 21:17:12 UTC 2011 Paul Calabrese <[email protected]>
* bin/performance_tests.lst:
Updates to this list that were already made to dcps_tests.lst.
* contrib/wrapper/example/dds_tcp_conf.ini:
* contrib/wrapper/example/pub_udp_conf.ini:
* contrib/wrapper/example/run_test.pl:
* contrib/wrapper/example/sub2_udp_conf.ini:
* contrib/wrapper/example/sub_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/dds_tcp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/pub_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/run_tcp.bat:
* examples/DCPS/IntroductionToOpenDDS/run_tcp_bit_off.bat:
* examples/DCPS/IntroductionToOpenDDS/run_test.pl:
* examples/DCPS/IntroductionToOpenDDS/run_udp.bat:
* examples/DCPS/IntroductionToOpenDDS/run_udp_bit_off.bat:
* examples/DCPS/IntroductionToOpenDDS/sub2_udp_conf.ini:
* examples/DCPS/IntroductionToOpenDDS/sub_udp_conf.ini:
* examples/DCPS/Messenger_IOGR_Imr/README:
* examples/DCPS/Messenger_IOGR_Imr/pub.ini:
* examples/DCPS/Messenger_IOGR_Imr/run_test.pl:
* examples/DCPS/Messenger_IOGR_Imr/sub.ini:
* performance-tests/Bench/tests/spray/transport.ini:
Conversion to new transport config scheme.
* performance-tests/DCPS/InfoRepo_population/pub_mcast.ini:
* performance-tests/DCPS/InfoRepo_population/pub_udp.ini:
* performance-tests/DCPS/InfoRepo_population/sub_mcast.ini:
* performance-tests/DCPS/InfoRepo_population/sub_udp.ini:
Remove unused .ini files.
* performance-tests/DCPS/TransportLatency:
* performance-tests/DCPS/TransportLatency/DataReaderListener.h:
* performance-tests/DCPS/TransportLatency/DataReaderListener.cpp:
* performance-tests/DCPS/TransportLatency/Messenger.idl:
* performance-tests/DCPS/TransportLatency/README:
* performance-tests/DCPS/TransportLatency/TransportLatency.mpc:
* performance-tests/DCPS/TransportLatency/TransportLatency_export.h:
* performance-tests/DCPS/TransportLatency/Writer.h:
* performance-tests/DCPS/TransportLatency/Writer.cpp:
* performance-tests/DCPS/TransportLatency/dummy_tcp.conf:
* performance-tests/DCPS/TransportLatency/pub.ini:
* performance-tests/DCPS/TransportLatency/pub_mcast.ini:
* performance-tests/DCPS/TransportLatency/pub_multicast.ini:
* performance-tests/DCPS/TransportLatency/pub_udp.ini:
* performance-tests/DCPS/TransportLatency/publisher.cpp:
* performance-tests/DCPS/TransportLatency/run_corbaloc_test.pl:
* performance-tests/DCPS/TransportLatency/run_ns_test.pl:
* performance-tests/DCPS/TransportLatency/run_test.pl:
* performance-tests/DCPS/TransportLatency/sub.ini:
* performance-tests/DCPS/TransportLatency/sub_mcast.ini:
* performance-tests/DCPS/TransportLatency/sub_multicast.ini:
* performance-tests/DCPS/TransportLatency/sub_udp.ini:
* performance-tests/DCPS/TransportLatency/subscriber.cpp:
* performance-tests/DCPS/dummyTCP:
* performance-tests/DCPS/dummyTCP/DummyTcp.h:
* performance-tests/DCPS/dummyTCP/DummyTcp.mpc:
* performance-tests/DCPS/dummyTCP/DummyTcp.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpAcceptor.h:
* performance-tests/DCPS/dummyTCP/DummyTcpAcceptor.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpConnection.h:
* performance-tests/DCPS/dummyTCP/DummyTcpConnection.inl:
* performance-tests/DCPS/dummyTCP/DummyTcpConnection.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpConnectionReplaceTask.h:
* performance-tests/DCPS/dummyTCP/DummyTcpConnectionReplaceTask.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpConnection_rch.h:
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink.h:
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink.inl:
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink_rch.h:
* performance-tests/DCPS/dummyTCP/DummyTcpInst.h:
* performance-tests/DCPS/dummyTCP/DummyTcpInst.inl:
* performance-tests/DCPS/dummyTCP/DummyTcpInst.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpInst_rch.h:
* performance-tests/DCPS/dummyTCP/DummyTcpLoader.h:
* performance-tests/DCPS/dummyTCP/DummyTcpLoader.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpReceiveStrategy.h:
* performance-tests/DCPS/dummyTCP/DummyTcpReceiveStrategy.inl:
* performance-tests/DCPS/dummyTCP/DummyTcpReceiveStrategy.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpReconnectTask.h:
* performance-tests/DCPS/dummyTCP/DummyTcpReconnectTask.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpSendStrategy.h:
* performance-tests/DCPS/dummyTCP/DummyTcpSendStrategy.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpSendStrategy_rch.h:
* performance-tests/DCPS/dummyTCP/DummyTcpSynchResource.h:
* performance-tests/DCPS/dummyTCP/DummyTcpSynchResource.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport.h:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport_rch.h:
* performance-tests/DCPS/dummyTCP/DummyTcp_export.h:
* performance-tests/DCPS/dummyTCP/DummyTcp_pch.h:
* performance-tests/DCPS/dummyTCP/DummyTcp_pch.cpp:
* performance-tests/DCPS/dummyTCP/PerformanceTest.h:
* performance-tests/DCPS/dummyTCP/PerformanceTest.cpp:
Removed these files. Remove the TransportLatency
performance test and associated dummyTcp transport.
This has not worked for a while and the real solution
is to now implement a true collocated transport.
Tue Aug 16 21:01:45 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.validation/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.validation/build.properties:
Corrected build problem where xsl directory was not packaged in plugin jar.
Tue Aug 16 20:13:00 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/DDSTEST.h:
* tests/DCPS/ConfigTransports/DDSTEST.cpp:
* tests/DCPS/ConfigTransports/Options.h:
* tests/DCPS/ConfigTransports/Options.cpp:
* tests/DCPS/ConfigTransports/Pusher.h:
* tests/DCPS/ConfigTransports/Pusher.cpp:
* tests/DCPS/ConfigTransports/common.h:
* tests/DCPS/ConfigTransports/common.cpp:
* tests/DCPS/ConfigTransports/publisher.cpp:
* tests/DCPS/ConfigTransports/subscriber.cpp:
* tests/DCPS/ConfigTransports/transports.ini:
Adding the ability to test the negotiated transports.
* tests/DCPS/ConfigTransports/run_test.pl:
Adding several tests that assert which protocol was negotiated
in various situations.
Tue Aug 16 19:49:34 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/framework/TransportSendStrategy.inl:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Reverted change from Mon Aug 15 22:31:40 UTC 2011. We will need a
more involved design effort to fix the issues.
* java/INSTALL:
Updated Java-specific install notes.
Tue Aug 16 19:08:29 UTC 2011 Dean Wette <[email protected]>
* configure:
Add support for OS X Lion 10.7
* tools/modeling/plugins/org.opendds.modeling.validation/docs/README:
Update documentation
Tue Aug 16 16:57:49 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/ConfigTransports.mpc:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.h:
* tests/DCPS/ConfigTransports/Factory.h:
* tests/DCPS/ConfigTransports/Factory.cpp:
* tests/DCPS/ConfigTransports/Options.h:
* tests/DCPS/ConfigTransports/Options.cpp:
* tests/DCPS/ConfigTransports/common.h:
* tests/DCPS/ConfigTransports/common.cpp:
* tests/DCPS/ConfigTransports/publisher.cpp:
* tests/DCPS/ConfigTransports/run_test.pl:
* tests/DCPS/ConfigTransports/subscriber.cpp:
Refactored the test innards to pull out independent classes.
* tests/DCPS/ConfigTransports/Reader.h:
* tests/DCPS/ConfigTransports/Reader.cpp:
* tests/DCPS/ConfigTransports/Writer.h:
* tests/DCPS/ConfigTransports/Writer.cpp:
Renamed these files to ...
* tests/DCPS/ConfigTransports/Puller.h:
* tests/DCPS/ConfigTransports/Puller.cpp:
* tests/DCPS/ConfigTransports/Pusher.h:
* tests/DCPS/ConfigTransports/Pusher.cpp:
... these files.
Tue Aug 16 14:41:38 UTC 2011 Paul Calabrese <[email protected]>
* NEWS:
Add some news for 3.0.
* docs/OpenDDS_3.0_Transition.txt:
Add a transition guide for the new Transport Configuration
approach in OpenDDS 3.0.
* dds/DCPS/transport/framework/TransportRegistry.cpp:
Make a better error message when finding obsolete configs.
* tests/DCPS/BidirMessenger/pub_udp.ini:
* tests/DCPS/BidirMessenger/pubsub.cpp:
* tests/DCPS/BidirMessenger/pubsub.ini:
* tests/DCPS/BidirMessenger/pubsub_ipv6.ini:
* tests/DCPS/BidirMessenger/pubsub_multicast.ini:
* tests/DCPS/BidirMessenger/run_test.pl:
* tests/DCPS/BidirMessenger/sub_udp.ini:
Converted to use new transport config scheme.
This test does still not run properly but I don't
think it is in any worse shape than it was before
the refactoring of the transport. There are at
least two issues involved: TCP and possibly UDP
suffer from issues in sending data from multiple
threads concurrently (and quickly). Multicast
appears to have some connection-related issues
when many connections are happening quickly.
* tests/DCPS/BidirMessenger/publisher.cpp:
Removed this file.
Mon Aug 15 22:31:40 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportSendStrategy.h:
* dds/DCPS/transport/framework/TransportSendStrategy.inl:
* dds/DCPS/transport/framework/TransportSendStrategy.cpp:
Delayed notifications need to be sent on the same thread that
originated them, to avoid deadlocking on the WriteDataContainer.
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Fixed a log message that should have just been for local debugging.
Mon Aug 15 19:35:42 UTC 2011 Adam Mitz <[email protected]>
* tools/modeling/tests/Arrays/run_test.pl:
* tools/modeling/tests/CfTopic/run_test.pl:
* tools/modeling/tests/Chained/run_test.pl:
* tools/modeling/tests/Chained_Topic/run_test.pl:
* tools/modeling/tests/Codegen/run_test.pl:
* tools/modeling/tests/Comments/run_test.pl:
* tools/modeling/tests/CompositeKey/run_test.pl:
* tools/modeling/tests/CopyTopicQos/run_test.pl:
* tools/modeling/tests/DataLibRef/run_test.pl:
* tools/modeling/tests/Deep/Down/Reference/run_test.pl:
* tools/modeling/tests/DomainZero/run_test.pl:
* tools/modeling/tests/EmptyLibs/run_test.pl:
* tools/modeling/tests/Exchange/run_test.pl:
* tools/modeling/tests/ExternalPolicies/run_test.pl:
* tools/modeling/tests/InvalidNames/run_test.pl:
* tools/modeling/tests/Looped/run_test.pl:
* tools/modeling/tests/Messenger/run_test.pl:
* tools/modeling/tests/MessengerDpQos/run_test.pl:
* tools/modeling/tests/MessengerGlobalNs/run_test.pl:
* tools/modeling/tests/MessengerMC/run_test.pl:
* tools/modeling/tests/MessengerMixed/run_test.pl:
* tools/modeling/tests/MessengerMulti/run_test.pl:
* tools/modeling/tests/MessengerNoPub/run_test.pl:
* tools/modeling/tests/MessengerNoSub/run_test.pl:
* tools/modeling/tests/MessengerPubQos/run_test.pl:
* tools/modeling/tests/MessengerSimpleTypes/run_test.pl:
* tools/modeling/tests/MessengerSplit/run_test.pl:
* tools/modeling/tests/MessengerWriterQos/run_test.pl:
* tools/modeling/tests/ModuleNameConflict/run_test.pl:
* tools/modeling/tests/MultiDCPS/run_test.pl:
* tools/modeling/tests/MultiInstance/run_test.pl:
* tools/modeling/tests/MultiTopic/run_test.pl:
* tools/modeling/tests/PolicyLib/run_test.pl:
* tools/modeling/tests/ReaderQos/run_test.pl:
* tools/modeling/tests/ReferExternalProj/run_test.pl:
* tools/modeling/tests/RemoteInstHandles/run_test.pl:
* tools/modeling/tests/ReusedExtTypes/run_test.pl:
* tools/modeling/tests/ReusedTypes/run_test.pl:
* tools/modeling/tests/Sequences/run_test.pl:
* tools/modeling/tests/StockQuoter/run_test.pl:
* tools/modeling/tests/SubscriberQos/run_test.pl:
* tools/modeling/tests/TopicQos/run_test.pl:
* tools/modeling/tests/UDP/run_test.pl:
Change ORBDebugLevel to 1 instead of 10 (10 is way too verbose).
Mon Aug 15 19:17:01 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/tcp/TcpTransport.cpp:
Added logging for some of the datalink creation functions.
If a link gets re-used, need to release and reacquire the links_lock_
so that another thread can handle the passive_connection().
* java/dds/OpenDDS_DCPS_jni.cpp:
Fixed a warning for 64-bit to 32-bit truncation when size_t is 32-bit.
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/DCPS/ConfigFile/test1.ini:
Use a smaller arbitrary value for max_samples_per_packet because
Solaris hosts limit how large this can get.
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/TransportInstItemProvider.java:
Whitespace fix only. This should match what EMF generates.
* tools/modeling/plugins/org.opendds.modeling.validation/build.properties:
Removed test/src from source dirs for plugin build.
Mon Aug 15 15:57:40 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.validation/build.properties:
Additional fixes to correct problems with automated build.
Mon Aug 15 15:07:02 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.validation/build.properties:
Removed build source locations that are no longer valid.
* tools/modeling/plugins/org.opendds.modeling.validation/docs/README:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/dev_readme.txt:
* tools/modeling/tests/setup.pl:
* tools/modeling/plugins/org.opendds.modeling.validation/build-external.xml:
* tools/modeling/plugins/org.opendds.modeling.validation/build.xml:
Renamed build.xml to build-external.xml to resolve file name
conflict with automated build, and updated references to build file.
Fri Aug 12 22:03:37 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/Service_Participant.h:
* dds/DCPS/Service_Participant.cpp:
Need a mutex for Built-In Topic transport setup since multiple
threads could be creating DomainParticipants at the same time.
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
Extended management of the reservation lock(s):
- Temporarily unlock during an accept_datalink() wait.
- Need to lock during the DataLink's release_reservations().
* dds/DCPS/transport/framework/TransportImpl.cpp:
Fixed formatting of trnasport details for logging.
* dds/DCPS/transport/multicast/MulticastSession.cpp:
Null send_buffer is OK here (BestEffortSession doesn't use one).
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Added debug logging. Handle the loopback case.
* tests/DCPS/Thrasher/ParticipantTask.cpp:
Key field must be initialized.
* tests/DCPS/Thrasher/run_test.pl:
Fixed typo in automatic run_test.pl changes.
Fri Aug 12 21:22:17 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/validation:
Removed this file.
It is no longer used since the validation was moved to plugins.
Fri Aug 12 19:44:28 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/TransportInstItemProvider.java:
Fixing an annoying bug that caused only partial updates when the name of
a transport instance changes. Thanks to Byron Harris for the idea: using
the single argument ctor for ViewerNotification which causes full view
refresh.
Fri Aug 12 19:28:42 UTC 2011 Chip Jones <[email protected]>
* NEWS:
Added text about the Node View
* tools/monitor/Edge.h:
* tools/monitor/Edge.cpp:
* tools/monitor/GvOptions.cpp:
* tools/monitor/GvOptions.ui:
* tools/monitor/Monitor.mpc:
* tools/monitor/MonitorDataModel.cpp:
* tools/monitor/Node.h:
* tools/monitor/Node.cpp:
* tools/monitor/NodeGenerator.h:
* tools/monitor/NodeGenerator.cpp:
* tools/monitor/NodeOptions.h:
* tools/monitor/NodeOptions.ui:
* tools/monitor/NodeOptions.cpp:
* tools/monitor/Viewer.cpp:
Added Node View options, layout and edge connection logic.
Fri Aug 12 19:08:42 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.validation/.classpath:
* tools/modeling/plugins/org.opendds.modeling.validation/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.validation/build.xml:
* tools/modeling/plugins/org.opendds.modeling.validation/src/java/com/ociweb/xml/util/XMLUtil.java:
* tools/modeling/plugins/org.opendds.modeling.validation/src/java/org/opendds/modeling/validation/OpenDDSModelValidator.java:
* tools/modeling/plugins/org.opendds.modeling.validation/src/java/org/opendds/modeling/validation/OpenDDSXMISchemaTransformer.java:
* tools/modeling/plugins/org.opendds.modeling.validation/test/src/com/ociweb/xml/util/OpenDDSValidationUtilTest.java:
* tools/modeling/plugins/org.opendds.modeling.validation/lib/log4j-1.2.16.jar:
Removed this file.
Fixed a problem in the plugins caused by using Log4J for the standalone tool.
For now the standalone tool uses std out and err.
Fri Aug 12 16:55:15 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/multicast/MulticastInst.h:
* dds/DCPS/transport/multicast/MulticastInst.cpp:
* dds/DCPS/transport/multicast/multicast.ini-dist:
Change the semantics of the port_offset config option.
It is no longer an offset but simply the port # when a
group_address is not set. The default is changed to
49152.
* dds/DCPS/transport/udp/UdpDataLink.cpp:
Tweak the handshake ack timeout to 30 seconds (was 60).
Fri Aug 12 12:59:41 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/codegen/model/Entities.cpp:
Removed code to get transport impl given a transport id
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/h.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
Remove commented-out code related to tranport ids
Remove refereces to DefaultInstanceTraits.h
* tools/modeling/codegen/model/Service_T.h:
* tools/modeling/codegen/model/DefaultInstanceTraits.h:
Removed DefaultInstanceTraits
Thu Aug 11 18:53:13 UTC 2011 Adam Mitz <[email protected]>
* contrib/wrapper/OpenDDS/OpenDDS_Domain_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Domain_Manager.cpp:
* contrib/wrapper/OpenDDS/OpenDDS_Publication_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Publication_Manager.cpp:
* contrib/wrapper/OpenDDS/OpenDDS_Subscription_Manager.h:
* contrib/wrapper/OpenDDS/OpenDDS_Subscription_Manager.cpp:
Updated 'wrapper' code to compile with the new transport APIs.
This is still essentially unmaintained.
* dds/DCPS/transport/framework/TransportInst.cpp:
Log the transport name along with the rest of the details.
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.cpp:
Work-arounds for SunCC's deficient standard C++ library.
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/TransportRefItemProvider.java:
Whitespace changes only. These should match what EMF generates.
* etc/monitor.conf:
* java/jms/compat/conf/tcp.conf:
* tools/monitor/monitor.conf:
These service configurator files no longer need to
load the Tcp transport library.
* performance-tests/DCPS/TransportLatency/run_corbaloc_test.pl:
* performance-tests/DCPS/TransportLatency/run_ns_test.pl:
* tests/DCPS/BidirMessenger/run_test.pl:
* tests/DCPS/BuiltInTopic/run_test.pl:
* tests/DCPS/BuiltInTopicTest/prst_repo_run_test.pl:
* tests/DCPS/BuiltInTopicTest/run_test.pl:
* tests/DCPS/CompatibilityTest/run_test.pl:
* tests/DCPS/ConfigTransports/run_test.pl:
* tests/DCPS/ContentFilteredTopic/run_test.pl:
* tests/DCPS/CorbaSeq/run_test.pl:
* tests/DCPS/Crossplatform/Messenger_run_test.pl:
* tests/DCPS/DCPSInfoRepo/run_test.pl:
* tests/DCPS/DPFactoryQos/run_test.pl:
* tests/DCPS/DcpsIntegration/run_test-integration.pl:
* tests/DCPS/DcpsIntegration/run_test-topic.pl:
* tests/DCPS/Deadline/run_test.pl:
* tests/DCPS/Dispose/run_test.pl:
* tests/DCPS/Federation/run_test.pl:
* tests/DCPS/FooTest4/run_test.pl:
* tests/DCPS/FooTest4_0/run_test.pl:
* tests/DCPS/GroupPresentation/run_test.pl:
* tests/DCPS/LatencyBudget/run_test.pl:
* tests/DCPS/Lifespan/run_test.pl:
* tests/DCPS/LivelinessTimeout/run_test.pl:
* tests/DCPS/ManualAssertLiveliness/run_test.pl:
* tests/DCPS/Messenger/run_corbaloc_test.pl:
* tests/DCPS/Messenger/run_ns_test.pl:
* tests/DCPS/Monitor/run_test.pl:
* tests/DCPS/MultiDPTest/run_test.pl:
* tests/DCPS/MultiRepoTest/run_test.pl:
* tests/DCPS/MultiTopic/run_test.pl:
* tests/DCPS/NotifyTest/run_test.pl:
* tests/DCPS/Ownership/run_test.pl:
* tests/DCPS/Partition/run_test.pl:
* tests/DCPS/PersistentDurability/run_test.pl:
* tests/DCPS/Presentation/run_test.pl:
* tests/DCPS/Priority/run_test.pl:
* tests/DCPS/Prst_delayed_subscriber/run_test.pl:
* tests/DCPS/QueryCondition/run_test.pl:
* tests/DCPS/ReaderDataLifecycle/run_test.pl:
* tests/DCPS/Serializer_wstring/run_test.pl:
* tests/DCPS/SetQosDeadline/run_test.pl:
* tests/DCPS/SetQosPartition/run_test.pl:
* tests/DCPS/StringKey/run_test.pl:
* tests/DCPS/Thrasher/run_test.pl:
* tests/DCPS/TimeBasedFilter/run_test.pl:
* tests/DCPS/TransientDurability/run_test.pl:
* tests/DCPS/TransientLocalTest/run_test.pl:
* tests/DCPS/ViewState/run_test.pl:
* tests/DCPS/WaitForAck/run_test.pl:
* tests/DCPS/ZeroCopyRead/run_test.pl:
* tests/DCPS/ZeroCopyRead/run_test_coverage.pl:
* tests/DCPS/sub_init_loop/run_test.pl:
* tests/DCPS/unit/run_test.pl:
* tools/modeling/tests/Arrays/run_test.pl:
* tools/modeling/tests/CfTopic/run_test.pl:
* tools/modeling/tests/Chained/run_test.pl:
* tools/modeling/tests/Chained_Topic/run_test.pl:
* tools/modeling/tests/Codegen/run_test.pl:
* tools/modeling/tests/Comments/run_test.pl:
* tools/modeling/tests/CompositeKey/run_test.pl:
* tools/modeling/tests/CopyTopicQos/run_test.pl:
* tools/modeling/tests/DataLibRef/run_test.pl:
* tools/modeling/tests/Deep/Down/Reference/run_test.pl:
* tools/modeling/tests/DomainZero/run_test.pl:
* tools/modeling/tests/EmptyLibs/run_test.pl:
* tools/modeling/tests/Exchange/run_test.pl:
* tools/modeling/tests/ExternalPolicies/run_test.pl:
* tools/modeling/tests/InvalidNames/run_test.pl:
* tools/modeling/tests/Looped/run_test.pl:
* tools/modeling/tests/Messenger/run_test.pl:
* tools/modeling/tests/MessengerDpQos/run_test.pl:
* tools/modeling/tests/MessengerGlobalNs/run_test.pl:
* tools/modeling/tests/MessengerMC/run_test.pl:
* tools/modeling/tests/MessengerMixed/run_test.pl:
* tools/modeling/tests/MessengerMulti/run_test.pl:
* tools/modeling/tests/MessengerNoPub/run_test.pl:
* tools/modeling/tests/MessengerNoSub/run_test.pl:
* tools/modeling/tests/MessengerPubQos/run_test.pl:
* tools/modeling/tests/MessengerSimpleTypes/run_test.pl:
* tools/modeling/tests/MessengerSplit/run_test.pl:
* tools/modeling/tests/MessengerWriterQos/run_test.pl:
* tools/modeling/tests/ModuleNameConflict/run_test.pl:
* tools/modeling/tests/MultiDCPS/run_test.pl:
* tools/modeling/tests/MultiInstance/run_test.pl:
* tools/modeling/tests/MultiTopic/run_test.pl:
* tools/modeling/tests/PolicyLib/run_test.pl:
* tools/modeling/tests/ReaderQos/run_test.pl:
* tools/modeling/tests/ReferExternalProj/run_test.pl:
* tools/modeling/tests/RemoteInstHandles/run_test.pl:
* tools/modeling/tests/ReusedExtTypes/run_test.pl:
* tools/modeling/tests/ReusedTypes/run_test.pl:
* tools/modeling/tests/Sequences/run_test.pl:
* tools/modeling/tests/StockQuoter/run_test.pl:
* tools/modeling/tests/SubscriberQos/run_test.pl:
* tools/modeling/tests/TopicQos/run_test.pl:
* tools/modeling/tests/UDP/run_test.pl:
* tools/monitor/start_repos.pl:
Removed references to *.conf files that are no longer.
* contrib/wrapper/example/tcp.conf:
* contrib/wrapper/example/udp.conf:
* etc/multicast.conf:
* etc/tcp.conf:
* etc/udp.conf:
* examples/DCPS/DistributedContent/tcp.conf:
* examples/DCPS/IntroductionToOpenDDS/tcp.conf:
* examples/DCPS/IntroductionToOpenDDS/udp.conf:
* performance-tests/tcp.conf:
* tests/DCPS/BidirMessenger/multicast.conf:
* tests/DCPS/BidirMessenger/tcp.conf:
* tests/DCPS/BidirMessenger/udp.conf:
* tests/DCPS/BuiltInTopicTest/tcp.conf:
* tests/DCPS/DPFactoryQos/tcp.conf:
* tests/DCPS/Deadline/tcp.conf:
* tests/DCPS/Dispose/tcp.conf:
* tests/DCPS/FooTest5/multicast.conf:
* tests/DCPS/FooTest5/udp.conf:
* tests/DCPS/FooTest5_0/udp.conf:
* tests/DCPS/GroupPresentation/tcp.conf:
* tests/DCPS/LatencyBudget/tcp.conf:
* tests/DCPS/Lifespan/tcp.conf:
* tests/DCPS/LivelinessTest/udp.conf:
* tests/DCPS/ManualAssertLiveliness/tcp.conf:
* tests/DCPS/NotifyTest/tcp.conf:
* tests/DCPS/Ownership/tcp.conf:
* tests/DCPS/Partition/tcp.conf:
* tests/DCPS/PersistentDurability/tcp.conf:
* tests/DCPS/Presentation/tcp.conf:
* tests/DCPS/Priority/services.conf:
* tests/DCPS/Prst_delayed_subscriber/tcp.conf:
* tests/DCPS/ReaderDataLifecycle/tcp.conf:
* tests/DCPS/SetQosDeadline/tcp.conf:
* tests/DCPS/SetQosPartition/tcp.conf:
* tests/DCPS/StringKey/tcp.conf:
* tests/DCPS/Thrasher/tcp.conf:
* tests/DCPS/TimeBasedFilter/tcp.conf:
* tests/DCPS/TransientDurability/tcp.conf:
* tests/DCPS/TransientLocalTest/tcp.conf:
* tests/DCPS/WaitForAck/tcp.conf:
* tests/tcp.conf:
* tests/transport/simple/tcp.conf:
* tools/modeling/tests/Arrays/tcp.conf:
* tools/modeling/tests/CfTopic/tcp.conf:
* tools/modeling/tests/Chained/tcp.conf:
* tools/modeling/tests/Chained_Data/tcp.conf:
* tools/modeling/tests/Chained_Topic/tcp.conf:
* tools/modeling/tests/Codegen/svc.conf:
* tools/modeling/tests/Comments/tcp.conf:
* tools/modeling/tests/CompositeKey/tcp.conf:
* tools/modeling/tests/CopyTopicQos/tcp.conf:
* tools/modeling/tests/DataLibRef/tcp.conf:
* tools/modeling/tests/Deep/Down/Reference/tcp.conf:
* tools/modeling/tests/DomainZero/tcp.conf:
* tools/modeling/tests/EmptyLibs/tcp.conf:
* tools/modeling/tests/Exchange/tcp.conf:
* tools/modeling/tests/ExternalPolicies/tcp.conf:
* tools/modeling/tests/InvalidNames/tcp.conf:
* tools/modeling/tests/Looped/tcp.conf:
* tools/modeling/tests/Messenger/tcp.conf:
* tools/modeling/tests/MessengerDpQos/tcp.conf:
* tools/modeling/tests/MessengerGlobalNs/tcp.conf:
* tools/modeling/tests/MessengerMC/multicast.conf:
* tools/modeling/tests/MessengerMC/tcp.conf:
* tools/modeling/tests/MessengerMixed/tcp.conf:
* tools/modeling/tests/MessengerMulti/tcp.conf:
* tools/modeling/tests/MessengerNoPub/tcp.conf:
* tools/modeling/tests/MessengerNoSub/tcp.conf:
* tools/modeling/tests/MessengerPubQos/tcp.conf:
* tools/modeling/tests/MessengerSimpleTypes/tcp.conf:
* tools/modeling/tests/MessengerSplit/tcp.conf:
* tools/modeling/tests/MessengerWriterQos/tcp.conf:
* tools/modeling/tests/ModuleNameConflict/tcp.conf:
* tools/modeling/tests/MultiDCPS/tcp.conf:
* tools/modeling/tests/MultiInstance/tcp.conf:
* tools/modeling/tests/MultiTopic/tcp.conf:
* tools/modeling/tests/PolicyLib/tcp.conf:
* tools/modeling/tests/ReaderQos/tcp.conf:
* tools/modeling/tests/ReferExternalProj/tcp.conf:
* tools/modeling/tests/RemoteInstHandles/tcp.conf:
* tools/modeling/tests/ReusedExtTypes/tcp.conf:
* tools/modeling/tests/ReusedTypes/tcp.conf:
* tools/modeling/tests/Sequences/tcp.conf:
* tools/modeling/tests/StockQuoter/tcp.conf:
* tools/modeling/tests/SubscriberQos/tcp.conf:
* tools/modeling/tests/TopicQos/tcp.conf:
* tools/modeling/tests/UDP/tcp.conf:
* tools/modeling/tests/UDP/udp.conf:
Removed these files.
Thu Aug 11 16:57:51 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.diagram.main/plugin.properties:
Missing from previous commit. Previous ignored as a generated file,
this now has properties supporting the XML validation in the eclipse UI.
Thu Aug 11 15:53:53 UTC 2011 Dean Wette <[email protected]>
* tools/modeling/features/org.opendds.modeling.feature/feature.xml:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/plugin.xml:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/src/org/opendds/modeling/diagram/main/part/AbstractValidateXMLFileAction.java:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/src/org/opendds/modeling/diagram/main/part/ValidateCodegenFileAction.java:
* tools/modeling/plugins/org.opendds.modeling.diagram.main/src/org/opendds/modeling/diagram/main/part/ValidateOpenDDSFileAction.java:
* tools/modeling/plugins/org.opendds.modeling.validation/.classpath:
* tools/modeling/plugins/org.opendds.modeling.validation/.project:
* tools/modeling/plugins/org.opendds.modeling.validation/META-INF:
* tools/modeling/plugins/org.opendds.modeling.validation/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.validation/build.properties:
* tools/modeling/plugins/org.opendds.modeling.validation/build.xml:
* tools/modeling/plugins/org.opendds.modeling.validation/docs/README:
* tools/modeling/plugins/org.opendds.modeling.validation/src/java/com/ociweb/xml/util/XMLUtil.java:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/ApplicationXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/CoreXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/DCPSXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/DomainXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/EnumerationsXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/GeneratorXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/OpenDDSXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/QoSXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/TopicsXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/TypesXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/XMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.validation/xsd/dev_readme.txt:
Converted validation project to a proper eclipse plugin, and added support
for XML Schema validation of .opendds and .codegen files via popup menus
in the project tree of the Modeling SDK eclipse UI.
Thu Aug 11 15:40:21 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/TransportRefItemProvider.java:
Introducing better handling of special cases: unnamed transports and dangling
references.
Wed Aug 10 21:37:10 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/multicast/MulticastInst.h:
* dds/DCPS/transport/multicast/MulticastInst.cpp:
* dds/DCPS/transport/multicast/MulticastSendStrategy.cpp:
* dds/DCPS/transport/multicast/MulticastSession.h:
* dds/DCPS/transport/multicast/MulticastSession.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
Defer returning a DataLink to the framework until the SYN/SYNACK
control messages are received.
* performance-tests/DCPS/MulticastListenerTest/run_test.pl:
Update the write_throttle parameter when num_writers changes.
Wed Aug 10 20:52:54 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/GeneratorEditor.java:
Make sure we have a content provider before setting input. Was
causing exception.
Wed Aug 10 18:01:03 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/TransportHeader.inl: