forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-sbir_transport
3562 lines (2917 loc) · 158 KB
/
ChangeLog-sbir_transport
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 5 21:00:15 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/migrations/v1tov2.rb:
Include name in transport inst
* tools/modeling/tests/Arrays/Arrays.codegen:
* tools/modeling/tests/Arrays/Arrays.opendds:
Redo migration.
Fri Aug 5 19:01:23 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/migrations/v1tov2.rb:
Move swap_bytes, passive_connect_duration to config.
Additional documentation
* tools/modeling/tests/Arrays/Arrays.codegen:
* tools/modeling/tests/Arrays/Arrays.opendds:
Migrated files using migrator.
Fri Aug 5 15:51:34 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/GeneratorModelWizard.java:
Making the wizard create the "Transports" container in the newly
created model instance.
Fri Aug 5 15:34:50 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/migrations/v1tov2.rb:
output xsi:type attribute, instead of type.
output closing </transport> tag when running against already-migrated
file.
Fri Aug 5 15:00:43 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/migrations:
* tools/modeling/migrations/v1tov2.rb:
tool for migrating codegen files and opendds models
Thu Aug 4 21:59:44 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/tcp/TcpTransport.cpp:
Fixed a deadlock between connections_lock_ and the ACE reactor token
for concurrent calls to accept_datalink() and passive_connection().
Thu Aug 4 21:39:08 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/CustomizationTab.java:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/GeneratorEditor.java:
Modified the customization tab to show both Instances and Transports.
Thu Aug 4 20:37:23 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Generator/ParsedGeneratorFile.java:
detect transportOffset in codegen
detect instance/transport in codegen
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Generator/SdkGenerator.java:
validation checks - no transportOffset, no instance/transport.
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/GeneratorTab.java:
validate in main thread.
Thu Aug 4 20:04:30 UTC 2011 Adam Mitz <[email protected]>
* Merged from trunk r4768 through r4826.
Thu Aug 4 15:50:58 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:
Adding customizations to a generated file in order to be able to show
the name of the referred transport instance.
Thu Aug 4 18:27:43 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
Need to lock the reservation locks for the various transport impls
in TransportClient::associate(). It can be called from multiple
threads due to nested upcalls from TAO.
Thu Aug 4 14:30:19 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpLoader.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.cpp:
Fixed warnings.
Wed Aug 3 21:41:15 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/GeneratorItemProviderAdapterFactory.java:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.ecore:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.genmodel:
Remove deprecated parts of the model.
* tools/modeling/tests/Messenger/Messenger.codegen:
Add multicast and udp settings.
Wed Aug 3 20:48:43 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/plugin.properties:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.ecore:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.genmodel:
Model changes for transport properties.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_h.xsl:
Codegen changes for transport properties.
* tools/modeling/tests/Messenger/Messenger.codegen:
Set transport properties for tcp.
Wed Aug 3 20:20:05 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportClient.cpp:
The built-in ACE_Time_Value set-from-milliseconds is not available
in older versions of ACE.
Wed Aug 3 20:06:40 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
Use the passive_connect_duration_ setting from TransportConfig.
* dds/DCPS/transport/tcp/TcpTransport.h:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
Removed old make_passive_connection() and related code.
Improved logging and data structure cleanup for error conditions.
Wed Aug 3 18:49:01 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderRemoteImpl.h:
* dds/DCPS/DataReaderRemoteImpl.cpp:
* dds/DCPS/DataSampleHeader.h:
* dds/DCPS/DataSampleHeader.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterRemoteImpl.h:
* dds/DCPS/DataWriterRemoteImpl.cpp:
* dds/DCPS/transport/framework/DataLink.h:
* dds/DCPS/transport/framework/DataLink.inl:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/RepoIdSet.h:
* dds/DCPS/transport/framework/RepoIdSet.cpp:
* dds/DCPS/transport/framework/RepoIdSetMap.h:
* dds/DCPS/transport/framework/RepoIdSetMap.inl:
* dds/DCPS/transport/framework/RepoIdSetMap.cpp:
* dds/DCPS/transport/framework/TransportClient.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportSendListener.h:
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
* dds/DCPS/transport/tcp/TcpDataLink.h:
* dds/DCPS/transport/tcp/TcpDataLink.cpp:
* dds/DCPS/transport/tcp/TcpReceiveStrategy.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DdsDcpsDataReaderRemote.idl:
* dds/DdsDcpsDataWriterRemote.idl:
* dds/DdsDcpsInfo.idl:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
* dds/InfoRepo/DCPS_IR_Publication.h:
* dds/InfoRepo/DCPS_IR_Publication.cpp:
* dds/InfoRepo/DCPS_IR_Subscription.h:
* dds/InfoRepo/DCPS_IR_Subscription.cpp:
* tools/dissector/packet-opendds.cpp:
Removed FULLY_ASSOCIATED messages in the transport layer.
The equivalent functionality, applicable to all transpot types, is
now implemented as an InfoRepo-mediated call (association_complete).
* java/idl2jni/codegen/im_jni.cpp:
* java/idl2jni/tests/simple/simple.idl:
Removed old comments that are no longer relevant.
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink.h:
* performance-tests/DCPS/dummyTCP/DummyTcpDataLink.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpReceiveStrategy.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.h:
Adapted to new IDL and transport framework APIs.
Wed Aug 3 17:55:10 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/framework/TransportInst.cpp:
Add some comments to "document" an undocumented option.
* dds/DCPS/transport/framework/TransportRegistry.cpp:
Clean up some error messages related to [config/*] processing.
Tue Aug 2 21:38:05 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.diagram.dcpslib/src/org/opendds/modeling/diagram/dcpslib/edit/parts/DomainParticipantEditPart.java:
A generated file that changed after runing build.pl (likely
due to the previous change).
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Generator/ParsedModelFile.java:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Presentation/GeneratorModelWizard.java:
Introducing the transport config concepts to the modeling SDK.
Implemented initialization of the generator using the names of
transport config found in the model.
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/.classpath:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/META-INF/MANIFEST.MF:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.editor/test/org/opendds/modeling/sdk/model/GeneratorSpecification:
Added a couple of tests
Tue Aug 2 21:19:07 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/Service_Participant.cpp:
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/DCPS/ConfigFile/test1.ini:
Add DCPSPersistentDataDir, DCPSTransportDebugLevel, and
DCPSPendingTimeout as config file options. They were
previously only command line options which was inconsistent
with the other DCPS* options and the existing DevGuide
documentation.
Tue Aug 2 19:13:57 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/AssociationData.h:
* dds/DCPS/transport/framework/TransportClient.cpp:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/multicast/MulticastTransport.h:
* dds/DCPS/transport/multicast/MulticastTransport.cpp:
* dds/DCPS/transport/tcp/TcpDataLink.cpp:
* dds/DCPS/transport/tcp/TcpTransport.h:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* dds/DCPS/transport/udp/UdpTransport.h:
* dds/DCPS/transport/udp/UdpTransport.cpp:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport.h:
* performance-tests/DCPS/dummyTCP/DummyTcpTransport.cpp:
New transport framework features for separating the two kinds of
datalink creation (active and passive) and allowing the passive
datalink creation to occur asynchronously.
Still needs some data strucutre cleanup and error handling in Tcp.
Need to determine if and how to do the "handshaking" in Udp/Multicast.
Need to use the passive connect duration setting in TransportClient.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/META-INF/MANIFEST.MF:
Removed invalid package names from the Manifest.
Tue Aug 2 17:28:56 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/h.xsl:
Handle model with no participants, no publishers, no subscribers,
no readers and no writers.
Tue Aug 2 16:17:29 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/codegen/model/Service_T.cpp:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_h.xsl:
Append model instance name to TransportConfig name.
Tue Aug 2 15:06:05 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/framework/TransportConfig.h:
* dds/DCPS/transport/framework/TransportConfig.cpp:
* dds/DCPS/transport/framework/TransportInst.h:
* dds/DCPS/transport/framework/TransportInst.inl:
* dds/DCPS/transport/framework/TransportInst.cpp:
* dds/DCPS/transport/framework/TransportRegistry.cpp:
* dds/DCPS/transport/tcp/TcpInst.cpp:
* dds/DCPS/transport/tcp/TcpTransport.cpp:
* java/dds/OpenDDS/DCPS/transport/TransportConfig.java:
* java/dds/OpenDDS/DCPS/transport/TransportInst.java:
* java/dds/OpenDDS_DCPS_jni.cpp:
Move the passive_connect_duration option to the
TransportConfig. Generate a deprecation warning
when used on an Inst.
* java/tests/transport_config/TransportConfigTest.java:
* tests/DCPS/ConfigFile/ConfigFile.cpp:
* tests/DCPS/ConfigFile/test1.ini:
* tests/DCPS/ConfigTransports/transports.ini:
Convert tests to new option location. Add some additional
unit tests.
* tests/DCPS/ConfigTransports/Reader.h:
* tests/DCPS/ConfigTransports/Writer.h:
Add missing newlines that were causing warnings.
Tue Aug 2 13:36:22 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/codegen/model/DefaultInstanceTraits.h:
Remove contents. TODO: Remove.
* tools/modeling/codegen/model/Service_T.cpp:
Provide config name to delegate.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/META-INF/MANIFEST.MF:
Exports to allow build.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/h.xsl:
Save and retrieve transport config names.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_cpp.xsl:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/xsl/traits_h.xsl:
Don't check for transport offset.
Save TransportInsts and TransportConfigs in transport registry.
Associate TransportConfigs with TransportInsts.
TODO: Transport settings for TransportInsts.
* tools/modeling/tests/Messenger/Messenger.codegen:
* tools/modeling/tests/Messenger/Messenger.opendds:
Specify a tranasport config in model.
Add TCP transport insts in codegen.
Mon Aug 1 21:12:38 UTC 2011 Paul Calabrese <[email protected]>
* DevGuideExamples/DCPS/Messenger/run_test.pl:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/run_test.pl:
Remove service configurator file usage in these examples.
Add "use strict" and clean up the script.
* DevGuideExamples/DCPS/Messenger/tcp.conf:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/tcp.conf:
Removed these files.
Mon Aug 1 17:13:03 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/framework/TransportInst.h:
* dds/DCPS/transport/framework/TransportInst.inl:
* dds/DCPS/transport/framework/TransportInst.cpp:
* dds/DCPS/transport/tcp/TcpInst.h:
* dds/DCPS/transport/tcp/TcpInst.inl:
* dds/DCPS/transport/tcp/TcpInst.cpp:
* java/dds/OpenDDS/DCPS/transport/TcpInst.java:
* java/dds/OpenDDS/DCPS/transport/TransportInst.java:
* java/dds/OpenDDS_DCPS_jni.cpp:
Move the passive_connect_duration option from the TCP
transport to the base class.
Fri Jul 29 17:36:56 UTC 2011 Adam Mitz <[email protected]>
* tests/DCPS/FooTest5/subscriber.cpp:
Similar change as before, this time for the mixed_trans tests.
Fri Jul 29 16:34:07 UTC 2011 Adam Mitz <[email protected]>
* tests/DCPS/FooTest5/subscriber.cpp:
Use BEST_EFFORT_RELIABILITY_QOS with the udp transport.
Fri Jul 29 15:29:50 UTC 2011 Adam Mitz <[email protected]>
* dds/InfoRepo/DCPS_Utils.cpp:
Added a missing #include.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.genmodel:
Restored custom settings that were removed in last commit.
* performance-tests/DCPS/dummyTCP/DummyTcpInst.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataReaderI.cpp:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.h:
* tests/DCPS/DCPSInfoRepo/DCPSDataWriterI.cpp:
Adapted tests for IDL changes in yesterday's commit.
* performance-tests/DCPS/SimpleE2ETest:
* performance-tests/DCPS/TCPProfilingTest:
* performance-tests/DCPS/UDPListenerTest:
* performance-tests/DCPS/UDPNoKeyTest:
* tests/DCPS/ConfigFile:
* tests/DCPS/Monitor:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk/model/GeneratorSpecification:
Set svn:ignore property.
Thu Jul 28 22:11:26 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataReaderRemoteImpl.h:
* dds/DCPS/DataReaderRemoteImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DataWriterRemoteImpl.h:
* dds/DCPS/DataWriterRemoteImpl.cpp:
* dds/DdsDcpsDataReaderRemote.idl:
* dds/DdsDcpsDataWriterRemote.idl:
* dds/InfoRepo/DCPS_IR_Publication.h:
* dds/InfoRepo/DCPS_IR_Publication.cpp:
* dds/InfoRepo/DCPS_IR_Subscription.h:
* dds/InfoRepo/DCPS_IR_Subscription.cpp:
* dds/InfoRepo/DCPS_IR_Topic_Description.cpp:
* dds/InfoRepo/DCPS_Utils.cpp:
If reader and writer have no transport types in common, treat it
as an incompatible QoS (fixes FooTest5_0 diff_trans).
Pass a boolean parameter to add_association() to indicate which
side is active and which is passive. For now this is hard-coded
to be writer=active and reader=passive, but the logic is in the
InfoRepo instead of embedded in each participant.
Thu Jul 28 21:33:44 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.genmodel:
Manual changes in support of last emf change.
Thu Jul 28 20:12:39 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
If the DataReader is RELIABLE_RELIABILITY_QOS,
don't use unreliable transports.
DataWriterImpl's change here is just a comment.
* dds/DCPS/transport/framework/TransportClient.cpp:
Improve logging, and make it an error if no transports
are available and applicable to the TransportClient.
* dds/DCPS/transport/framework/TransportInst.h:
* dds/DCPS/transport/multicast/MulticastInst.h:
* dds/DCPS/transport/tcp/TcpInst.h:
* dds/DCPS/transport/udp/UdpInst.h:
Allow each derived class to identify its level of reliability.
* dds/DCPS/transport/multicast/MulticastDataLink.cpp:
Fixed an rch refcount bug introduced in earlier refactoring.
* tests/DCPS/ConfigTransports/DataReaderListener.cpp:
* tests/DCPS/ConfigTransports/common.h:
* tests/DCPS/ConfigTransports/common.cpp:
* tests/DCPS/ConfigTransports/run_test.pl:
* tests/DCPS/ConfigTransports/subscriber.cpp:
Fixed #includes and warnings.
Default reliability for this test is BEST_EFFORT.
Thu Jul 28 17:00:46 UTC 2011 Adam Mitz <[email protected]>
* java/jms/compat/build.xml:
* java/jms/src/org/opendds/jms/transport/TransportFactory.java:
Fixed a bug in the JMS Provider's use of transport API.
Thu Jul 28 16:55:14 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.ecore:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/GeneratorXMI.xsd:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/plugin.properties:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/GeneratorItemProviderAdapterFactory.java:
Additional customizations to generator model.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/plugin.xml:
When opening a .codegen file, use the GeneratorResourceFactory.
* tools/modeling/tests/Messenger/Messenger.codegen:
Modified based on new codegen format.
Thu Jul 28 16:45:56 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.common/icons/full/ctool16/CreateInstance_configs_TransportConfig.gif:
Additional needed icon.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk/model:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk/model/GeneratorSpecification:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk/model/GeneratorSpecification/GeneratorResource.java:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/src/org/opendds/modeling/sdk/model/GeneratorSpecification/GeneratorResourceFactory.java:
Classes to force UUIDs to be used for elements as xmi:id.
Wed Jul 27 22:18:01 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.cpp:
pub_id needs to be used before the penditer is erased,
since pub_id is a reference to the data in penditer.
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.genmodel:
Re-generated from the ecore, and applied our specific settings.
Wed Jul 27 21:39:26 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/common/TestSupport.h:
Updated to fix the issue of TEST_CHECK not terminating the
preocess.
Wed Jul 27 18:28:31 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.ecore:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/Generator.ecore_diagram:
Transport Additions for the new transports.
* tools/modeling/plugins/org.opendds.modeling.common/src/org/opendds/modeling/common/Plugin.java:
Add mappings for new types.
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/src/org/opendds/modeling/sdk/model/GeneratorSpecification/Provider/GeneratorItemProviderAdapterFactory.java:
* tools/modeling/plugins/org.opendds.modeling.sdk.model.edit/plugin.properties:
* tools/modeling/plugins/org.opendds.modeling.sdk.model/model/GeneratorXMI.xsd:
Generated mods for latest model changes.
* tools/modeling/tests/Messenger/Messenger.codegen:
* tools/modeling/tests/Messenger/Messenger.opendds:
Added transportConfigs and transportInsts.
Added transport config properties.
Wed Jul 27 16:15:17 UTC 2011 Adam Mitz <[email protected]>
* java/jms/.classpath:
* java/jms/README:
* java/jms/compat/build.xml:
* java/jms/src/META-INF/services/org.opendds.jms.common.beans.spi.Type:
* java/jms/src/org/opendds/jms/PublisherManager.java:
* java/jms/src/org/opendds/jms/SubscriberManager.java:
* java/jms/src/org/opendds/jms/management/ParticipantFactoryService.java:
* java/jms/src/org/opendds/jms/transport/TransportFactory.java:
* java/jms/src/org/opendds/jms/transport/TransportManager.java:
* java/jms/src/org/opendds/jms/transport/Transports.java:
* java/jms/test/org/opendds/jms/AbstractMessageImplTest.java:
Updated JMS Provider code to work with new Transport API.
* java/jms/src/org/opendds/jms/common/beans/spi/ThreadSynchStrategyType.java:
Removed this file.
Tue Jul 26 21:42:58 UTC 2011 Adam Mitz <[email protected]>
* performance-tests/Bench/bin/run_test:
* performance-tests/Bench/tools/mkpkg:
Removed references to svc.conf which is no longer.
* performance-tests/DCPS/Priority/publisher_main.cpp:
* performance-tests/DCPS/Priority/subscriber_main.cpp:
transportKey is now a string, updated ACE logging formatters.
Tue Jul 26 20:58:13 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/run_test.pl:
* tests/DCPS/ConfigTransports/subscriber.cpp:
Fixing a failing test.
Tue Jul 26 20:12:33 UTC 2011 Adam Mitz <[email protected]>
* performance-tests/Bench/doc/datamodel.txt:
* performance-tests/Bench/doc/userguide.html:
* performance-tests/Bench/etc/transport-multi-be.ini:
* performance-tests/Bench/etc/transport-multi-rel.ini:
* performance-tests/Bench/etc/transport-tcp.ini:
* performance-tests/Bench/etc/transport-udp.ini:
* performance-tests/Bench/etc/transport.ini:
* performance-tests/Bench/src/EntityProfiles.h:
* performance-tests/Bench/src/Options.cpp:
* performance-tests/Bench/src/Publication.cpp:
* performance-tests/Bench/src/Subscription.cpp:
* performance-tests/Bench/tests/latency/p1-100.ini:
* performance-tests/Bench/tests/latency/p1-1000.ini:
* performance-tests/Bench/tests/latency/p1-16000.ini:
* performance-tests/Bench/tests/latency/p1-250.ini:
* performance-tests/Bench/tests/latency/p1-2500.ini:
* performance-tests/Bench/tests/latency/p1-32000.ini:
* performance-tests/Bench/tests/latency/p1-50.ini:
* performance-tests/Bench/tests/latency/p1-500.ini:
* performance-tests/Bench/tests/latency/p1-5000.ini:
* performance-tests/Bench/tests/latency/p1-8000.ini:
* performance-tests/Bench/tests/latency/p1-template.ini:
* performance-tests/Bench/tests/latency/p2.ini:
* performance-tests/Bench/tests/scaling/pub-1.ini:
* performance-tests/Bench/tests/scaling/pub-2.ini:
* performance-tests/Bench/tests/scaling/pub-3.ini:
* performance-tests/Bench/tests/scaling/pub-4.ini:
* performance-tests/Bench/tests/scaling/pub-5.ini:
* performance-tests/Bench/tests/scaling/pub-6.ini:
* performance-tests/Bench/tests/scaling/pub-7.ini:
* performance-tests/Bench/tests/scaling/pub-8.ini:
* performance-tests/Bench/tests/scaling/sub.ini:
* performance-tests/Bench/tests/scenarios/s1-p1.ini:
* performance-tests/Bench/tests/scenarios/s1-p2.ini:
* performance-tests/Bench/tests/scenarios/s2-p1.ini:
* performance-tests/Bench/tests/scenarios/s2-p2.ini:
* performance-tests/Bench/tests/scenarios/s2-p3.ini:
* performance-tests/Bench/tests/scenarios/s2-p4.ini:
* performance-tests/Bench/tests/scenarios/s2-p5.ini:
* performance-tests/Bench/tests/scenarios/s2-p6.ini:
* performance-tests/Bench/tests/scenarios/s3-p1.ini:
* performance-tests/Bench/tests/scenarios/s3-p2.ini:
* performance-tests/Bench/tests/scenarios/s3-p3.ini:
* performance-tests/Bench/tests/spray/pub-1.ini:
* performance-tests/Bench/tests/spray/pub-2.ini:
* performance-tests/Bench/tests/spray/pub-3.ini:
* performance-tests/Bench/tests/spray/pub-4.ini:
* performance-tests/Bench/tests/spray/sub.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-1280.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-160r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-160s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-2000.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-240r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-240s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-320.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-320r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-320s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-400r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-400s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-720.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-be-80.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-1280.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-160r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-160s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-2000.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-240r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-240s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-320.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-320r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-320s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-400r.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-400s.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-720.ini:
* performance-tests/Bench/tests/thru/bidir-1sub-rel-80.ini:
* performance-tests/Bench/tests/thru/bidir-remote-be.ini:
* performance-tests/Bench/tests/thru/bidir-remote-rel.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-1280.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-160.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-2000.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-240r.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-240s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-320.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-320s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-400r.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-400s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-720.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-80.ini:
* performance-tests/Bench/tests/thru/pub-1sub-be-80r.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-1280.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-160.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-2000.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-240r.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-240s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-320.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-320s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-400r.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-400s.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-720.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-80.ini:
* performance-tests/Bench/tests/thru/pub-1sub-rel-80r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-1280.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-160.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-160r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-2000.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-240r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-240s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-320.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-320r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-320s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-400r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-400s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-720.ini:
* performance-tests/Bench/tests/thru/pub-2sub-be-80.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-1280.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-160.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-160r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-2000.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-240r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-240s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-320.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-320r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-320s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-400r.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-400s.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-720.ini:
* performance-tests/Bench/tests/thru/pub-2sub-rel-80.ini:
* performance-tests/Bench/tests/thru/sub-be.ini:
* performance-tests/Bench/tests/thru/sub-rel.ini:
Updated Bench to use TransportConfig instead of TransportIndex in
its configuration files.
* tests/DCPS/Monitor/monitor.conf:
* tests/DCPS/Monitor/pub.ini:
* tests/DCPS/Monitor/run_odds_mon.pl:
* tests/DCPS/Monitor/run_test.pl:
* tests/DCPS/Monitor/sub.ini:
Modified test to work with new Transport API and config file format.
* tools/monitor/MonitorTask.cpp:
Removed code that explicilty creates and attaches transports.
With the new transport API the defaults should work fine.
* performance-tests/Bench/etc/svc.conf:
* tests/DCPS/Monitor/tcp.conf:
Removed these files.
Tue Jul 26 17:42:22 UTC 2011 Adam Mitz <[email protected]>
* java/dds/OpenDDS_DCPS_jni.cpp:
Eliminate warnings due to differently-sized jint and size_t.
* performance-tests/DCPS/Priority/Options.h:
* performance-tests/DCPS/Priority/Options.inl:
* performance-tests/DCPS/Priority/Options.cpp:
* performance-tests/DCPS/Priority/Publisher.h:
* performance-tests/DCPS/Priority/Publisher.cpp:
* performance-tests/DCPS/Priority/Subscriber.h:
* performance-tests/DCPS/Priority/Subscriber.cpp:
* performance-tests/DCPS/Priority/run_test.pl:
* performance-tests/DCPS/Priority/transport.ini:
* performance-tests/DCPS/SimpleE2ETest/common.h:
* performance-tests/DCPS/SimpleE2ETest/publisher.cpp:
* performance-tests/DCPS/SimpleE2ETest/run_test.pl:
* performance-tests/DCPS/SimpleE2ETest/run_test_long.pl:
* performance-tests/DCPS/SimpleE2ETest/run_test_rejected.pl:
* performance-tests/DCPS/SimpleE2ETest/subscriber.cpp:
* performance-tests/DCPS/SimpleLatency/run_test.pl:
* performance-tests/DCPS/SimpleLatency/sample_pub.cpp:
* performance-tests/DCPS/SimpleLatency/sample_sub.cpp:
* performance-tests/DCPS/TCPProfilingTest/common.h:
* performance-tests/DCPS/TCPProfilingTest/publisher.cpp:
* performance-tests/DCPS/TCPProfilingTest/run_test-1p1s.pl:
* performance-tests/DCPS/TCPProfilingTest/run_test-1p4s.pl:
* performance-tests/DCPS/TCPProfilingTest/run_test-2p3s.pl:
* performance-tests/DCPS/TCPProfilingTest/run_test-4p1s.pl:
* performance-tests/DCPS/TCPProfilingTest/subscriber.cpp:
* performance-tests/DCPS/UDPListenerTest/common.h:
* performance-tests/DCPS/UDPListenerTest/conf.ini:
* performance-tests/DCPS/UDPListenerTest/publisher.cpp:
* performance-tests/DCPS/UDPListenerTest/run_test.pl:
* performance-tests/DCPS/UDPListenerTest/subscriber.cpp:
* performance-tests/DCPS/UDPNoKeyTest/common.h:
* performance-tests/DCPS/UDPNoKeyTest/conf.ini:
* performance-tests/DCPS/UDPNoKeyTest/publisher.cpp:
* performance-tests/DCPS/UDPNoKeyTest/run_test-2pubs.pl:
* performance-tests/DCPS/UDPNoKeyTest/run_test.pl:
* performance-tests/DCPS/UDPNoKeyTest/subscriber.cpp:
Updated to use new config file format and transport API.
* performance-tests/DCPS/Priority/svc.conf:
* performance-tests/DCPS/TCPProfilingTest/conf.ini:
* performance-tests/DCPS/UDPListenerTest/run_test-1p1s.pl:
* performance-tests/DCPS/UDPListenerTest/run_test-1p4s.pl:
* performance-tests/DCPS/UDPListenerTest/run_test-2p3s.pl:
* performance-tests/DCPS/UDPListenerTest/run_test-4p1s.pl:
* performance-tests/DCPS/UDPListenerTest/udp.conf:
* performance-tests/DCPS/UDPNoKeyTest/udp.conf:
Removed these files.
Tue Jul 26 16:04:42 UTC 2011 Jeff Schmitz <[email protected]>
* tools/modeling/codegen/model/Delegate.h:
* tools/modeling/codegen/model/Delegate.cpp:
* tools/modeling/codegen/model/Entities.h:
* tools/modeling/codegen/model/Entities.cpp:
Use transport names, rather than IDs.
Allow for transport name to be specified at the reader, writer,
publisher, subscriber, and participant levels.
Allow for empty transport names.
For readers/writers within autoenabled publishers/subscribers
with specified transport names, temporarily override autoenable.
Mon Jul 25 23:23:14 UTC 2011 Adam Mitz <[email protected]>
* Merged from trunk r4687 through r4767.
Mon Jul 25 23:05:42 UTC 2011 Adam Mitz <[email protected]>
* tests/DCPS/DCPSInfoRepo/publisher.cpp:
* tests/DCPS/DCPSInfoRepo/subscriber.cpp:
Changed from sequence_var to just sequence since some GCC
versions didn't like the sequence_var subscript.
Mon Jul 25 14:26:02 UTC 2011 Adam Mitz <[email protected]>
* java/tests/multirepo/multirepo.ini:
Forgot to add this file in the change from Fri Jul 22 14:22:24.
Fri Jul 22 23:00:53 UTC 2011 Adam Mitz <[email protected]>
* dds/DCPS/transport/framework/DataLink.cpp:
Access to sub_map_ must be protected by the sub_map_lock_ mutex.
* java/tests/messenger/publisher/TestPublisher.java:
Removed wait_for_acknowledgments(). We will need to revisit this
with another synchronization approach that's transport-neutral.
Fri Jul 22 22:22:39 UTC 2011 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
Add newly-developed tests to the list.
Fri Jul 22 20:42:54 UTC 2011 Iliyan Jeliazkov <[email protected]>
* tests/DCPS/ConfigTransports/ConfigTransports.mpc:
* tests/DCPS/ConfigTransports/DataWriterListenerImpl.cpp:
* tests/DCPS/ConfigTransports/Reader.h:
* tests/DCPS/ConfigTransports/Reader.cpp:
* tests/DCPS/ConfigTransports/Writer.h:
* tests/DCPS/ConfigTransports/Writer.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:
Improved support for tesing with entities, collocated in-process,
in-domain (participant), in-publisher (in-subscriber)
* tests/DCPS/common/TestSupport.h:
Making those messages look like any other ACE messages
Fri Jul 22 14:22:24 UTC 2011 Adam Mitz <[email protected]>
* java/tests/multirepo/MultiRepoWorker.java:
* java/tests/multirepo/run_test.pl:
This test needs to bind different transports to the various
publishers and subscribers.
* tests/DCPS/FooTest3_0/PubDriver.cpp:
sleep is in the ACE_OS namespace.
* tests/DCPS/Reconnect/publisher.cpp:
* tests/DCPS/Reconnect/run_test.pl:
* tests/DCPS/Reconnect/subscriber.cpp:
Fixed newly introduced bugs in perl script.
Added logging to pub and sub .cpp.
* java/tests/multirepo/domain1_ids:
* java/tests/multirepo/domain2_ids:
Removed these files.
Fri Jul 22 01:41:16 UTC 2011 Paul Calabrese <[email protected]>
* bin/dcps_tests.lst:
* performance-tests/DCPS/MulticastListenerTest/Writer.cpp:
* performance-tests/DCPS/MulticastListenerTest/common.h:
* performance-tests/DCPS/MulticastListenerTest/multicast.ini:
* performance-tests/DCPS/MulticastListenerTest/publisher.cpp:
* performance-tests/DCPS/MulticastListenerTest/run_test.pl:
* performance-tests/DCPS/MulticastListenerTest/subscriber.cpp:
* performance-tests/DCPS/TCPListenerTest/Writer.cpp:
* performance-tests/DCPS/TCPListenerTest/common.h:
* performance-tests/DCPS/TCPListenerTest/run_test.pl:
Updates for new transport config scheme.
The MulticastListenerTest is still having problems.
When run as 'run_test.pl -p 1 -s 1' there is a reference
counting problem at exit. When run as 'run_test.pl'
there is a problem during association. Both problems
appear to be multicast-specific as when I switch to tcp
they pass.
* performance-tests/DCPS/MulticastListenerTest/multicast.conf:
* performance-tests/DCPS/MulticastListenerTest/run_test-16p4s.pl:
* performance-tests/DCPS/MulticastListenerTest/run_test-1p1s.pl:
* performance-tests/DCPS/MulticastListenerTest/run_test-1p4s.pl:
* performance-tests/DCPS/MulticastListenerTest/run_test-2p3s.pl:
* performance-tests/DCPS/MulticastListenerTest/run_test-4p1s.pl:
Removed these files.
Thu Jul 21 20:33:37 UTC 2011 Paul Calabrese <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.cpp:
Clean up some STL map issues.
* tests/DCPS/FooTest3_0/README:
* tests/DCPS/FooTest3_1/DataReaderListener.h:
* tests/DCPS/FooTest3_1/DataReaderListener.cpp:
* tests/DCPS/FooTest3_1/FooTest3_1.mpc:
* tests/DCPS/FooTest3_1/FooTest3_1NoKey.mpc:
* tests/DCPS/FooTest3_1/PubDriver.h:
* tests/DCPS/FooTest3_1/PubDriver.cpp:
* tests/DCPS/FooTest3_1/README:
* tests/DCPS/FooTest3_1/SubDriver.h:
* tests/DCPS/FooTest3_1/SubDriver.cpp:
* tests/DCPS/FooTest3_1/Writer.h:
* tests/DCPS/FooTest3_1/Writer.cpp:
* tests/DCPS/FooTest3_1/run_test.pl:
* tests/DCPS/FooTest3_1/run_test_nokey.pl:
* tests/DCPS/FooTest3_2/DataReaderListener.h:
* tests/DCPS/FooTest3_2/DataReaderListener.cpp:
* tests/DCPS/FooTest3_2/FooTest3_2.mpc:
* tests/DCPS/FooTest3_2/PubDriver.h:
* tests/DCPS/FooTest3_2/PubDriver.cpp:
* tests/DCPS/FooTest3_2/README:
* tests/DCPS/FooTest3_2/SubDriver.h:
* tests/DCPS/FooTest3_2/SubDriver.cpp:
* tests/DCPS/FooTest3_2/Writer.h:
* tests/DCPS/FooTest3_2/Writer.cpp:
* tests/DCPS/FooTest3_2/run_test.pl:
Adapt to new transport scheme.
* tests/DCPS/FooTest3_1/SimpleDataReader.h:
* tests/DCPS/FooTest3_1/SimpleDataReader.cpp:
* tests/DCPS/FooTest3_1/SimpleSubscriber.h:
* tests/DCPS/FooTest3_1/SimpleSubscriber.cpp:
* tests/DCPS/FooTest3_1/Test.idl:
* tests/DCPS/FooTest3_2/SimpleDataReader.h:
* tests/DCPS/FooTest3_2/SimpleDataReader.cpp:
* tests/DCPS/FooTest3_2/SimpleSubscriber.h:
* tests/DCPS/FooTest3_2/SimpleSubscriber.cpp:
* tests/DCPS/FooTest3_2/Test.idl:
Removed these files.
Thu Jul 21 16:14:21 UTC 2011 Adam Mitz <[email protected]>
* tests/DCPS/DCPSInfoRepo/publisher.cpp: