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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
|
Fri Aug 17 14:38:15 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* docs/Options.html:
Add description of the -ORBGestalt option.
* tao/ORB.cpp:
Fix ACE_TEXT consistency.
Fri Aug 17 08:24:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/CosPropertyService.idl:
Removed, it was for backward compatibility for years, now time to remove
it. Users should include CosProperty.idl, this is related to bugzilla 3041,
thanks to Bogdan Jeram <bjeram at eso dot org> for reporting that issue
* orbsvcs/orbsvcs/CosProperty.idl:
Doxygen updates
* orbsvcs/orbsvcs/CosProperty.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Removed CosPropertyService.idl
Thu Aug 16 23:44:00 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* TAO_IDL/ast/ast_argument.cpp:
* TAO_IDL/ast/ast_enum_val.cpp:
* TAO_IDL/ast/ast_string.cpp:
* TAO_IDL/be/be_constant.cpp:
* TAO_IDL/be/be_operation_strategy.cpp:
* TAO_IDL/be/be_union_label.cpp:
* TAO_IDL/be/be_visitor_component/component.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ih.cpp:
* TAO_IDL/be/be_visitor_interface/interface_is.cpp:
* TAO_IDL/be/be_visitor_union_branch/public_reset_cs.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype_obv_ch.cpp:
* TAO_IDL/fe/fe_private.cpp:
* TAO_IDL/idl_specs/array.idl:
* TAO_IDL/idl_specs/constant.idl:
* TAO_IDL/idl_specs/dif2.idl:
* TAO_IDL/idl_specs/module.idl:
* TAO_IDL/idl_specs/primtypes.idl:
* TAO_IDL/idl_specs/sequence.idl:
* TAO_IDL/idl_specs/simple.idl:
* TAO_IDL/idl_specs/simple2.idl:
* TAO_IDL/idl_specs/struct.idl:
* TAO_IDL/idl_specs/union.idl:
* TAO_IDL/idl_specs/union2.idl:
* TAO_IDL/util/utl_exceptlist.cpp:
* TAO_IDL/util/utl_exprlist.cpp:
* TAO_IDL/util/utl_labellist.cpp:
* TAO_IDL/util/utl_tmpl/utl_decllist.cpp:
* TAO_IDL/util/utl_tmpl/utl_exceptlist.cpp:
* TAO_IDL/util/utl_tmpl/utl_exprlist.cpp:
* TAO_IDL/util/utl_tmpl/utl_labellist.cpp:
* TAO_IDL/util/utl_tmpl/utl_namelist.cpp:
Untabify.
Thu Aug 16 19:19:11 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_field/cdr_op_cs.cpp (visit_interface_fwd):
Fixed incorrect code generation for CDR insertion operators
for struct members which are forward declared interfaces
not yet fully defined, and forward declared inside a reopening
of the module in which the struct is defined.
* tests/IDL_Test/fwd.idl:
Added IDL to test for the use case above.
Thu Aug 16 19:12:27 UTC 2007 Ciju John <johnc at ociweb dot com>
* tao/Valuetype/Bounded_Valuetype_Sequence_T.h:
* tests/IDL_Test/valuetype.idl:
Bounded_ValueType_Sequence unit marshalling now uses the stream
'<<' operator as currently done in the
Unbounded_ValueType_Sequence. Also add test for
Bounded_ValueType_Sequence.
Thu Aug 16 16:29:46 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/ORB.cpp:
* tao/ORB_Core.h:
* tao/ORB_Core.cpp:
Add explicit configuration of configuration contexts to resolve
the multiple ORBInitializer issue documented in bug 2995. By
default ORBs will use the global configuration context
exclusively. If -ORBGestalt Local is supplied on the command
line the ORB will create a local configuration context into
which separately loaded service objects will override any of
those installed in the global context.
* tests/ORB_Local_Config/Bug_1459/Test.cpp:
* tests/ORB_Local_Config/Bug_2612/Test.cpp:
* tests/ORB_Local_Config/Two_DLL_ORB/primary-csd.conf:
* tests/ORB_Local_Config/Two_DLL_ORB/primary-ssl.conf:
* tests/ORB_Local_Config/Two_DLL_ORB/run_test.pl:
Add the new -ORBGestalt Local option to ensure these tests still
perform as intended.
Thu Aug 16 12:13:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/IFR_Service_Utils_T.cpp:
* orbsvcs/orbsvcs/Trader/Trader.h:
Updated for BCB2007 Update 2
Thu Aug 16 11:42:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Object_Reference_Sequence_Element_T.h:
Provide an inout method, this fixes bugzilla 2877. Thanks to Phil
Mesnier for reporting this
* tests/DynAny_Test/test_dynsequence.cpp:
Added test code for bugzilla 2877
* tao/Transport_Cache_Manager.cpp:
Improved layout of a debug message
* tests/Bug_3042_Regression/client.cpp:
* tests/Bug_3042_Regression/test.idl:
Increased the bound maximum and set the length of the sequence
Thu Aug 16 11:34:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Bounded_Object_Reference_Sequence_T.h:
* tao/Object_Reference_Const_Sequence_Element_T.h:
* tao/Unbounded_Object_Reference_Sequence_T.h:
Let the const operator[] return a const element on which
we can use .in(). Fixes bugzilla 2829
* tao/EndpointPolicy/EndpointPolicy_Factory.cpp:
Use .in on the element returned by operator[]
* tao/Bounded_Object_Reference_Sequence_T.h:
Improved doxygen docu
* tao/diffs/Domain.diff:
Removed, obsolete
* tao/String_Const_Sequence_Element_T.h:
Const improvement
Thu Aug 16 09:54:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Incoming_Message_Stack.h:
Updated for BCB2007 Update 2
Thu Aug 16 07:21:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Generic_Sequence_T.h:
Forgot to commit this file as part of buzilla 3042
Wed Aug 15 17:31:43 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Connector.cpp:
Disable code paths that call wait_for_transport. This
avoids a problem in which more than one thread waits
on the same transport. However it also negates the
fix for too-many-connections (bugzilla 2935)
* tao/Transport_Cache_Manager.cpp:
Cosmetic fix to a log message
* tests/Stack_Recursion/Client_Task.cpp:
Fix some ugly code without changing functionality.
* tests/Stack_Recursion/README:
Document what this test really does.
Wed Aug 15 15:00:38 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/Borland/ChatClientWnd.h:
* examples/Logging/Logger.idl:
* examples/Quoter/Quoter.idl:
* examples/mfc/Resource.h:
* examples/mfc/StdAfx.h:
* examples/mfc/StdAfx.cpp:
Untabify.
Wed Aug 15 11:21:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Bounded_Array_Allocation_Traits_T.h:
* tao/Bounded_Reference_Allocation_Traits_T.h:
* tao/Bounded_Value_Allocation_Traits_T.h:
* tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h:
Don't preallocate all sequence members when using bound sequences,
this could lead to a stack overflow when using recursive types
as described in bugzilla 3042. Thanks to Stanislaw Trytek
<tryteks at pit dot edu dot pl> for reporting this.
* tests/Bug_3042_Regression/*:
New regression test for bug 3042, thanks to Stanislaw Trytek
<tryteks at pit dot edu dot pl> for creating this one
Tue Aug 14 21:50:40 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Acceptor.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connection_Handler.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Endpoint.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Factory.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
Make sure HTIOP builds and runs properly in an IPv6 enabled
environment.
* orbsvcs/tests/HTIOP/AMI/client.cpp:
* orbsvcs/tests/HTIOP/AMI/server.cpp:
* orbsvcs/tests/HTIOP/HT_Config.conf:
* orbsvcs/tests/HTIOP/Hello/client.cpp:
* orbsvcs/tests/HTIOP/Hello/server.cpp:
Fix up the tests to run cleanly in a nightly build environment
This is primarily fixing the configuration so that it does not
depend on an external proxy, but will use one if locally
configured to do so. Also fixed up the test output and command
line processing to make it more consistent with other tests.
I've not turned on the automatic running of these tests just
yet, I'd rather wait and just make sure the build is clean. We
can turn on the automatic run at some point later now that the
tests are cleaned up.
Tue Aug 14 17:47:30 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* tao/AnyTypeCode/append.cpp:
* tao/CDR.cpp:
* tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:
* tao/DynamicInterface/Request.inl:
* tao/IFR_Client/IFR_Base.pidl:
* tao/IFR_Client/IFR_Basic.pidl:
* tao/IFR_Client/IFR_Components.pidl:
* tao/IFR_Client/IFR_Extended.pidl:
* tao/Messaging/AMH_Response_Handler.h:
* tao/ObjRefTemplate/ObjectReferenceTemplate.pidl:
* tao/PI/PICurrent.h:
* tao/PI_Forward.pidl:
* tao/PortableServer/Active_Policy_Strategies.cpp:
* tao/PortableServer/PolicyS_T.inl:
* tao/PortableServer/Servant_Dispatcher.h:
* tao/Principal.cpp:
* tao/Profile.cpp:
* tao/RTCORBA/Linear_Priority_Mapping.h:
* tao/RTCORBA/Linear_Priority_Mapping.cpp:
* tao/RTCORBA/Multi_Priority_Mapping.cpp:
* tao/RTCORBA/Network_Priority_Mapping.h:
* tao/RTScheduling/RTScheduler_Loader.cpp:
* tao/Stub.inl:
* tao/TAO_Singleton_Manager.inl:
Untabify.
Tue Aug 14 16:19:35 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Cache_Entries.h:
* tao/Cache_Entries.inl:
* tao/Cache_Entries.cpp:
* tao/Transport.inl:
* tao/Transport.cpp:
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.inl:
* tao/Transport_Cache_Manager.cpp:
Performance enhancement for looking up connections in the
cache. The problem was that the fix for the transport cache
problems required a call to Transport->is_connected(), which has
a lock.
Tue Aug 14 10:25:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Transport_Selection_Guard.cpp:
Fixed incorrect ACE_RCSID. Thanks to Bogdan Jeram
<bjeram at eso dot org> for reporting this. This fixes bugzilla
3040
Mon Aug 13 20:54:46 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Cache_Manager.cpp:
Eliminate the unused variable which was optimized out of
existence by the previous check-in.
Mon Aug 13 18:57:05 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.inl:
* tao/Transport_Cache_Manager.cpp:
Optimize the most common path thru cache manager.
Mon Aug 13 17:53:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/POA/Demux/Demux.mpc:
Fixed this mpc file
Mon Aug 13 14:16:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/tests/Notify/MC/MonitorControl.mpc:
* orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/MC/test_monitor.cpp:
Removed fuzz errors.
Mon Aug 13 12:11:29 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/Event_Comm/notifier.h:
* examples/Event_Comm/supplier.h:
* examples/Kokyu_dsrt_schedulers/EDF_Scheduler.cpp:
* examples/Kokyu_dsrt_schedulers/FP_Scheduler.cpp:
* examples/Kokyu_dsrt_schedulers/MIF_Scheduler.cpp:
* examples/Kokyu_dsrt_schedulers/MUF_Scheduler.cpp:
* examples/Kokyu_dsrt_schedulers/Task_Stats.cpp:
* examples/Kokyu_dsrt_schedulers/fp_example/client.cpp:
* examples/Kokyu_dsrt_schedulers/fp_example/test_i.cpp:
* examples/Kokyu_dsrt_schedulers/mif_example/test_i.cpp:
* examples/Kokyu_dsrt_schedulers/muf_example/test_i.cpp:
* examples/Logging/Logger.idl:
* examples/Quoter/Quoter.idl:
* examples/RTScheduling/Fixed_Priority_Scheduler/FP_Scheduler.h:
* examples/RTScheduling/Fixed_Priority_Scheduler/FP_Task.h:
* examples/RTScheduling/Fixed_Priority_Scheduler/FP_Task.cpp:
* examples/RTScheduling/Fixed_Priority_Scheduler/test.cpp:
* examples/RTScheduling/Job.idl:
* examples/RTScheduling/MIF_Scheduler/MIF_DT_Creator.h:
* examples/RTScheduling/MIF_Scheduler/MIF_DT_Creator.cpp:
* examples/RTScheduling/MIF_Scheduler/MIF_Task.h:
* examples/RTScheduling/Synch_i.cpp:
* examples/RTScheduling/Task_Stats.cpp:
* examples/Simple/bank/Bank.idl:
* examples/Simple/chat/client.cpp:
* examples/Simple/echo/Echo.idl:
* examples/Simulator/NavWeap.idl:
* examples/mfc/MainFrm.h:
* examples/mfc/MainFrm.cpp:
* examples/mfc/client.cpp:
* examples/mfc/server.h:
* examples/mfc/server.cpp:
* examples/mfc/serverDoc.h:
* examples/mfc/serverDoc.cpp:
* examples/mfc/serverView.h:
* examples/mfc/serverView.cpp:
Untabify.
Mon Aug 13 11:38:23 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* configure.ac:
* orbsvcs/tests/Notify/MC/Makefile.am:
* orbsvcs/tests/Notify/MC/MonitorControl.mpc:
* orbsvcs/tests/Notify/MC/MonitorTestInterface.idl:
* orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/MC/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/MC/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/MC/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/MC/notify.conf:
* orbsvcs/tests/Notify/MC/notify.conf.xml:
* orbsvcs/tests/Notify/MC/run_test.pl:
* orbsvcs/tests/Notify/MC/test_monitor.cpp:
* orbsvcs/tests/Notify/Makefile.am:
Added a new test that involves a slow consumer and has a test
monitor checking the state of the notification service at various
times.
Mon Aug 13 11:19:28 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/Consumer.h:
* orbsvcs/orbsvcs/Notify/Consumer.cpp:
Added a new function, assume_pending_events, so that events
that were sent for a consumer are not lost during the consumer
reconnect.
* orbsvcs/orbsvcs/Notify/Event.h:
Document the way that the queueable_copy() method works.
* orbsvcs/orbsvcs/Notify/Event.cpp:
Change the default reliable_ setting to true. This doesn't cause
any harm since this value is only inspected when persistence is
enabled.
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.h:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
Removed an unused constructor from
TAO_Notify_Method_Request_Dispatch_No_Copy.
* orbsvcs/orbsvcs/Notify/Method_Request_Lookup.h:
* orbsvcs/orbsvcs/Notify/Method_Request_Lookup.cpp:
Added a constructor to make a TAO_Notify_Method_Request_Lookup
using a deliver request. And use this new constructor in the
TAO_Notify_Method_Request_Lookup_Queueable constructor.
* orbsvcs/orbsvcs/Notify/Object.cpp:
Fixed a bug in find_qos_property_value() where finding a property
would return false when, in fact, the property existed.
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
Fixed a bug where getting the CosNotification::EventReliability
would fail due to extraction of a CORBA::Any into the wrong type.
* orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
Attempt to have the new consumer assume the pending events for the
old consumer.
* orbsvcs/orbsvcs/Notify/Routing_Slip.cpp:
Fixed a locking issue where the lock was not being released at the
correct time. Also, reduced the number of mutex acquire()'s which
will increase performence.
* orbsvcs/tests/Notify/Reconnecting/Consumer.cpp:
* orbsvcs/tests/Notify/Reconnecting/Supplier.cpp:
Cleaned up the code by removing redundant sequence length settings
and the TEST_SET_QOS and DISABLE_PROPERTIES_TODO #ifdef's.
* orbsvcs/tests/Notify/Reconnecting/event.conf:
* orbsvcs/tests/Notify/Reconnecting/ns_mt_both.conf:
* orbsvcs/tests/Notify/Reconnecting/ns_st_both.conf:
Fixed a bug where the wrong library name is used to find the
Standard_Event_Persistence service.
* orbsvcs/tests/Notify/Reconnecting/run_test.pl:
Cleaned up this script quite a bit and added a new test which
tests the persistence of events that are sent by a supplier (upon
reconnect) before the consumer reconnects. The consumer should
receive events sent during it's absence.
Mon Aug 12 10:45:00 UTC 2007 Simon Massey <sma@prismtech.com>
* tao/AnyTypeCode/TypeCode_CDR_Extraction.cpp:
Add a missing return true; from the original commit of:
Tue Jul 10 10:20:00 UTC 2007 Simon Massey <sma@prismtech.com>
Sat Aug 11 17:20:15 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/AMH/Sink_Server/client.cpp:
* examples/AMH/Sink_Server/mt_server.cpp:
* examples/AMH/Sink_Server/st_server.cpp:
* examples/AMI/FL_Callback/peer.cpp:
* examples/AMI/FL_Callback/progress.cpp:
* examples/Advanced/ch_12/client.cpp:
* examples/Advanced/ch_12/server.cpp:
* examples/Advanced/ch_18/client.cpp:
* examples/Advanced/ch_18/server.cpp:
* examples/Advanced/ch_21/client.cpp:
* examples/Advanced/ch_21/server.cpp:
* examples/Advanced/ch_3/client.cpp:
* examples/Advanced/ch_3/server.cpp:
* examples/Advanced/ch_8_and_10/client.cpp:
* examples/Advanced/ch_8_and_10/server.cpp:
* examples/Buffered_AMI/client.cpp:
* examples/Buffered_AMI/server.cpp:
* examples/Buffered_Oneways/client.cpp:
* examples/Buffered_Oneways/server.cpp:
* examples/CSD_Strategy/ThreadPool/client_main.cpp:
* examples/CSD_Strategy/ThreadPool/server_main.cpp:
* examples/CSD_Strategy/ThreadPool2/client_main.cpp:
* examples/CSD_Strategy/ThreadPool2/server_main.cpp:
* examples/CSD_Strategy/ThreadPool3/client_main.cpp:
* examples/CSD_Strategy/ThreadPool3/server_main.cpp:
* examples/CSD_Strategy/ThreadPool4/server_main.cpp:
* examples/CSD_Strategy/ThreadPool5/client_main.cpp:
* examples/CSD_Strategy/ThreadPool5/server_main.cpp:
* examples/CSD_Strategy/ThreadPool6/client_main.cpp:
* examples/CSD_Strategy/ThreadPool6/server_main.cpp:
* examples/Callback_Quoter/consumer.cpp:
* examples/Callback_Quoter/notifier.cpp:
* examples/Callback_Quoter/supplier.cpp:
* examples/Content_Server/AMI_Iterator/client.cpp:
* examples/Content_Server/AMI_Iterator/server.cpp:
* examples/Content_Server/AMI_Observer/client.cpp:
* examples/Content_Server/AMI_Observer/server.cpp:
* examples/Content_Server/SMI_Iterator/client.cpp:
* examples/Content_Server/SMI_Iterator/server.cpp:
* examples/Event_Comm/consumer.cpp:
* examples/Event_Comm/notifier.cpp:
* examples/Event_Comm/supplier.cpp:
* examples/Kokyu_dsrt_schedulers/fp_example/client.cpp:
* examples/Kokyu_dsrt_schedulers/fp_example/server.cpp:
* examples/Kokyu_dsrt_schedulers/mif_example/client.cpp:
* examples/Kokyu_dsrt_schedulers/mif_example/server.cpp:
* examples/Kokyu_dsrt_schedulers/muf_example/client.cpp:
* examples/Kokyu_dsrt_schedulers/muf_example/server.cpp:
* examples/Load_Balancing/Identity_Client.cpp:
* examples/Load_Balancing/Identity_Server.cpp:
* examples/Load_Balancing/Load_Balancing_Service.cpp:
* examples/Load_Balancing_persistent/Identity_Client.cpp:
* examples/Load_Balancing_persistent/Identity_Server.cpp:
* examples/Load_Balancing_persistent/Load_Balancing_Service.cpp:
* examples/Logging/Logging_Service.cpp:
* examples/Logging/Logging_Test.cpp:
* examples/OBV/Typed_Events/client.cpp:
* examples/OBV/Typed_Events/server.cpp:
* examples/Persistent_Grid/client.cpp:
* examples/Persistent_Grid/persistent_client.cpp:
* examples/Persistent_Grid/server.cpp:
* examples/PluggableUDP/tests/Performance/client.cpp:
* examples/PluggableUDP/tests/Performance/server.cpp:
* examples/Quoter/Factory_Finder.cpp:
* examples/Quoter/Generic_Factory.cpp:
* examples/Quoter/client.cpp:
* examples/Quoter/server.cpp:
* examples/RTCORBA/Activity/Activity.cpp:
* examples/RTScheduling/Fixed_Priority_Scheduler/test.cpp:
* examples/RTScheduling/MIF_Scheduler/test.cpp:
* examples/RTScheduling/Starter.cpp:
* examples/Simple/bank/client.cpp:
* examples/Simple/bank/server.cpp:
* examples/Simple/chat/client.cpp:
* examples/Simple/chat/server.cpp:
* examples/Simple/echo/client.cpp:
* examples/Simple/echo/server.cpp:
* examples/Simple/grid/client.cpp:
* examples/Simple/grid/server.cpp:
* examples/Simple/time-date/client.cpp:
* examples/Simple/time-date/server.cpp:
* examples/Simple/time/client.cpp:
* examples/Simple/time/server.cpp:
* examples/Simulator/Event_Supplier/DualEC_Sup.cpp:
* examples/Simulator/Event_Supplier/Event_Con.cpp:
* examples/Simulator/Event_Supplier/Event_Sup.cpp:
* examples/Simulator/Event_Supplier/Logging_Sup.cpp:
* examples/mfc/client.cpp:
Use ACE_TMAIN instead of main to adhere to ACE/TAO coding guidlines.
* examples/AMH/Sink_Server/Sink_Server.mpc:
* examples/AMI/FL_Callback/FL_Callback.mpc:
* examples/Advanced/ch_8_and_10/Advanced_ch_8_and_10.mpc:
* examples/Callback_Quoter/Callback_Quoter.mpc:
* examples/Event_Comm/Event_Comm.mpc:
* examples/Logging/Logging.mpc:
* examples/Persistent_Grid/Persistent_Grid.mpc:
* examples/Quoter/Quoter.mpc:
* examples/Simple/chat/chat.mpc:
Explicitly set exename in MPC files. This is required because MPC does
not recognize ACE_TMAIN as a program entry point.
Sat Aug 11 11:38:47 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.cpp:
Re-applying Dale's change. The lock up I noticed was the result
of attempting to recursively grab a non-recursive lock. With
that sorted out, the patch is otherwise fine. At least on my
machine.
Sat Aug 11 02:34:18 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.cpp:
Reverting Dale's change. This causes tests to sieze up, at least
on linux.
Fri Aug 10 21:59:23 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.cpp:
The cache manager uses an index to distinguish between duplicate
cache entries. It makes some invalid assumptions about this
index. This changes corrects one of those assumptions which led
to poor performance and/or failure of multithreaded latency
performance tests.
Fri Aug 10 15:33:54 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* docs/notification/monitor.html:
Added documentation for the Notification Service Monitor.
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
Catch potential exceptions from the "shutdown" command.
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMC.idl:
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
Modified to throw the InvalidName exception if the name provided
to shutdown_event_channel does not correspond to an event channel.
Fri Aug 10 10:22:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/Loader/Servant_Activator.cpp:
Fixed OpenVMS warning
Thu Aug 9 16:39:53 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Cache_Manager.cpp:
Clean up log messages.
Consistent formatting
Consistent use of TAO_debug_level and LM_xxxx
TAO_debug_level > 0: recoverable/ignorable error condition (LM_ERROR)
TAO_debug_level > 4: normal transport cache operations (LM_INFO)
TAO_debug_level > 6: detailed cache operations (LM_DEBUG)
TAO_debug_level > 8: for debugging the cache itself
Thu Aug 9 14:31:02 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport.cpp:
Fix indenting.
In post_open set cache entry state to ENTRY_IDLE_BUT_NOT_PURGABLE directly
rather than trying to re-register.
Remove the call to purge_entry in the destructor. If this transport
is still in the cache at the time it gets destroyed, we're already in deep trouble.
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.inl:
* tao/Transport_Cache_Manager.cpp:
Change some argument types from reference to pointer entry to simple pointer.
These routines don't change the pointer. They only change the entry.
Add set_entry_state method to directly change the state of a cached entry.
Thu Aug 9 08:22:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.{h,inl}:
Disabled some methods and members when CORBA messaging is disabled
* tao/RTPortableServer/RT_Policy_Validator.cpp:
Layout changes
* tao/Makefile.am:
Corrected an error in this file
Thu Aug 9 04:23:07 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
More support for IPv6 by allowing the acceptance of IPv4 or IPv6
addresses during endpoint validation.
Wed Aug 8 18:00:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Messaging/Messaging_ORBInitializer.cpp:
Fixed unused argument warning
Wed Aug 8 15:06:35 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
Fix for SSLIOP when used with IPv6 and Bidir.
* tao/TAO_Server_Request.cpp:
Fix for using GIOP versions other than the default. The
particular problem was that servers always return raised
exceptions using their default GIOP version, not the version
used by the client.
Wed Aug 8 14:56:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB.{h,cpp,inl}:
Make use of default argument values and inline methods
Wed Aug 8 14:17:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Codeset.mpc:
* tao/Makefile.am:
We really don't need Any/TypeCode support for the pidl file, so
remove the generation of them.
Wed Aug 8 12:29:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Codeset.mpc:
* tao/Codeset/Codeset_Manager_i.cpp:
* tao/Codeset/CodeSetContext.pidl:
* tao/CONV_FRAME.pidl:
* tao/Makefile.am:
Moved the CodeSetContext struct to the Codeset library, it
is only used by code in this library.
Wed Aug 8 11:58:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Active_Object_Map.{cpp,h}:
Reduced codesize of Active Object Map when CORBA/e micro is enabled
* tao/PortableServer/ServantRetentionStrategyRetain.cpp:
Layout change
Wed Aug 8 11:22:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/AnyTypeCode.mpc:
* tao/AnyTypeCode/PolicyA.cpp:
* tao/AnyTypeCode/PolicyA.h:
* tao/corba.h:
* tao/Makefile.am:
* tao/orb.idl:
* tao/Policy.pidl:
* tao/Policy_Current.h:
* tao/Policy_Current.pidl:
* tao/Policy_Manager.h:
* tao/Policy_Manager.pidl:
* tao/PolicyC.cpp:
* tao/PolicyC.h:
* tao/tao.mpc:
* tao/Messaging/Messaging.h:
Moved PolicyCurrent and PolicyManager to their own files. This
reduces footprint for applications that have corba messaging
disabled. Fixes bugzilla 3033
Wed Aug 8 10:19:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/DiffServPolicy/DiffServPolicy.cpp
* tao/DiffServPolicy/DiffServPolicy.h
* tao/EndpointPolicy/EndpointPolicy.cpp
* tao/EndpointPolicy/EndpointPolicy.h
* tao/TAO_Internal.cpp
Rework the Diffserv policy loader to avoid loading a dll during
a static initializer, as described in Sun Aug 5 18:58:12 UTC
2007 Johnny Willemsen <jwillemsen@remedy.nl>.
Wed Aug 8 08:38:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PI/diff/PolicyFactory.diff:
Updated
* tao/RTCORBA/RTCORBA.h:
Fixed compile problem when messaging is disabled
Wed Aug 8 06:51:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Timed_Buffered_Oneways/client.cpp:
* tests/Oneway_Timeouts/client.cpp:
* tests/Oneway_Timeouts/run_test.pl:
Replaced SYNC_EAGER_BUFFERING with SYNC_NONE, they are the same and
SYNC_EAGER_BUFFERING is removed
Tue Aug 7 15:24:09 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
* orbsvcs/orbsvcs/Notify/POA_Helper.h:
* orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
Added code to support the persistent POA activation of the notify
event channel by default.
* orbsvcs/tests/Notify/Persistent_POA/Makefile.am:
* orbsvcs/tests/Notify/Persistent_POA/Persistent_POA.mpc:
* orbsvcs/tests/Notify/Persistent_POA/README:
* orbsvcs/tests/Notify/Persistent_POA/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Persistent_POA/run_test.pl:
Added a test to ensure that the notify event channel persistent
POA changes work properly.
* configure.ac:
* orbsvcs/tests/Notify/Makefile.am:
Updated to reflect the new Makefile added for the test.
Tue Aug 7 12:57:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/orbconf.h:
Also disable interceptors with CORBA/e
Tue Aug 7 12:41:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IOP_IOR.pidl:
* tao/PortableServer/Root_POA.h:
Removed TaggedComponentList and use TaggedComponentSeq, the first
one is not part of the CORBA spec, the second is.
* tao/IORInterceptor/IORInfo.h:
* tao/IORInterceptor/IORInterceptor_Adapter_Factory_Impl.h:
* tao/IORInterceptor/IORInterceptor_Adapter_Impl.cpp:
* tao/IORInterceptor/IORInterceptor_Adapter_Impl.h:
* tao/IORInterceptor/IORInterceptor_Details.h:
Layout changes
Tue Aug 7 11:48:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/AnyTypeCode/DomainA.cpp:
* tao/AnyTypeCode/DomainA.h:
* tao/Domain.mpc:
* tao/Domain.pidl:
* tao/Domain/diffs/Domain.diff:
* tao/Domain/domain_export.h:
* tao/Domain/DomainS.cpp:
* tao/Domain/DomainS.h:
* tao/Domain/DomainS.inl:
* tao/Domain/DomainS_T.cpp:
* tao/Domain/DomainS_T.h:
* tao/Domain/DomainS_T.inl:
* tao/Domain/TAO_Domain.pc.in:
* tao/Domain/TAO_Domain.rc:
* tao/DomainC.cpp:
* tao/DomainC.h:
* tao/DomainC.inl:
Removed all these files, Domain.pidl defined some interfaces
that are not used at all in TAO and not implemented. When we
really are going to implement these, we will readd them. This
saves footprint for all applications. Fixes bugzilla issue
3018.
* tao/IFR_Client_Adapter.h:
Layout changes
* tao/Makefile.am:
* tao/tao.mpc:
Updated
* tao/Stub.{h,cpp}:
Uninlined the refcount methods again, caused a footprint increase
in servant libraries
* tao/corba.h:
Removed include of DomainC.h
Tue Aug 7 11:24:41 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/tests/Notify/Reconnecting/Consumer.cpp:
Use CORBA::ULong with sequences instead of size_t.
Tue Aug 7 09:46:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/CORBALOC_Parser.{h,cpp,inl}:
Added new TAO_HAS_CORBALOC_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/CORBANAME_Parser.{h,cpp}:
Added new TAO_HAS_CORBANAME_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/DLL_Parser.{h,cpp}:
Added new TAO_HAS_DLL_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/FILE_Parser.{h,cpp}:
Added new TAO_HAS_FILE_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/HTTP_Client.{h,cpp}:
* tao/HTTP_Handler.{h,cpp}:
* tao/HTTP_Parser.{h,cpp}:
Added new TAO_HAS_HTTP_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/MCAST_Parser.{h,cpp.inl}:
Added new TAO_HAS_MCAST_PARSER that defaults to 1, set to 0 to
disable this parser
* tao/default_resource.cpp:
Update the logic to file the parser_names array
* tao/ORB_Core.{h,cpp.inl}:
* tao/Transport_Queueing_Strategies.{h,cpp}:
Removed the default queueing strategy, just return 0 as
transport queue strategy in the default case, the Transport
has already set the correct defaults and we don't need to change
the settings at that moment. Saves a virtual call in the critical
path.
* tao/ORB_Core.{h,cpp.inl}:
Reworked get_transport_queueing_strategy to use a switch
* tao/orbconf.h:
Set all defines for the different parsers to 1 if they are not
set
* tao/Stub.{h,inl}:
Made a few methods inline
* tao/TAO_Internal.cpp:
Only do a process directive for a parser when it is enabled
* tao/GIOP_Message_Generator_Parser_12.cpp:
* tao/TAO.pidl:
* tao/Invocation_Adapter.cpp
Removed TAO::SYNC_EAGER_BUFFERING, it is the same as
Messaging::SYNC_NONE.
Tue Aug 7 08:12:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.{h,inl}:
Disable the new queueing strategy methods when buffering constraint
is not enabled
Mon Aug 6 19:53:24 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/EndpointPolicy/EndpointPolicy.h:
* tao/EndpointPolicy/EndpointPolicy.cpp:
* tao/TAO_Internal.cpp:
Rework the Endpoint policy loader to avoid loading a dll during
a static initializer, as described in Sun Aug 5 18:58:12 UTC
2007 Johnny Willemsen <jwillemsen@remedy.nl>.
Mon Aug 6 18:31:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Buffering_Constraint_Policy.{h,cpp,inl}:
* tao/Messaging/Buffering_Constraint_Policy.{h,cpp,inl}:
Moved the Buffering Constraint Policy to the Messaging Library. It
doesn't need in the core, and if someone wants to create the Policy
he already needed the Messaging library
* tao/extra_core.mpb:
Removed Buffering_Constraint_Policy.cpp:
* tao/Makefile.am:
Updated
* tao/Messaging/Messaging.pidl:
Include TAO_Ext.pidl
* tao/Messaging/Messaging_ORBInitializer.cpp:
Set the buffering constraint strategies into the ORB
* tao/Messaging/Messaging_PolicyFactory.{h,cpp}:
Updated for the fact that the Buffering Constraint Policy is now
in the Messaging lib
* tao/Transport_Queueing_Strategies.{h,cpp}:
* tao/Messaging/Messaging_Queueing_Strategies.{h,cpp}:
Moved the strategies that used the Buffering Constraint Policy to
the Messaging lib
* tao/Messaging/TAO_Ext.pidl:
* tao/TAO.pidl:
Moved Buffering Constraint Policy to Messaging
* tao/ORB_Core.{h,cpp,inl}:
Updated all queueing strategy methods to return a pointer and
added set methods for the strategies that are now in the
messaging lib
* tao/Stub.{h,cpp}:
Return the queueing strategy as pointer
* tao/tao.mpc:
Removed Buffering_Constraint_Policy.h
* tao/Transport.cpp:
Updated to handle the queuing strategy as pointer
Mon Aug 6 18:17:55 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/examples/Notify/Federation/Gate/Gate.cpp:
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
* orbsvcs/orbsvcs/Notify/Delivery_Request.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip_Persistence_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp:
* orbsvcs/tests/Notify/lib/Activation_Manager.cpp:
* orbsvcs/tests/Notify/lib/Driver.cpp:
Changed my static_cast's from Mon Aug 6 13:53:30 UTC 2007 into
ACE_Utils::truncate_cast's.
Mon Aug 6 18:09:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Makefile.am:
Removed POA directory
* examples/POA/*:
Deleted
Mon Aug 6 13:53:30 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/examples/Notify/Federation/Gate/Gate.cpp:
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
* orbsvcs/orbsvcs/Notify/Delivery_Request.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip.cpp:
* orbsvcs/orbsvcs/Notify/Routing_Slip_Persistence_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Standard_Event_Persistence.cpp:
* orbsvcs/tests/Notify/lib/Activation_Manager.cpp:
* orbsvcs/tests/Notify/lib/Driver.cpp:
* orbsvcs/tests/Notify/lib/Periodic_Supplier.h:
* orbsvcs/tests/Notify/lib/Periodic_Supplier.cpp:
* orbsvcs/tests/Notify/lib/Task_Stats.h:
Added static_cast's and changed types to avoid type mismatch
warnings on 64-bit builds.
Mon Aug 6 13:39:40 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h:
* orbsvcs/orbsvcs/Notify/RT_Factory.h:
Reverted my change from Thu Aug 2 11:33:16 UTC 2007 and Fri Aug
3 18:46:13 UTC 2007.
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/RT_Notification.mpc:
Added the -w-hid option for borland and bmake project types to the
CosNotification_MC_Ext and RT_Notification projects since
Borland doesn't support "using" within a class and doesn't support
#pragma warning (disable :8022). The only other alternative is to
duplicate a lot of code.
Mon Aug 6 11:45:14 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic_Registry.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic.h:
Added an export to the nested exception classes.
Mon Aug 6 11:17:39 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Changed the idl flags to create the include for the export header
to include orbsvcs/Notify/MonitorControl and
orbsvcs/Notify/MonitorControlExt for the CosNotification_MC and
CosNotification_MC_Ext projects respectively.
Mon Aug 6 11:00:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.{h,cpp,inl}:
* tao/params.{h,cpp,inl}:
Moved collocation_resolver to ORB params. timeout_hook
and sync_scope hook are moved to the ORB. This way we
use Service Config less in the critical path and can
in the future make these different for different orbs
* tao/Messaging/Messaging_ORBInitializer.cpp:
Set the sync_scope and timeout_hook into the ORB
* tao/PortableServer/PortableServer.cpp:
* tao/Profile_Transport_Resolver.cpp:
* tao/RTCORBA/RT_Endpoint_Selector_Factory.h:
* tao/Strategies/Optimized_Connection_Endpoint_Selector.h:
Layout changes
* tao/RTPortableServer/RT_Object_Adapter_Factory.cpp:
Set the collocation resolver name into the ORB
* tao/Strategies/OC_Endpoint_Selector_Factory.h:
Fixed typo in comment
* tao/Transport.cpp:
Use true instead of 1
Mon Aug 6 05:12:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/BiDir_GIOP/BiDirGIOP.cpp:
* tao/IORManipulation/IORManip_Loader.cpp:
Layout change
* tao/CSD_Framework/CSD_Framework_Loader.cpp:
Added missing process_directive, fixes failure of the CSD tests
* tao/CSD_ThreadPool/CSD_ThreadPool.h:
Removed usage of ACE_HAS_BROKEN_STATIC_CONSTRUCTORS, this macro
has been removed a long time ago
Sun Aug 5 19:14:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/Forwarding/run_test.pl:
Updated for cross platform testing
Sun Aug 5 18:58:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/CSD_Framework/CSD_Framework_Loader.cpp:
* tao/CSD_Framework/CSD_Framework_Loader.h:
Don't register the ORBInitializer in the static method, this causes
problems when loading libraries on demand because this code does
trigger the loading of the PI library. The windows documentation states
explicityly that only very simple things should be done in static
methods, no loading of libraries. Thanks to Iliyan Jeliazkov and
Adam Mitz for analyzing why the Two_DLL_Orb fails on Windows. This is
related to bugzilla issue 2994
* tao/TAO_Internal.cpp:
Try to call init on the CSD_Framework_Loader
* tao/CSD_ThreadPool/CSD_ThreadPool.cpp:
Updated for CSD_Framework change
* tao/EndpointPolicy/EndpointPolicy.cpp:
* tao/PI_Server/PI_Server_Loader.cpp:
* tao/PI_Server/PI_Server_Loader.h:
* tao/PortableServer/Operation_Table_Perfect_Hash.cpp:
* tao/Valuetype/Valuetype_Adapter_Factory_Impl.h:
* tao/Valuetype/Valuetype_Adapter_Impl.h:
Layout change
Sun Aug 5 18:01:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/File_IO/run_test.pl:
Added -sdebug and -cdebug to run server and/or client with
debugging
Fri Aug 3 19:32:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl:
Removed references to lite protocols
Fri Aug 3 18:46:13 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h:
* orbsvcs/orbsvcs/Notify/RT_Factory.h:
Changed to check for Borland <= 0x590 instead of all versions of
Borland compilers.
Fri Aug 3 12:44:51 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Fixed an issue where the destination directory for the idl
generated files does not exist (for automake only).
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
Fixed build warnings about conversion from size_t to CORBA::Ulong.
Fri Aug 3 08:56:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/Single_Threaded_POA/run_test.pl:
Extended the timeout
* POA/Single_Threaded_POA/Single_Threaded_POA.cpp:
Layout changes
Thu Aug 2 19:30:30 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Transport_Connector.cpp:
remove_reference call was disabled for testing. Put it back in.
Thu Aug 2 14:24:11 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tao/Strategies/SCIOP_Connector.cpp:
Provide correct arguments to wait_for_connection_completion.
Thu Aug 2 14:07:01 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* orbsvcs/orbsvcs/Naming/Naming_Server.cpp:
Made so that TAO_Naming_Server uses ACE_DEFAULT_MULTICASTV6_ADDR
in IPv6 builds.
* orbsvcs/tests/Simple_Naming/run_test_ipv6.pl:
* orbsvcs/tests/Simple_Naming/run_test.pl:
Updated this test so that in IPv4 builds it uses strictly IPv4
multicast address and in IPv6 builds it uses node-local (starting
with ff01) multicast address since IPv6 networking is not properly
configured on TAO tests machines and thus other types of IPv6
multicast addresses do not work.
Thu Aug 2 11:33:16 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h:
* orbsvcs/orbsvcs/Notify/RT_Factory.h:
The Borland compiler does not honor the "using" statement.
Instead of duplicating every create() function in the sub-classes,
I have disabled the 8022 warning for these headers only. The
warning is pushed and popped in each header.
Thu Aug 2 09:45:21 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/ast_component.h:
Added 'line_number' member to the port description struct.
Since ports aren't nodes (which store their line numbers)
in the AST, this helps some backends get a total ordering
of a component's members.
* TAO_IDL/fe/y.tab.cpp:
* TAO_IDL/fe/idl.yy:
Added code to set the line number member before the port
description struct in enqueued in its component node.
Thu Aug 2 09:03:02 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/idl_defines.h:
Changed the size of the buffer that holds filenames to be
processed from 1024 to 2048. A crash was reported and it
was determined that there was an attempt to process ~1450
IDL files.
Thu Aug 2 08:55:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2935_Regression/Bug_2935_Regression.mpc:
Simplified this mpc file
Thu Aug 2 08:39:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Asynch_Queued_Message.cpp:
* tao/Condition.cpp:
* tao/Connection_Handler.cpp:
* tao/default_client.cpp:
* tao/default_resource.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/IIOP_Connector.cpp:
* tao/Muxed_TMS.cpp:
* tao/orbconf.h:
* tao/Queued_Data.cpp:
* tao/Strategies/SCIOP_Connector.cpp:
* tao/Strategies/SHMIOP_Connector.cpp:
* tao/Thread_Lane_Resources.cpp:
* tao/Transport.cpp:
* tao/Valuetype/ValueBase.cpp:
Replaced @@TODO with @todo so that doxygen adds this to the
documentation
Thu Aug 2 03:15:32 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/Bug_2935_Regression/middle_i.h:
* tests/Bug_2935_Regression/middle_i.cpp:
* tests/Bug_2935_Regression/sink_i.h:
* tests/Bug_2935_Regression/sink_i.cpp:
Removed ACE_THROW_SPEC anachronisms.
* tests/Bug_2935_Regression/Bug_2935_Regression.mwc:
Removed this file.
Wed Aug 1 21:54:15 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* NEWS:
Add entries for fixing ORBMuxedConnectionMax and too-many-connections.
Wed Aug 1 21:26:32 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* tests/Bug_2935_Regression:
* tests/Bug_2935_Regression/Bug_2935_Regression.mpc:
* tests/Bug_2935_Regression/Bug_2935_Regression.mwc:
* tests/Bug_2935_Regression/README.txt:
* tests/Bug_2935_Regression/ThreeTier.idl:
* tests/Bug_2935_Regression/middle.conf:
* tests/Bug_2935_Regression/middle.cpp:
* tests/Bug_2935_Regression/middle_i.h:
* tests/Bug_2935_Regression/middle_i.cpp:
* tests/Bug_2935_Regression/run_test.pl:
* tests/Bug_2935_Regression/sink.cpp:
* tests/Bug_2935_Regression/sink_i.h:
* tests/Bug_2935_Regression/sink_i.cpp:
* tests/Bug_2935_Regression/source.cpp:
* tests/Bug_2935_Regression/source_i.h:
* tests/Bug_2935_Regression/source_i.cpp:
Add regression test for Wed Aug 1 15:54:01 UTC 2007 checkin
Wed Aug 1 21:16:15 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* tao/Cache_Entries.h:
* tao/Profile_Transport_Resolver.cpp:
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.cpp:
* tao/Transport_Connector.h:
* tao/Transport_Connector.cpp:
* tests/AMH_Oneway/client.cpp:
* tests/Bug_1476_Test/client.cpp:
Jonnny's suggestions
Change find_transport's busy_count argument from unsigned int
to size_t
Use @todo rather than @@TODO -- reference bugzilla entrys to track the todos.
Wed Aug 1 15:54:01 UTC 2007 Dale Wilson <wilsond@ociweb.com>
Corrections for bugs #2934 and #2935: connection problems in
the transport cache.
Briefly: the change involves adding the transport to the
cache at the time the connection is initiated rather than
waiting until the connection is complete. This avoids the
situation where *way* too many connections are started in a
nested upcall and/or multithreading situation because none
of the connection attempts know the others are already in
progress.
At the same time it eliminates the wait-for-condition code
technique for honoring the -MaxMuxedConnections. The old
technique is unsafe and ineffective.
* tao/Cache_Entries.h:
* tao/Cache_Entries.inl:
Declare new cache entry status: ENTRY_CONNECTING
Make the recycle_state method const (it's poorly named, but I'm not
fixing that now.)
* tao/IIOP_Connector.cpp:
Use RAII to manage tlist (list of pending connections) during parallel
connection.
Update the cache (rather than adding a new entry) when connection is
complete.
Change the way the transport is registered with the reactor so that it
is always registered before necessary. Otherwise there was a race
condition when thread A tried to use a newly established connection
before thread B had "quite" finished preparing it for use.
* tao/Transport.h:
Declare new method: register_if_necessary to consolodate the various
attempts to register the transport with the reactor.
* tao/Transport.cpp:
Implement and use register_if_necessary
Update transport cache status in the post_connect method
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.inl:
* tao/Transport_Cache_Manager.cpp:
Change find_transport to return one of the following statuses:
CACHE_FOUND_NONE
CACHE_FOUND_CONNECTING
CACHE_FOUND_BUSY
CACHE_FOUND_AVAILABLE
The more than one status applies, the last one in the above list
overrides (i.e. if there's one available, never mind the other stuff.)
Add an additional argument to find_transport to return the count of
busy transport's found when none were available. This helps the
Transport_Connector to honor -MaxMuxedConnections.
Remove the attempt to open a new connection from the cache. It belongs
in the Transport_Connector.
Improve support for updating cache entry status.
* tao/Transport_Connector.h:
* tao/Transport_Connector.cpp:
Eliminate TransportCleanupGuard. It was ill conceived.
Supply new argument to and accept new status returns from find_transport.
New wait_for_transport method allows waiting for a connection to complete
even if it was started elsewhere.
The TAO_Connector::connect method has been reorganized. It now consists
of a while loop that retries the search for the transport in the cache
until success, timeout, error, or a return because this is a non-blocking attempt.
The transport found by this method *ALWAYS* comes from the cache. There
was code that attempted to short-circuit this for newly established connections
but it led to quite a few subtle bugs. The new approach shouldn't be any
slower than the old one, but if is, there is room for improvment in the
cache now that it doesn't have to handle all the special cases. (i.e.
consider long and carefully before trying to improve performance by reintroducing
the short-circuit-on-new-connection code.)
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* tao/Profile_Transport_Resolver.cpp:
* tao/Strategies/UIOP_Connector.cpp:
* tests/Bug_1476_Test/client.cpp:
Supply additional argument to wait_for_connection_completion
Supply new argument to Transport_Cache_Manager::find_transport
Recognize new return status from Transport_Cache_Manager::find_transport
[no functional change]
* tao/IIOP_Transport.cpp:
Log status code on error.
* tao/Leader_Follower.cpp:
Ignore null tranport pointer (effects logging only)
* tests/AMH_Oneway/client.cpp:
Add a sleep before process exit. To quote the internal documentation:
// The following sleep is a workaround for a defect in the Windows
// implementation of sockets (Win XP)
// The when this client exits after writing to a localhost socket
// Windows discards any data that has not been read by the server.
// The sleep gives the server time to catch up. num_calls/2 gives
// it half a second per request which *really* should be overkill, but
// it also means the client will terminate before the server actually
// handles the requests (a good thing).
// I'm still trying to decide whether this should be a bugzilla entry.
// wilsond@ociweb.com
* tests/AMH_Oneway/server.cpp:
Modified to honor -ORB arguments on command line [so I could diagnose the silly
windows/localhost problem]
* performance-tests/Latency/DII/Test.idl:
Make the shutdown method a one-way to eliminate a very rare race condition while
shutting down.
Wed Aug 1 11:44:24 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* configure.ac:
Added the new Makefiles to the list that I added on Mon Jul 30
13:13:58 UTC 2007.
Wed Aug 1 11:35:42 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic_Registry.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannelFactory.cpp:
* orbsvcs/orbsvcs/Notify/XML_Saver.h:
* orbsvcs/orbsvcs/Notify/XML_Saver.cpp:
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp:
Changed types or added static_cast's to avoid build warnings.
Wed Aug 1 10:52:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Collocated_Object_Proxy_Broker:
Disable the correct method for CORBA/e
Wed Aug 1 09:02:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h:
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Transport.cpp:
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Transport.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h:
* tao/Strategies/COIOP_Transport.cpp:
* tao/Strategies/COIOP_Transport.h:
* tao/Strategies/DIOP_Transport.cpp:
* tao/Strategies/DIOP_Transport.h:
* tao/Strategies/SHMIOP_Transport.cpp:
* tao/Strategies/SHMIOP_Transport.h:
* tao/Transport.cpp:
* tao/Transport.h:
* tao/Wait_On_Read.cpp:
Removed deprecated block argument from handle_input method.
Fixes bugzilla bug 2253
Wed Aug 1 08:25:33 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* tao/AnyTypeCode.mpc:
Added inheritance of gen_ostream feature, similar to tao.mpc
and valuetype.mpc, so the ostream operator overloads in the
library can be conditionally compiled, if the feature is
toggled on in default.features.
* TAO_IDL/be/be_codegen.cpp:
Added generation of preprocessor definition of GEN_OSTREAM_OPS,
if the -Gos option is used, so the ostream operators can be
seen in included ORB headers.
* TAO_IDL/be/be_string.cpp:
Fixed incorrect ostream code generation for wstring members
in IDL types that have member acceessors (union and valuetype),
since these accessors return CORBA::WChar *, whereas the
corresponding member type in an IDL struct is TAO_WString_Manager.
Thanks to Lothar Werzinger <lothar at tradescape dot biz> for
reporting the compilation problems in generated code resulting
from the above bugs.
Wed Aug 1 07:38:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.cpp:
Replaced ACE_LIB_TEXT with ACE_TEXT
* tao/Asynch_Queued_Message.cpp:
* tao/Asynch_Queued_Message.h:
* tao/Queued_Message.h:
* tao/Synch_Queued_Message.cpp:
Made the heap allocated flag const and pass it to all constructors
so that we don't have to set if after creating the qm.
Wed Aug 1 07:34:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/examples/CosEC/TypedSimple/Consumer.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:
* orbsvcs/tests/HTIOP/test_config.h:
Replaced ACE_LIB_TEXT with ACE_TEXT
Tue Jul 31 14:12:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Valuetype.mpc:
Added genostream as base project
Tue Jul 31 12:39:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Abstract_Servant_Base.h:
Fixed typo in comment
* tao/PortableServer/Adapter_Activator.h:
Layout change
* tao/PortableServer/POA.pidl:
* tao/PortableServer/POAManagerFactory.pidl:
Fixed a few ifdef checks so that also minimum corba with BCB
can be used
* tao/PortableServer/Servant_Base.{h,cpp}:
Don't make methods dependent on CORBA/e or Minimum Corba. This
makes it possible to use the -Gce and -Gmc options on the IDL
files. When all generated files are removed from the repo the
checks can be added again, created bugzilla 3019 as reminder for
this.
* MPC/config/corba_e_compact.mpb:
* MPC/config/corba_e_micro.mpb:
* MPC/config/core_minimum_corba.mpb:
Added -Gce and -Gmc again
Tue Jul 31 12:22:20 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/run_test.pl:
Set the executable property on this script.
Tue Jul 31 11:36:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/BiDir_GIOP/BiDir_Policy_i.cpp:
* tao/Policy_Current.cpp:
* tao/Policy_Current.h:
* tao/Policy_Current_Impl.h:
* tao/Policy_Manager.inl:
* tao/Policy_Set.cpp:
* tao/PortableServer/Default_Policy_Validator.cpp:
* tao/PortableServer/POA_Policy_Set.h:
* tao/Stub.cpp:
Layout changes
Tue Jul 31 11:35:53 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Added the tao_versioning_idl_defaults base project to the
CosNotification_MC project.
Tue Jul 31 10:58:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* MPC/config/corba_e_compact.mpb:
* MPC/config/corba_e_micro.mpb:
* MPC/config/core_minimum_corba.mpb:
Temporarily removed the new -Gce and -Gmc idl flags, the
few generated files in the repo cause problems. We need to
zap them asap.
Tue Jul 31 10:54:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Object_Proxy_Broker.h:
non_existent is not needed for CORBA/e
* tao/Codeset_Translator_Base.h:
* tao/Collocation_Proxy_Broker.h:
* tao/Collocation_Resolver.h:
Layout changes
Tue Jul 31 10:52:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Collocated_Object_Proxy_Broker.{h,cpp}:
non_existent is not needed for CORBA/e
Tue Jul 31 07:22:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Abstract_Servant_Base.{h,cpp,inl}:
Also disabled some methods with CORBA/e and Minimum CORBA in this
class and made the constructor, copy constructor and assignment
operator inline
* tao/Makefile.am:
Added new inline file
Tue Jul 31 06:40:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/compiler.html:
* MPC/config/core_minimum_corba.mpb:
* tao/Object.h:
* tao/PortableServer/Servant_Base.{h,cpp}:
* TAO_IDL/be/be_global.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_component/component_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_global.h:
Added -Gmc to the IDL compiler to generate code targeted for
Minimum CORBA. When this option is enabled we suppress several
methods from the generation of the skeleton. This fixes
bugzilla 3017
Tue Jul 31 05:42:34 UTC 2007 Iliyan Jeliazkov <iliyan@ociweb.com>
* tao/TAO_Server_Request.cpp:
Fixing a typo in the base initializers list, only affecting
no-interceptors builds.
Tue Jul 31 05:11:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Servant_Base.{h,cpp}:
With CORBA/e no need to compile get_component
* tao/Protocol_Factory.{h,cpp}:
Made most methods pure virtual, derived classes must implement them
* TAO_IDL/be/be_global.cpp:
Added -Gce to the compiler flags
Mon Jul 30 21:12:51 UTC 2007 Iliyan Jeliazkov <iliyan@ociweb.com>
* tao/Transport_Selection_Guard.h:
Implementing the misisng operator=(), needed by
TAO::CSD::FW_Server_Reques_Wrapper.
Mon Jul 30 18:54:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/compiler.html:
* MPC/config/corba_e_compact.mpb:
* MPC/config/corba_e_micro.mpb:
* TAO_IDL/be/be_global.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_component/component_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_global.h:
Added new option -Gce indicating that we are compiling with CORBA/e
enabled. In that case we don't need to generate the _component
method in the skeleton which safes footprint. This fixes bugzilla
issue 2968
Mon Jul 30 18:17:45 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
Explicitly initialize struct members. There is no constructor for
IDL generated structs.
Mon Jul 30 18:12:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/tests/Bug_2926_Regression/server.cpp:
Added a missing parameter to the TAO_CosNotify_Service::create()
method.
Mon Jul 30 14:54:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/POA/*:
* tests/POA/*:
Moved all POA examples to tests, this are all one button POA
tests that we need to run in all core builds
Mon Jul 30 13:13:58 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* MPC/config/notification_mc.mpb:
* MPC/config/notification_mc_ext.mpb:
Added base projects for the new noftification service libraries.
* NEWS:
Added an entry for this new feature.
* orbsvcs/Notify_Service/Notify_Service.cpp:
Updated to provide the factory name during factory creation, the
channel name during channel creation, and fixed a leak of objects
during shutdown of the service.
* orbsvcs/examples/Notify/MC/Makefile.am:
* orbsvcs/examples/Notify/MC/TkMonitor/Makefile:
* orbsvcs/examples/Notify/MC/TkMonitor/README:
* orbsvcs/examples/Notify/MC/TkMonitor/external_idl.pl:
* orbsvcs/examples/Notify/MC/TkMonitor/modules:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/GeometryStore.pm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/MonitorControl.pm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk/active.xpm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk/factory.xpm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk/hand.xbm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk/inactive.xpm:
* orbsvcs/examples/Notify/MC/TkMonitor/modules/Tk/mask.xbm:
* orbsvcs/examples/Notify/MC/TkMonitor/monitor.pl:
Added a graphical interface written in perl to access the
Notification Service Monitor. It was written using opalORB.
* orbsvcs/examples/Notify/Makefile.am:
* orbsvcs/examples/Notify/MC/monitor/Makefile.am:
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
* orbsvcs/examples/Notify/MC/monitor/monitor.mpc:
Added a command line monitor to demonstrate the monitoring
and control capabilities.
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Added the new MC and MC_Ext libraries.
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.h:
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
Added a method to return the time of the oldest event in the
queue.
* orbsvcs/orbsvcs/Notify/Builder.h:
* orbsvcs/orbsvcs/Notify/Builder.cpp:
Enhanced the event channel factory and event channel building
methods to take an optional name parameter.
* orbsvcs/orbsvcs/Notify/Container_T.h:
* orbsvcs/orbsvcs/Notify/Container_T.cpp:
Added a method to destroy all of the objects held in the
collection.
* orbsvcs/orbsvcs/Notify/CosNotify_Service.h:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
Implement the new finalize_service() method by destroying all
event channels held by the provided event channel factory.
Implement the updated create() method to provide the factory name
to the builder.
* orbsvcs/orbsvcs/Notify/Event.h:
* orbsvcs/orbsvcs/Notify/Event.inl:
* orbsvcs/orbsvcs/Notify/Event.cpp:
Added a time of creation stamp on the event.
* orbsvcs/orbsvcs/Notify/EventChannel.h:
Changed to virtually inherit from
POA_CosNotifyChannelAdmin::EventChannel and made the destroy()
method public to allow the TAO_Notify_Container_T access.
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
Added a call to destroy() on the supplier and consumer admin
containers. This cleans up the reference counts on the admins.
* orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
Added a method to create a named event channel. To support
automatic creation of named event channels by the Notify_Service
executable. This version is the same as calling create_channel().
Also fixed a leak during activation with the POA. An extra narrow
was occurring which was not stored in a var.
* orbsvcs/orbsvcs/Notify/Factory.h:
* orbsvcs/orbsvcs/Notify/Default_Factory.h:
* orbsvcs/orbsvcs/Notify/Default_Factory.cpp:
Updated the create methods for event channel factories and event
channels to take a name parameter.
* orbsvcs/orbsvcs/Notify/Method_Request.h:
* orbsvcs/orbsvcs/Notify/Method_Request.cpp:
Added a time stamp that is populated by the event to which the
request corresponds.
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.h:
Fixed a doxygen comment.
* orbsvcs/orbsvcs/Notify/MonitorControl/Control.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Control.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/Control_Registry.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Control_Registry.cpp:
A class that can be used to keep track of named control objects.
* orbsvcs/orbsvcs/Notify/MonitorControl/Dynamic_Statistic.h:
A template to facilitate the creation of statistics that are
calculated on-the-fly.
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic_Registry.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Generic_Registry.cpp:
A generic class that can be used to keep track of named objects.
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:
This class allows the user to dynamically load the manager and
configure it through the service configurator. It starts a thread
and services monitoring requests via an ORB that is separate from
the ORB for the normal operation of the notification service.
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMC.idl:
Provide a definition of an interface to retrieve statistics and
perform functions upon the Notify Service.
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.cpp:
Implements the CosNotification::NotificationServiceMonitorControl
which includes accessing statistics and performing control
functions on the notify service.
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic.inl:
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic.cpp:
Implement a statistic object that can hold various types of data.
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic_Registry.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic_Registry.cpp:
A class that can be used to keep track of named statistic objects.
* orbsvcs/orbsvcs/Notify/MonitorControl/notify_mc_export.h:
Export file for the MC library.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.cpp:
Implement a factory that will create the monitor versions of the
event channel factory, event channel, supplier admin and consumer
admin.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Notify_Service.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Notify_Service.cpp:
Extend the TAO_CosNotify_Service to create the monitoring factory,
run the monitor manager during initialization and shutdown the
monitor manager during finalization.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorConsumerAdmin.cpp:
Implement the NotifyMonitoringExt::ConsumerAdmin interface which
includes creation of named proxy suppliers.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.cpp:
Extend the TAO_Notify_EventChannel to track statistics and named
supplier proxies and consumer proxies.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannelFactory.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannelFactory.cpp:
Implement the NotifyMonitoringExt::EventChannelFactory interface
which includes statistics registration and tracking event channel
names.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorSupplierAdmin.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorSupplierAdmin.cpp:
Implement the NotifyMonitoringExt::SupplierAdmin interface which
includes creation of named proxy consumers.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/NotifyMonitoringExt.idl:
Provide a definition for the monitoring extensions to the event
channel factory, supplier admin and consumer admin.
* orbsvcs/orbsvcs/Notify/MonitorControlExt/notify_mc_ext_export.h:
Export file for the MC_Ext library.
* orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.h:
* orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
Updated to take a factory name.
* orbsvcs/orbsvcs/Notify/Object.h:
* orbsvcs/orbsvcs/Notify/Object.cpp:
Fixed a bug in destroy_proxy_poa() where the wrong poa object was
being used.
Added a method to access the worker task.
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
* orbsvcs/orbsvcs/Notify/SupplierAdmin.cpp:
* orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:
Fixed a bug where a the object could not be destroyed if it had
previously been shutdown. This caused it and related objects to
be leaked due to reference counts not being decremented.
* orbsvcs/orbsvcs/Notify/RT_Factory.h:
* orbsvcs/orbsvcs/Notify/RT_Factory.cpp:
Removed duplicated functions that are inherited from
TAO_Notify_Default_Factory.
* orbsvcs/orbsvcs/Notify/Service.h:
* orbsvcs/orbsvcs/Notify/Service.cpp:
Added a static method to locate the notify service from a default
list of service names. This allows us to avoid duplicating this
code everywhere a notify service is to be dynamically loaded.
Added a pure virtual method to finalize the service and changed
the create() method to take an optional factory name.
* orbsvcs/orbsvcs/Notify/ConsumerAdmin.h:
* orbsvcs/orbsvcs/Notify/SupplierAdmin.h:
Made the destroy() method public to allow the
TAO_Notify_Container_T access.
* orbsvcs/orbsvcs/Notify/ThreadPool_Task.h:
* orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
Added an accessor for the buffering strategy.
* orbsvcs/Logging_Service/Notify_Logging_Service/Notify_Logging_Service.cpp:
* orbsvcs/examples/Notify/Federation/Agent/Agent.cpp:
* orbsvcs/examples/Notify/Federation/SpaceCraft/SpaceCraft.cpp:
* orbsvcs/tests/Notify/lib/EventChannel_Command.cpp:
Use the TAO_Notify_Service::load_default() method to dynamically
locate the notify service instead of duplicating code.
* orbsvcs/tests/unit/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/Control/Control.cpp:
* orbsvcs/tests/unit/Notify/MC/Control/Control.mpc:
* orbsvcs/tests/unit/Notify/MC/Control/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/Control/run_test.pl:
* orbsvcs/tests/unit/Notify/MC/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/MonitorControlExt.mpc:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/MonitorControlExt.cpp:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/run_test.pl:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/svc.conf:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/svc.conf.xml:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/MonitorClient.cpp:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/MonitorManager.cpp:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/MonitorManager.mpc:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/run_test.pl:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/svc.conf:
* orbsvcs/tests/unit/Notify/MC/MonitorManager/svc.conf.xml:
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.mpc:
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp:
* orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/run_test.pl:
* orbsvcs/tests/unit/Notify/MC/Statistic/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp:
* orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.mpc:
* orbsvcs/tests/unit/Notify/MC/Statistic/run_test.pl:
* orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Makefile.am:
* orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp:
* orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.mpc:
* orbsvcs/tests/unit/Notify/MC/Statistic_Registry/run_test.pl:
* orbsvcs/tests/unit/Notify/Makefile.am:
Added unit tests for the different components of the MC and MC_Ext
libraries.
Mon Jul 30 12:18:29 UTC 2007 Iliyan Jeliazkov <iliyan@ociweb.com>
* tao/TAO_Server_Request.h:
* tao/TAO_Server_Request.inl:
* tao/TAO_Server_Request.cpp:
* tao/Transport_Selection_Guard.h:
Eliminating duplication of the transport_ member from
TAO_Server_Request. The Transport_Selection_Guard is a
smart pointer, designed to work both as a normal pointer
and with the transport current feature. When TC is disabled,
it is also lightweight enough to avoid footprint increase.
This fixes bugzilla 2991.
Mon Jul 30 11:24:47 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tests/GIOP_Fragments/PMB_With_Fragments/run_test.pl:
Fixed this test on IPv6 builds by changing localhost to
127.0.0.1.
Mon Jul 30 11:09:21 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tao/MCAST_Parser.cpp:
Made so that an opened datagram socket has a proper protocol
family. This fixes TAO/orbsvcs/tests/Simple_Naming/run_test.pl
of IPv6 builds.
Mon Jul 30 08:33:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Leader_Follower_Flushing_Strategy.cpp (flush_transport):
* tao/Reactive_Flushing_Strategy.cpp (flush_transport):
Const changes and no need for intermediate variable
* tao/Transport.{h,cpp,inl}:
Layout changes and updated queue_is_empty to return a bool
Fri Jul 27 06:50:14 CDT 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO version 1.5.10 released.
Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End:
|