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
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
|
Wed Nov 28 10:42:20 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tests/Bug_3154_Regression/orbsvcs/CosNotification.idl:
* tests/Bug_3154_Regression/test.idl:
* tests/Bug_3154_Regression/run_test.pl:
* tests/Bug_3154_Regression/README:
* TAO_IDL/include/idl_global.h:
* TAO_IDL/be/be_global.cpp:
* TAO_IDL/be_include/be_global.h:
* TAO_IDL/fe/fe_init.cpp:
* TAO_IDL/driver/drv_preproc.cpp:
* TAO_IDL/util/utl_global.cpp:
Added a test and implementation of the feature described
by Bug#3154.
Wed Nov 28 07:33:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/LoadBalancer/Signal_Handler.{h,cpp}:
Updated activate method because of new argument in the base
class
Tue Nov 27 16:02:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
Layout changes and improved some debug messages
Tue Nov 27 15:56:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Connection_Handler.cpp:
* tao/Leader_Follower_Flushing_Strategy.cpp:
Layout changes
* tao/IIOP_Transport.cpp:
* tao/Transport.cpp:
Layout changes and improved some debug messages
* tao/Thread_Per_Connection_Handler.cpp:
* tao/Thread_Per_Connection_Handler.h:
No need to use ACE_Task<>, just use ACE_Task_Base, we don't need
the message queue. Also removed the activate method, just use the
method from the base
Tue Nov 27 14:55:14 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* examples/AMI/FL_Callback/FL_Callback.mpc:
Added explicit lists of header and inline files to the project.
Tue Nov 27 11:20:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/DynamicInterface/DII_Invocation.cpp:
* tao/DynamicInterface/DII_Invocation.h:
* tao/DynamicInterface/DII_Invocation_Adapter.cpp:
* tao/Invocation_Adapter.cpp:
* tao/Invocation_Endpoint_Selectors.cpp:
* tao/Messaging/Asynch_Invocation.cpp:
* tao/Messaging/Asynch_Invocation_Adapter.cpp:
* tao/Profile_Transport_Resolver.cpp:
* tao/Synch_Invocation.cpp:
* tao/Synch_Invocation.h:
Reworked the fix for bug 2133/3079/3080 in such a way that the
Transport Current code is working again (see bug 3127)
Tue Nov 27 06:33:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/AV/UDP.cpp:
* orbsvcs/orbsvcs/Event/ECG_Simple_Mcast_EH.cpp:
Don't use the deprecated ACE_SOCK_Dgram_Mcast methods
Mon Nov 26 19:31:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/IOR_Multicast.cpp:
Don't use the deprecated ACE_SOCK_Dgram_Mcast methods
Fri Nov 23 20:32:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Strategies/SHMIOP_Transport.cpp:
* tao/Strategies/UIOP_Transport.cpp:
Corrected debug statements
Fri Nov 23 19:33:54 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Naming/Naming_Server.cpp:
Prefix increment
* orbsvcs/orbsvcs/SSLIOP.mpc:
Updated for vc9
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
Corrected debug statement
* tao/SystemException.cpp:
Prefix decrement
* tests/CodeSets/simple/client.cpp:
No need to pass an empty orb name
* tests/Param_Test/server.cpp:
Layout change
Thu Nov 22 05:32:24 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* tests/Bug_1551_Regression/server.cpp:
* tests/Bug_2503_Regression/server.cpp:
Fetch the high res timer's global scale factor to ensure it is
calibrated (if necessary on this platform) at the beginning of
the test. While the timer would otherwise be calibrated on
first use, this introduces delay in the middle of the test's
execution. This leads to failures due to timing assumptions
(timeouts, etc.) within the test itself.
Thu Nov 22 04:54:58 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/Makefile.am:
Add conditionals needed to add ZLIB/ZZIP libraries for
TAO_CosNotification_Persist library iff used by build.
Thu Nov 15 20:37:24 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.h:
* orbsvcs/orbsvcs/Notify/MonitorControl/MonitorManager.cpp:
Work around for bug 2980. Create the MC ORB in the parent thread
and pass to the ORBTask.
Setup a barrier to synch the parent and child threads. This
holds the parent thread till child initialization is completed.
Wed Nov 14 18:52:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/TransportCurrent/lib/Client_Request_Interceptor.cpp:
Don't try to catch NoContext, TC is broken at this moment after the change
of Mon Nov 12 08:54:21 UTC 2007. Will work on a revised change
which also should make the change to this test not needed. The
test will then fail on the scoreboard until the change is in
the repo.
Wed Nov 14 12:42:08 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
Fixed 2 memory leaks that was happening because the value
returned by activate_server_i(...) was ignored.
Tue Nov 13 22:27:17 UTC 2007 Adam Mitz <mitza@ociweb.com>
* tao/TransportCurrent/IIOP_Current_Impl.h:
* tao/TransportCurrent/IIOP_Current_Impl.cpp:
Updated comments to reflect the implementation changes in:
Mon Nov 12 08:54:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Mon Nov 12 17:54:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/LongUpcalls/run_test.pl:
* tests/Multiple/run_test.pl:
Improved for VxWorks
Mon Nov 12 17:44:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/CodeSets/simple/run_test.pl:
Added support for VxWorks cross platform testing
* tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl:
Simplified this script
Mon Nov 12 13:59:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2174_Regression/run_test.pl:
* tests/Bug_2183_Regression/run_test.pl:
* tests/Bug_2234_Regression/run_test.pl:
* tests/Bug_2328_Regression/run_test.pl:
* tests/Bug_2804_Regression/run_test.pl:
Improved VxWorks cross platform testing
Mon Nov 12 13:02:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_1361_Regression/run_test.pl:
Use PerlACE::wait_interval_for_process_creation
Mon Nov 12 11:48:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2289_Regression/run_test.pl:
Added support for VxWorks cross platform testing
* tests/Bug_2936_Regression/run_test.pl:
* tests/Bug_2953_Regression/run_test.pl:
Simplified these files
Mon Nov 12 09:48:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2869_Regression/run_test.pl:
Simplified this file
Mon Nov 12 09:25:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2734_Regression/*:
Build client/server here instead of using them from a different test.
Fixes issues on VxWorks
Mon Nov 12 08:54:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Changed the way how portable interceptors relate to connection
establishment. A few years ago the connection was setup after the
send_request client interceptor call, this was changed with some
refactoring. The send_request was now called after the connection
establishment, as a result, if the connection establishment failed,
the receive_exception method on the client request interceptor
wasn't called. With this behaviour it is not possible to implement
a FT app with just interceptors, you need a TAO specific endpoint
selector. The change I made is to move the connection establishment
after the send_request. As a result in the send_request it can
happen that there is no transport selected, at that moment
retrieving transport current (which is TAO specific) will give a
NoContext exception.
This fixes bugzilla 2133, 3079, and 3080. Thanks to Simon McQueen
and Jaiganesh Balasubramanian for reporting these issues.
* tao/Synch_Invocation.cpp:
* tao/Synch_Invocation.h:
* tao/Messaging/Asynch_Invocation.cpp:
Moved the resolve on the profile_transport_resolver to after the
send_request. At the moment a transport has been selected the
virtual method transport_resolved() is called so that derived
classes can set additional values on the transport.
* tao/Remote_Invocation.{h,cpp} (write_header):
Setup TAO_Target_Specification within this method, no need to
pass it in as argument
* tao/DynamicInterface/DII_Invocation.{h,cpp}:
Use the new transport_resolved to set the transport in the safe_rd and
reset the byter order, at the moment the remote_invocation is called
it is possible that the transport is not resolved yet
* tao/DynamicInterface/DII_Invocation_Adapter.cpp:
Don't reset the byte order here, do that in DII_Invocation
* tao/Invocation_Adapter.cpp:
Const changes, layout changes and don't resolve the transport here,
do that in the Remote_Invocation derived classes
* tao/Messaging/Asynch_Invocation_Adapter.cpp:
Don't schedule the timer here, but in the Async_Invocation because we
maybe haven't resolved the transport.
* tao/TransportCurrent/IIOP_Current_Impl.cpp:
When we have no transport or no connection handler return a NoContext
instead of No_Implement
* tao/Object.cpp:
Fixed typo in comment
* tests/TransportCurrent/Framework/Current_Test_Impl.cpp:
* tests/TransportCurrent/lib/Client_Request_Interceptor.cpp:
* tests/TransportCurrent/lib/Client_Request_Interceptor.h:
Updated for the fact that send_request could throw NoContext
* tao/ObjRefTemplate/ObjectReferenceTemplate_i.cpp:
Layout changes
* tao/Utils/ORB_Manager.cpp:
Destroy the ORB in the destructor
* tests/Portable_Interceptors/Bug_3079/run_test.pl:
Small updates
Mon Nov 12 08:12:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2234_Regression/run_test.pl:
Extended timeout for VxWorks
* tests/Leader_Followers/run_test.pl:
* tests/Leader_Followers/select_mt.conf:
* tests/Leader_Followers/tp.conf:
Updated for VxWorks
* tests/CollocationLockup/CollocationLockup.cpp:
Wait explicitly on the thread manager and shutdown the ORB to
fix some memory leaks
Sun Nov 11 20:15:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Portable_Interceptors/Recursive_ORBInitializer/Client_ORBInitializer.cpp:
Layout change
* tests/Servant_To_Reference_Test/run_test.pl:
Improved for VxWorks
* tests/CSD_Strategy_Tests/TP_Test_Static/run_test.pl:
Corrected for VxWorks
Sun Nov 11 19:55:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2174_Regression/run_test.pl
* tests/Bug_2319_Regression/run_test.pl
* tests/Bug_2792_Regression/run_test.pl
* tests/Bug_2795_Regression/run_test.pl
* tests/Bug_2809_Regression/run_test.pl
* tests/Bug_2935_Regression/run_test.pl
* tests/IORManipulation/run_test.pl
* tests/ORB_destroy/run_test.pl
* tests/ORB_init/run_test.pl
* tests/POA/Deactivate_Object/run_test.pl
* tests/POA/wait_for_completion/run_test.pl
Added support for VxWorks cross platform testing and simplified
the files
Sun Nov 11 19:15:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/IORManipulation/filter/run_test.pl:
Added support for VxWorks cross platform testing
Sun Nov 11 19:08:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2809_Regression/run_test.pl:
Added support for VxWorks cross platform testing
Sun Nov 11 19:06:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2345_Regression/run_test.pl:
Added support for VxWorks cross platform testing
Sun Nov 11 19:04:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2319_Regression/run_test.pl:
Added support for VxWorks cross platform testing
Sun Nov 11 19:01:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2134_Regression/run_test.pl:
Added support for VxWorks cross platform testing
Fri Nov 9 11:29:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Naming/Persistent_Naming_Context.cpp:
Removed msvc6 workaround and layout changes
* orbsvcs/orbsvcs/Naming/Transient_Naming_Context.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControl/Statistic.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.h:
Layout changes
* orbsvcs/tests/FT_App/FT_TestReplica_i.cpp:
Fixed GCC 4.2 warnings
Fri Nov 9 09:04:21 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/TAO_Singleton_Manager.cpp:
dynamically_allocated is a bool
* tao/PI/PI.cpp:
* tao/ObjRefTemplate/ORT_Adapter_Factory_Impl.{h,cpp}:
* tao/ObjRefTemplate/ORT_Adapter_Factory_Impl.cpp:
Layout changes
* tao/ORBInitializer_Registry.cpp:
With VxWorks and TSS emulation enabled we do need to search the
global registry because the loader which creates the global registry
is a different thread then the thread that executes main
Wed Nov 7 18:48:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Portable_Interceptors/Bug_2133/*:
New regression test for bug 2133, thanks to Simon McQueen for
creating this test
* testsPortable_Interceptors/Bug_3080/server.cpp:
Fixed memory leak in this test
* tests/Blocking_Sync_None/run_test.pl:
Added support for -debug which adds -ORBDebugLevel 10 to the
executables
Wed Nov 7 15:40:23 UTC 2007 Jaiganesh B <jai@shiva.dre.vanderbilt.edu>
* tests/Portable_Interceptors/Bug_3079/Client_Request_Interceptor.cpp:
Modified the ACE_DEBUG statements to use the word "exception"
instead of the word "EXCEPTION" which is interpreted by the
autobuilds as a test failure.
Wed Nov 7 15:33:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/IORManipulation/IORManipulation.cpp:
Layout changes
* tao/Object.cpp:
Fixed comment
Wed Nov 7 15:30:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/FaultTolerance/IOGRManipulation/IOGRTest.cpp:
Shutdown the orb to fix some memory leaks and layout changes
Wed Nov 7 14:58:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Mobility_Service:
Removed, empty
* orbsvcs/Naming_Service/NT_Naming_Service.cpp:
Layout change
* tests/NestedUpcall/MT_Client_Test/client.cpp:
* tests/NestedUpcall/MT_Client_Test/local_server.cpp:
Fixed incorrect ACE_ERROR_RETURN statements. This test is now
failing on svn head, it doesn't do a correct cleanup and should
be improved much more
* tests/NestedUpcall/MT_Client_Test/run_test.pl:
Simplified
* tests/POA/Default_Servant2/client.cpp:
Layout change
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp:
Use ACE_ERROR for errors, prefix increment
Tue Nov 6 15:59:43 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tao/RTCORBA/RT_Thread_Lane_Resources_Manager.cpp:
Fixed a memory leak with improper order of cleanup.
Tue Nov 6 15:51:01 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* examples/RTCORBA/Activity/Job.idl:
* examples/RTCORBA/Activity/Activity.h:
* examples/RTCORBA/Activity/POA_Holder.cpp:
* examples/RTCORBA/Activity/POA_Holder.h:
* examples/RTCORBA/Activity/Builder.cpp:
* examples/RTCORBA/Activity/Activity.cpp:
* examples/RTCORBA/Activity/run_test.pl:
Fixed a lot of memory leaks in this example.
Mon Nov 5 16:30:00 UTC 2007 Simon Massey <simon.massey@prismtech.com>
* orbsvcs/orbsvcs/IFRService/ValueDef_i.cpp:
Correct typo from causing infinate recursion when defining
value types after forward declaring the same type.
Mon Nov 5 14:33:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* README:
TAO is implementing a lot of the 3.x CORBA features
Mon Nov 5 12:17:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Portable_Interceptors/Bug_3080/client.cpp:
* tests/Portable_Interceptors/Bug_3080/Client_ORBInitializer.cpp:
* tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.cpp:
* tests/Portable_Interceptors/Bug_3080/Client_Request_Interceptor.h:
Improved this test
Mon Nov 5 10:26:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Cubit/TAO/MT_Cubit/client.cpp:
* performance-tests/Cubit/TAO/MT_Cubit/client.h:
* performance-tests/Cubit/TAO/MT_Cubit/Globals.h:
Updated for VxWorks thread id changes
Mon Nov 5 03:05:06 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* tao/Makefile.am:
Regenerated for PI.mpc & PI_Server.mpc changes.
* tao/tao.mpc:
Fix Header_Files section where Objref_VarOut_T.h and
Object_Reference_Traits_Base_T.h were listed on the same line.
This was interpreted as a single filename with embedded spaces
in the automake build's Makefile.am generation.
Thu Nov 1 14:13:36 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DII_AMI_Forward/DII_ReplyHandler.cpp:
Scoreboard cleanup.
Thu Nov 1 10:49:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PI.mpc:
Added include guard so that we prevent users from including any
generated file, they need to include PI.h
* tao/PI/ClientRequestDetails.h:
* tao/PI/ClientRequestInfo.h:
* tao/PI/ClientRequestInterceptor_Adapter_Impl.h:
* tao/PI/Interceptor_List_T.cpp:
* tao/PI/ORBInitInfo.h:
* tao/PI/PI.h:
* tao/PI/PI_ORBInitializer.h:
* tao/PI/PI_PolicyFactory.h:
* tao/PI/PICurrent.h:
* tao/PI/PICurrent_Impl.h:
* tao/PI/ProcessingModePolicy.h:
Updated includes to use PI_includeC.h
* tao/PI_Server.mpc:
Added include guard so that we prevent users from including any
generated file, they need to include PI_Server.h
* tao/PI_Server/PI_Server.cpp:
Layout change
* tao/PI_Server/PortableServer_ORBInitializer.h:
* tao/PI_Server/ServerInterceptorAdapter.h:
* tao/PI_Server/ServerRequestDetails.h:
* tao/PI_Server/ServerRequestInfo.h:
Updated includes to use PI_Server_includeC.h
* tao/PI_Server/ServerRequestInfo.pidl:
* tao/PI_Server/ServerRequestInterceptor.pidl:
Include PI_include.pidl
* tao/PI_Server/ServerRequestInterceptorC.h:
Updated
* tao/PortableServer/Servant_Base.cpp:
* tao/RTScheduling/RTScheduler_Manager.h:
Layout change
* tao/RTScheduling/Request_Interceptor.h:
* tao/RTScheduling/RTScheduler_Initializer.cpp:
* tao/RTScheduling/RTScheduler_Initializer.h:
* tao/RTScheduling/RTScheduler_Loader.cpp:
* tao/RTScheduling/RTScheduler_Loader.h:
Updated includes
* tao/Transport_Cache_Manager.cpp:
Layout and const changes
Thu Nov 1 10:24:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Hello/Hello.mpc:
Use -Sp to get smaller footprint
Wed Oct 31 14:44:23 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* tests/Bug_2417_Regression/publisher_impl.cpp:
This test used ACE_Guards that take ownership of a mutex. But
since the mutex had never been acquired, critical regions were
not protected, and the unacquired mutex was released, which is
undefined behavior. Changed to use the other constructor that
acquires the mutex, blocking if necessary.
Wed Oct 31 13:47:28 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* tests/OBV/TC_Alignment/run_test.pl:
Change client timeout from 10 to 15 seconds. Calibrating the
high resolution timer used within the ORB takes ~5 seconds on
some platforms. This happens once in the server, once in the
client, at different times. This causes the test to run in
just over 10 seconds.
Wed Oct 31 10:31:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Cubit/TAO/MT_Cubit/client.cpp:
VxWorks updates
Wed Oct 31 08:46:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Reverted change below
Mon Oct 29 14:31:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2084_Regression/EventNode.cpp:
* tests/Bug_2084_Regression/Hello.cpp:
Removed tid_to_int usage
* tests/Bug_2084_Regression/tid_to_int.h:
Deleted
Wed Oct 31 04:09:15 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* docs/Options.html:
Fix typo in -ORBGestalt description.
Tue Oct 30 13:54:31 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* tao/Makefile.am:
Update so that Policy_Current.pidl, Policy_Manager.pidl,
Policy_CurrentS.h, Policy_ManagerS.h,
AnyTypeCode/Policy_CurrentA.h, AnyTypeCode/Policy_ManagerA.h
headers are installed.
* tao/tao.mpc:
Add Policy_CurrentS.h, Policy_ManagerS.h to Header_Files
section.
* tao/AnyTypeCode.mpc:
Add AnyTypeCode/Policy_CurrentA.h,
AnyTypeCode/Policy_ManagerA.h to Header_Files section.
Mon Oct 29 14:31:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2084_Regression/EventNode.cpp:
* tests/Bug_2084_Regression/Hello.cpp:
Removed tid_to_int usage
* tests/Bug_2084_Regression/tid_to_int.h:
Deleted
Sun Oct 28 20:47:53 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
* orbsvcs/orbsvcs/Log/NotifyLog_i.cpp:
Changed to not install a default Notify Service Filter on the
consumer admin. The filter will prevent most events from being
logged (since a generic event will not likely match the default
filter's constraints). Although the current TAO implementation
does not support it, the Notify Log Service API supports adding
filters. When this is added, users will be able to install
filters appropriate to their deployment.
Sun Oct 28 13:02:06 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DII_AMI_Forward/DII_AMI_Forward.mpc:
Ensure it doesn't build for minimum CORBA.
Sat Oct 27 11:54:44 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DII_AMI_Forward/client.cpp (main):
* tests/DII_AMI_Forward/DII_ReplyHandler.cpp:
* tests/DII_AMI_Forward/DII_ReplyHandler.h:
Make the test more efficient by signaling from the reply handler
to the main loop when a reply is received so the main can exit
quickly rather than waiting for a hard timeout.
Fri Oct 26 11:25:35 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DII_AMI_Forward/DII_ReplyHandler.cpp:
Scoreboard repair, satisfy the include file ordering requirements.
Thu Oct 25 15:32:19 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DII_AMI_Forward/test_i.cpp:
Missed this one with the previous fuzz fix.
Thu Oct 25 14:27:42 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Messaging/AMH_Response_Handler.cpp:
* tests/DII_AMI_Forward/DII_AMI_Forward.mpc:
* tests/DII_AMI_Forward/DII_ReplyHandler.h:
* tests/DII_AMI_Forward/DII_ReplyHandler.cpp:
* tests/DII_AMI_Forward/README:
* tests/DII_AMI_Forward/client.cpp:
* tests/DII_AMI_Forward/run_test.pl:
* tests/DII_AMI_Forward/server.cpp:
* tests/DII_AMI_Forward/test.idl:
* tests/DII_AMI_Forward/test_i.h:
Fuzz fixes.
Thu Oct 25 13:01:00 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
* tao/DynamicInterface/AMH_DSI_Response_Handler.h:
* tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:
* tao/DynamicInterface/DII_Reply_Handler.h:
* tao/DynamicInterface/DII_Reply_Handler.cpp:
* tao/DynamicInterface/Request.cpp:
* tao/Messaging/AMH_Response_Handler.h:
* tao/Messaging/AMH_Response_Handler.cpp:
* tao/Messaging/Asynch_Reply_Dispatcher.cpp:
* tao/Messaging/Messaging.h:
New implementation described in bug #3105. Location Forward
exceptions are different than ordinary exceptions in that the
payload is an object reference to which the request must be
resent. This code now provides the framework in which such
exceptions may be at least detected or handled. Coupling the AMI
receipt of such exception with the AMH sending ability gives
middle tier applications the ability to pass the exception back
to the original caller, perhaps with a modified reference.
* tests/DII_AMI_Forward:
* tests/DII_AMI_Forward/DII_AMI_Forward.mpc:
* tests/DII_AMI_Forward/DII_ReplyHandler.h:
* tests/DII_AMI_Forward/DII_ReplyHandler.cpp:
* tests/DII_AMI_Forward/README:
* tests/DII_AMI_Forward/client.cpp:
* tests/DII_AMI_Forward/orb_initializer.h:
* tests/DII_AMI_Forward/orb_initializer.cpp:
* tests/DII_AMI_Forward/run_test.pl:
* tests/DII_AMI_Forward/server.cpp:
* tests/DII_AMI_Forward/server_interceptor.h:
* tests/DII_AMI_Forward/server_interceptor.cpp:
* tests/DII_AMI_Forward/test.idl:
* tests/DII_AMI_Forward/test_i.h:
* tests/DII_AMI_Forward/test_i.cpp:
This is a new test demonstrating the capability of handling
location forward exceptions in DII reply handlers.
Thu Oct 25 12:56:53 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
Improved support for IPv6 addresses.
Thu Oct 25 11:41:18 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/DSI_AMH/Roundtrip.cpp:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.h:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.cpp:
* tests/DSI_AMI_Gateway/test_dsi.cpp:
Reintroduction of the use of NVList_var for more streamlined
memory management. The new *_VarOut_T templates require some
bizzare include file ordering, such as the inclusion of
CORBA_methods.h.
Also reverted a previous change where a _var was used as the
pointer in an ACE_NEW macro. The Borland compiler just couldn't
take it.
Thu Oct 25 09:49:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3108_Regression/*:
New regression for bugzilla 3108
* tests/MT_Client/client.cpp:
Bool change
Thu Oct 25 09:25:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Portable_Interceptors/Bug_3080/*:
New regression test for bugzilla 3080
Wed Oct 24 18:00:59 UTC 2007 Jaiganesh B <jai@shiva.dre.vanderbilt.edu>
* tests/Portable_Interceptors/Bug_3079/Client_Request_Interceptor.cpp:
* tests/Portable_Interceptors/Bug_3079/Client_Request_Interceptor.h:
* tests/Portable_Interceptors/Bug_3079/client.cpp:
* tests/Portable_Interceptors/Bug_3079/Client_ORBInitializer.cpp:
* tests/Portable_Interceptors/Bug_3079/run_test.pl:
Updated regression test for Bug 3079.
Wed Oct 24 14:38:06 UTC 2007 Adam Mitz <mitza@ociweb.com>
* tao/Parser_Registry.cpp:
ACE_Dynamic_Service<>::instance() could return null if the parser
isn't registered with the ACE svc conf. Check for nulls and avoid
storing them in the array. Also, warn at TAO_debug_level 1 or more.
See Bugzilla bug# 3103.
Tue Oct 23 12:38:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Bind_Dispatcher_Guard.cpp:
* tao/Endpoint_Selector_Factory.h:
* tao/Invocation_Endpoint_Selectors.{h,cpp}:
* tao/Messaging/Asynch_Invocation.{h,cpp}:
* tao/Messaging/Asynch_Invocation_Adapter.cpp:
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.{h,cpp}:
* tao/RTCORBA/RT_ORB.cpp:
* tao/Strategies/advanced_resource.cpp:
Layout changes
* tao/CodecFactory/IOP_Codec_include.pidl:
Removed obsolete regeneration instructions
* tao/HTTP_Client.cpp:
* tao/HTTP_Handler.cpp:
* tao/HTTP_Parser.cpp:
Updated debug statements to use the same formatting as in other
places in TAO
* tao/PI/PI_include.pidl:
New file to be included when you want to include a pidl file of the
PI library
Tue Oct 23 10:54:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/be/be_visitor_interface/tie_ss.cpp:
Use true/false, const changes
* TAO_IDL/be/be_visitor_traits.cpp:
Generate argument names so that doxygen can handle the traits better
Mon Oct 22 11:50:34 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* examples/Simple/grid/Grid_i.h:
* examples/Simple/grid/Grid_Client_i.cpp:
* examples/Simple/grid/Grid_i.cpp:
* examples/Simple/Simple_util.cpp:
* examples/Simple/bank/AccountManager_i.cpp:
* examples/Simple/bank/Bank_Client_i.cpp:
* examples/Simple/bank/AccountManager_i.h:
* examples/Simple/bank/Account_i.cpp:
* examples/Simple/bank/run_test.pl:
Fixed some more memory leaks. The example bank required quite
substantial changes.
Mon Oct 22 03:30:03 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/DynamicInterface/AMH_DSI_Response_Handler.inl:
* tests/DSI_AMH/Roundtrip.cpp:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.h:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.cpp:
* tests/DSI_AMI_Gateway/test_dsi.cpp:
This is a somewhat more conservative application of the changes
originally suggested in but #3093. I still believe the
AMH_DSI_Response_Handler implementation should be replaced with
template instances, but apparently this takes more effort than I
have to give.
I am now avoiding the use of NVList_var in the test code, it
caused build failures on some scoreboard platforms. Again, I
believe that should be the correct solution, but requires
further study to determine what I was doing wrong.
Sun Oct 21 20:43:18 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/DynamicInterface/AMH_DSI_Response_Handler.h:
* tao/DynamicInterface/AMH_DSI_Response_Handler.inl:
* tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:
* tests/DSI_AMH/Roundtrip.cpp:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.h:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.cpp:
* tests/DSI_AMI_Gateway/test_dsi.cpp:
Reverted previous change, it wasn't building on some platforms.
Sun Oct 21 03:37:10 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/DynamicInterface/AMH_DSI_Response_Handler.h:
* tao/DynamicInterface/AMH_DSI_Response_Handler.inl:
* tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:
Removed redundent code, replaced with existing _var and _out
type templates for objref and value types. This change was
inspired by the suggestion of Venkat Sidhabathuni <venkats at
idengines dot com> in bugzilla #3093.
* tests/DSI_AMH/Roundtrip.cpp:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.h:
* tests/DSI_AMI_Gateway/My_DII_Reply_Handler.cpp:
* tests/DSI_AMI_Gateway/test_dsi.cpp:
Fix memory leaks documented in bug 3093.
Thu Oct 18 14:17:52 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/tests/Notify/MC/run_test.pl:
Test was failing because MC ORB didn't have the correct NS
endpoint info.
Mon Oct 15 15:31:04 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/tests/Notify/MC/notify.conf:
* orbsvcs/tests/Notify/MC/run_test.pl:
The Montoring Service now registers itself with the Naming
Service. The test script now directly passes the NS reference to
the Monitoring service.
Fri Oct 12 17:17:21 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/tests/Security/ssliop_CSD/Messenger_i.h:
* orbsvcs/tests/Security/ssliop_CSD/Messenger_i.cpp:
* orbsvcs/tests/Security/ssliop_CSD/run_test.pl:
* orbsvcs/tests/Security/ssliop_CSD/ssliop_CSD.mpc:
Fuzz build cleanups.
* orbsvcs/tests/Security/ssliop_CSD/MessengerI.cpp:
Removed this file. Was duplicate of Messenger_i.cpp
Fri Oct 12 15:18:40 UTC 2007 Vladimir Zykov <vladimir.zykov@prismtech.com>
* tests/POA/DSI/client.cpp:
* tests/POA/DSI/server.cpp:
* tests/POA/Non_Servant_Upcalls/Non_Servant_Upcalls.cpp:
* tests/POA/Single_Threaded_POA/Single_Threaded_POA.cpp:
* tests/POA/Current/Current.cpp:
* tests/POA/RootPOA/RootPOA.cpp:
* tests/POA/Bug_2511_Regression/server.cpp:
* tests/POA/Default_Servant/Default_Servant.cpp:
* tests/POA/Etherealization/Etherealization.cpp:
* tests/POA/POA_BiDir/POA_BiDir.cpp:
* tests/POA/NewPOA/NewPOA.cpp:
* tests/POA/Identity/Identity.cpp:
* tests/POA/Adapter_Activator/server.cpp:
* tests/POA/Deactivate_Object/server.cpp:
* tests/POA/Explicit_Activation/server.cpp:
* tests/POA/On_Demand_Activation/server.cpp:
* tests/POA/Loader/Server_Manager.cpp:
* tests/POA/Loader/Server_Manager.h:
* tests/POA/Default_Servant2/client.cpp:
* tests/POA/Default_Servant2/server.cpp:
* tests/POA/Generic_Servant/client.cpp:
* tests/POA/FindPOA/FindPOA.cpp:
* tests/POA/Nested_Non_Servant_Upcalls/Nested_Non_Servant_Upcalls.cpp:
* tests/POA/Reference_Counted_Servant/server.cpp:
* tests/POA/Bug_1592_Regression/client.cpp:
* tests/POA/Excessive_Object_Deactivations/Excessive_Object_Deactivations.cpp:
* tests/POA/Forwarding/client.cpp:
* tests/POA/Forwarding/server.cpp:
* tests/POA/POA_Destruction/POA_Destruction.cpp:
* tests/POA/POAManagerFactory/POAManagerFactory.cpp:
* tests/POA/wait_for_completion/wait_for_completion.cpp:
* tests/POA/MT_Servant_Locator/MT_Servant_Locator.cpp:
* tests/POA/Persistent_ID/client.cpp:
* tests/POA/Persistent_ID/server.cpp:
* tests/POA/Object_Reactivation/Object_Reactivation.cpp:
Memory leak fixes in these tests. Mostly it was missing call to
destroy() for orb.
Thu Oct 11 13:24:26 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/POA/EndpointPolicy/server.cpp:
The test is now failing to initialize endpoints on some
platforms. I've added some more explicit information as debug
output to learn why this is happening.
Wed Oct 10 20:23:11 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
Fixed typo in comment and changed a C-style cast to C++-style.
* TAO_IDL/util/utl_identifier.cpp:
Fixed check in the constructor for an escaped indentifier to
handle the case where a C++ keyword clash prefix and an AMI
exception holder suffix are both present in the arg string.
Thanks to Greg <ustrel at free dot fr> for reporting the
compile failure that results from the mismatch between code
generated from the AMI 'implied IDL' node and code generated
from the original node and mangled on the fly.
Tue Oct 9 02:55:18 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/POA/EndpointPolicy/server.cpp:
fix to address bug 3075. Replace references to "localhost" with
the hostname obtained via ACE_OS::hostname(). If this causes
trouble on windows hosts that are improperly configured so that
they cannot resolve themselves, then a "-h <hostname>" command
line parameter can be added to the server to explicitly set the
hostname to localhost or something else as needed.
Thu Oct 4 23:20:27 UTC 2007 Ossama Othman <ossama_othman at symantec dot com>
* tao/AnyTypeCode/Any_Unknown_IDL_Type.cpp (to_value):
(to_abstract_base):
Ported Any value ownership fix for to_object() described in
ChangeLog entry "Oct 30 18:56:03 UTC 2006 Jeff Parsons
<j.parsons@...> " to these methods.
Fixed TypeCode kind comparison typo in to_abstract_base()
method. s/tk_value/tk_abstract_interface
Replaced TypeCode kind unaliasing code with calls to
TAO::unaliased_kind().
Const-correctness improvements.
Wide string improvements.
* tao/Valuetype/ValueBase.cpp:
Simplified conditional statement.
Thu Oct 4 20:05:47 UTC 2007 Ciju John <johnc at ociweb dot com>
* orbsvcs/tests/Security/ssliop_CSD:
This test demonstrates CSD (Custom Servant Dispatch)
incompatibility with SSLIOP transport protocol. Once this
incompatibility has been fixed this test can be turned on in the
nightly tests.
Thu Oct 4 19:02:11 UTC 2007 Ciju John <johnc at ociweb dot com>
Cleanup Named proxies upon disconnect.
* orbsvcs/orbsvcs/Notify/Admin.h:
* orbsvcs/orbsvcs/Notify/Admin.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.h:
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.h:
* orbsvcs/orbsvcs/Notify/MonitorControlExt/MonitorEventChannel.cpp:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
- Add virtual method 'cleanup_proxy' to EC.
- MonitorEventChannel::cleanup_proxy unbinds the name-ID
association.
- Add 'cleanup_proxy' to admin and make 'remove' private.
'cleanup_proxy' now calls 'remove' and ec->cleanup_proxy
- Consumer/Subscriber Proxies call admin::cleanup_proxy
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/MonitorControlExt.cpp:
* orbsvcs/tests/unit/Notify/MC/MonitorControlExt/README:
Extend to test named proxy disconnect and recreation.
Mon Oct 1 18:57:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Property/run_test.pl:
* orbsvcs/tests/Time/run_test.pl:
Updated for cross platform testing
Fri Sep 28 00:04:19 UTC 2007 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* TAO-INSTALL.html: Fixed the links to "ACE installation notes" so
they point to the right place. Thanks to Matthew Gillen
<mgillen at bbn dot com> for reporting this.
Thu Sep 27 04:28:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/IDL_Test/union.idl:
Extended SunCC workaround to also include Sun Studio 12
Wed Sep 26 06:11:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Base.cpp:
dump_msg only works with debug level >= 5, so corrected all places
where this method is called.
* tao/GIOP_Message_Base.h:
Made most methods private
* tao/IIOP_Transport.cpp:
* tao/MCAST_Parser.cpp:
Layout change
* tao/Invocation_Adapter.cpp:
Const change
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.cpp:
Use bool
Tue Sep 25 07:13:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/catior/catior.cpp:
Fixed incorrect checking of the return value of ACE_String_Base::find
Tue Sep 25 06:49:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Portable_Interceptors/Bug_3079/*:
New regression test created by Jaiganesh Balasubramanian
Tue Sep 25 05:06:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PI_Server/ServerInterceptorAdapter.cpp:
* tao/PortableServer/Upcall_Wrapper.cpp:
* tao/PortableServer/Object_Adapter.cpp:
Fixed some bugs introduced when renaming the reply_status
method to pi_reply_status
Mon Sep 24 13:27:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PI_Server.mpc:
With BCB use -Q as workaround for a compiler bug with BCB6
Mon Sep 24 07:43:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/CSD_Framework/CSD_FW_Server_Request_Wrapper.cpp:
* tao/DynamicInterface/AMH_DSI_Response_Handler.cpp:
* tao/DynamicInterface/DII_Invocation_Adapter.cpp:
* tao/DynamicInterface/DII_Reply_Dispatcher.cpp:
* tao/DynamicInterface/Request.cpp:
* tao/DynamicInterface/Request.h:
* tao/DynamicInterface/Server_Request.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
* tao/GIOP_Message_Generator_Parser.cpp:
* tao/GIOP_Message_Generator_Parser.h:
* tao/GIOP_Message_Generator_Parser_10.cpp:
* tao/GIOP_Message_Generator_Parser_12.cpp:
* tao/GIOP_Message_State.cpp:
* tao/GIOP_Message_State.h:
* tao/GIOP_Message_State.inl:
* tao/GIOP_Utils.h:
* tao/Invocation_Adapter.cpp:
* tao/LocateRequest_Invocation.cpp:
* tao/LocateRequest_Invocation.h:
* tao/LocateRequest_Invocation_Adapter.cpp:
* tao/LocateRequest_Invocation_Adapter.h:
* tao/Messaging/AMH_Response_Handler.cpp:
* tao/Messaging/AMH_Response_Handler.h:
* tao/Messaging/AMI_Arguments_Converter_Impl.cpp:
* tao/Messaging/Asynch_Invocation_Adapter.cpp:
* tao/Messaging/Asynch_Reply_Dispatcher.cpp:
* tao/PI_Server/ServerInterceptorAdapter.cpp:
* tao/PI_Server/ServerRequestInfo.cpp:
* tao/PI_Server/ServerRequestInfo.inl:
* tao/Pluggable_Messaging_Utils.cpp:
* tao/Pluggable_Messaging_Utils.h:
* tao/Pluggable_Messaging_Utils.inl:
* tao/PortableServer/Upcall_Wrapper.cpp:
* tao/Queued_Data.h:
* tao/Queued_Data.inl:
* tao/Reply_Dispatcher.cpp:
* tao/Reply_Dispatcher.h:
* tao/Reply_Dispatcher.inl:
* tao/Synch_Invocation.cpp:
* tao/Synch_Reply_Dispatcher.cpp:
* tao/TAO_Server_Request.cpp:
* tao/TAO_Server_Request.h:
* tao/TAO_Server_Request.inl:
* tao/Transport.cpp:
Use the in IDL defined enums for message type, reply status type and
locate status type. By making this a real enum the compiler can check
whether we handle all possible values in a switch statement and can
also check incorrect checks. As a result the code to convert between
the IDL enums and the TAO enums has been removed. Also changes in several
classes exception_type to reply_status, that is meant by that flag
Fri Sep 22 00:57:01 UTC 2007 Ossama Othman <ossama_othman at symantec dot com>
* orbsvcs/tests/Notify/lib/Notify_Test_Client.cpp (init_ORB):
Fixed leaked RootPOA.
Fri Sep 22 00:21:47 UTC 2007 Ossama Othman <ossama_othman at symantec dot com>
* tao/GIOP_Message_State.cpp:
Cleaned up error checking code.
* tao/ORBInitializer_Registry.cpp:
Removed leading whitespace before preprocessor directives.
* tao/TAO_Internal.cpp (TAO_Ubergestalt_Ready_Condition):
Removed use of "this" pointer from base member initializer
list since such use is not portable.
Removed stray semi-colon.
* tao/Tagged_Profile.inl (TAO_Tagged_Profile):
Added missing initialization of "object_key_extracted_" member
in base member initializer list.
* tao/Transport.cpp (schedule_output_i):
Simplified event handler clean-up code.
* tao/EndpointPolicy/Endpoint_Acceptor_Filter.cpp (fill_profile):
Fixed Coverity CHECKED_RETURN errors. Error conditions in a
return value were not checked.
* tao/Messaging/Connection_Timeout_Policy_i.cpp (hook):
(set_time_value):
* tao/Messaging/Messaging_Policy_i.cpp (hook, set_time_value):
Corrected time types used in cast from a TimeBase::TimeT to
match the types used by the underlying ACE_Time_Value type to
properly support time values greater than 32 bits in size.
* orbsvcs/orbsvcs/Notify/Persistent_File_Allocator.cpp (file_size):
* orbsvcs/orbsvcs/Notify/Persistent_File_Allocator.h (file_size):
* orbsvcs/orbsvcs/Notify/Random_File.cpp (size):
* orbsvcs/orbsvcs/Notify/Random_File.h (size):
Corrected file offset type (s/size_t/ACE_OFF_T/). Addresses
compile-time warnings.
* orbsvcs/orbsvcs/Notify/XML_Saver.cpp (open):
Do not call operator delete() on a FILE* created through
fopen(). Finalize it using fclose() instead.
Fri Sep 21 10:54:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Generator_Parser_12.cpp:
* tao/Queued_Data.h:
* tao/Queued_Data.inl:
* tao/Remote_Invocation.cpp:
Various small changes (const, layout, bool) merged in manually
from the ZIOP3 branch
Fri Sep 21 09:44:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Transport.{cpp,inl}:
Moved messaging_init to the cpp file, caused problem errors in the
inline file and this way it reduces dependencies
Fri Sep 21 08:29:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvs/orbsvcs/HTIOP/HTIOP_Connection_Handler.h:
* orbsvs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
* orbsvs/orbsvcs/HTIOP/HTIOP_Transport.h:
* orbsvs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.h:
* orbsvs/orbsvcs/PortableGroup/UIPMC_Mcast_Connection_Handler.h:
* orbsvs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* orbsvs/orbsvcs/PortableGroup/UIPMC_Transport.h:
* orbsvs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
* orbsvs/orbsvcs/SSLIOP/SSLIOP_Transport.h:
* tao/CSD_Framework/CSD_FW_Server_Request_Wrapper.cpp:
* tao/DynamicInterface/DII_Invocation_Adapter.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
* tao/IIOP_Connection_Handler.h:
* tao/IIOP_Transport.cpp:
* tao/IIOP_Transport.h:
* tao/Makefile.am:
* tao/Messaging/AMH_Response_Handler.cpp:
* tao/Messaging/AMH_Response_Handler.h:
* tao/Messaging/Asynch_Invocation.cpp:
* tao/On_Demand_Fragmentation_Strategy.cpp:
* tao/Profile_Transport_Resolver.cpp:
* tao/Strategies/COIOP_Transport.cpp:
* tao/Strategies/COIOP_Transport.h:
* tao/Strategies/DIOP_Transport.cpp:
* tao/Strategies/DIOP_Transport.h:
* tao/Strategies/SCIOP_Transport.cpp:
* tao/Strategies/SCIOP_Transport.h:
* tao/Strategies/SHMIOP_Transport.cpp:
* tao/Strategies/SHMIOP_Transport.h:
* tao/Strategies/UIOP_Transport.cpp:
* tao/Strategies/UIOP_Transport.h:
* tao/tao.mpc:
* tao/TAO_Server_Request.cpp:
* tao/TAO_Server_Request.h:
* tao/Transport.cpp:
* tao/Transport.h:
* tao/Transport.inl:
Removed the pluggable messaging abstraction. We only had one
implementation and CORBA only defines GIOP, no other messaging
support is required. This replaces a lot of virtual calls with
regular calls which makes the ORB faster. Moved also the messaging
pointer from the concrete transports to the base transport.
Fixes bugzilla 2993
* tao/Pluggable_Messaging.{h,cpp}:
Removed from the repo
Mon Sep 3 14:34:39 UTC 2007 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp (ReplicaController):
* orbsvcs/examples/LoadBalancing/RPS_Monitor.cpp (RPS_Monitor):
* orbsvcs/examples/Notify/Federation/Gate/Gate.cpp (init):
* orbsvcs/performance-tests/LoadBalancing/LBPerf/RPS/RPS_Monitor.cpp (RPS_Monitor):
* orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp (TAO):
* docs/tutorials/Quoter/RTCORBA/Distributor_i.cpp (subscribe_notifier):
* docs/tutorials/Quoter/RTCORBA/Stock_Database.tpp: Chan
* tao/Strategies/COIOP_Acceptor.cpp (TAO_COIOP_Acceptor): Changed
generateUUID() to generate_UUID() to match new ACE-ification of
the UUDI class.
Thu Sep 20 09:35:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Objref_VarOut_T.inl:
Fixed compile errors
Thu Sep 20 08:36:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/POA.pidl:
* tao/PortableServer/Root_POA.cpp:
* tao/PortableServer/Root_POA.h:
* tao/PortableServer/ServantRetentionStrategy.h:
* tao/PortableServer/ServantRetentionStrategyNonRetain.cpp:
* tao/PortableServer/ServantRetentionStrategyNonRetain.h:
* tao/PortableServer/ServantRetentionStrategyRetain.cpp:
* tao/PortableServer/ServantRetentionStrategyRetain.h:
* tao/RTPortableServer/RT_POA.cpp:
* tao/RTPortableServer/RT_POA.h:
* tao/RTPortableServer/RT_POA.inl:
Disable create_reference_with_id when CORBA/e micro is enabled.
This fixes bugzilla 3039, thanks to Simon Massey
<simon dot massey at prismtech dot com> for reporting this
Thu Sep 20 07:32:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/POA/Demux/demux_test_client.h:
Removed not needed include
Thu Sep 20 07:12:15 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Objref_VarOut_T.{h,cpp,inl}:
Added new inline file and made most method inline. Fixes bugzilla 3056
* tao/tao.mpc:
* tao/Makefile.am:
Added new file
* tao/OctetSeq.pidl:
Updated comments in this file
* tao/Generic_Sequence.h:
Small optimization when extending the length without the fact that
a buffer has been allocated
Wed Sep 19 04:10:15 CDT 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO version 1.6.1 released.
Tue Sep 11 15:28:45 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/IFRService.mpc:
Added missing 'tagchecks' settings.
Mon Sep 10 11:14:10 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* docs/tutorials/Quoter/Simple/Impl-Repo/server.cpp:
Untabify.
Sat Sep 8 15:03:05 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tests/POA/EndpointPolicy/README:
Revised the wording.
* tests/POA/POAManagerFactory/README:
Added a README for this test.
Fri Sep 7 19:28:33 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_enum.cpp:
One more bit of old code that needed to be restored,
Fri Sep 7 18:42:26 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_enum.cpp:
* TAO_IDL/be/be_visitor_enum/cdr_op_ch.cpp:
Removed some experimental code that was inadvertently checked
in with
Thu Sep 6 13:10:49 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
Fri Sep 7 18:15:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO-INSTALL.html:
Updated supported platform list
* tao/Abstract_Servant_Base.h:
* tao/Object.cpp:
* tao/Object.h:
* tao/Object_Proxy_Broker.h:
* tao/PortableServer/Collocated_Object_Proxy_Broker.cpp:
* tao/PortableServer/Collocated_Object_Proxy_Broker.h:
* tao/be/be_interface.cpp:
* tao/be/be_visitor_component/component_sh.cpp:
* tao/be/be_visitor_interface/amh_sh.cpp:
* tao/be/be_visitor_interface/interface_sh.cpp:
* tao/be/be_visitor_interface/interface_ss.cpp:
Disable get_interface when CORBA/e is enabled. This fixes bugzilla bug
3066
Thu Sep 6 22:57:44 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* utils/NamingViewer/AddNameServerDlg.h:
* utils/NamingViewer/AddNameServerDlg.cpp:
* utils/NamingViewer/BindDialog.h:
* utils/NamingViewer/BindDialog.cpp:
* utils/NamingViewer/BindNewContext.h:
* utils/NamingViewer/BindNewContext.cpp:
* utils/NamingViewer/NamingTreeCtrl.h:
* utils/NamingViewer/NamingTreeCtrl.cpp:
* utils/NamingViewer/NamingViewer.h:
* utils/NamingViewer/NamingViewer.cpp:
* utils/NamingViewer/NamingViewerDlg.h:
* utils/NamingViewer/NamingViewerDlg.cpp:
* utils/NamingViewer/SelectNSDialog.h:
* utils/NamingViewer/SelectNSDialog.cpp:
* utils/NamingViewer/StdAfx.cpp:
* utils/NamingViewer/ViewIORDialog.h:
* utils/NamingViewer/ViewIORDialog.cpp:
* utils/catior/catior.cpp:
* utils/wxNamingViewer/wxBindDialog.cpp:
Untabify.
Thu Sep 6 18:01:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/Service.h (create):
Readded default argument for pure virtual function this is required
Thu Sep 6 13:10:49 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/idl_global.h:
* TAO_IDL/be/be_visitor_enum/cdr_op_ch.cpp:
* TAO_IDL/be/be_enum.cpp:
* TAO_IDL/driver/drv_preproc.cpp:
* TAO_IDL/util/utl_global.cpp:
Fixes intended for checkin last July and overlooked, including:
- fixes to optional generated stream operators
- addition and usage of global list of relative include paths
Thu Sep 6 12:37:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Borland/ChatClientWnd.cpp:
Catch exceptions as const
* examples/Simple/fullname:
* examples/Simple/fullname/README:
* examples/Simple/squareit:
* examples/Simple/squareit/README:
Removed, these examples where never implemented. Thanks to Douglas
Schmidt for pointing this out
Thu Sep 6 10:32:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/AV/AV_Core.h:
* orbsvcs/orbsvcs/RTCosScheduling/RTCosScheduling_ClientScheduler_i.h:
* orbsvcs/orbsvcs/RTCosScheduling/RTCosScheduling_PCP_Manager.h:
* orbsvcs/orbsvcs/RTCosScheduling/RTCosScheduling_ServerScheduler_i.h:
Removed Borland workarounds
* orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp:
* orbsvcs/orbsvcs/Trader/Trader.h:
Improved CodeGear C++ Builder support
Thu Sep 6 09:30:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Incoming_Message_Stack.h:
Improved CodeGear C++ Builder support
* tao/Utils/ORB_Manager.cpp:
Layout changes
Thu Sep 6 09:24:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/ESF/ESF_Proxy_RefCount_Guard.h:
* orbsvcs/orbsvcs/PortableGroup.idl:
Doxygen improvements
* orbsvcs/orbsvcs/IFRService/ComponentDef_i.cpp:
* orbsvcs/orbsvcs/Security/Security_ORBInitializer.cpp:
Layout changes
* orbsvcs/orbsvcs/Notify/CosNotify_Service.h (create):
Added default argument for factory_name, thanks to Lothar
Werzingen <lothar at tradescape dot biz> for reporting this
* orbsvcs/orbsvcs/Notify/Service.h (create):
Default argument for pure virtual function is not needed
Wed Sep 5 13:26:26 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_codegen.cpp (start_anyop_header):
Changed logic again to generate empty *A.h file if -GA appears
with -Sa or -St.
* docs/compiler.html:
Updated command line option table description to reflect the
change above.
Tue Sep 4 18:05:08 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* docs/compiler.html:
Updated command line option table descriptions to reflect
changes below.
Tue Sep 4 17:52:54 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_codegen.cpp (start_anyop_header);
Changed the logic of the check at the top of this method so
that the options to suppress generation of Any operators or
type codes will override the option to generate a separate
header file for these things. However, the option to generate
an empty *A.h file will override all of the above.
Mon Sep 03 02:50:30 CDT 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO version 1.6 released.
Thu Aug 30 08:09:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Security/BiDirectional/ssl/*.pem:
Generated new keys, old ones are expired
Wed Aug 29 18:47:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/FL_Cube/server.cpp:
Fixed incorrect include. Thanks to Hans Utz <hans dot utz at nasa dot gov>
for reporting this.
Wed Aug 29 10:40:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/EndpointPolicy/run_test.pl:
Fixed typo in the VxWorks specific part of this script
Wed Aug 29 10:07:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/Forwarding/run_test.pl:
Updated for VxWorks cross platform testing
Wed Aug 29 08:16:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/OBV/Simple/client.cpp:
* tests/OBV/Simple/Client_i.cpp:
* tests/OBV/Simple/run_test.pl:
Let the client shutdown the server. Fixes test failure on
OpenVMS
Wed Aug 29 07:52:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/POA/Default_Servant2/client.cpp:
* tests/POA/Default_Servant2/File.idl:
* tests/POA/Default_Servant2/File_i.cpp:
* tests/POA/Default_Servant2/File_i.h:
* tests/POA/Default_Servant2/run_test.pl:
* tests/POA/Default_Servant2/server.cpp:
Added a shutdown call to the server so that we shutdown nicely,
fixes the crash of this test on OpenVMS
Tue Aug 28 20:48:47 UTC 2007 Steve Huston <shuston@riverace.com>
* tests/Param_Test/run_test.pl: Added missing config argument to
the create_target() call. Fixes test failures on all platforms.
Tue Aug 28 18:42:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_1568_Regression/run_test.pl:
* tests/Bug_1568_Regression/server.cpp:
* tests/Bug_1568_Regression/client.cpp:
* tests/Bug_1568_Regression/Test.idl:
Added a shutdown call to the server so that we shutdown nicely,
fixes the crash of this test on OpenVMS
Tue Aug 28 14:16:37 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* docs/notification/using_monitor_extensions.html:
Documented the extended monitoring interfaces.
Tue Aug 28 10:29:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB.cpp:
* tao/ORB_Core.cpp:
Layout changes
* tao/RTCORBA.mpc:
* tao/RTPortableServer.mpc:
Simplified these files
Mon Aug 27 13:29:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2356_Regression/client.cpp:
Fixed error in this test program, when things did work we returned
1 by accident which was wrong
Mon Aug 27 08:06:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/SSLIOP.mpc:
* orbsvcs/orbsvcs/Makefile.am:
Added missing header and inline files section. Thanks to
Vikram Karandikar <softking at gmail dot com> for reporting this
Sat Aug 25 12:37:53 UTC 2007 Steve Huston <shuston@riverace.com>
* tests/AHM_Exceptions/run_test.pl:
* tests/CDR/run_test.pl:
* tests/CallbackTest/run_test.pl:
* tests/Client_Leaks/run_test.pl:
* tests/Codec/run_test.pl:
* tests/Collocation/run_test.pl:
* tests/Hello/run_test.pl:
* tests/Param_Test/run_test.pl: Converted to use the new target
test mechanism. See ACE ChangeLog
Sat Aug 25 12:57:30 UTC 2007 Steve Huston <shuston@riverace.com>
Fri Aug 24 15:18:56 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/TAO_Internal.cpp:
Again, since adding the -ORBGestalt Local option, there was a
problem when multiple ORBs were defined. It was assumed that
since each ORB has its own local configuration context in
addition to the global context, the local configuration instance
should be closed when the ORB is destroyed. However, this isn't
the case when the only configuration context is the global one.
Thu Aug 23 14:39:30 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/TAO_Internal.cpp:
One more change related to the use of a single global context.
The failed status was being lost if TAO debug level was 0.
Wed Aug 22 20:27:35 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* tao/TAO_Internal.cpp:
Since adding the -ORBGestalt Local option, with a default of
using the global service context, it turns out that service
directives passed explicitly on the command line using
-ORBSvcConfDirective weren't being processed. The problem is
that these directives were considered "private" to the ORB that
was being initialized and stored separately to be procesed by
the ORB's local configuration context. But now that ORBs may be
using the global context exclusively, these "private" directives
need to be passed to the service configurator along with all the
rest. Having done this means that calling ORB_init more a second
time with -ORBSvcConf... arguments will see those arguments
ignored. This is the way it worked before ORB-specific
configuration was defined.
Tue Aug 21 19:47:26 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/HTIOP/Hello/run_test.pl:
Windows doesn't like the single-quote around the endpoint
argument value.
Tue Aug 21 15:01:33 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/fe/fe_extern.cpp (FE_yyparse):
Added ACE_OS::fclose of the input file after parsing is done.
This lack was causing an error and exit if more than 512 files
are parsed in a single execution.
Tue Aug 21 14:23:30 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/Callback_Quoter/Consumer_Signal_Handler.h:
Minor layout change.
Tue Aug 21 11:37:02 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/tests/Notify/MC/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/MC/run_test.pl:
Modified the consumer to write out a file once the event channel
has been created and registered with the name service. Then
instead of a sleep, wait for the file in the run_test.pl before
starting the supplier.
Tue Aug 21 09:36:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/IDL_Test/interface.idl:
Added a new test case
* testsHello/run_test.pl:
* tests/No_Server_MT_Connect_Test/run_test.pl:
Put iorbase filename into a perl variable
* tests/POA/Default_Servant2/run_test.pl:
* tests/Exposed_Policies/run_test.pl:
Extended timeout for slow systems
Mon Aug 20 15:57:00 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* tests/IDL_Test/old_union2.idl:
* tests/IDL_Test/old_struct.idl:
* tests/IDL_Test/dif2.idl:
* tests/IDL_Test/module.idl:
* tests/IDL_Test/inherit.idl:
* tests/IDL_Test/old_constants.idl:
* tests/IDL_Test/simple2.idl:
* tests/IDL_Test/old_array.idl:
* tests/IDL_Test/old_union.idl:
* tests/IDL_Test/simple.idl:
* tests/IDL_Test/primtypes.idl:
* tests/IDL_Test/old_sequence.idl:
Added file description comments and fixed formatting.
Mon Aug 20 15:06:33 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* tests/IDL_Test/interface.idl:
Cosmetic changes.
* tests/IDL_Test/IDL_Test.mpc:
Added moved files below to the MPC project.
* tests/IDL_Test/old_union2.idl:
* tests/IDL_Test/old_struct.idl:
* tests/IDL_Test/dif2.idl:
* tests/IDL_Test/module.idl:
* tests/IDL_Test/inherit.idl:
* tests/IDL_Test/old_constants.idl:
* tests/IDL_Test/simple2.idl:
* tests/IDL_Test/old_array.idl:
* tests/IDL_Test/old_union.idl:
* tests/IDL_Test/simple.idl:
* tests/IDL_Test/primtypes.idl:
* tests/IDL_Test/old_sequence.idl:
File moved from TAO_IDL/idl_specs. In some cases, there
was a name clash with existing IDL files, so 'old_' was
prepended to those filenames of the moved files. These
files were used for testing the earliest versions of the
IDL compiler, and were moved to the IDL_Test directory
so they can be used again.
* TAO_IDL/idl_specs/*:
Removed IDL files from this directory and removed the directory.
Mon Aug 20 14:05:18 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* examples/Callback_Quoter/Consumer_Input_Handler.h:
* examples/Callback_Quoter/Consumer_Signal_Handler.h:
Zapped ACE_Shutup_GPlusPLus, it was a reclic from the older days
of ACE/TAO, it was used to silence incorrect warning from g++
compiler. Moved the destructor to the protected section to
correctly handle such warnings (if they still exist) without
having to introduce a phony friend.
Mon Aug 20 14:02:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Property/client.cpp:
Layout change
* orbsvcs/tests/Property/server.cpp:
Don't use the TAO_ORB_Manager, that way we can run also this test
with CORBA/e compact
* orbsvcs/tests/Property/server.h:
No need to include TAO_ORB_Manager
* orbsvcs/tests/Property/Property.mpc:
Server doesn't need utils lib
Mon Aug 20 07:31:59 UTC 2007 Trevor Fields <fields_t@ociweb.com>
* tests/Big_Request_Muxing/Client_Task.cpp:
* tests/Big_Request_Muxing/Client_Task.h:
* tests/Big_Request_Muxing/server.cpp:
Fixed issue of first thread done marking task done for all threads.
Corrected typo in output.
Mon Aug 20 07:14:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/Options.html:
Added note that -ORBDeamon changes the current directory to /
Thanks to Hans Utz <hans dot utz at nasa dot gov> for making
this proposal
Mon Aug 20 02:21:04 UTC 2007 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
Update the protocol-specific tear_listen_point_list impl to be
consistent with those of other protocols. There was an obsolete
guard that was conflicting with recent changes to the transport
cache manager. The processing of listen points requires a
recache of the transport, and that involves calling is_connected
which in turn is guarded by the transport's lock.
* orbsvcs/tests/HTIOP/AMI/run_test.pl:
* orbsvcs/tests/HTIOP/BiDirectional/run_test.pl:
Fix to take away the hard-coded listen endpoint.
Sun Aug 19 23:48:56 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/driver/drv_preproc.cpp:
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
* tests/Bug_2953_Regression/server.cpp:
Fixed ACE_OS fuzz warnings. Use ACE_OS calls instead of raw OS function
where possible. If fuzz detected a false-positive, then disable
the ACE_OS fuzz check for that section of the code.
Fri Aug 17 23:04:53 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_arg_traits.cpp (visit_argument):
Fixed code generation for bounded (w)string argument in
an AMI handler operation. The dummy struct used in the
arg traits specialization had the same name as the one
for the original interface operation.
Fri Aug 17 15:50:19 UTC 2007 Dale Wilson <wilsond@ociweb.com>
* NEWS:
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* tao/IIOP_Connector.cpp:
* tao/Profile_Transport_Resolver.cpp:
* tao/Strategies/SCIOP_Connector.cpp:
* tao/Strategies/UIOP_Connector.cpp:
* tao/Transport.h:
* tao/Transport.inl:
* tao/Transport.cpp:
* tao/Transport_Cache_Manager.h:
* tao/Transport_Cache_Manager.inl:
* tao/Transport_Cache_Manager.cpp:
* tao/Transport_Connector.h:
* tao/Transport_Connector.cpp:
* tests/Bug_1476_Test/client.cpp:
Revert bug 2935 changes.
Changes are now in a bug_2935 branch and will
be reapplied later once I fix whatever is causing
some tests to fail.
* tests/Bug_1361_Regression/Echo.cpp:
* tests/Bug_1361_Regression/client.cpp:
raise (SIGABRT) rather than raise (9) to kill self process.
Q: would calling abort() be a better approach?
* tests/AMI/run_test.pl:
* tests/BiDirectional/run_test.pl:
Minor script changes to help use the tests as TAO debug tools.
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:
|