forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-Federation
3051 lines (2178 loc) · 116 KB
/
ChangeLog-Federation
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
Mon Oct 6 20:47:10 UTC 2008 Mike Martinez <[email protected]>
Merging trunk changes 1357:1428 out to branch.
Thu Oct 2 22:29:21 UTC 2008 Adam Mitz <[email protected]>
* DDS_release_notes.txt:
Fixed a typo.
* java/INSTALL:
Removed an unneeded build step.
* java/FAQ:
Added a FAQ entry.
* java/idl2jni/runtime/idl2jni_runtime.cpp:
When translating an unknown exception type (not a CORBA
SystemException) from Java to C++, call the JNI ExceptionDescribe()
function to output a stack trace.
Wed Oct 1 20:35:59 UTC 2008 Adam Mitz <[email protected]>
* DDS_release_notes.txt:
Added a few OpenDDS 1.2 features.
* java/FAQ:
Added and edited FAQ entries.
* java/INSTALL:
* java/README:
Fixed typo; added note about ActiveState Perl.
Tue Sep 30 21:49:54 UTC 2008 Steven Stallion <[email protected]>
* java/FAQ:
* java/README:
Added FAQ.
Tue Sep 30 16:39:06 UTC 2008 Steven Stallion <[email protected]>
* java/tests/complex_idl/ComplexIDLTest.java:
* java/tests/complex_idl/QuoteSupport.java:
Cleaned up imports.
Mon Sep 29 21:26:18 UTC 2008 Adam Mitz <[email protected]>
* java/tests/builtintopics/run_test.pl:
* java/tests/complex_idl/run_test.pl:
* java/tests/hello/run_test.pl:
* java/tests/multirepo/run_test.pl:
Updated remaining tests to make use of the new JavaProcess.pm.
Mon Sep 29 18:45:37 UTC 2008 Adam Mitz <[email protected]>
* java/idl2jni/codegen/im_jni.cpp:
Added a cast for jchar -> char conversion.
Mon Sep 29 15:55:37 UTC 2008 Steven Stallion <[email protected]>
* MPC/config/dcps_java.mpb:
Added link dependency on libtao_java.
* java/tao/tao_java.mpc:
Added more built-in sequence types.
* java/tests/complex_idl:
* java/tests/dcps_java_tests.lst:
Initial commit of complex IDL test.
Mon Sep 29 14:37:05 UTC 2008 Adam Mitz <[email protected]>
* java/INSTALL:
Added notes on building from the subversion repository sources
instead of a packaged release.
Fri Sep 26 21:20:37 UTC 2008 Adam Mitz <[email protected]>
* README:
* docs/INSTALL:
Minor changes and added references to the new java/* documents.
* java/INSTALL:
* java/README:
Added first draft of Java README and INSTALL documents.
* java/tests/messenger/messenger_idl/messenger_idl_test.mpc:
Removed an unneeded line (it had the same value as the default).
Fri Sep 26 14:04:12 UTC 2008 Adam Mitz <[email protected]>
* java/build_scripts/generate_javadoc.pl:
Added -quiet so class names are not printed on stdout. One of the
class names (RETCODE_ERROR) is being flagged by the scoreboard.
Thu Sep 25 22:04:12 UTC 2008 Steven Stallion <[email protected]>
* java/build_scripts/generate_javadoc.pl:
Script now takes an optional destination argument (used by
autobuild).
* java/docs/overview.html:
Updated documentation.
Thu Sep 25 21:44:23 UTC 2008 Adam Mitz <[email protected]>
* MPC/config/dcps_ts_defaults.mpb:
* MPC/modules/IDL2JNIHelper.pm:
* MPC/modules/TYPESUPPORTHelper.pm:
FooTypeSupportImpl.java is actually generated by dcps_ts.pl, not by
idl2jni. Adjusted the various MPC parts to be aware of this.
* bin/Process.pm:
Fixed whitespace.
* java/dds/dcps_java.mpc:
* java/idl2jni/runtime/idl2jni_runtime.mpc:
Added explicit dependencies ("<<") so that javah always runs after
the javac invocation for the referenced class.
* java/idl2jni/codegen/im_jni.cpp:
Fixed warnings, added comments, fixed whitespace.
* java/idl2jni/tests/simple/idl2jni_test_simple.mpc:
Disabled this compile-only test.
* java/tests/dcps_java_tests.lst:
Fixed syntax (":" needed as a separator).
* bin/JavaProcess.pm:
New Perl module for running Java applications in tests.
* java/tests/hello/run_test.pl:
* java/tests/messenger/publisher/run_test.pl:
* java/tests/messenger/subscriber/run_test.pl:
These now use the JavaProcess module to start Java apps.
Thu Sep 25 21:27:47 UTC 2008 Steven Stallion <[email protected]>
* java/build_scripts/generate_javadoc.pl:
* java/docs/overview.html:
Updated javadoc documentation.
Thu Sep 25 20:56:45 UTC 2008 Steven Stallion <[email protected]>
* java/dds/DDS/package.html:
* java/dds/OpenDDS/DCPS/package.html:
* java/docs:
* java/docs/overview.html:
Added documentation.
* java/dds/OpenDDS/DCPS/transport/package.html:
* java/dds/OpenDDS/package.html:
Removed these files.
Thu Sep 25 20:04:39 UTC 2008 Steven Stallion <[email protected]>
* java/build_scripts/generate_javadoc.pl:
* java/dds/DDS/package.html:
* java/dds/OpenDDS/DCPS/package.html:
* java/dds/OpenDDS/DCPS/transport/package.html:
* java/dds/OpenDDS/package.html:
* java/docs:
* java/docs/overview.html:
Added initial javadoc support.
Thu Sep 25 19:04:17 UTC 2008 Steven Stallion <[email protected]>
* java/tests/builtintopics/builtintopics_test.mpc:
* java/tests/dcps_java_tests.lst:
Added guards to Builin Topic tests.
Thu Sep 25 18:27:19 UTC 2008 Steven Stallion <[email protected]>
* java/dds:
* java/dds/DDS:
* java/dds/OpenDDS/DCPS/BuiltinTopicUtils.java:
* java/dds/dcps_java_optional.mpb:
Added OpenDDS::DCPS Builtin Topic constants.
* java/idl2jni/codegen/im_jni.cpp:
* java/idl2jni/runtime:
* java/idl2jni/tests/simple/simple.idl:
Resolved JVM class resolution issue when generating native
sequences (w/Adam Mitz).
* java/tests/builtintopics:
* java/tests/builtintopics/BuiltinTopicsTest.java:
* java/tests/builtintopics/builtintopics.ini:
* java/tests/builtintopics/builtintopics_test.mpc:
* java/tests/builtintopics/domain_ids:
* java/tests/builtintopics/run_test.pl:
* java/tests/dcps_java_tests.lst:
Added Builtin Topic tests.
* java/tests/multirepo:
* java/tests/multirepo/MultiRepoBase.java:
Removed unused import.
Wed Sep 24 15:23:19 UTC 2008 Steven Stallion <[email protected]>
* java/tests/messenger/publisher/run_test.pl:
* java/tests/messenger/subscriber/run_test.pl:
Updated transport tests to disable BITs.
Tue Sep 23 20:28:34 UTC 2008 Steven Stallion <[email protected]>
* java/tests/dcps_java_tests.lst:
* java/tests/messenger/publisher/pub_mcast.ini:
* java/tests/messenger/publisher/pub_reliable_mcast.ini:
* java/tests/messenger/publisher/pub_tcp.ini:
* java/tests/messenger/publisher/pub_udp.ini:
* java/tests/messenger/publisher/publisher_idl_test.mpc:
* java/tests/messenger/publisher/run_test.pl:
* java/tests/messenger/publisher/sub_mcast.ini:
* java/tests/messenger/publisher/sub_reliable_mcast.ini:
* java/tests/messenger/publisher/sub_tcp.ini:
* java/tests/messenger/publisher/sub_udp.ini:
* java/tests/messenger/subscriber/pub_mcast.ini:
* java/tests/messenger/subscriber/pub_reliable_mcast.ini:
* java/tests/messenger/subscriber/pub_tcp.ini:
* java/tests/messenger/subscriber/pub_udp.ini:
* java/tests/messenger/subscriber/run_test.pl:
* java/tests/messenger/subscriber/sub_mcast.ini:
* java/tests/messenger/subscriber/sub_reliable_mcast.ini:
* java/tests/messenger/subscriber/sub_tcp.ini:
* java/tests/messenger/subscriber/sub_udp.ini:
* java/tests/messenger/subscriber/subscriber_idl_test.mpc:
Updated messenger tests to use tcp and non-tcp transports.
* java/tests/messenger/publisher/pub.ini:
* java/tests/messenger/publisher/sub.ini:
* java/tests/messenger/subscriber/pub.ini:
* java/tests/messenger/subscriber/sub.ini:
Removed these files.
Tue Sep 23 16:04:59 UTC 2008 Steven Stallion <[email protected]>
* DDS_release_notes.txt:
Reverted previous change to release notes.
Mon Sep 22 20:13:59 UTC 2008 Steven Stallion <[email protected]>
* DDS_release_notes.txt:
Added known issue when a single TransportImpl is used for both
a DataWriter and DataReader in the same process in Java.
* java/tests/multirepo:
* java/tests/multirepo/MultiRepoBase.java:
* java/tests/multirepo/MultiRepoMaster.java:
* java/tests/multirepo/MultiRepoSlave.java:
* java/tests/multirepo/MultiRepoWorker.java:
* java/tests/multirepo/multirepo.ini:
* java/tests/multirepo/run_test.pl:
Updated the multirepo test to clean up state correctly.
* java/tests/multirepo/master.ini:
* java/tests/multirepo/slave.ini:
Removed these files.
Mon Sep 22 19:40:16 UTC 2008 Adam Mitz <[email protected]>
* java/dds/dcps_java_optional.mpb:
Fixed the build dependencies so built-in-topics code builds later.
Fri Sep 19 23:46:47 UTC 2008 Steven Stallion <[email protected]>
* java/tests/dcps_java_tests.lst:
* java/tests/multirepo:
* java/tests/multirepo/MultiRepo.idl:
* java/tests/multirepo/MultiRepoBase.java:
* java/tests/multirepo/MultiRepoMaster.java:
* java/tests/multirepo/MultiRepoSlave.java:
* java/tests/multirepo/MultiRepoWorker.java:
* java/tests/multirepo/domain1_ids:
* java/tests/multirepo/domain2_ids:
* java/tests/multirepo/master.ini:
* java/tests/multirepo/multirepo_test.mpc:
* java/tests/multirepo/run_test.pl:
* java/tests/multirepo/slave.ini:
Added multi-repo test.
Thu Sep 18 22:57:36 UTC 2008 Adam Mitz <[email protected]>
* MPC/modules/IDL2JNIHelper.pm:
The dependency between Foo.idl and FooTypeSupport.idl was reversed.
* java/dds/dcps_java_optional.mpb:
Fixed whitespace.
Thu Sep 18 16:02:47 UTC 2008 Adam Mitz <[email protected]>
* java/dds/dcps_java_optional.mpb:
Added a -I for $TAO_ROOT.
Thu Sep 18 15:15:31 UTC 2008 Adam Mitz <[email protected]>
* java/dds/dcps_java_optional.mpb:
Added section for !built_in_topics.
Thu Sep 18 00:10:40 UTC 2008 Adam Mitz <[email protected]>
* java/dds/dcps_java_optional.mpb:
Fixed incorrect capitalization (s/BuiltIn/Builtin/g).
* java/tests/multirepo/multirepo_test.mpc:
Added workaround for vc71, vc8.
Wed Sep 17 19:39:27 UTC 2008 Steven Stallion <[email protected]>
* AUTHORS:
* java/tests/multirepo:
* java/tests/multirepo/MultiRepo.idl:
* java/tests/multirepo/multirepo_test.mpc:
* java/tests/multirepo/multirepo_test_Export.h:
Added initial idl and for Java multi-repo testing.
Wed Sep 17 18:47:00 UTC 2008 Adam Mitz <[email protected]>
* MPC/config/dcps_java.mpb:
* MPC/config/dcps_java_bits.mpb:
* bin/dcps_ts.pl:
* java/build_scripts/JavaTypeSupportImpl.pm:
* java/dds/dcps_java.mpc:
* java/dds/dcps_java_optional.mpb:
Enabled built-in topics for Java applications.
* MPC/config/idl2jni.mpb:
* java/tao/tao_java.mpc:
* java/tests/hello/hello_java_client.mpc:
* java/tests/messenger/messenger_idl/messenger_idl_test.mpc:
Updated comments.
* java/idl2jni/tests/simple/idl2jni_test_simple.mpc:
* java/idl2jni/tests/simple/simple.mpc:
Removed this file. It has been renamed to idl2jni_test_simple.mpc.
Wed Sep 17 17:52:18 UTC 2008 Adam Mitz <[email protected]>
* docs/INSTALL:
Clarified instructions for Solaris.
* java/dds/dcps_java.mpc:
* java/tao/tao_java.mpc:
* java/tests/hello/hello_java_client.mpc:
* java/tests/messenger/messenger_idl/messenger_idl_test.mpc:
Added a prebuild step as a workaround to Visual Studio issues.
Mon Sep 15 22:48:47 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/transport/ReliableMulticast/detail/PacketSerializer.cpp:
Use a cross-platform (fixed-size) type for serializing the length.
Thanks to Stefano Zampieri <szampier at eso dot org> and to
Friedhelm Wolf <friedhelm_wolf at web dot de> for reporting the
issue and helping with the fix.
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.inl:
* dds/DCPS/transport/framework/TransportImpl.cpp:
Replaced the identifier "interface" since it is used as a pseudo-
keyword on some systems. Thanks to Stone Jiang
<2005119 at gmail dot com> for contributing the patch.
Mon Sep 15 21:56:04 UTC 2008 Adam Mitz <[email protected]>
* java/idl2jni/codegen/im_jni.cpp:
* java/idl2jni/runtime/idl2jni_runtime.h:
Eliminated GCC warnings.
Mon Sep 15 18:50:16 UTC 2008 Adam Mitz <[email protected]>
* java/build_scripts/JavaTypeSupportImpl.pm:
Include the new idl2jni_jni.h to pick up visibility support for GCC4.
* java/idl2jni/runtime/i2jrt_TAOObject.cpp:
Added some error checking, still more to do.
* java/idl2jni/runtime/idl2jni_runtime.mpc:
Use OpenDDS's version number instead of TAO's.
Mon Sep 15 14:35:49 UTC 2008 Adam Mitz <[email protected]>
* bin/auto_run_tests.pl:
Restore current directory after processing a test list.
Sat Sep 13 17:52:27 UTC 2008 Adam Mitz <[email protected]>
* java/idl2jni/codegen/im_jni.cpp:
Remove use of .in() from object refernence sequence's elements.
Older versions of TAO return a ptr here and not a var-like object.
Fri Sep 12 21:56:05 UTC 2008 Adam Mitz <[email protected]>
* java/idl2jni/runtime/idl2jni_jni.h:
Sun's jni.h doesn't define JNIEXPORT to anything on GCC v4. We need
this to be an actual "export" when hidden visibility is used.
* java/idl2jni/runtime/idl2jni_runtime.h:
* java/idl2jni/runtime/idl2jni_BaseJavaPeer.h:
* java/build_scripts/javah_wrapper.pl:
Make use of idl2jni_jni.h in committed and generated code.
* java/idl2jni/codegen/idl_mapping.h:
* java/idl2jni/codegen/im_jni.cpp:
Use .in() and duplicate() when copying a TAO objref sequence element
to Java. Cleaned up whitespace and formatting.
Thu Sep 11 22:02:27 UTC 2008 Adam Mitz <[email protected]>
* DDS.mwc:
Removed "cmdline" setting that should have no effect.
* java:
Added this entire subtree for the "OpenDDS Java Bindings",
which allows Java applications to use OpenDDS. This will not be
built unless the MPC feature "java" is enabled. JAVA_HOME and
JAVA_PLATFORM environment variables must be set.
* MPC/config/dcps_java.mpb:
* MPC/config/idl2jni.mpb:
* MPC/config/java.mpb:
* MPC/config/optional_jni_check.mpb:
* MPC/modules:
* MPC/modules/IDL2JNIHelper.pm:
* MPC/modules/JAVAHHelper.pm:
Added MPC files to support Java applications.
* bin/auto_run_tests.pl:
Provide a way to run the standard tests (-a) along with those in an
external file (-l).
* bin/dcps_tests.lst:
Fixed slashes in the comment block at the top.
Sun Oct 5 06:03:58 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/Federation/Publisher.cpp:
Used matched subscriptions to synchronize instead of using
DataWriterListener. This would resolve publisher timeout.
Fri Oct 3 21:31:20 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
remove_by_owner() - new method to remove all Entities owned by
a repository departing from a federation.
* dds/InfoRepo/Federator.idl:
leave_federation() - new method for departing a federation.
join_federation() - now returns a reference to the remote
Manager.
* dds/InfoRepo/FederatorManagerImpl.h:
Implementation methods for new IDL interfaces and associated
members to support processing for the implementations.
* dds/InfoRepo/FederatorManagerImpl.cpp:
Implemented IDL interface modifications.
initialize() - use _narrow() to extract specific DataWriter
instead of a dynamic_cast.
finalize() - added call to remote repository federation
point to leave_federation().
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
destroy() - no longer propagates FederationDomain updates to
remove Entities.
* tests/DCPS/Federation/run_test.pl:
Additional diagnostic message.
Wed Oct 1 18:21:19 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/Updater.h:
Eliminate a warning about virtual destructor not present.
Tue Sep 30 21:22:33 UTC 2008 Mike Martinez <[email protected]>
* tests/DCPS/Federation/DataWriterListenerImpl.h:
* tests/DCPS/Federation/DataWriterListenerImpl.cpp:
Forgot to add these files with a previous commit.
These implement part of the signalled condition processing for
the publisher termination.
Tue Sep 30 18:25:13 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/GuidUtils.h:
Corrected some documentation.
* performance-tests/DCPS/InfoRepo_population/pub.ini:
* performance-tests/DCPS/InfoRepo_population/sub.ini:
Removed transport specifications from configuration file.
* performance-tests/DCPS/InfoRepo_population/publisher.cpp:
* performance-tests/DCPS/InfoRepo_population/subscriber.cpp:
Create a separate transport for use by each DomainParticipant.
* tests/DCPS/DcpsIntegration/infrastructure.cpp:
Extend diagnostic messages to include test progress
indications.
* tests/DCPS/DcpsIntegration/run_test-integration.pl:
Remove any previous logfile before starting new test. Remove
ORBDebugLevel specification from repository. Direct repository
log output to same output file as for other processes.
Tue Sep 30 14:37:22 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/GuidUtils.h:
* dds/DCPS/GuidUtils.cpp:
Modified to place the formatted GUID value into a member buffer
with a lifetime guaranteed to match that of the conversion
object.
* dds/DCPS/BuiltInTopicUtils.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/Service_Participant.cpp:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/DataLinkSet.cpp:
* dds/DCPS/transport/framework/DataLinkSetMap.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSet.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSetMap.cpp:
* dds/DCPS/transport/framework/RepoIdSetMap.cpp:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportInterface.inl:
* dds/DCPS/transport/framework/TransportInterface.cpp:
Modified to use automatic conversion objects rather than
temporaries to ensure the lifetime of the formatted GUID values
spanned the output operations.
* tests/DCPS/Federation/Federation.mpc:
* tests/DCPS/Federation/Publisher.h:
* tests/DCPS/Federation/Publisher.cpp:
* tests/DCPS/Federation/TestException.h:
Changed asynchronous delay in publisher after publishing to a
signalled condition predicated on the disconnection of the
Subscriber.
Fri Sep 26 18:23:32 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/GuidUtils.h:
* dds/DCPS/GuidUtils.cpp:
Simplified insertion of GUID values into log messages.
* dds/DCPS/BuiltInTopicUtils.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/Service_Participant.cpp:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/transport/framework/DataLink.cpp:
* dds/DCPS/transport/framework/DataLinkSet.cpp:
* dds/DCPS/transport/framework/DataLinkSetMap.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSet.cpp:
* dds/DCPS/transport/framework/ReceiveListenerSetMap.cpp:
* dds/DCPS/transport/framework/RepoIdSetMap.cpp:
* dds/DCPS/transport/framework/TransportImpl.cpp:
* dds/DCPS/transport/framework/TransportInterface.inl:
* dds/DCPS/transport/framework/TransportInterface.cpp:
Updated diagnostic messages to use simplifications and modified
additional messages to include GUID based Id values rather than
previous 32 bit values.
Fri Sep 26 17:19:39 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/RepoIdSet.h:
* dds/DCPS/transport/framework/RepoIdSet.cpp:
* dds/DCPS/transport/framework/RepoIdSetMap.h:
* dds/DCPS/transport/framework/RepoIdSetMap.cpp:
* dds/DCPS/transport/framework/TransportDefs.h:
* dds/DCPS/transport/framework/TransportImpl.h:
* dds/DCPS/transport/framework/TransportImpl.cpp:
Corrected fully association ack verification and removed some methods
and data that are not needed.
* dds/DCPS/transport/simpleUnreliableDgram/SimpleUnreliableDgramTransport.h:
* dds/DCPS/transport/simpleUnreliableDgram/SimpleUnreliableDgramTransport.inl:
* dds/DCPS/transport/ReliableMulticast/ReliableMulticastTransportImpl.h:
* dds/DCPS/transport/ReliableMulticast/ReliableMulticastTransportImpl.inl:
Updated acked() virtual method signature.
* dds/InfoRepo/DCPS_IR_Topic.cpp:
Fixed a bug in log message.
Wed Sep 24 18:48:16 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/Federation/publisher_main.cpp:
* tests/DCPS/Federation/subscriber_main.cpp:
Added SimpleTcp.h to fix SimpleTCP not load problem on static
builds.
Wed Sep 24 17:21:26 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/WriteDataContainer.cpp:
* dds/DCPS/transport/framework/TransportInterface.cpp:
Extended diagnostic messages.
* tests/DCPS/Federation/run_test.pl:
Corrected transport debug usage. Parameterized and increased
the delay between Spawn calls to help disambiguate log
messages.
Wed Sep 24 04:32:00 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.mpc:
Added more project dependency for InfoRepo executable.
Wed Sep 24 04:07:01 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/GuidUtils.cpp:
Added pre-compile header.
* dds/DCPS/SubscriberImpl.cpp:
Corrected map type for iterator.
* dds/InfoRepo/DCPSInfoRepo.mpc:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPS_IR_Domain.h:
* dds/InfoRepo/DCPS_IR_Participant.h:
* dds/InfoRepo/DCPS_IR_Publication.h:
* dds/InfoRepo/DCPS_IR_Subscription.h:
* dds/InfoRepo/DCPS_IR_Topic.h:
* dds/InfoRepo/DCPS_IR_Topic_Description.h:
* dds/InfoRepo/DCPS_Utils.h:
* dds/InfoRepo/DomainParticipantListener_i.h:
* dds/InfoRepo/FederatorManagerImpl.cpp:
* dds/InfoRepo/GuidGenerator.h:
* dds/InfoRepo/GuidGenerator.cpp:
* dds/InfoRepo/PersistenceUpdater.h:
* dds/InfoRepo/UpdateManager.h:
* dds/InfoRepo/UpdateProcessor_T.h:
* dds/InfoRepo/UpdateReceiver_T.h:
* dds/InfoRepo/inforepo_export.h:
Added InfoRepoLib library to fix federator lib and InfoRepo
circular depedency problem.
Fri Sep 19 21:58:11 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/DCPS_IR_Domain.cpp:
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Minor cosmetic diagnostic bugfixes from debugging session.
Fri Sep 19 15:51:57 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/Federator.idl:
* dds/InfoRepo/PersistenceUpdater.cpp:
* dds/InfoRepo/UpdateDataTypes.h:
* dds/InfoRepo/UpdateManager.cpp:
Added 'owner' field to federation Participant updates.
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Added 'associate' paramter to the internal
DCPSInfo_i::add_publication() and
DCPSInfo_i::add_subscription() methods to address the
conflicting usages for federation updates and repository
persistence. Cleaned up some diagnostic messages.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Added 'owner' field to federation Participant updates.
Called the internal DCPSInfo_i::add_publication() and
DCPSInfo_i::add_subscription() methods with the new 'associate'
parameter to to address the conflicting usages for federation
udpates and repository persistence.
NOTE: This resolves the issue identified in the immediately
previous log entry.
* dds/InfoRepo/FederatorManagerImpl.cpp:
* dds/InfoRepo/UpdateProcessor_T.cpp:
Modified diagnostic messsages to make them more consistent and
added some new information to the messages.
Thu Sep 18 22:43:49 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/DCPSInfo_i.cpp:
Predicated some diagnostic messages on debug level. Replaced
throw operations with status returns where needed.
Change internal publication and subscription calls to cause
associations to be made.
NOTE: This needs to be reconciled with the incompatible usage
for persistence.
* dds/InfoRepo/FederatorManagerImpl.h:
Changed deferred sample queues from std::set to std::list
containers and changed from holding a pointer to the deferred
samples to copying the samples to avoid issues with the inbound
sample lifetimes. Added method for processing for the deferred
samples.
* dds/InfoRepo/FederatorManagerImpl.cpp:
Changed DURABILITY for update writers and readers to
TRANSIENT_LOCAL as a partial solution to indeterminate ordering
of update reception. Modified diagnostics for clarity.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Modified diagnostic messages for clarity. Added additional
diagnostic messages. Changed deferred sample container type
usage. Implemented processing for the deferred samples.
* dds/InfoRepo/UpdateReceiver_T.cpp:
Added more diagnostics and more information to existing
diagnostic messages.
* tests/DCPS/Federation/Subscriber.cpp:
Deconditionalized run() log messages.
* tests/DCPS/Federation/run_test.pl:
Added some delays to help log output parsing during debug.
Fri Sep 12 22:20:21 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.cpp:
Predicate federation on id values other than the NIL id value.
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
changeOwnership() now returns a boolean completion status.
* dds/InfoRepo/FederatorManagerImpl.h:
Added instance storage for local repository reference. Addd
sets to store unprocessed update samples.
* dds/InfoRepo/FederatorManagerImpl.inl:
localRepo() - new method to capture a copy of the local
repository reference.
* dds/InfoRepo/FederatorManagerImpl.cpp:
repository() - now returns the current federation management
repository if any, and the local repository if
there is no federation repository established.
join_federation() - Moved pushState() call inside try/catch
block. Moved update publication and
subscription initialization to after federation
establishment and initial pushState() call on
both sides.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Extensive additions to diagnostic messages.
Store unsuccessfully processed samples for future reprocessing
attempts. This allows the out of order nature of update
reception to proceed without failure.
* tests/DCPS/Federation/Subscriber.cpp:
Added an additional diagnostic message.
* tests/DCPS/Federation/publisher_main.cpp:
Removed the annoying and redundant timestamp from diagnostic
messages.
* tests/DCPS/Federation/run_test.pl:
Added default counts. Added publisher and subscriber to
automatic process generation.
Tue Sep 9 22:49:36 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/FederatorManagerImpl.cpp:
Extended join diagnostics. Changed repository() call value to
return the default repository since the repository for the
federation domain might be attached to a remote repository.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Added diagnostic messages to federation update processing.
Decline to push any of the built-in topic participant
information.
Mon Sep 8 17:43:41 UTC 2008 Mike Martinez <[email protected]>
* DDS_release_notes.txt:
Documented user visible changes on this branch.
* dds/DCPS/Service_Participant.cpp:
* dds/InfoRepo/DCPSInfoRepo.cpp:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Merging trunk changes 1354:1356 out to branch.
Sun Sep 7 01:07:41 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Updated local_address_str_ for bit transport configuration.
* dds/InfoRepo/DCPSInfoRepo.cpp:
Removed listen_address_str_ initialization since it's not used.
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Updated init_transport() signature and updated local_address_str_
in bit config if local address is configured via command line.
Fri Sep 5 23:17:36 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.cpp:
Removed domain specification file processing. Replace call to
obsolete load_domains() with call to init_persistence().
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Removed load_domains() method. Replaced it with a domain()
method that creates a domain on demand. Exposed the
init_persistence() method as public so that it can be
called directly during initialization. Predicated state
push operations on not being the built-in topic publishing
participant. Added push diagnostics.
* dds/InfoRepo/DCPS_IR_Participant.h:
* dds/InfoRepo/DCPS_IR_Participant.cpp:
Added flag to indicate whether a participant is used to publish
built-in topics. Predicated state push operations on not being
this 'special' participant. Added push diagnostics.
* dds/InfoRepo/FederatorManagerImpl.cpp:
Return the repository for the federation domain rather than our
Federation Identifier value. Reordered the repository
management steps during a join operation.
* dds/InfoRepo/PersistenceUpdater.cpp:
* dds/InfoRepo/UpdateManager.cpp:
Process Participants before Topics.
* tests/DCPS/BuiltInTopicTest/prst_repo_run_test.pl:
Extended debug specification and removed reference to domain_id
file.
* DevGuideExamples/DCPS/Messenger/run_corbaloc_test.pl:
* DevGuideExamples/DCPS/Messenger/run_ns_test.pl:
* DevGuideExamples/DCPS/Messenger/run_test.pl:
* DevGuideExamples/DCPS/Messenger_ZeroCopy/run_test.pl:
* examples/DCPS/DistributedContent/run_test.pl:
* 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/Messenger_IOGR_Imr/run_test.pl:
* examples/DCPS/Messenger_Imr/run_test.pl:
* performance-tests/DCPS/InfoRepo_population/run_test.pl:
* performance-tests/DCPS/McastListenerTest/run_test-1p1s.pl:
* performance-tests/DCPS/McastListenerTest/run_test-1p4s.pl:
* performance-tests/DCPS/McastListenerTest/run_test-2p3s.pl:
* performance-tests/DCPS/McastListenerTest/run_test-4p1s.pl:
* 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/SimpleLatency/run_test.pl:
* performance-tests/DCPS/TCPListenerTest/run_test-1p1s.pl:
* performance-tests/DCPS/TCPListenerTest/run_test-1p4s.pl:
* performance-tests/DCPS/TCPListenerTest/run_test-2p3s.pl:
* performance-tests/DCPS/TCPListenerTest/run_test-4p1s.pl:
* performance-tests/DCPS/TCPProfilingTest/run_test-1p1s.pl:
* performance-tests/DCPS/TCPProfilingTest/run_test-1p4s.pl: