forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-1.2
3084 lines (2301 loc) · 122 KB
/
ChangeLog-1.2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Fri Nov 7 15:21:06 UTC 2008 Jonathan S. Pollack <[email protected]>
* OpenDDS version 1.2 released.
Fri Nov 7 15:04:49 UTC 2008 Jonathan Pollack <[email protected]>
* README:
Updated with notes regarding TAO versions and failing tests.
Tue Nov 4 22:51:42 UTC 2008 Ciju John <johnc at ociweb dot com>
* java/tests/messenger/publisher/TestPublisher.java:
* java/tests/messenger/subscriber/DataReaderListenerImpl.java:
* java/tests/messenger/subscriber/TestSubscriber.java:
Further error checking.
Tue Nov 4 16:46:56 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/GuardCondition/GuardConditionTest.cpp:
Fixed warnings.
Mon Nov 3 16:20:00 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
Fixed incorrect string comparison(replace = with ==).
Sat Nov 1 16:18:46 UTC 2008 Adam Mitz <[email protected]>
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
Fixed compile error (now using fclose() instead of close()).
Sat Nov 1 07:54:55 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
* tests/DCPS/BuiltInTopicTest/prst_repo_run_test.pl:
* tests/DCPS/BuiltInTopicTest/publisher.cpp:
* tests/DCPS/BuiltInTopicTest/subscriber.cpp:
Corrected file synch and updated some logging.
Fri Oct 31 23:01:18 UTC 2008 Yan Dai <[email protected]>
* DDS_release_notes.txt:
Added entry for a deadlock fix in reliable multicast transport.
* tests/DCPS/BuiltInTopicTest/monitor.cpp:
* tests/DCPS/BuiltInTopicTest/prst_repo_run_test.pl:
* tests/DCPS/BuiltInTopicTest/publisher.cpp:
* tests/DCPS/BuiltInTopicTest/run_test.pl:
* tests/DCPS/BuiltInTopicTest/subscriber.cpp:
Used file synch for qos change instead of using fixed time
delay. This should fix prst_repo_run_test failure on some
slow machines.
Fri Oct 31 19:16:26 UTC 2008 Ciju John <johnc at ociweb dot com>
* java/tests/messenger/publisher/TestPublisher.java:
* java/tests/messenger/subscriber/DataReaderListenerImpl.java:
* java/tests/messenger/subscriber/TestSubscriber.java:
Verify returned objects. Check DDS return codes.
Fri Oct 31 18:57:15 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/transport/ReliableMulticast/detail/EventHandler.cpp:
Fixed a potential deadlock that send thread and reactor event
thread acquire EventHandler lock and reactor internal lock
reversely.
* dds/InfoRepo/DCPS_IR_Publication.cpp:
* dds/InfoRepo/DCPS_IR_Subscription.cpp:
* dds/InfoRepo/FederatorManagerImpl.cpp:
* performance-tests/DCPS/InfoRepo_population/publisher.cpp:
* tests/DCPS/StatusCondition/StatusConditionTest.cpp:
Fixed warnings.
Fri Oct 31 18:39:03 UTC 2008 Adam Mitz <[email protected]>
* bin/DCPS/CPPTemplate.pm:
read_next_instance() and take_next_instance() may exit from within
the for loop. Call post_read_or_take() in these cases.
Fri Oct 31 17:40:02 UTC 2008 Adam Mitz <[email protected]>
* java/idl2jni/runtime/idl2jni_runtime.rc:
* java/tao/tao_java.rc:
Fixed #include paths.
Fri Oct 31 16:21:52 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/transport/ReliableMulticast/ReliableMulticast.rc:
* dds/DCPS/transport/simpleTCP/SimpleTcp.rc:
* dds/DCPS/transport/simpleUnreliableDgram/SimpleUnreliableDgram.rc:
* dds/InfoRepo/DCPSInfoRepo.mpc:
* dds/InfoRepo/DCPSInfoRepoServ.rc:
* dds/InfoRepo/Federator.rc:
* dds/InfoRepo/InfoRepoLib.rc:
* dds/OpenDDS_DCPS.rc:
* java/dds/dcps_java.rc:
* java/idl2jni/runtime/idl2jni_runtime.rc:
* java/tao/tao_java.rc:
Added resource files so that Windows DLLs get the version number and
library description embedded.
Thu Oct 30 23:23:56 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/FooTest4/main.cpp:
Added delay between create_datareader and sub
delete_contained_entities to avoid test failure on slow
machines that add_associations is not performed because
of deleting.
Thu Oct 30 17:00:49 UTC 2008 Yan Dai <[email protected]>
* DDS_release_notes.txt:
Added entries for bug fixes after 1.1 release.
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/PublisherImpl.h:
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/SubscriberImpl.h:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/TopicImpl.h:
* dds/DCPS/TopicImpl.cpp:
Removed non-necessary overload functions (get_status_changes()
and notify_status_condition()).
* dds/DCPS/EntityImpl.cpp:
Fixed a warning.
Wed Oct 29 23:53:35 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/EntityImpl.h:
* dds/DCPS/EntityImpl.cpp:
Added lock to protect the status_changes_.
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
Removed lock in get_status_changes() and
notify_status_condition() as the status
change is protected by EntityImpl lock. This
should resolve potential deadlock when two threads
acquire WaitSet lock and DataWriter/DataReader lock
in reverse order.
Wed Oct 29 20:48:24 UTC 2008 Adam Mitz <[email protected]>
* bin/dcps_tests.lst:
Added the qualifier !DDS_NO_ORBSVCS to tests that use TAO's orbsvcs.
Wed Oct 29 20:16:36 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/transport/simpleTCP/SimpleTcpConnection.inl:
* dds/DCPS/transport/simpleTCP/SimpleTcpConnection.cpp:
Made disconnect() to unregister connection with reactor.
This would avoid access violation if reactor cleanup
handles after connection is destroyed.
* dds/DCPS/transport/simpleTCP/SimpleTcpReceiveStrategy.cpp:
* dds/DCPS/transport/simpleTCP/SimpleTcpSendStrategy.cpp:
Made relink() check if connection is nil to avoid access
violation when trying to reconnect while datalink is
releasing.
Wed Oct 29 19:33:47 UTC 2008 Mike Martinez <[email protected]>
* docs/design/federation:
* docs/design/federation/federation.html:
* docs/design/federation/images:
* docs/design/federation/images/Application.jpg:
* docs/design/federation/images/CreateParticipant.jpg:
* docs/design/federation/images/CreatePublication.jpg:
* docs/design/federation/images/CreateSubscription.jpg:
* docs/design/federation/images/CreateTopic.jpg:
* docs/design/federation/images/Federation.jpg:
* docs/design/federation/images/OpenDDS.jpg:
* docs/design/federation/images/PassOwnership.jpg:
* docs/design/federation/images/Repository.jpg:
* docs/design/federation/images/StartAndFederate.jpg:
* docs/design/federation/images/UseCases.jpg:
* docs/design/federation/images/info-dm.png:
Added documentation with diagrams for the federation design.
Point a browser at docs/design/federation/federation.html to
view the entire documentation. This replaces the earlier text
file design documentation.
* docs/design/federation.txt:
Removed this file.
Wed Oct 29 18:18:29 UTC 2008 Adam Mitz <[email protected]>
* DDS_TAO.mwc:
Added PI and CodecFactory. They're not strictly needed but TAO will
try to load them at runtime and it will produce a confusing error
message (which is flagged as an error on the scoreboard).
Wed Oct 29 17:41:05 UTC 2008 Ciju John <johnc at ociweb dot com>
* java/tests/dcps_java_tests.lst:
* java/tests/messenger/run_test.pl:
New test script to run java peers(publisher/subscriber)
simultaneously.
Tue Oct 28 21:34:20 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
Overloaded notify_status_condition() to get sample_lock_
before calling base class notify_status_condition(). This
should resolve deadlock situation that two threads (
one calling notify_status_condition() and another calling
data_received()) acquire DataReaderImpl sample_lock_ and
ConditionImpl lock_ reversely.
* dds/DCPS/DataWriterImpl.h:
* dds/DCPS/DataWriterImpl.cpp:
Similar change as DataReaderImpl.
* dds/InfoRepo/DCPSInfo_i.cpp:
Corrected conn_retry_attempts_ setting which should be set 0
even the local_address is not configured.
* DCPS/transport/framework/DataLink.cpp:
Added guard for accessing sub_map_ and pub_map_ in exist()
function.
* tests/DCPS/sub_init_loop/publisher.cpp:
Changed history qos to be default(KEEP_LAST_HISTORY_QOS)
instead of KEEP_ALL_HISTORY_QOS as it's not required.
This avoids publisher continue consume resouce after
subscriber encounter deadlock.
Mon Oct 27 20:59:57 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/transport/framework/TransportImpl.cpp:
Fixed a bug in add_pending_association() that
check_fully_association by individual association does not
remove the fully associated pair in the pending list so
fully_associated may be called multiple times for the same
association.
* dds/InfoRepo/DCPSInfo_i.cpp:
Configured BIT transport to not attempt connect after lost
connection. This would avoid reconnect errors during repo
shutdown.
Mon Oct 27 15:09:34 UTC 2008 Adam Mitz <[email protected]>
* tests/DCPS/GuardCondition/GuardConditionTest.cpp:
* tests/DCPS/StatusCondition/StatusConditionTest.cpp:
Changed mechanism used for waiting for threads to terminate, the
old way was hanging on some linux systems (rome).
Fri Oct 24 22:19:03 UTC 2008 Friedhelm Wolf <[email protected]>
* wrapper/Domain_Manager.h
* wrapper/Domain_Manager.cpp
* wrapper/Publication_Manager.h
* wrapper/Publication_Manager.cpp
* wrapper/Subscription_Manager.h
* wrapper/Subscription_Manager.cpp:
Removed empty destructors to fix compiler error with borland
CodeGear.
Fri Oct 24 17:43:13 UTC 2008 Adam Mitz <[email protected]>
* MPC/config/dds_wrapper.mpb:
Changed the "after" to valid project name
(these are not library names).
Fri Oct 24 13:54:33 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/ConditionImpl.h:
* dds/DCPS/ConditionImpl.cpp:
* dds/DCPS/StatusConditionImpl.cpp:
* tests/DCPS/GuardCondition/GuardCondition.mpc:
* tests/DCPS/StatusCondition/StatusCondition.mpc:
Merged an additional fix from the branch that was mistakenly
left out of yesterday's merge.
Thu Oct 23 22:47:51 UTC 2008 Mike Martinez <[email protected]>
* DDS_release_notes.txt:
Added implementation of DomainParticipant::get_current_time().
This ChangeLog entry is late, the previous changeset contains
the actual file modification.
Thu Oct 23 21:43:57 UTC 2008 Adam Mitz <[email protected]>
* dds/DdsDcpsDomain.idl:
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
Implemented DomainParticipant::get_current_time().
* DDS_release_notes.txt:
Noted the following changes. These were first developed on the
JMS_PROVIDER branch, but that branch has many other changes which
will be merged after 1.2.
* dds/DdsDcpsInfrastructure.idl:
* bin/DCPS/CPPTemplate.pm:
* dds/DCPS/ConditionImpl.h:
* dds/DCPS/ConditionImpl.cpp:
* dds/DCPS/DataReaderImpl.h:
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/DataWriterImpl.cpp:
* dds/DCPS/Definitions.h:
* dds/DCPS/EntityImpl.h:
* dds/DCPS/EntityImpl.cpp:
* dds/DCPS/GuardCondition.h:
* dds/DCPS/GuardCondition.cpp:
* dds/DCPS/OfferedDeadlineWatchdog.cpp:
* dds/DCPS/RequestedDeadlineWatchdog.cpp:
* dds/DCPS/StatusConditionImpl.h:
* dds/DCPS/StatusConditionImpl.cpp:
* dds/DCPS/SubscriberImpl.cpp:
* dds/DCPS/WaitSet.h:
* dds/DCPS/WaitSet.cpp:
Implemented WaitSet, GuardCondition, and StatusCondition.
* java/dds/DDS/GuardCondition.java:
* java/dds/DDS/WaitSet.java:
* java/dds/OpenDDS_DCPS_jni.cpp:
* java/dds/dcps_java.mpc:
Java bindings for WaitSet and GuardCondtion.
* java/idl2jni/codegen/im_jni.cpp:
Fixed a bug with inout sequences.
* bin/dcps_tests.lst:
* tests/DCPS/GuardCondition:
* tests/DCPS/StatusCondition:
Added two new tests.
Thu Oct 23 20:59:37 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Fixed iterator incorrect move in processDeferred().
Wed Oct 22 22:08:10 UTC 2008 Friedhelm Wolf <[email protected]>
* wrapper/Topic_Manager_T.h
* wrapper/Topic_Manager_T.cpp:
Made corrections on copy ctor and assignment operator
and made them private.
* wrapper/OpenDDS/OpenDDS_Subscription_Manager.h
* wrapper/OpenDDS/OpenDDS_Publication_Manager.cpp
* wrapper/OpenDDS/OpenDDS_Domain_Manager.h
* wrapper/OpenDDS/OpenDDS_Publication_Manager.h
* wrapper/OpenDDS/OpenDDS_Subscription_Manager.cpp
* wrapper/OpenDDS/OpenDDS_Domain_Manager.cpp:
Changed register_transport functionality so that it is only
called once per Domain_Manager instance even if several
publishers or subscribers are created.
Wed Oct 22 03:25:37 UTC 2008 Friedhelm Wolf <[email protected]>
* wrapper/Subscription_Manager_Impl.cpp
* wrapper/Domain_Manager.h
* wrapper/Publication_Manager.h
* wrapper/Topic_Manager.cpp
* wrapper/Subscription_Manager.inl
* wrapper/Subscription_Manager.cpp
* wrapper/Reference_Counter_T.h
* wrapper/Domain_Manager_Impl.h
* wrapper/Publication_Manager_Impl.h
* wrapper/Topic_Manager_Impl.h
* wrapper/Domain_Manager.cpp
* wrapper/Domain_Manager.inl
* wrapper/Publication_Manager.cpp
* wrapper/Publication_Manager.inl
* wrapper/Subscription_Manager_Impl.h
* wrapper/OpenDDS/OpenDDS_Subscription_Manager.h
* wrapper/OpenDDS/OpenDDS_Publication_Manager.cpp
* wrapper/OpenDDS/OpenDDS_Domain_Manager.h
* wrapper/OpenDDS/OpenDDS_Publication_Manager.h
* wrapper/OpenDDS/OpenDDS_Subscription_Manager.cpp
* wrapper/OpenDDS/OpenDDS_Domain_Manager.cpp
* wrapper/Topic_Manager.h
* wrapper/Reference_Counter_T.cpp
* wrapper/Domain_Manager_Impl.cpp
* wrapper/Subscription_Manager.h
* wrapper/Publication_Manager_Impl.cpp
* wrapper/Topic_Manager_Impl.cpp:
Replaced Reference_Counter_T class with
ACE_Refcounted_Auto_Ptr in the memory management bridge
classes.
Tue Oct 21 23:22:55 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/DCPS_IR_Domain.cpp:
Fixed a warning.
* dds/InfoRepo/PersistenceUpdater.h:
Added missing includes.
Tue Oct 21 22:24:39 UTC 2008 Yan Dai <[email protected]>
* tests/DCPS/BuiltInTopicTest/mySvc.conf:
Updated the service name.
Tue Oct 21 22:05:28 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/transport/simpleTCP/SimpleTcp.cpp:
Removed a duplicate header.
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
Added includes to load service for static build.
* dds/InfoRepo/PersistenceUpdater.h:
* dds/InfoRepo/PersistenceUpdater.cpp:
Added Loader class for static intializing and
loading service.
* tests/DCPS/Prst_delayed_subscriber/mySvc.conf:
Updated the service name.
Tue Oct 21 20:00:02 UTC 2008 Yan Dai <[email protected]>
* bin/dcps_tests.lst:
Added Federation test.
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
Fixed a warning.
Tue Oct 21 18:53:07 UTC 2008 Adam Mitz <[email protected]>
* dds/InfoRepo/DCPS_IR_Domain.cpp:
Eliminated a warning when built_in_topics=0.
Mon Oct 20 22:08:36 UTC 2008 Mike Martinez <[email protected]>
* DDS_release_notes.txt:
Added short description of new dcps_ts.pl command line
argument.
Mon Oct 20 21:51:30 UTC 2008 Steven Stallion <[email protected]>
* DDS_release_notes.txt:
Updated release notes with DCPSInfoRepo changes.
Mon Oct 20 18:03:31 UTC 2008 Steven Stallion <[email protected]>
* dds/DCPS/Service_Participant.cpp:
* dds/InfoRepo/DCPSInfoRepo.cpp:
* dds/InfoRepo/DCPSInfoRepoServ.h:
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
* dds/InfoRepo/DCPSInfo_i.cpp:
DCPSInfoRepo refactorings:
- DCPSInfoRepo will no longer abort on an invalid Transport
configuration.
- Added catch all to DCPSInfoRepoServ::init to ensure
failed initialization cleans up state correctly.
- Cleaned up DCPSInfoRepoServ interfaces (i.e. unused return
values, incorrect return types).
- Usage will no longer call ACE_OS::exit; now throws an
InitError instead.
- Service_Participant::shutdown is now resilient; assertion
replaced with conditional if CORBA::ORB is nil.
Fri Oct 17 23:31:29 UTC 2008 Yan Dai <[email protected]>
* DevGuideExamples/DCPS/Messenger/run_ns_test.pl:
Added file extension for nsadd executable to fix file not found problem
on windows.
* tests/DCPS/FooTest4_0/Reader.cpp:
* tests/DCPS/FooTest4_0/Writer.cpp:
Reduced time delay for transport factory release to resolve
"Unable to locate DataLink" during transport release.
Fri Oct 17 22:21:38 UTC 2008 Adam Mitz <[email protected]>
* java/build_scripts/JavaTypeSupportImpl.pm:
Removed an extraneous reference count on the typesupport object.
* wrapper/example/WrapperStockQuoter.mpc:
Removed references to non-existent domain_ids file.
Fri Oct 17 22:18:52 UTC 2008 Mike Martinez <[email protected]>
* bin/dcps_ts.pl:
Added -o <dir> option to write output files to a directory.
Thu Oct 16 23:09:41 UTC 2008 Yan Dai <[email protected]>
* DevGuideExamples/DCPS/Messenger/run_ns_test.pl:
Worked around nsadd executable name difference in DOC and other
TAO version(1.4a and 1.5a). The script now verify nsadd executable
file existence.
* dds/InfoRepo/DCPS_IR_Domain.cpp:
Changed an LM_ERROR logging in find_topic_description to LM_DEBUG.
* tests/DCPS/unit/run_test.pl:
Directed output to a file as the errors loggings are expected.
Thu Oct 16 19:50:35 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Replaced _non_exist() call with _is_a() to validate repo connections.
This would fix the 1.4a minimum_corba build issue due to _non_exist
is not available in 1.4a.
* dds/InfoRepo/DCPS_IR_Domain.cpp:
Fixed a warning in DDS_HAS_MINIMUM_BIT build.
* dds/InfoRepo/DCPSInfo_i.cpp:
Fixed a warning.
Wed Oct 15 22:45:58 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/FederatorManagerImpl.h:
Fixed warnings from SunOS compiler.
Wed Oct 15 18:46:14 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
* dds/DCPS/FailoverListener.cpp:
* dds/InfoRepo/UpdateListener_T.cpp:
* dds/InfoRepo/UpdateReceiver_T.h:
* dds/InfoRepo/UpdateReceiver_T.cpp:
Fixed warnings.
Wed Oct 15 17:37:22 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/DCPSInfo_i.cpp:
Made BIT transport configured with datalink_release_delay_=0, this
makes the BIT transport send the graceful shutdown to the peer so
the InfoRepo won't try to reconnect.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Fixed some warnings.
Wed Oct 15 15:56:53 UTC 2008 Friedhelm Wolf <[email protected]>
* MPC/config/dds_wrapper.mpb:
Fixed project dependency settings to remove linker errors in
static builds.
Wed Oct 15 00:15:36 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/BuiltInTopicUtils.h:
Fixed a guid comparison problem.
* dds/InfoRepo/DCPS_IR_Topic.h:
* dds/InfoRepo/DCPS_IR_Topic.cpp:
Added release() to support topic deletion upon last associated
sub/pub/topic object deletion. This would fix the access violation
when sub/pub deletion updates happen after topic deletion.
* dds/InfoRepo/DCPS_IR_Domain.cpp:
* dds/InfoRepo/DCPS_IR_Participant.cpp:
- Made topic->release called upon removing sub/pub/topic.
- Updated remove_all_dependents() to move iterator to next
before removing sub/pub/topic to fix access violation.
* dds/InfoRepo/FederatorManagerImpl.inl:
Fixed orb reference counting issue.
* dds/InfoRepo/FederatorManagerImpl.h:
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
- Added lock_ to protect the deferred updata samples.
- Added processDeferred() call in each processCreate().
This would fix missing update problem due to timing
of multithreads handling participant/topic/sub/pub
updates.
- Added try and catch Invalid_Participant block for
remove_topic/remove_publication/remove_subscription
in case the remove_domain_participant is called
before them.
* dds/InfoRepo/FederatorManagerImpl.cpp:
Changed an LM_ERROR message to LM_DEBUG message.
Tue Oct 14 19:11:47 UTC 2008 Adam Mitz <[email protected]>
* dds/DdsDcps.mpc:
* dds/dcps_bits.mpb:
Even with built_in_topics=0, we now need to use -Gdcps on
DdsDcpsInfrastructure.idl because Federation is depending on the
functions it generates.
* java/tests/builtintopics/run_test.pl:
* java/tests/complex_idl/run_test.pl:
* java/tests/messenger/publisher/run_test.pl:
* java/tests/messenger/subscriber/run_test.pl:
Remove references to deprecated 'domain_ids' files.
* wrapper/DDSWrapper_OpenDDS.mpc:
Use "dynamic" flags to set the *_BUILD_DLL macros.
Tue Oct 14 15:18:14 UTC 2008 Chris Cleeland <[email protected]>
* tests/DCPS/Serializer/SerializerTest.cpp:
Appended 'LL' to the constant used when ACE_SIZEOF_LONG_DOUBLE
is 16. Without this it was causing compile errors on at least
Mac OS X 10.5.*.
Tue Oct 14 14:11:04 UTC 2008 Friedhelm Wolf <[email protected]>
* MPC/config/dds_wrapper.mpb:
* wrapper/example/WrapperStockQuoter.m?c:
Fixed scoreboard error by moving dds_wrapper.mpb file from
the wrapper directory to the MPC/config directory and
renamed MPC project files.
Mon Oct 13 21:36:42 UTC 2008 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.mpc:
Fixed build breakage on static builds of DCPSInfoRepo.
Mon Oct 13 14:27:57 UTC 2008 Adam Mitz <[email protected]>
* dds/tools/federation/Federation.mpc:
* dds/tools/federation/federation.cpp:
Fixed compile errors.
Sun Oct 12 04:12:31 UTC 2008 Friedhelm Wolf <[email protected]>
* wrappers/*:
Added new set of wrapper classes to simplify DDS usage in
applications.
Fri Oct 10 22:39:35 UTC 2008 Mike Martinez <[email protected]>
* dds/tools:
* dds/tools/federation:
* dds/tools/federation/Federation.mpc:
* dds/tools/federation/federation.cpp:
Added new command line tool for managing federations.
Fri Oct 10 22:13:49 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Changed lock_ ACE_Recursive_Thread_Mutex to solve the deadlock
on linux.
Fri Oct 10 22:15:39 UTC 2008 Adam Mitz <[email protected]>
* java/tests/builtintopics/domain_ids:
* java/tests/complex_idl/domain_ids:
* java/tests/messenger/publisher/domain_ids:
* java/tests/messenger/subscriber/domain_ids:
Removed these files. Domain ID files are now depreceated.
Fri Oct 10 20:26:41 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/DataReaderImpl.cpp:
Corrected an debug logging.
* dds/DCPS/PublisherImpl.cpp:
* dds/DCPS/SubscriberImpl.cpp:
Added invalid repo id from repo.
* dds/DdsDcpsInfoUtils.idl:
Added an enum TopicStatus - INTERNAL_ERROR .
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
Added lock_ to synchronize the servant implementations
and the methods called by updater threads.
* dds/InfoRepo/DCPS_IR_Participant.cpp:
Fixed a problem that the iterator is not accessible after
remove_topic() is called.
* dds/InfoRepo/FederatorManagerImpl_updates.cpp:
Corrected a debug logging.
* dds/InfoRepo/UpdateReceiver_T.cpp:
Removed task wait() call from close() since close() can be
called when thread exit. It'll cause problem waiting for
itself to finish. Use stop() instead of close() to shutdown
the UpdateReceiver task thread.
* dds/InfoRepo/DCPSInfoRepo.cpp:
Added pre-compile header.
* dds/InfoRepo/DCPSInfoRepo.mpc:
Added empty Template_Files section to DCPSInfoRepoServ.
Fri Oct 10 19:59:44 UTC 2008 Adam Mitz <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.mpc:
Adjusted MPC settings to not pick up the defaults.
Fri Oct 10 19:48:27 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Transitioned from using _validate_connection() to using
_non_existant() to remove a dependency on a non-minimal CORBA
feature.
Fri Oct 10 19:29:57 UTC 2008 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfoRepoServ.h:
* dds/InfoRepo/DCPSInfoRepoServ_Export.h:
Added Export macros for GCC 4.x and Windows builds.
Fri Oct 10 19:09:50 UTC 2008 Steven Stallion <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.cpp:
* dds/InfoRepo/DCPSInfoRepo.mpc:
* dds/InfoRepo/DCPSInfoRepoServ.h:
* dds/InfoRepo/DCPSInfoRepoServ.cpp:
Added libDCPSInfoRepoServ service library. DCPSInfoRepo is
now a simple wrapper around the library.
Fri Oct 10 14:08:06 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/FailoverListener.cpp:
Added required #include of the PCH header.
Thu Oct 9 21:37:23 UTC 2008 Mike Martinez <[email protected]>
* dds/InfoRepo/Federator.idl:
leave_and_shutdown()
shutdown()
Added these methods to the Federator::Manager interface.
* dds/InfoRepo/FederatorManagerImpl.h:
* dds/InfoRepo/FederatorManagerImpl.cpp:
leave_and_shutdown()
shutdown()
Implement the new IDL methods.
* dds/InfoRepo/ShutdownInterface.h:
Abstract interface used to propagate shutdown requests.
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
shutdown() - forward shutdown requests to new ShutdownInterface
reference provided via constructor.
* dds/InfoRepo/DCPSInfoRepo.cpp:
Implement the new ShutdownInterface and pass this to the
repository implementation object constructor.
Thu Oct 9 20:31:34 UTC 2008 Yan Dai <[email protected]>
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
* dds/DCPS/DomainParticipantFactoryImpl/PublisherImpl.cpp:
Fixed an iterator access violation due to iterator erasing
while iterating on map or set. The delete_*() invalidates
the iterator so the iterator has to be move forward for
next iteration before delete_*() call.
Thu Oct 9 18:22:58 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/DomainParticipantImpl.h:
* dds/DCPS/DomainParticipantImpl.cpp:
* dds/DCPS/FailoverListener.h:
* dds/DCPS/FailoverListener.cpp:
Install a FailoverListener object to the DCPSParticipant
built-in topic DataReader when federated. This listener will
initiate failover sequencing on reciept of the
on_subscription_lost() callback.
Set the LIVELINESS.lease_duration value for the DCPSParticpant
built-in topic DataReader to that specified by the
FederationLivelinessDuration value when federated.
* dds/DCPS/Service_Participant.h:
* dds/DCPS/Service_Participant.inl:
* dds/DCPS/Service_Participant.cpp:
load_common_config() - added FederationLivelinessDuration key
value to this section. The default value is 60 seconds.
federation_liveliness() - new methods to access a member
containing the new FederationLivelinessDuration value.
repsitory_lost() - simplified handling the case where the
specified lost repository is not found.
* dds/InfoRepo/DCPS_IR_Domain.h:
* dds/InfoRepo/DCPS_IR_Domain.cpp:
Add argument when initializing the built-in topics to cause the
DCPSParticipant built-in topic to use a non-infinite
LIVELINESS.lease_duration value.
* dds/DdsDcpsInfo.idl:
* dds/DdsDcpsInfoUtils.idl:
* dds/InfoRepo/DCPSInfo_i.h:
* dds/InfoRepo/DCPSInfo_i.cpp:
add_domain_participant() - changed signature to return a
structure with both the previously returned Id value as well
as a boolean indication of whether the repository is a
federated repository.
* dds/DCPS/DomainParticipantFactoryImpl.cpp:
Use modified add_domain_participant() signature.
* tests/DCPS/DCPSInfoRepo/publisher.cpp:
* tests/DCPS/DCPSInfoRepo/subscriber.cpp:
Use modified add_domain_participant() signature.
* tests/DCPS/FooTest3_0/run_test.pl:
* tests/DCPS/FooTest3_1/run_test_nokey.pl:
Added diagnostic message to indicate final test result.
* tests/DCPS/FooTest3_1/PubDriver.cpp:
Added additional diagnostic messages during test.
* tests/DCPS/FooTest3_1/run_test.pl:
Added diagnostic message to indicate final test result.
Moved command line prints to be immediately prior to the Spawn
of the process.
Thu Oct 9 16:03:55 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/Service_Participant.cpp:
Removed unreferenced local variable.
Using ACE_Time_Value::zero to avoid ambiguous conversions.
Thu Oct 9 07:00:04 UTC 2008 Yan Dai <[email protected]>
* dds/InfoRepo/DCPSInfoRepo.cpp:
Made TAO_DDS_DCPSInfo_i servant be member of InfoRepo instead of
in the scope of init() function. It is deleted when exit from
init(). This should fix access violation on the TAO_DDS_DCPSInfo_i
object and its members.
* dds/InfoRepo/FederatorManagerImpl.cpp:
Made listener thread stop in finalize ().
* dds/InfoRepo/UpdateListener_T.h:
* dds/InfoRepo/UpdateListener_T.cpp:
Added stop() method.
Wed Oct 8 18:45:16 UTC 2008 Mike Martinez <[email protected]>
* dds/DCPS/Service_Participant.h:
* dds/DCPS/Service_Participant.inl:
* dds/DCPS/Service_Participant.cpp:
remap_domains() - refactored partial implementation of
set_repo() into separate method.
repository_lost() - added new method to failover to new
repository.
Added configurable variables and accessors/mutators for
FederationRecoveryDuration
FederationInitialBackoffSeconds
FederationBackoffMultiplier
* tests/DCPS/Federation/run_test.pl:
Added verbose option mapping to '-ORBVerboseLogging 1' for
process arguments.
Wed Oct 8 14:42:23 UTC 2008 Adam Mitz <[email protected]>
* dds/InfoRepo/FederatorConfig.cpp:
Added required #include.
Wed Oct 8 14:09:18 UTC 2008 Adam Mitz <[email protected]>
* dds/DCPS/SubscriberImpl.cpp:
Added required #include.
* dds/DCPS/GuidUtils.cpp:
* dds/InfoRepo/GuidGenerator.cpp:
Added static_cast<> around numeric narrowing conversions. This
silences warnings from some compilers.
Tue Oct 7 19:31:05 UTC 2008 Adam Mitz <[email protected]>
* dds/DdsDcps.mpc: