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
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
|
Tue Jan 29 09:38:35 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tao/CORBALOC_Parser.cpp:
Fixed compile error. Added #include "tao/debug.h".
Tue Jan 29 13:09:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Makefile.bor:
Added Blocking, Discarding, MT_Dispatching,
Sequence_Multi_ETCL_Filter and Sequence_Multi_Filter directory
* orbsvcs/tests/Notify/Blocking/*.bor:
Added new BCB makefiles to build this test
* orbsvcs/tests/Notify/Discarding/*.bor:
Added new BCB makefiles to build this test
* orbsvcs/tests/Notify/MT_Dispatching/*.bor:
Added new BCB makefiles to build this test
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/*.bor:
Added new BCB makefiles to build this test
* orbsvcs/tests/Notify/Sequence_Multi_Filter/*.bor:
Added new BCB makefiles to build this test
Tue Jan 29 11:20:36 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/performance-tests/Makefile.bor:
Added Throughput and Filter directory
* orbsvcs/tests/Notify/performance-tests/Throughput/Makefile.bor:
Added new BCB makefile to build this test
* orbsvcs/tests/Notify/performance-tests/Filter/*.bor:
Added new BCB makefiles to build these tests
* orbsvcs/tests/Notify/Makefile.bor:
Added Ordering directory
* orbsvcs/tests/Notify/Ordering/*.bor:
Added new BCB makefiles to build these tests
Tue Jan 29 09:10:17 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Messaging.h:
Removed TAO_Export from namespace definitions because namespaces
aren't exported. BCB compiler complains about this
Tue Jan 29 08:14:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvs/tests/Makefile.bor:
Added CosEvent and Notify directory
* orbsvcs/tests/CosEvent/Makefile.bor:
Added new BCB makefile to build subdirectories
* orbsvcs/tests/CosEvent/lib/Makefile.bor:
Added new BCB makefile to build this test library
* orbsvcs/tests/CosEvent/Basic/Makefile.bor:
Added new BCB makefile to build these tests
* orbsvcs/tests/Notify/Makefile.bor:
Added new BCB makefile to build subdirectories
* orbsvcs/tests/Notify/lib/Makefile.bor:
Added new BCB makefile to build this test library
* orbsvcs/tests/Notify/Basic/Makefile.bor:
Added new BCB makefile to build these tests
* orbsvcs/tests/Notify/performance-tests/Makefile.bor:
Added new BCB makefile to build subdirectories
* orbsvcs/tests/Notify/performance-tests/RedGreen/Makefile.bor:
Added new BCB makefile to build this test
Mon Jan 28 20:21:44 2002 Ossama Othman <ossama@uci.edu>
* tao/CORBALOC_Parser.cpp
(check_prefix, parse_string_count_helper):
Only print debugging information if desired by the user.
Improved efficiency of some code.
Mon Jan 28 16:21:59 2002 Carlos O'Ryan <coryan@uci.edu>
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
Add Messaging.cpp to the project files.
Mon Jan 28 16:11:36 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Add generation of the AMH_*ExceptionHolder valuetype.
* TAO_IDL/be/be_visitor_operation/ami_exception_holder_operation_cs.cpp:
The IDL compiler simply calls the shared code in
TAO_Messaging_Helper::exception_holder_raise().
Using a shared function for the raise methods in the
ExceptionHolders reduced the line count from 59Kloc to 56Kloc,
more importantly it saved 10% in the text segment for
param_testC.o.
* TAO_IDL/be/be_visitor_valuetype/arglist.cpp:
Cleanup indentation.
Generate throw specs for valuetype operations.
* TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
Remove obsolete @@ comment.
* tao/Messaging.h:
* tao/Messaging.cpp:
Add new Messaging.cpp, it should contain helper code used in the
implementation of CORBA Messaging.
* tao/Makefile:
* tao/Makefile.am:
* tao/Makefile.bor:
Add new Messaging.cpp file and update deps.
* tao/BiDir_GIOP/Makefile:
* tao/Domain/Makefile:
* tao/DynamicAny/Makefile:
* tao/DynamicInterface/Makefile:
* tao/IFR_Client/Makefile:
* tao/IORManipulation/Makefile:
* tao/IORTable/Makefile:
* tao/PortableServer/Makefile:
* tao/RTCORBA/Makefile:
* tao/RTPortableServer/Makefile:
* tao/SmartProxies/Makefile:
* tao/Strategies/Makefile:
* tao/TypeCodeFactory/Makefile:
Update deps.
Mon Jan 28 13:40:38 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
Fixed typo in UTL_ScopeActiveIterator change, the loop
termination should have been !si.is_done(), but I typed
si.is_done().
Mon Jan 28 12:40:15 2002 Ossama Othman <ossama@uci.edu>
* performance-tests/Latency/AMH/Single_Threaded/client.dsp:
* performance-tests/Latency/AMH/Single_Threaded/server.dsp:
* performance-tests/Latency/AMI/client.dsp:
* performance-tests/Latency/AMI/server.dsp:
* performance-tests/Latency/DII/client.dsp:
* performance-tests/Latency/DII/server.dsp:
* performance-tests/Latency/DSI/client.dsp:
* performance-tests/Latency/DSI/server.dsp:
* performance-tests/Latency/Deferred/client.dsp:
* performance-tests/Latency/Deferred/server.dsp:
* performance-tests/Latency/Single_Threaded/client.dsp:
* performance-tests/Latency/Single_Threaded/server.dsp:
* performance-tests/Latency/Thread_Per_Connection/client.dsp:
* performance-tests/Latency/Thread_Per_Connection/server.dsp:
* performance-tests/Latency/Thread_Pool/client.dsp:
* performance-tests/Latency/Thread_Pool/server.dsp:
Updated paths in accordance with the new "Latency" performance
test organization.
Mon Jan 28 12:39:50 2002 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/tests/EC_Throughput/README:
Fixed paths in the README file, some of the binaries were
completely wrong. Made a pass to improved documentation.
Mon Jan 28 12:30:38 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
The code was generating a TAO_ENV_ARG_PARAMETER in the header
file. BIG mistake, I should have generated a TAO_ENV_ARG_DECL.
Mon Jan 28 14:25:04 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.dsp:
Removed these files and added them below, renamed uniquely so they
could be inserted into the workspace containing all the Notify tests.
* orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Filter_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter_Supplier.dsp:
Added these files as renamings of the ones removed above.
* orbsvcs/tests/Notify/Structured_Filter/Structured_Filter.dsw:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter.dsw:
Changed the names of the included projects to reflect the
changes above.
* orbsvcs/tests/Notify/Structured_Filter/Notify_Push_Consumer.cpp:
Changed the way a signed 64-bit integer is handled in a case
statement.
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.cpp:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.h:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.cpp:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.h:
* orbsvcs/tests/Notify/Basic/Events_Test.cpp:
* orbsvcs/tests/Notify/Basic/Events_Test.h:
* orbsvcs/tests/Notify/Basic/IdAssignment.cpp:
* orbsvcs/tests/Notify/Basic/IdAssignment.dsp:
* orbsvcs/tests/Notify/Basic/IdAssignment.h:
* orbsvcs/tests/Notify/Basic/LifeCycleTest.cpp:
* orbsvcs/tests/Notify/Basic/LifeCycleTest.dsp:
* orbsvcs/tests/Notify/Basic/LifeCycleTest.h:
* orbsvcs/tests/Notify/Basic/Simple.cpp:
* orbsvcs/tests/Notify/Basic/Simple.h:
* orbsvcs/tests/Notify/Basic/Updates.cpp:
* orbsvcs/tests/Notify/Basic/Updates.h:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/lib/Notify_PushConsumer.cpp:
* orbsvcs/tests/Notify/lib/Notify_PushSupplier.cpp:
* orbsvcs/tests/Notify/lib/Notify_SequencePushConsumer.cpp:
* orbsvcs/tests/Notify/lib/Notify_SequencePushSupplier.cpp:
* orbsvcs/tests/Notify/lib/Notify_StructuredPushConsumer.cpp:
* orbsvcs/tests/Notify/lib/Notify_StructuredPushSupplier.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.cpp:
* orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.h:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.cpp:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.h:
Cosmetic changes.
Mon Jan 28 12:23:39 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be_include/be_visitor_argument/argument.h:
* TAO_IDL/be/be_visitor_argument/argument.cpp:
Add functionality to support fixed-direction arguments, i.e. the
visitor caller can override the actual direction of the
argument. This is used in AMH to make all the INOUT arguments
behave as IN arguments.
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Use the set_fixed_direction() functionality in the
be_visitor_args visitors to generate correct code for the INOUT
arguments in an AMH function.
* TAO_IDL/be_include/be_visitor_operation/amh_ss.h:
Removed extra argument in the generate_shared_section() helper,
the argument is no longer needed.
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Fixed problem in UTL_ScopeActiveIterator, a bogus si.next() was
left in the for()-loop body.
Mon Jan 28 12:15:43 2002 Ossama Othman <ossama@uci.edu>
* tests/OBV/Forward/server.dsp:
Corrected TAO_IDL compiler path in "Debug" configuration
dependencies.
Mon Jan 28 11:50:27 2002 Ossama Othman <ossama@uci.edu>
* performance-tests/Latency/AMH/Single_Threaded/run_test.pl:
* performance-tests/Latency/AMI/run_test.pl:
* performance-tests/Latency/DII/run_test.pl:
* performance-tests/Latency/Deferred/run_test.pl:
* performance-tests/Latency/Single_Threaded/run_test.pl:
* performance-tests/Latency/Thread_Per_Connection/run_test.pl:
* performance-tests/Latency/Thread_Pool/run_test.pl:
Corrected Perl include path. Thanks to Carlos for pointing out
the problem.
Mon Jan 28 11:38:22 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
* TAO_IDL/be_include/be_visitor_operation/amh_sh.h:
* TAO_IDL/be_include/be_visitor_operation/amh_ss.h:
Another iteration in the AMH support. This time we make sure
that only IN and INOUT arguments are generated in the AMH
skeletons, but I believe that INOUT arguments are not generated
correctly.
Mon Jan 28 11:17:40 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
* TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
Removed last instances of head-allocated
UTL_ScopeActiveIterator, hopefully this will stop the madness
and people will cut&paste the "Right Thing"[tm] from now on.
Mon Jan 28 10:50:40 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/Notify/Notify_Constraint_Visitors.cpp:
Removed some lines of unreachable code.
Mon Jan 28 10:39:26 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/tests/Application_Test/ifr_dii_client.cpp:
Changed the name of a local variable to avoid a warning,
on SunOS Forte, of a possible hiding of a class member
variable.
Mon Jan 28 08:39:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* performance-tests/Makefile.bor:
Updated BCB makefile with changes in Latency tests
Sun Jan 27 14:35:32 2002 Ossama Othman <ossama@uci.edu>
* tao/Pluggable.cpp (make_mprofile):
Fixed support for parsing URL style IORs with multiple addrs in
them. [Bug 1130]
Sun Jan 27 13:22:11 2002 Ossama Othman <ossama@uci.edu>
* performance-tests/README:
* performance-tests/Latency/README:
Updated in accordance with the new "Latency" performance test
organization.
Sun Jan 27 12:51:02 2002 Ossama Othman <ossama@uci.edu>
* performance-tests/Makefile (DIRS):
Updated in accordance with the new "Latency" performance
test organization.
* performance-tests/Latency/Makefile (DIRS):
* performance-tests/Latency/Makefile.bor (DIRS):
* performance-tests/Latency/AMH/Makefile (DIRS):
* performance-tests/Latency/AMH/Makefile.bor (DIRS):
Makefiles for the newly reorganized "Latency" performance
tests.
Sun Jan 27 12:02:37 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Acceptor_Registry.cpp:
Added missing explicit template instantiation.
Sun Jan 27 15:04:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* Makefile.bor:
Added the XML library
Sun Jan 27 00:52:49 2002 Ossama Othman <ossama@uci.edu>
* tests/ORT/ORT_test_IORInterceptor.cpp:
* tests/ORT/client.cpp:
* tests/ORT/server.cpp:
Minor code review. Nothing major. Just style issues.
Sat Jan 26 23:09:56 2002 Ossama Othman <ossama@uci.edu>
* tao/ORB.h:
* tao/ORB.cpp (id, register_initial_reference):
The CORBA specification recently added these methods to the
CORBA::ORB interface. Implemented them.
* tao/ORB_Core.cpp:
Moved template instantiations from `ORB.cpp' to this file. They
aren't used in the former.
* tao/Object_Ref_Table.h:
* tao/Object_Ref_Table.cpp:
Synchronize access to the underlying hash map by instantiating
the template(s) with a TAO_SYNCH_MUTEX instead of an
ACE_Null_Mutex. Multiple threads may potentially attempt to
register an object reference concurrently.
* tao/ClientRequestInfo_i.cpp (get_service_context_i):
Corrected exception minor code (26 instead of incorrect 23).
Sat Jan 26 22:53:04 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
* examples/Callback_Quoter/Notifier_i.cpp:
* tao/Asynch_Invocation.cpp:
* tao/corbafwd.h:
* tao/PortableServer/poa_macros.h:
Removed dependence on tao/try_macros.h.
* tao/orbconf.h: Added back special comment line for Doxygen.
Sat Jan 26 13:44:39 2002 Ossama Othman <ossama@uci.edu>
* docs/releasenotes/TODO.html:
Updated Bugzilla URL.
Sat Jan 26 20:10:04 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
* tao/orbconf.h (TAO_ENV_ARG_DEFN): Removed.
Sat Jan 26 20:10:04 2002 Oliver Kellogg <oliver.kellogg@sysde.eads.net>
* tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp
(ORT_test_IORInterceptor_ORBInitializer::post_init):
Removed TAO_ENV_ARG_DEFN and corrected usage of
TAO_ENV_ARG_PARAMETER.
Fri Jan 25 19:05:24 2002 Ossama Othman <ossama@uci.edu>
* tests/OBV/Forward/server.dsp:
Added missing IDL custom build step for the "Release"
configuration.
Fri Jan 25 20:14:19 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* tao/PortableServer/Makefile:
Added missing PortableGroup_Hooks.
Fri Jan 25 14:25:11 2002 Mayur Deshpande <mayur@ics.uci.edu>
* performance-tests/AMH_Single_Threaded_Latency/Roundtrip.h:
* performance-tests/AMH_Single_Threaded_Latency/Roundtrip.cpp:
Changed TAO_ENV_SINGLE_ARG_DECL to TAO_ENV_ARG_DECL. I had
copied the code as is from the Single_threaded_Latency test and
since for AMH_skeletons we add an extra rh paramater, the 'void
shutdown (void)' method now had an argument (comapred to none
before). This was causing a problem on builds that used
emulated exceptions.
Fri Jan 25 14:10:48 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/AV/RTCP.cpp (handle_stop):
Removed unreachable statement.
Fri Jan 25 13:26:40 2002 Ossama Othman <ossama@uci.edu>
* tests/OBV/Any/AnyS_impl.cpp (magic):
Removed unsed global variable.
Fri Jan 25 11:34:35 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/ast/ast_operation.cpp:
* TAO_IDL/be/be_generator.cpp:
* TAO_IDL/be/be_operation.cpp:
* TAO_IDL/be/be_scope.cpp:
* TAO_IDL/be/be_structure.cpp:
* TAO_IDL/be/be_union.cpp:
* TAO_IDL/be/be_valuetype.cpp:
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
* TAO_IDL/be/be_visitor_scope.cpp:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be/be_visitor_operation/operation_cs.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
* TAO_IDL/be/be_visitor_operation/remote_proxy_impl_cs.cpp:
* TAO_IDL/be/be_visitor_root/root_sth.cpp:
* TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
* TAO_IDL/be/be_visitor_union/union_cs.cpp:
* TAO_IDL/be/be_visitor_union_branch/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_valuetype/marshal_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/marshal_cs.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype.cpp:
For some mystifying reason many UTL_ScopeActiveIterator
instances were created on the heap, and immediately deleted (or
not, leaking memory.)
Funny enough the language has a perfectly usable feature for
that kind of behavior, it is called "automatic variables".
Also, several while()-loops were really for()-loops in disguise,
changed them to make the behavior more obvious.
Fri Jan 25 10:40:03 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/tests/Security/SecurityLevel1/client.dsp:
* orbsvcs/tests/Security/SecurityLevel1/server.dsp:
* orbsvcs/tests/Security/SecurityLevel1/SecurityLevel1.dsw:
Added missing MSVC++ project and workspace files.
Fri Jan 25 10:21:10 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/tests/Security/Big_Request/client.dsp:
* orbsvcs/tests/Security/Big_Request/server.dsp:
* orbsvcs/tests/Security/Callback/client.dsp:
* orbsvcs/tests/Security/Callback/server.dsp:
* orbsvcs/tests/Security/MT_SSLIOP/client.dsp:
* orbsvcs/tests/Security/MT_SSLIOP/server.dsp:
* orbsvcs/tests/Security/Secure_Invocation/client.dsp:
* orbsvcs/tests/Security/Secure_Invocation/server.dsp:
Corrected the "Release" configuration output filenames.
Binaries for "Release" builds belong in the `Release' directory,
by convention.
Fri Jan 25 10:06:44 2002 Ossama Othman <ossama@uci.edu>
* tests/OBV/Any/client.dsp:
Added missing custom build step in the "Release" configuration
for the this test's IDL file.
Fri Jan 25 11:24:35 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_array.cpp:
Added base class constructor calls to class be_array
constructor.
* TAO_IDL/be/be_visitor_array/array_cs.cpp:
Cosmetic changes to source code.
* TAO_IDL/fe/fe_declarator.cpp:
Removed addition of arrays to AST at global scope. This seems to
be legacy code that there is no good reason for, and it was
causing problems when an array is declared, typedef'd, and
used as the element of another array at global scope. Anonymous
arrays and the corresponding typdef (if any) are still
added to the scope where they are declared. Thanks to Boris
Kolpackov <boris@upsa.kent.orc.ru> for reporting this bug.
* TAO_IDL/fe/idl.yy:
* TAO_IDL/fe/y.tab.cpp:
* TAO_IDL/fe/y.tab.cpp.diff:
Made change for sequences similar to change for arrays
above.
Fri Jan 25 12:14:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO/performance-tests/AMH_Single_Threaded_Latency/*.bor:
Added BCB makefiles
Fri Jan 25 00:04:05 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* docs/tutorials/Quoter/RT_Event_Service/Makefile:
* docs/tutorials/Quoter/On_Demand_Activation/Makefile:
* docs/tutorials/Quoter/AMI/Makefile:
* docs/tutorials/Quoter/idl/Makefile:
Regenerated dependencies.
Thu Jan 24 20:15:01 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO/performance-tests/AMH_Single_Threaded_Latency/AMH_Single_Threaded_Latency.dsw:
* TAO/performance-tests/AMH_Single_Threaded_Latency/client.dsp:
* TAO/performance-tests/AMH_Single_Threaded_Latency/server.dsp:
Workspace and projects for the AMH performance test.
Thu Jan 24 18:51:21 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO/performance-tests/AMH_Single_Threaded_Latency:
* TAO/performance-tests/AMH_Single_Threaded_Latency/client.cpp:
* TAO/performance-tests/AMH_Single_Threaded_Latency/server.cpp:
* TAO/performance-tests/AMH_Single_Threaded_Latency/Roundtrip.h:
* TAO/performance-tests/AMH_Single_Threaded_Latency/Roundtrip.cpp:
* TAO/performance-tests/AMH_Single_Threaded_Latency/Makefile:
* TAO/performance-tests/AMH_Single_Threaded_Latency/run_test.pl:
* TAO/performance-tests/Makefile:
* TAO/performance-tests/Makefile.bor:
* TAO/performance-tests/README:
Performance test for AMH based on the Single_Threaded_Latency
test.
Thu Jan 24 17:47:00 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_decl.cpp:
Fixed the implementation of compute_flat_name() there was
nothing flat about the named computed: it used the regular full
name for the containing scope, so for nested modules the results
were wrong.
* TAO_IDL/be/be_interface.cpp:
Fixed warning about unused argument and made several cosmetic
fixes.
* TAO_IDL/be/be_visitor_argument.cpp:
* TAO_IDL/be/be_visitor_argument/vardecl_ss.cpp:
Cosmetic fixes.
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
Implement code to process attributes as well as operations.
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
Fixed implementation of the _downcast() method on the AMH
skeleton.
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/interface_ss.h:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Generate correct code for AMH-copy constructors. I used the new
class-based traverse_inheritance_graph().
* TAO_IDL/be_include/be_visitor_operation/amh_sh.h:
* TAO_IDL/be_include/be_visitor_operation/amh_ss.h:
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Add support for attributes, in both cases I used a technique
slightly different from what the rest of the IDL compiler does.
Normally a fake be_operation node is generated on the fly
(usually heap allocated) and used to generate the code "as if"
it was a real operation. However, the code to generate
operations has to be modified to treat these nodes with some
magic, because the attribute name (on GIOP) are different than
the actual name of the attribute.
My approach was to re-factor the common code to generate
attributes and operations in these new fangled things called
"subroutines". The attribute code calls the subroutines to
generate the desired code. I did have to generate a temporary
node (of type be_argument), but I was able to stack-allocate it
and use it in a very localized section of the code.
Also, none of the operation code has to understand about
attributes.
Thu Jan 24 15:48:01 2002 Mayur Deshpande <mayur@ics.uci.edu>
* tao/TAO_Static.dsp:
* tao/PortableServer/TAO_PortableServer_Static.dsp:
Fixed worspaces regarding moving of the AMH_Response_Handler
files.
Thu Jan 24 11:48:01 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be_include/be_interface.h:
Use the new class-based version traverse_inheritance_graph() to
generate the operation table. The name of the derived class is
computed by the caller and pass through the Worker class down to
the code generation routines. This was useful to factor out the
common code between the AMH-class (where the base class name is
not obtainable via a simple method call) and the regular
(non-AMH) skeletons.
Also use stack-allocate iterators, it makes no sense in the
world to allocate an object from the head only to delete when we
return from the function!
Change some while() loops to for() loops because the latter
document the intent better.
Thu Jan 24 12:35:17 2002 Boris Kolpackov <bosk@ipmce.ru>
* TAO_IDL/be_include/be_visitor_typecode/typecode_defn.cpp:
* TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
Fixed a bug in typecode generation for multidimension arrays.
Implemented first part of new recursive IDL handling machanism.
Refactored some repetitive code.
Thu Jan 24 00:08:22 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/IORInfo.cpp:
* tao/PortableServer/ObjectReferenceTemplate.cpp:
* tao/PortableServer/ObjectReferenceTemplate.h:
* tao/PortableServer/POA.cpp:
* tao/PortableServer/POA.h:
* tao/PortableServer/POA.i:
Code review! Left a whole slew of "@@" comments regarding
disfunctional code, exception safety, memory leaks, etc.
Wed Jan 23 22:00:16 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/IORInfo.cpp
(manager_id, state, current_factory):
Fixed code that couldn't possibly work since an exception was
always thrown. Where's the testing?!
Wed Jan 23 16:40:21 2002 Jaiganesh Balasubramanian <jai@kelvar.ece.uci.edu>
* tao/ORB.cpp:
Made changes to get the correct port value to search the NameService
when the ORBDefaultInitRef option is used.
The changes are made thanks to Andrew L. Shwaika<als@solvo.ru>
Wed Jan 23 14:16:35 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/include/ast_argument.h:
Changed values of the AST_Argument::Direction enum. The new
values allow me to specify sets of directions as bit masks.
* TAO_IDL/include/ast_operation.h:
* TAO_IDL/ast/ast_operation.cpp:
Add new method to count the arguments in a given set of
directions, for example, all (dir_IN|dir_OUT) arguments.
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
The AMH_<Interface> class was deriving from the non-AMH
classes.
Remove stale comments.
Use UTL_ScopeActiveIterator on the stack, there is no sense in
declaring objects with a well-defined scope on the heap! Fixed
a memory leak in the process.
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
After we generate the ResponseHandler argument in AMH-operations
we need to insert a comma, but only if there are IN or INOUT
arguments. The code used to check for any kind of argument.
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Generate the code for the _tao_in variable (the TAO_InputCDR) in
the skeleton.
Fix indentation in the skeleton.
Insert the arguments for the upcall. Unfortunately we are
generating *all* the arguments, not only the IN and INOUT ones.
* TAO_IDL/be/be_visitor_operation/ami_cs.cpp:
* TAO_IDL/be/be_visitor_operation/operation.cpp:
Eliminate duplicate code using the
count_arguments_with_direction routine.
Wed Jan 23 13:09:40 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/AMH_Response_Handler.h:
Fixed a "fuzz" error related to a filename mismatch.
Declare the class attributes after the class methods to more
closely match ACE/TAO programming styles and common C++
conventions. Darn Java programmers!
Wrapped overly long lines in class documentation.
Wed Jan 23 12:06:37 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO/tao/Makefile:
* TAO/tao/Makefile.bor:
* TAO/tao/PortableServer/Makefile:
* TAO/tao/PortableServer/Makefile.bor:
Updated the files with the changes of moving the
AMH_Response_Handler files from `tao' and `tao/PortableServer'.
Wed Jan 23 12:03:01 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be_include/be_visitor_interface/interface_ss.h:
Fixed generate of the _downcast() method for AMH skeletons. I
used the new worker class to traverse inheritance graphs to do
the job.
Wed Jan 23 12:00:35 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp
(authentication_state):
Do not check if the credential is valid. Once the credential
has been authenticated it remains authenticated. Users should
call the is_valid() method if they wish to determine whether or
not the credential has expired.
Wed Jan 23 11:10:33 2002 Mayur Deshpande <mayur@ics.uci.edu>
* tao/PortableServer/AMH_Response_Handler.h:
* tao/PortableServer/TAO_PortableServer.dsp:
* tao/TAO.dsp:
Changed workspaces and header file to compile/link on Windows
platforms.
Wed Jan 23 10:47:30 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be_include/be_interface.h:
* TAO_IDL/be/be_interface.cpp:
Add a new traverse_inheritance_graph() method that takes a class
(with a virtual method) instead of a naked pointer to function.
I will need the new version to pass state into one of the
traversals.
Wed Jan 23 09:55:33 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be/be_visitor_interface/amh_rh_ss.cpp:
Changed code to generate the right signatures for constructors
and destructors, similar to the way it is done in
be_visitor_operation/amh_rh_ss.cpp.
Wed Jan 23 09:33:31 2002 Ossama Othman <ossama@uci.edu>
* tests/ORT/ORT_test_IORInterceptor.cpp
(establish_components, components_established):
Fixed unused argument warnings.
Wed Jan 23 09:30:19 2002 Ossama Othman <ossama@uci.edu>
* tao/Current.pidl:
Removed backslashes in comments. Some compilers correctly flag
them as potential problems through warnings.
Wed Jan 23 09:25:31 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.h:
Corrected some documentation.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp (is_valid):
Implemented this method.
Wed Jan 23 11:05:04 2002 Jeff Parsons <parsons@cs.wustl.edu>
* examples/Quoter/Quoter.idl:
Added leading underscore to an operation parameter
named 'object' because it clashes with the IDL
keyword 'Object'.
Wed Jan 23 16:14:43 2002 Boris Kolpackov <bosk@ipmce.ru>
* TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp:
Fixed mistake in initialization of _tao_retval for valuetypes.
* tests/OBV/Any/Makefile:
* tests/OBV/Forward/Makefile:
Fixed few stupid mistakes that made some time ago.
* tao/ValueBase.h
Added work around for famous Sun CC "pure virtual function called"
bug. Unfortunately this involves introduction of yet another #define.
See include/makeinclude/platform_sunos5_sunc++.GNU for more information.
Wed Jan 23 06:43:27 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.cpp:
Added missing include files.
Wed Jan 23 06:24:33 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/FaultTolerance/FT_Policy_i.cpp (create):
* orbsvcs/orbsvcs/FaultTolerance/FT_Policy_i.h: Fixed warnings in
Borland builds.
Tue Jan 22 17:21:15 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
* TAO_IDL/be/be_visitor_operation/remote_proxy_impl_cs.cpp:
* TAO_IDL/be/be_visitor_operation/rettype_marshal_ss.cpp:
* TAO_IDL/be/be_visitor_operation/rettype_post_invoke_cs.cpp:
* TAO_IDL/be/be_visitor_operation/rettype_pre_invoke_cs.cpp:
* TAO_IDL/be/be_visitor_operation/rettype_return_cs.cpp:
* TAO_IDL/be/be_visitor_operation/rettype_vardecl_cs.cpp:
* TAO_IDL/be/be_visitor_operation/thru_poa_collocated_ss.cpp:
* TAO_IDL/be/be_visitor_operation/thru_poa_proxy_impl_ss.cpp:
Made stupid mistake in last round of changes: I did not test on
a platform without exceptions enabled.
This revealed a number of inconsistencies in the generated code,
as well as very complicated logic to process arrays, sequences
and interfaces as return arguments.
Unfortunately, we were generating '_tao_safe_retval' for some
types, and using _tao_retval for a dummy variable. In yet other
places we generated such a variable but not used it, yuck.
I have made the generated code mode consistent, this allows the
re-use in the last change, but it forces us to always call the
return variable (if any) '_tao_retval'.
Tue Jan 22 19:14:22 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Shortened some line lengths that were over 80 characters
in both source code and generated code. plus other
cosmetic changes.
Tue Jan 22 15:32:10 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be_include/be_visitor_operation/operation.h:
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
* TAO_IDL/be/be_visitor_operation/ami_cs.cpp:
* TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp:
* TAO_IDL/be/be_visitor_operation/direct_collocated_ss.cpp:
* TAO_IDL/be/be_visitor_operation/direct_proxy_impl_ss.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
* TAO_IDL/be/be_visitor_operation/remote_proxy_impl_cs.cpp:
* TAO_IDL/be/be_visitor_operation/thru_poa_collocated_ss.cpp:
* TAO_IDL/be/be_visitor_operation/thru_poa_proxy_impl_ss.cpp:
* TAO_IDL/be_include/be_visitor_operation/ami_cs.h:
* TAO_IDL/be_include/be_visitor_operation/ami_handler_reply_stub_operation_cs.h:
* TAO_IDL/be_include/be_visitor_operation/direct_collocated_ss.h:
* TAO_IDL/be_include/be_visitor_operation/direct_proxy_impl_ss.h:
* TAO_IDL/be_include/be_visitor_operation/remote_proxy_impl_cs.h:
* TAO_IDL/be_include/be_visitor_operation/thru_poa_collocated_ss.h:
* TAO_IDL/be_include/be_visitor_operation/thru_poa_proxy_impl_ss.h:
I found multiple copies of the following routines:
gen_raise_exception(): generate the code to raise exceptions
using either 'throw', 'ACE_THROW' or 'ACE_THROW_RETURN'.
gen_check_interceptor_exception(): generate the code to check
for exceptions (in interceptors) using either
'TAO_INTERCEPTOR_CHECK or 'TAO_INTERCEPTOR_CHECK_RETURN_RETURN'.
gen_check_exception(): generate the code to check
for exceptions (in interceptors) using either 'ACE_CHECK' or
'ACE_CHECK_RETURN'.
Interestingly the implementations of these routines were all
slightly different, for example, some did not deal with non-void
routines properly, while others did not deal with the
use_raw_throw() IDL-compiler option.
The changes were motivated by some Borland warnings, another
lesson on why we need to keep looking at warnings carefully, and
not simply shut them up using some hack.
Tue Jan 22 13:36:05 2002 Ossama Othman <ossama@uci.edu>
* tao/ClientRequestInfo_i.h (~TAO_ClientRequestInfo_i):
* tao/ClientRequestInfo_i.cpp (~TAO_ClientRequestInfo_i):
Added a virtual destructor to silence G++ warnings.
Tue Jan 22 13:19:52 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp (operator==):
Fixed problem where a const variable was passed as a non-const
parameter.
Tue Jan 22 12:42:13 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/OBV/Forward/Makefile:
* docs/tutorials/Quoter/Event_Service/Makefile:
* orbsvcs/tests/Security/Callback/Makefile:
* performance-tests/Cubit/TAO/MT_Cubit/Makefile:
* performance-tests/Cubit/TAO/IDL_Cubit/Makefile:
Regenerated dependencies.
Tue Jan 22 12:25:31 2002 Jeff Parsons <parsons@cs.wustl.edu>
* tests/Strategies/simple_test.idl:
Changed a 'Boolean' to 'boolean'.
Tue Jan 22 11:25:13 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup.dsp:
Fixed MSVC warning.
Tue Jan 22 11:22:33 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/tests/Miop/McastHello/Makefile:
Added check to skip compilation under minimum CORBA
builds.
Tue Jan 22 11:08:02 2002 Jeff Parsons <parsons@cs.wustl.edu>
* tests/NestedUpcall/Simple/test.idl:
Changed several operation parameter types from 'UShort'
to 'unsigned short'.
Tue Jan 22 10:46:41 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/util/utl_idlist.cpp (copy):
Fixed method to propagate the value of the 'escaped_'
member of each contained instance of class Identifier.
* TAO_IDL/util/utl_scope.cpp:
When checking for case difference errors, modified logic
to pass the check if one or the other (but not both) of
the identifiers is escaped.
* orbsvcs/orbsvcs/LifeCycleService.idl:
Added an escape to an operation parameter named 'object',
since it clashes with the IDL keyword 'Object'.
Tue Jan 22 06:52:32 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.cpp:
Reverting the const_cast change from "Mon Jan 21 08:02:28 2002".
It was not necessary. Thanks to Christopher Kohlhoff
<chris@kohlhoff.com> and Johnny Willemsen <jwillemsen@remedy.nl>
for pointing this out.
Mon Jan 21 17:37:47 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/IFR_Service/InterfaceDef_i.cpp:
Added checks for illegal oneway operation properties
(non-void return type, user exceptions, OUT or INOUT
parameters) that CORBA 2.6 says must cause BAD_PARAM
minor code 31 to be thrown.
Mon Jan 21 18:03:11 2002 Mayur Deshpande <mayur@ics.uci.edu>
* tao/TAO_AMH_Response_Handler.cpp
* tao/TAO_AMH_Response_Handler.h
* tao/PortableServer/AMH_Response_Handler.cpp
* tao/PortableServer/AMH_Response_Handler.h
Removed TAO_AMH_Response_Handler.* files from ORB_CORE and added
them to tao/PortableServer, also renaming them to
AMH_Response_Handler. This was doen to reduce tao orb_core
foot-print. Other changes to the AMH_Response_Handler:
- The RH methods are now thread-safe.
- Documentation of class, methods and members
- The 'once-only' semantics is now made more
explicit by using an enum to hold the various ststes.
- init_reply and send_reply method names changed with _tao_rh_
prefix to reduce possibility of user defining similar methods in
IDL and creating a conflict. Thanks to Carlos for all the '@@'
comments regarding the above :-)
* TAO_IDL/be/be_visitor_operation/amh_rh_sh.cpp
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp
Changed code-generation to generate _tao_rh_init_reply () and
_tao_init_send_reply () as per changes above.
* TAO_IDL/be/be_codegen.cpp (start_server_header):
Changed code generation to include the (tao) ResponseHandler
classes from the tao/PortableServer/ rather than from tao/
Mon Jan 21 17:15:18 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/include/utl_scope.h:
* TAO_IDL/util/utl_scope.cpp:
Because things like 'CORBA::ULong' and 'CORBA::Float'
are added to the AST automatically, the IDL compiler
was wrongly accepting types like 'ULong' and "Float'.
This was fixed in lookup_by_name_local() and a new
method lookup_pseudo() was added to specialize the
cases 'Object' and 'TypeCode', where we want to find
a match. Thanks to Jerome Julius <julius@erols.com> for
sending in the example IDL file that uncovered this
problem.
Mon Jan 21 20:59:09 GMT 2002 Boris Kolpackov <bosk@ipmce.ru>
* tests/OBV/Any/Makefile:
Fixed minor bug.
Mon Jan 21 10:51:52 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/examples/Notify/Filter/Filter.dsp:
* orbsvcs/examples/Notify/Subscribe/Subscribe.dsp:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.dsp:
* orbsvcs/tests/Notify/Basic/Events_Test.dsp:
* orbsvcs/tests/Notify/Basic/IdAssignment.dsp:
* orbsvcs/tests/Notify/Basic/LifeCycleTest.dsp:
* orbsvcs/tests/Notify/Basic/Simple.dsp:
* orbsvcs/tests/Notify/Basic/Updates.dsp:
* orbsvcs/tests/Notify/Blocking/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Blocking/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Discarding/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Discarding/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Discarding/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Discarding/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Ordering/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Ordering/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Ordering/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Ordering/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/lib/TAO_NotifyTests.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen.dsp:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.dsp:
Added the ETCL directory to libpath.
Mon Jan 21 10:42:41 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/Notify_Service/Makefile:
* orbsvcs/examples/Notify/Filter/Makefile:
* orbsvcs/examples/Notify/Subscribe/Makefile:
* orbsvcs/tests/Notify/Basic/Makefile:
* orbsvcs/tests/Notify/Blocking/Makefile:
* orbsvcs/tests/Notify/Discarding/Makefile:
* orbsvcs/tests/Notify/MT_Dispatching/Makefile:
* orbsvcs/tests/Notify/Ordering/Makefile:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Makefile:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Makefile:
* orbsvcs/tests/Notify/Structured_Filter/Makefile:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Makefile:
* orbsvcs/tests/Notify/lib/Makefile:
* orbsvcs/tests/Notify/performance-tests/Filter/Makefile:
* orbsvcs/tests/Notify/performance-tests/RedGreen/Makefile:
* orbsvcs/tests/Notify/performance-tests/Throughput/Makefile:
Reverse the order of the CosNotification and ETCL libs in order to
link properly with static libraries.
Mon Jan 21 10:30:38 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.dsp:
* orbsvcs/orbsvcs/Fault_Tolerance.dsp:
Added the ETCL directory to libpath.
Mon Jan 21 08:02:28 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.cpp:
Added const cast's to appease the Borland compiler.
Mon Jan 21 07:15:35 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/Notify/Notify_Buffering_Strategy.h:
* orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/Blocking/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Blocking/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Discarding/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Discarding/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Discarding/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Ordering/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Notify_Sequence_Push_Consumer.cpp:
Fix build errors for Debian Minimum. Added a missing include of
"orbsvcs/TimeBaseC.h".
Mon Jan 21 06:59:24 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp:
Fixed compile error. Added #include "tao/debug.h".
Mon Jan 21 04:35:14 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP.idl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.inl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.cpp:
Removed all uses of the OpenSSL RSA data structure and related
functions in favor of the OpenSSL EVP_PKEY data structure and
functions. The latter is more generic, and automatically
handles multiple private key types.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.inl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.cpp:
New TAO_SSLIOP_EVP_PKEY_var class that provides CORBA-style
memory management of the OpenSSL "EVP_PKEY" key data structure.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.inl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_EVP_PKEY.cpp:
Removed these files. They have been superseded by the EVP_PKEY
files above.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_X509.inl (_duplicate):
Do not attempt to increase the reference count if the X509
pointer is zero. Fixes a segmentation fault.
* orbsvcs/orbsvcs/Makefile.SSLIOP:
* orbsvcs/orbsvcs/SSLIOP.bor:
* orbsvcs/orbsvcs/SSLIOP.dsp:
Added new SSLIOP_EVP_PKEY.* files and removed the deprecated
SSLIOP_RSA.* files.
Mon Jan 21 02:12:34 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.h
(retrieved_credentials):
Changed the return type to be a Credentials object, thus making
the method act as advertised.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp
(ssliop_connect):
Once a connection has been made and before it is cached, set the
quality-of-protection, establishment-of-trust and credentials
specific to the connection in the TAO_SSLIOP_Endpoint. They
must be taken into account when searching the transport cache
for suitable SSLIOP connections.
(retrieve_credentials):
Returned the retrieved credentials to the caller instead of
attempting to do too much in this method.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp
(operator==, hash):
Added these comparison methods for use with TAO's transport
caching mechanism.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.h:
Added a SSLIOP_Credentials attribute, and accompanying
accessors.
Removed unnecessary `tao/ORB.h' include.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.i (credentials):
New "credentials_" member set/get accessor methods.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.cpp
(is_equivalent, hash):
Use the corresponding methods in the SSLIOP_Credentials class
when comparing/hashing two SSLIOP_Credentials objects.
Mon Jan 21 01:05:37 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.cpp
(TAO_SSLIOP_password_callback):
Fixed static_cast from "void *" to "const char *". Such a cast
is invalid. Instead, static_cast to a "char *" and then assign
to a "const char *".
(make_X509, make_RSA):
Corrected misuse of ACE_OS::close() where ACE_OS::fclose() was
expected.
Sun Jan 20 23:14:47 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP.idl:
Added structures to be filled in with certificate and key
information. These will be used in conjunction with the
SecurityLevel2::PrincipalAuthenticator object, i.e passed in via
the authenticate() method.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp
(retrieve_credentials):
Set the RSA private key for the current invocation if one was
set in the retrieved credentials.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_RSA.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_RSA.inl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_RSA.cpp:
New TAO_SSLIOP_RSA_var class that provides CORBA-style memory
management of the OpenSSL "RSA" key data structure.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.inl:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.cpp:
The Credentials objects now hold a pointer to an OpenSSL "RSA"
key data structure.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.h (make_X509, make_RSA):
Added these methods to the TAO_SSLIOP_Vault class.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.cpp (acquire_credentials):
Completed initial implementation of this method. Support for
ASN.1 and PEM encoded certificates and RSA private keys is
available.
(make_X509, make_RSA):
New methods create OpenSSL X509 and RSA data structures,
respectively, based on authentication data supplied by the user.
(TAO_SSLIOP_password_callback):
Callback method passed to OpenSSL calls that require passwords
or passphrases to decrypt PEM files.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_X509.h:
Include "ace/config-all.h" instead of "tao/corbafwd.h." The
former is all that is needed.
* orbsvcs/orbsvcs/Makefile.SSLIOP:
* orbsvcs/orbsvcs/SSLIOP.bor:
* orbsvcs/orbsvcs/SSLIOP.dsp:
Added new SSLIOP_RSA.* files to the appropriate file lists.
Mon Jan 21 00:13:42 2002 Christopher Kohlhoff <chris@kohlhoff.com>
* orbsvcs/Notify_Service/NT_Notify_Service.bor:
* orbsvcs/Notify_Service/Notify_Service.bor:
Added in ETCL library now required for static linking.
* orbsvcs/orbsvcs/CosNotification.bor:
Added missing source files Notify_Extensions and
Notify_StructuredEvents.
* orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.cpp:
* orbsvcs/orbsvcs/Security/SecurityManager.cpp:
Added .in()s in places to fix Borland C++ compiler error about
ambiguous conversion.
Sun Jan 20 17:38:01 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/ast/ast_exception.cpp:
* TAO_IDL/ast/ast_sequence.cpp:
* TAO_IDL/ast/ast_structure.cpp:
* TAO_IDL/ast/ast_union.cpp:
* TAO_IDL/be/be_valuetype.cpp:
Added a check in be_valuetype::in_recursion() to catch
the case where a valuetype contains a valuetype that
is recursive. Also changed in_recursion in each of the
files above to create the scope visitor on the stack
instead of on the heap. Also removed narrowing of return
value from field->field_type() to AST_Type - that method
returns an AST_Type already.
Sun Jan 20 16:33:39 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/Notify_Service/Makefile:
Added orbsvcs/orbsvcs/ETCL to library search path.
Sun Jan 20 15:56:47 2002 Jeff Parsons <parsons@cs.wustl.edu>
* tests/OBV/Any/Any.dsw:
* tests/OBV/Any/client.dsp:
* tests/OBV/Any/server.dsp:
Added some files to server.dsp. Also recreated client.dsp
and added it again to the workspace, since the original
project file wouldn't load.
Sun Jan 20 09:44:12 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup.dsp:
Added TAO_CosNaming.lib to link list for Win32 Release.
Sat Jan 19 18:23:54 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/FaultTolerance/FT_Policy_i.h: Fixed some more
errors with exception specifications.
Sat Jan 19 23:57:13 GMT 2002 Boris Kolpackov <bosk@ipmce.ru>
* tests/OBV/Any/Makefile:
Regenerated dependencies.
Sat Jan 19 23:30:42 GMT 2002 Boris Kolpackov <bosk@ipmce.ru>
* TAO_IDL/be/be_visitor_valuetype/any_op_cs.cpp:
Fixed some bugs in generated any extraction operator.
Sat Jan 19 14:15:37 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/FaultTolerance/FT_Policy_i.h: Not sure why this
was lying in workspace for a long time. Fixed a compile error
with g++. Exceptions were not specified in the signature and
hence the error.
Sat Jan 19 10:58:53 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/ServerRequestInfo.cpp (server_id, orb_id):
Fixed code that didn't conform to the C++ mapping. The caller
owns the storage. Return a string using CORBA::string_dup().
Don't just return a string with the const-ness casted away.
Sat Jan 19 11:36:22 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/tests/Miop/McastHello/server.cpp (main):
Fixed a few warnings. Thanks to Venkita for catching them.
Sat Jan 19 11:16:09 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* utils/nslist/nsdel.cpp:
Fixed (hopefully!!) compile errors.
Sat Jan 19 09:22:54 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/AV/Transport.cpp: Just swapped a couple of
#includes. The dependency generation was getting messed up
somehow.
* orbsvcs/orbsvcs/Makefile.av: Fixed the dependencies.
Sat Jan 19 09:03:32 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* performance-tests/Cubit/TAO/MT_Cubit/Makefile:
Fixed Makefile error.
Sat Jan 19 09:00:16 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* performance-tests/Cubit/TAO/IDL_Cubit/Makefile:
Fixed Makefile error.
Sat Jan 19 08:52:55 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/OBV/Forward/Test_impl.cpp:
tests/OBV/Forward/Test_impl.h:
Fixed compile errors.
Sat Jan 19 08:41:01 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/OBV/Factory/FactoryS_impl.cpp:
tests/OBV/Factory/FactoryS_impl.h:
Fixed compile errors.
Sat Jan 19 08:24:10 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tao/ValueBase.cpp:
Fixed compile error. Added "#include tao/debug.h".
Fri Jan 18 21:34:33 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile*: Regenerated dependencies.
Fri Jan 18 18:46:39 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/ObjectReferenceTemplate.cpp:
Removed duplicate template instantiations. They were already
defined in ObjectReferenceTemplateC.cpp.
Fri Jan 18 18:25:55 2002 Carlos O'Ryan <coryan@uci.edu>
* tao/TAO_AMH_Response_Handler.cpp:
Fixed inconsistency in _tao_out field name.
Fri Jan 18 18:02:41 2002 Ossama Othman <ossama@uci.edu>
* tao/IFR_Client/IFR_BaseC.cpp:
* tao/IFR_Client/IFR_BasicC.cpp:
* tao/IFR_Client/IFR_ComponentsC.cpp:
* tao/IFR_Client/IFR_ExtendedC.cpp:
Updated with new Portable Interceptor updates.
Fri Jan 18 16:42:18 2002 Ossama Othman <ossama@uci.edu>
* tao/ClientInterceptorAdapter.h:
No need to include corbafwd.h, ClientRequestInfo.h. Forward
declaring classes is sufficient.
Added a new "TAO_ClientRequestInfo *" member. It is the cached
value of the object retrieved from TSS.
* tao/ClientInterceptorAdapter.inl:
Initialize the new "info_" member in the base member initializer
list.
* tao/ClientInterceptorAdapter.cpp:
Updated all interception point methods to accept pointers to the
new TAO_ClientRequestInfo_i pointer.
* tao/ClientRequestInfo_i.h:
* tao/ClientRequestInfo_i.inl:
* tao/ClientRequestInfo_i.cpp:
New files containing the new "underlying" implementation of the
PortableInterceptor::ClientRequestInfo interface. They
basically contain the implementation that was previously found
in TAO_ClientRequestInfo. This new class, i.e.
"TAO_ClientRequestInfo_i," does not inherit from any class. All
operation-specific ClientRequestInfo subclasses in the client
stubs now inherit from this class. This removes a lock
initialization from the critical path, and replaces it with a
TSS access. This should improve performance on the client side
significantly in both cases where interceptors were registered
and not registered with the ORB. [Bug 874]
* tao/ClientRequestInfo.h:
No need to include "StringSeqC.h."
Added a new "TAO_ClientRequestInfo_Guard" class that is designed
to ensure the swapping of TAO_ClientRequestInfo_i pointers in a
TAO_ClientRequestInfo object is performed in an exception-safe
manner when interception points are being invoked.
* tao/ClientRequestInfo.inl:
* tao/ClientRequestInfo.cpp:
Moved implementation code to the new TAO_ClientRequestInfo_i
class.
Added "TAO_ClientRequestInfo_Guard" class implementation.
* tao/ORB_Core.h:
* tao/ORB_Core.cpp:
Store a TAO_ClientRequestInfo object in the ORB_Core's TSS
resources.
* tao/DomainC.cpp:
* tao/PolicyC.cpp:
* tao/PortableServer/ImplRepoC.cpp:
Updated to use new TAO_ClientRequestInfo_i class.
* TAO_IDL/be/be_codegen.cpp:
* TAO_IDL/be/be_visitor_operation/interceptors_cs.cpp:
Updated generated code to use new TAO_ClientRequestInfo_i class.
[Bug 874]
Fri Jan 18 17:29:36 2002 Carlos O'Ryan <coryan@uci.edu>
* tao/TAO_Server_Request.h:
* tao/TAO_Server_Request.cpp:
* tao/TAO_AMH_Response_Handler.h:
* tao/TAO_AMH_Response_Handler.cpp:
The TAO_Server_Request class does not depend on
TAO_AMH_Response_Handler anymore, instead of forsing
ServerRequest to know about AMH and make it copy its state to
the AMH_Response_Handler we make AMH_Response_Handler a
friend. That way the AMH_Response_Handler can copy whatever
state it needs.
Add some comments for Mayur about this stuff.
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Do not generate AMH_*ResponseHandler nodes for AMI nodes or
other implied-IDL nodes.
* TAO_IDL/be/be_visitor_interface/amh_rh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_rh_ss.cpp:
Fixed inconsistencies in the generated name for the
TAO_AMH_<InterfaceName>ResponseHandler class.
Change the constructor of those generated classes to take the
TAO_ServerRequest parameter.
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
Fixed indentation problems.
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
Fixed class name in operations (made it consistent with the
generated name in be_visitor_interface/amh_rh_*.cpp).
Fixed exception throwing code (it was hardcoded to use
ACE_THROW, but the IDL compiler should be able to generate raw
throws also).
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
Fixed indentation problem in the generated code.
Improved error messages in case of failure.
Set the visitor context state properly for the arglist visitor.
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Use the right constructor for the TAO_AMH_*ResponseHandler
class.
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
* TAO_IDL/be_include/be_visitor_operation/operation.h:
* TAO_IDL/be_include/be_visitor_operation/operation_ss.h:
Move several helper methods to the base class
(be_visitor_operation), because we need them in classes that do
not derive from be_visitor_operation_ss
* TAO_IDL/ast/ast_decl.cpp:
Fixed small compilation warning.
Fri Jan 18 15:55:59 2002 Ossama Othman <ossama@uci.edu>
* tests/Portable_Interceptors/ForwardRequest/client.dsp:
* tests/Portable_Interceptors/ForwardRequest/server.dsp:
Added missing TAO_IDL include flag and ValueType generation
flag. PortableInteceptor.pidl now has support for
ObjectReferenceTemplates, which requires ValueType support.
Fri Jan 18 22:30:03 GMT 2002 Boris Kolpackov <bosk@ipmce.ru>
* tests/OBV/Any/*:
* tests/OBV/Factory/Makefile:
* tests/OBV/Forward/Makefile:
* tests/OBV/README:
* tests/OBV/Makefile:
* tests/Makefile:
Added OBV-and-Any test. Updated relevant Makefile's.
Fri Jan 18 15:41:22 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/fe/idl.ll:
* TAO_IDL/fe/lex.yy.cpp (idl_store_pragma):
Changed the string "id" to match for #pragma ID to
upper case.
* TAO_IDL/ast/ast_decl.cpp:
Changed check in version setting function to correspond to
the CORBA 2.5 change that now allows the version to be reset
if it is reset to the same value.
Fri Jan 18 13:19:00 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be/be_visitor_operation/amh_rh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
* tao/TAO_AMH_Response_handler.h:
* tao/TAO_AMH_Response_handler.cpp:
Added code that now generates AMH-RH code for operation in
skeleton-source file. Changed 'tao_out' CDR stream in
TAO_AMH_Response_Handler so that the variable names of the
generated IDL code and that in the tao orb_core files match.
Fri Jan 18 13:47:26 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be_include/be_visitor_valuetype.h:
* TAO_IDL/be/be_visitor_valuetype.cpp:
Removed duplicate file inclusions.
Fri Jan 18 13:21:28 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp:
Added patch sent in by Andy Olsen <olsona@uswest.net> that
limits the last component of the name of the temporary file
used by gperf to no more than 48 characters, when the
platform is QNX.
Fri Jan 18 22:16:06 2002 Boris Kolpackov <bosk@ipmce.ru>
* TAO_IDL/be_include/be_visitor_typecode/typecode_decl.h:
* TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h:
* TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h:
* TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h:
* TAO_IDL/be_include/be_valuetype.h:
* TAO_IDL/be_include/be_visitor_valuetype.h:
* TAO_IDL/be/be_visitor_module/module.cpp:
* TAO_IDL/be/be_visitor_root/root.cpp:
* TAO_IDL/be/be_visitor_typecode/typecode_decl.cpp:
* TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
* TAO_IDL/be/be_visitor_valuetype/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/any_op_cs.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype_cs.cpp:
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_valuetype.cpp:
* TAO_IDL/be/be_visitor_valuetype.cpp:
* tao/Typecode.h:
* tao/Marshal.h:
* tao/Marshal.i:
* tao/Marshal.cpp:
* tao/Typecode.cpp:
* tao/ValueBase.cpp:
* tao/append.cpp:
* tao/skip.cpp:
Added Any and TypeCode support for valuetypes.
Fri Jan 18 11:50:06 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* */Makefile: Regenerated dependencies.
Fri Jan 18 09:32:57 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be_include/be_interface.h:
* TAO_IDL/be/be_interface.cpp:
Improved comments in generated code.
New gen_operation_table() helper method, it can generate an
operation table with a different class name (and class flat
name). This is useful for the AMH code generation.
Changed the related methods to take a flat_name argument.
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
Do not create a temporary "AMH_*" node, the visitors deal with
the original interface node directly.
Fixed generation of the _this() method to use the new
TAO_ENV_ARG_* macros.
* TAO_IDL/be_include/be_visitor_interface/interface_ss.h:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
Make the "flat_name" customizable in the be_visitor_interface_ss
vistor. This is used to generate an AMH-specific flat name and
take advantage of the new gen_operation_table() helper method in
be_interface.
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
Since there is no AMH_* node anymore then we need to add the
AMH_ prefix explicitly.
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Removed traditional visitors, but I still need to add the new
ones.
Fri Jan 18 09:23:42 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup.dsp:
Fixed custom build for .idl files for Release builds.
Fri Jan 18 06:54:48 2002 Chad Elliott <elliott_c@ociweb.com>
* orbsvcs/orbsvcs/orbsvcs.dsw:
Added ETCL to the dependencies for the Fault_Tolerance workspace.
Thu Jan 17 23:31:13 2002 Ossama Othman <ossama@uci.edu>
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
Added missing ObjectReferenceTemplateC.* files.
Fri Jan 18 07:55:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Makefile.bor:
Added Policy_Validator, ObjectReferenceTemplateC
* tao/PortableServer/Makefile.bor:
Removed Policy_Validator
* tao/BiDir_GIOP/Makefile.bor:
Added BiDirPolicy_Validator
Thu Jan 17 21:46:16 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.{h,cpp}
(retrieve_credentials):
New method that extracts SSLIOP-specific credentials from the
SecurityLevel2::InvocationCredentialsPolicy via the ORB's policy
framework. Extracted credentials will be used when establishing
the underlying SSL connection.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp (ssliop_connect):
Fixed a memory leak that occurred on error before an attempt to
establish a connection was made.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ReceivedCredentials.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_TargetCredentials.cpp:
Added downcast related methods that make it possible to downcast
to the TAO_SSLIOP-specific interfaces.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Credentials.inl (x509):
New file that contains the new x509() accessor method.
Thu Jan 17 22:02:38 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* orbsvcs/orbsvcs/Notify/Notify_Extensions.h:
* tao/BiDir_GIOP/BiDirPolicy_Validator.h:
Fixed Fuzz compile errors.
Thu Jan 17 21:52:22 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* utils/nslist/nsdel.cpp:
Fixed compile errors on Win32 builds.
Thu Jan 17 19:24:24 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ObjectReferenceTemplateC.h:
Removed the if-defs around the ValueBase and ValueFactory
includes. The includes are needed in all cases and not just when
minimum_corba=1
Thu Jan 17 19:06:58 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tests/Portable_Interceptors/IORInterceptor/FOO_IORInterceptor.cpp:
Fixed unused parameter warnings.
Thu Jan 17 18:59:14 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableServer/IORInfo.cpp:
Fixes for the KCC statement-not-reachable warnings.
Thu Jan 17 18:40:49 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/TAO_Internal.cpp:
Included the missing debug.h
Thu Jan 17 17:40:55 2002 Mayur Deshpande <mayur@ics.uci.edu>
* be_include/be_visitor_interface/amh_rh_sh.h:
* be_include/be_visitor_interface/amh_rh_ss.h:
* be_include/be_visitor_operation/amh_rh_sh.h:
* be_include/be_visitor_operation/amh_rh_ss.h:
* be/be_visitor_interface/amh_rh_sh.cpp:
* be/be_visitor_interface/amh_rh_ss.cpp:
* be/be_visitor_operation/amh_rh_sh.cpp:
* be/be_visitor_operation/amh_rh_ss.cpp:
Most of the 'bugs' have been fixed with the AMH-RH generated
code now. The only known remaining 'to-do' is the generation of
the marshalling code for the RH-parametes in the skeleton source
file.
Thu Jan 17 17:39:00 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Invocation_Interceptor.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.cpp:
Use the Security::QOP type instead of an integer to store the
desired quality-of-protection. The former is more descriptive.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.h (TAO_SSLIOP_Endpoint):
Cache the quality-of-protection and establishment-of-trust
settings associated with the endpoint object. They are need
when determining if a given cached connection is suitable for an
invocation with a given set of security policies
(e.g. QOPPolicy).
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.i (qop, trust):
Accessors methods for their cached counterparts.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Endpoint.cpp (is_equivalent, hash):
Take into account the quality-of-protection and
establishment-of-trust settings when determining endpoint
equivalence and computing hashes.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp (ssliop_connect):
Added support for the Security::SecQOPIntegrity
quality-of-protection. Integrity without confidentiality is
achieved by using the "eNULL" SSL cipher. Despite the fact that
encryption is disabled, a secure hash is still used to ensure
integrity.
Cleaned up the code in this method.
Thu Jan 17 17:34:10 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ObjectReferenceTemplate.pidl:
* tao/PortableInterceptor.pidl:
Moved the ObjectReferenceTemplate stuff from
PortableInterceptor.pidl to the new
ObjectReferenceTemplate.pidl. This is needed to get the builds
straight for the minimum corba. By moving the ORT related part
to a separate pidl, we are making it (ORT) usable irrespective
of the usage of interceptors.
* tao/PortableInterceptorC.i:
* tao/PortableInterceptorC.h:
* tao/PortableInterceptorC.cpp:
Regenerated and applied patches.
* tao/ObjectReferenceTemplateC.h:
* tao/ObjectReferenceTemplateC.h:
* tao/ObjectReferenceTemplateC.h:
Generated and made modifications as needed.
* tao/PortableServer/ObjectReferenceTemplate.cpp:
* tao/PortableServer/ObjectReferenceTemplate.h:
* tao/PortableServer/ObjectReferenceFactory.cpp:
* tao/PortableServer/ObjectReferenceFactory.h:
Since this part is out of the interceptor loop, removed the
if-defines checking for interceptors. Removed the include of
PortableInterceptorC.h and included ObjectReferenceTemplateC.h
instead.
* tao/PortableServer/POA.cpp:
* tao/PortableServer/POA.h:
Included StringSeqC.h needed for minimum corba builds.
Moved wrongly placed #endif for TAO_HAS_MINIMUM_POA check.
* tao/Makefile:
Added ObjectReferenceTemplateC to the list of ORB_CORE files.
Thu Jan 17 16:02:50 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be_include/be_visitor_interface/amh_sh.h:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
Override visit_operation() and visit_attribute() to invoke the
AMH-specific visitors.
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
Improve comments in generated code, instead of saying silly
things like "//constructor" (like I didn't know what a
constructor looks like). Instead we generate a pointer to where
the code is generated from.
Fixed indentation in the generated code also.
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Do not use CORBA::_tc_Object to get the CORBA::Object interface
repository ID, the string can as easily get hard-coded, is not
like the OMG changes that string every week.
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
The AMH-operations have their AMH_*ResponseHandler argument
generated, however we still need to double check the arglist
because some black magic is going on inside the AMH visitor for
interfaces that seems to create a special operation node.
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Improved skeletons for AMH-operations. The skeleton is
starting to take shape, it creates the AMH_*ResponseHandler but
no marshaling or demarshaling code is present.
* TAO_IDL/be/be_visitor_operation/arglist.cpp:
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be_include/be_visitor_operation/operation.h:
Factor out code to generate the TAO_ENV_ARG parameter to a
separate function, that makes it easier to reuse the arglist
visitors.
Thu Jan 17 17:20:46 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/TAO_Static.dsp: Added the files the Policy_Validator.*
* tao/BiDir_GIOP/TAO_BiDir_GIOP.dsp: Added the policy validator
class files.
Thu Jan 17 17:09:46 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/TAO.dsp (SOURCE): Added the files the Policy_Validator.*
* tao/PortableServer/*.dsp: Removed the file Policy_Validator.*.
Thu Jan 17 17:04:25 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/Acceptor_Impl.h: Removed the out_of_sockets_handler ()
method as this was not used. Thanks to Andrew
<andrew@activesol.net> for pointing this out.
* tao/ORB_Core.cpp:
* tao/ORB_Core.h: Removed the method parse_bidir_policy () method
and added a new method load_policy_validators ().
* tao/orbconf.h: Added a new cached policy for BiDir connections.
* tao/Policy_Validators.h:
* tao/Policy_Validators.cpp: Moved this class from PortableServer
library. This is very useful in TAO when policy validators from
other libraries needs to be added to the POA policy
validator. We now use this as a basis of a new policy validator
class in BiDir library. The BiDir library would add its policy
validator to the POA policy validator.
* tao/BiDir_Adapter.h: Added a method load_policy_validators () to
add the policy validator.
* tao/Makefile: Added the new files.
* tao/BiDir_GIOP/BiDirPolicy_Validator.h:
* tao/BiDir_GIOP/BiDirPolicy_Validator.cpp: The new policy
validator for BiDir GIOP.
* tao/BiDir_GIOP/BiDirGIOP.cpp:
* tao/BiDir_GIOP/BiDirGIOP.h:
* tao/BiDir_GIOP/BiDir_Policy_i.cpp:
* tao/BiDir_GIOP/BiDir_Policy_i.h:
* tao/BiDir_GIOP/Makefile: Changes to create and use the validator
properly.
* tao/PortableServer/Default_Policy_Validator.cpp:
* tao/PortableServer/Default_Policy_Validator.h: Changes to use
the Policy_Validator in TAO.
* tao/PortableServer/Makefile: Removed the Policy_Validator.* and
generated dependecies.
* tao/PortableServer/Policy_Validator.h:
* tao/PortableServer/Policy_Validator.cpp: Moved to
$TAO_ROOT/tao.
* tao/PortableServer/Object_Adapter.h
* tao/PortableServer/Object_Adapter.i
* tao/PortableServer/POA.h:
* tao/PortableServer/POA_Policy_Set.cpp:
* tao/PortableServer/POA_Policy_Set.h:
* tao/PortableServer/Policy_Validator.h:
* tao/RTPortableServer/RT_Policy_Validator.cpp:
* tao/RTPortableServer/RT_Policy_Validator.h: Changes to
accomodate the new policy_Validator class in $TAO_ROOT/tao.
Thu Jan 17 12:22:32 2002 Ossama Othman <ossama@uci.edu>
* tao/ORB_Core.cpp (init):
* tao/TAO_Internal.cpp (open_services):
Moved the parsing code for the "-ORBDebug" and "-ORBDebugLevel"
options to TAO_Internal::open_services() so that Service_Objects
and ORBInitializers may use debugging output dependent on their
values. Note that this change does not affect other debugging
code in the ORB. It simply moves the option parsing code
earlier in the bootstrapping process.
Thu Jan 17 12:04:41 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp (init):
The certificate must be set before the private key since the
ACE_SSL_Context attempts to check the private key for
consistency. That check requires the certificate to be
available in the underlying SSL_CTX.
Thu Jan 17 13:40:09 2002 Chad Elliott <elliott_c@ociweb.com>
Added new features to the Notification Service. The following items
have been implemented: Sequence Push Consumers/Suppliers, Pacing
Interval, Maximum Batch Size, Deadline ordering policy,
Deadline, Priority and LIFO discarding policies.
Tests were written by Chip Jones <jones_c@ociweb.com> and Pete
Maher <maher_p@ociweb.com>.
* docs/releasenotes/index.html:
Update the documentation to reflect the current state of the
Notification Service.
* orbsvcs/Notify_Service/Makefile:
* orbsvcs/Notify_Service/Notify_Service.dsp:
* orbsvcs/examples/Notify/Filter/Filter.dsp:
* orbsvcs/examples/Notify/Filter/Makefile:
* orbsvcs/examples/Notify/Subscribe/Makefile:
* orbsvcs/examples/Notify/Subscribe/Subscribe.dsp:
* orbsvcs/orbsvcs/CosNotification.dsp:
* orbsvcs/orbsvcs/CosNotification_Static.dsp:
* orbsvcs/orbsvcs/Fault_Tolerance.dsp:
* orbsvcs/orbsvcs/Makefile.CosNotification:
* orbsvcs/orbsvcs/orbsvcs.dsw:
Update Makefiles and project files to use the ETCL library.
* orbsvcs/orbsvcs/Notify/Notify_AdminProperties.h:
* orbsvcs/orbsvcs/Notify/Notify_AdminProperties.i:
* orbsvcs/orbsvcs/Notify/Notify_AdminProperties.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Buffering_Strategy.h:
* orbsvcs/orbsvcs/Notify/Notify_Buffering_Strategy.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Command.h:
* orbsvcs/orbsvcs/Notify/Notify_Command.i:
* orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Default_CO_Factory.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Event.h:
* orbsvcs/orbsvcs/Notify/Notify_Event.cpp:
* orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.h:
* orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Event_Manager.h:
* orbsvcs/orbsvcs/Notify/Notify_Event_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Event_Processor.h:
* orbsvcs/orbsvcs/Notify/Notify_Event_Processor.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Extensions.h:
* orbsvcs/orbsvcs/Notify/Notify_Extensions.cpp:
* orbsvcs/orbsvcs/Notify/Notify_FilterAdmin_i.h:
* orbsvcs/orbsvcs/Notify/Notify_FilterAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_FilterFactory_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Filter_i.h:
* orbsvcs/orbsvcs/Notify/Notify_Filter_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_MT_Worker_Task.h:
* orbsvcs/orbsvcs/Notify/Notify_MT_Worker_Task.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_T.h:
* orbsvcs/orbsvcs/Notify/Notify_ProxyConsumer_T.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ProxySupplier_T.h:
* orbsvcs/orbsvcs/Notify/Notify_ProxySupplier_T.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Proxy_T.h:
* orbsvcs/orbsvcs/Notify/Notify_Proxy_T.cpp:
* orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.h:
* orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.inl:
* orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushConsumer_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.h:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Signal_Property_T.h:
* orbsvcs/orbsvcs/Notify/Notify_Signal_Property_T.cpp:
* orbsvcs/orbsvcs/Notify/Notify_StructuredEvents.h:
* orbsvcs/orbsvcs/Notify/Notify_StructuredEvents.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Worker_Task.h:
* orbsvcs/orbsvcs/Notify/Notify_Worker_Task.cpp:
Modifications and additions for the new features.
* orbsvcs/tests/Notify/Makefile:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.dsp:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.h:
* orbsvcs/tests/Notify/Basic/AdminProperties_Test.cpp:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.dsp:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.h:
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.cpp:
* orbsvcs/tests/Notify/Basic/Events_Test.dsp:
* orbsvcs/tests/Notify/Basic/Events_Test.h:
* orbsvcs/tests/Notify/Basic/Events_Test.cpp:
* orbsvcs/tests/Notify/Basic/IdAssignment.dsp:
* orbsvcs/tests/Notify/Basic/LifeCycleTest.dsp:
* orbsvcs/tests/Notify/Basic/Makefile:
* orbsvcs/tests/Notify/Basic/Simple.dsp:
* orbsvcs/tests/Notify/Basic/Simple.h:
* orbsvcs/tests/Notify/Basic/Simple.cpp:
* orbsvcs/tests/Notify/Basic/Updates.dsp:
* orbsvcs/tests/Notify/Basic/Updates.h:
* orbsvcs/tests/Notify/Basic/Updates.cpp:
* orbsvcs/tests/Notify/lib/Makefile:
* orbsvcs/tests/Notify/lib/Notify_Test_Client.h:
* orbsvcs/tests/Notify/lib/Notify_Test_Client.cpp:
* orbsvcs/tests/Notify/lib/TAO_NotifyTests.dsp:
* orbsvcs/tests/Notify/performance-tests/RedGreen/Makefile:
* orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen.dsp:
* orbsvcs/tests/Notify/performance-tests/Throughput/Makefile:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.dsp:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.h:
* orbsvcs/tests/Notify/performance-tests/Throughput/Throughput.cpp:
Update the current Nofication tests to allow smooth integration of
the new tests.
* orbsvcs/tests/Notify/Blocking/Blocking.dsw:
* orbsvcs/tests/Notify/Blocking/Makefile:
* orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Blocking/README:
* orbsvcs/tests/Notify/Blocking/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Blocking/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Blocking/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Blocking/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Blocking/common.h:
* orbsvcs/tests/Notify/Blocking/common.cpp:
* orbsvcs/tests/Notify/Blocking/go.idl:
* orbsvcs/tests/Notify/Blocking/notify.conf:
* orbsvcs/tests/Notify/Blocking/run_test.pl:
* orbsvcs/tests/Notify/Discarding/Discarding.dsw:
* orbsvcs/tests/Notify/Discarding/Makefile:
* orbsvcs/tests/Notify/Discarding/Notify_Sequence_Push_Consumer.h:
* orbsvcs/tests/Notify/Discarding/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/Discarding/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Discarding/README:
* orbsvcs/tests/Notify/Discarding/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Discarding/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/Discarding/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Discarding/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Discarding/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Discarding/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Discarding/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Discarding/common.h:
* orbsvcs/tests/Notify/Discarding/common.cpp:
* orbsvcs/tests/Notify/Discarding/go.idl:
* orbsvcs/tests/Notify/Discarding/notify.conf:
* orbsvcs/tests/Notify/Discarding/run_test.pl:
* orbsvcs/tests/Notify/MT_Dispatching/MT_Dispatching.dsw:
* orbsvcs/tests/Notify/MT_Dispatching/Makefile:
* orbsvcs/tests/Notify/MT_Dispatching/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/MT_Dispatching/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/MT_Dispatching/README:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/MT_Dispatching/go.idl:
* orbsvcs/tests/Notify/MT_Dispatching/notify_mtdispatching.conf:
* orbsvcs/tests/Notify/MT_Dispatching/notify_mtlistener.conf:
* orbsvcs/tests/Notify/MT_Dispatching/notify_mtsource.conf:
* orbsvcs/tests/Notify/MT_Dispatching/notify_nothreads.conf:
* orbsvcs/tests/Notify/MT_Dispatching/run_test.pl:
* orbsvcs/tests/Notify/Ordering/Makefile:
* orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.h:
* orbsvcs/tests/Notify/Ordering/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/Ordering/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Ordering.dsw:
* orbsvcs/tests/Notify/Ordering/README:
* orbsvcs/tests/Notify/Ordering/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Ordering/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Ordering/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Ordering/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Ordering/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Ordering/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Ordering/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Ordering/common.h:
* orbsvcs/tests/Notify/Ordering/common.cpp:
* orbsvcs/tests/Notify/Ordering/go.idl:
* orbsvcs/tests/Notify/Ordering/notify.conf:
* orbsvcs/tests/Notify/Ordering/run_test.pl:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Makefile:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Notify_Sequence_Push_Consumer.h:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/README:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Multi_ETCL_Filter.dsw:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/common.h:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/common.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/go.idl:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/notify.conf:
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/run_test.pl:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Makefile:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Notify_Sequence_Push_Consumer.h:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/README:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Multi_Filter.dsw:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/common.h:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/common.cpp:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/go.idl:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/notify.conf:
* orbsvcs/tests/Notify/Sequence_Multi_Filter/run_test.pl:
* orbsvcs/tests/Notify/Structured_Filter/Makefile:
* orbsvcs/tests/Notify/Structured_Filter/Notify_Push_Consumer.h:
* orbsvcs/tests/Notify/Structured_Filter/Notify_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Structured_Filter/README:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Filter.dsw:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Filter/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Structured_Filter/control.idl:
* orbsvcs/tests/Notify/Structured_Filter/run_test.pl:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Makefile:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Notify_Push_Consumer.h:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Notify_Push_Consumer.cpp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Notify_Push_Supplier.h:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Notify_Push_Supplier.cpp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/README:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Multi_Filter.dsw:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/Structured_Multi_Filter/control.idl:
* orbsvcs/tests/Notify/Structured_Multi_Filter/run_test.pl:
* orbsvcs/tests/Notify/performance-tests/Filter/Filter.dsw:
* orbsvcs/tests/Notify/performance-tests/Filter/Makefile:
* orbsvcs/tests/Notify/performance-tests/Filter/Notify_Sequence_Push_Consumer.h:
* orbsvcs/tests/Notify/performance-tests/Filter/Notify_Sequence_Push_Consumer.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/Notify_Structured_Push_Consumer.h:
* orbsvcs/tests/Notify/performance-tests/Filter/Notify_Structured_Push_Consumer.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/README:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Supplier.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Supplier.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Consumer.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Consumer.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Supplier.dsp:
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Supplier.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/common.h:
* orbsvcs/tests/Notify/performance-tests/Filter/common.cpp:
* orbsvcs/tests/Notify/performance-tests/Filter/go.idl:
* orbsvcs/tests/Notify/performance-tests/Filter/notify.conf:
* orbsvcs/tests/Notify/performance-tests/Filter/run_test.pl:
Add many new tests to test the various features of the
Notification Service.
Thu Jan 17 11:03:14 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be_include/be_visitor_interface/interface_ss.h:
Fixed code generation for the AMH_* classes, at this point the
code for *S.h looks reasonable (and compiles!).
Ditto for the _is_a(), _interface() and similar methods in the
*S.cpp file, but we need to fix the generated skeletons.
Thu Jan 17 10:40:57 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/EstablishTrustPolicy.cpp
(policy_type, destroy, trust):
* orbsvcs/orbsvcs/Security/QOPPolicy.cpp
(policy_type, destroy, qop):
Fixed unused parameter warnings.
Thu Jan 17 10:30:41 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/Security_ORBInitializer.cpp (pre_init):
Create and register the SecurityManager object with the ORB's
resolve_initial_references() mechanism.
Thu Jan 17 10:17:18 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_codegen.cpp:
Add the #include for "tao/TAO_AMH_Response_Handler.h" if needed.
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
Add missing close braces in the generated code. We never
finished the definition of the AMH_* class.
* TAO_IDL/be/be_visitor_interface/amh_rh_sh.cpp:
We were not closing the definition of the
TAO_AMH_*ResponseHandler class either.
Fixed TAO_AMH_Response_Handler name in generated code.
Fixed indentation in the generated code too.
Thu Jan 17 10:08:36 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/SecurityManager.cpp
(remove_own_credentials):
Corrected assignment where equality conditional was expected.
Thu Jan 17 09:49:23 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Fixed the UTL_ScopedName for the AMH_*ResponseHandler, finally
we got the generated code to look like we want (and compiles
too!)
Thu Jan 17 10:28:54 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/orbsvcs/ETCL/ETCL_l.cpp:
* orbsvcs/orbsvcs/ETCL/ETCL_l.cpp.diff:
Initialized two register char* variables in the generated
lex file. Even though they are clearly initialized about
20 lines down and never skipped, Redhat Static seems to
have a problem with it.
Thu Jan 17 10:25:54 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* TAO_IDL/be_include/be_interface_strategy.h:
Fixed compile errors.
Thu Jan 17 09:25:11 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/tests/Miop/Makefile: Added.
Thu Jan 17 09:25:11 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Acceptor_Registry.cpp:
Fixed KCC warning.
Thu Jan 17 00:54:41 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be/be_visitor_interface/amh_rh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/interface.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Made code generation logic for AMH-skeletons and AMH-RH
consistent (and symmetric) in the amh_rh and amh_ss files.
Tue Jan 17 08:12:22 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Security.bor:
Added missing IDL build rule for SecurityReplaceable.idl
Wed Jan 16 22:46:12 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.h (ssliop_connect):
Updated this method to accept a "no protection" parameter.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp
(connect, ssliop_connect):
In the "NoProtection/EstablishTrust" case, establish a
connection using the "eNULL" cipher. This disables encryption
but allows certificate authentication to occur. Previously two
connections were used, one to authenticate over SSL and the
other to invoke requests over plain IIOP, which is clearly
undesirable.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.cpp (init):
If "NoProtection" is enabled, then add the "eNULL" cipher to the
default cipher list. This allows encryption to be disabled
while allowing certificate authentication to occur.
Wed Jan 16 20:08:39 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/PrincipalAuthenticator.h:
Cache a reference to the SecurityManager passed in as a
parameter to the constructor.
* orbsvcs/orbsvcs/Security/PrincipalAuthenticator.cpp
(authenticate, continue_authentication):
Register authenticated credentials with the SecurityManager's
"own credentials" list.
* orbsvcs/orbsvcs/Security/SecurityManager.h:
Added an "own_credentials" attribute. All credentials
authenticated by the PrincipalAuthenticator will be stored in
it.
* orbsvcs/orbsvcs/Security/SecurityManager.cpp
(principal_authenticator):
Pass a pointer to the SecurityManager to the
PrincipalAuthenticator's constructor so that the
PrincipalAuthenticator may call back some of the
SecurityManager's methods.
(own_credentials, remove_own_credentials):
Implemented these SecurityLevel2::SecurityManager methods.
(add_own_credentials):
New TAO-specific method used internally by the
PrincipalAuthenticator to register authenticated credentials
with SecurityManager's "own credentials" list.
Wed Jan 16 21:26:14 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile:
Disabled compiling PortableGroup when Minimum CORBA is
enabled.
* orbsvcs/orbsvcs/Makefile.PortableGroup:
Regenerated dependencies.
* orbsvcs/orbsvcs/PortableGroup/POA_Hooks.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Request_Dispatcher.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp:
Fixed a misuses of TAO_ENV_ARG_*.
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
Fixed subtle typo on MIOP packet segmentation.
* orbsvcs/tests/Makefile:
Added MIOP.
* tao/PortableServer/POA.cpp:
* tao/PortableServer/POA.h:
* tao/PortableServer/PortableGroup_Hooks.h:
* tao/PortableServer/PortableServerC.cpp:
* tao/PortableServer/PortableServerC.h:
* tao/PortableServer/PortableServerC.i:
* tao/diffs/PortableServerC.cpp.diff:
* tao/diffs/PortableServerC.h.diff:
* tao/diffs/PortableServerC.i.diff:
#ifdef'd out PortableGroup additions to the POA when
minimum CORBA is enabled.
Wed Jan 16 20:28:56 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Wait_Never.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Wait_Never.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup.bor:
* orbsvcs/orbsvcs/Makefile.PortableGroup:
* orbsvcs/orbsvcs/PortableGroup.dsp:
Added custom wait strategy for UIPMC to prevent any
one from waiting for a response. Previously, if
someone tried invoking a twoway using MIOP, execution
would hang until a time out. This way, the user
gets a system exception if they ever try to wait for
a response.
Wed Jan 16 19:18:14 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* performance-tests/AMI_Latency/client.cpp:
Fixed compile errors.
Wed Jan 16 13:17:04 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be_include/be_visitor_interface/interface.h:
* TAO_IDL/be/be_visitor_interface/interface.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Added method to check if a particular node is an 'AMH' node that
was added during pre-processing. This check is used to
dynamically create the amh_rh visitors in interface_s{h/s}
visitors.
Wed Jan 16 12:57:56 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
The AMH_*ResponseHandler identifier should not include the
Module:: prefix. The fix is incomplete, as I believe that the
Identifier for the implied be_interface node should have the
enclosing scope identifier, but this change makes the *C.h file
compilable.
Also fixed the operations for the implied AMH_*ResponseHandler,
they were supposed to be 'local' too.
Wed Jan 16 12:22:13 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
Fixed Fuzz errors for @file
Wed Jan 16 14:12:17 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_global.cpp:
Added initialization of the gen_amh_classes_ member.
* TAOACE.dsw:
Restored ETCL project to workspace and updated project
dependencies for this project and for CosNotifcation. My
previous checkin of these changes got clobbered someehow.
* orbsvcs/orbsvcs/CosNotification.dsp:
Somehow these settings got clobbered as well.
Wed Jan 16 12:02:40 2002 Ossama Othman <ossama@uci.edu>
* tao/PICurrent.cpp (copy):
Only perform the shallow/logical copy if the source slot table
was modified. Fixes a problem where values logically copied
from the RSC to the TSC were lost after the TSC was copied back
to the RSC, despite the fact the TSC's slot table was not
modifed. Thanks to Greg Hall <Greg.Hall@Australia.Boeing.com>
for discovering the problem.
Wed Jan 16 11:45:23 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableServer/ObjectReferenceTemplate.cpp (adapter_name):
Fixed warnings on Debian_NoInline build.
Wed Jan 16 11:38:21 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tests/ORT/server.cpp (main):
* orbsvcs/examples/ORT/Object_Factory_i.cpp:
* orbsvcs/examples/ORT/Gateway_ObjRef_Factory.h:
* orbsvcs/examples/ORT/gateway_server.cpp :
* orbsvcs/examples/ORT/server.cpp :
* orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp:
Fixed fuzz compile errors.
Wed Jan 16 11:23:04 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tests/ior_corbaloc/README (ftp):
Updated the README.
Thanks to Gerhard Voss <Gerhard_Voss@t-online.de> for
reporting that it is outdated.
Wed Jan 16 08:37:55 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* utils/nslist/nsdel.cpp:
Fixed compile errors.
Wed Jan 16 08:33:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/ETCL.bor:
Added BCB makefile for this new library
* orbsvcs/orbsvcs/CosNotification.bor:
Added ETCL and DynamicAny libraries, removed Trading
* orbsvcs/orbsvcs/Makefile.bor:
Added ETCL
* orbsvcs/tests/FaultTolerance/IOGRManipulation/Makefile.bor:
* orbsvcs/tests/FaultTolerance/IOGR/Manager.bor:
* orbsvcs/tests/FaultTolerance/IOGR/Server.bor:
Use the FTORB library instead of the FT library
* tests/Portable_Interceptors/ForwardRequest/server.bor:
* tests/Portable_Interceptors/ForwardRequest/client.bor:
Added -Gv to the TAO_IDL since PortableInterceptor.pidl now
has valuetypes.
Tue Jan 15 20:24:24 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_valuetype/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/any_op_cs.cpp:
* TAO_IDL/be_include/be_visitor_valuetype/any_op_ch.h:
* TAO_IDL/be_include/be_visitor_valuetype/any_op_cs.h:
New files that generate Any operators for value types.
For now, all that's generated is the TAO_Valuetype_Manager
template class instantiation that takes the value type
as its parameter. The TAO_Object_Manager template
instantiations for interfaces are generated along with
the Any operators, so the same approach is followed for
value types, even though Any operators for value types
are not yet supported.
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_visitor_valuetype.cpp:
* TAO_IDL/be/be_visitor_module/module.cpp:
* TAO_IDL/be/be_visitor_root/root.cpp:
* TAO_IDL/be_include/be_visitor_valuetype.h:
Modified files to create and call the visitors in the new
files above.
Tue Jan 15 17:59:46 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Vault.h:
New SSLIOP-specific (no-op) implementation of the
SecurityReplaceable::Vault interface. These files supersede the
SSLIOP_PrincipalAuthenticator.* files.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_ORBInitializer.cpp:
Register the SSLIOP-specific Vault object with the Security
Service's PrincipalAuthenticator object.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_PrincipalAuthenticator.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_PrincipalAuthenticator.h:
Removed these files. They have been superseded by the
SSLIOP_Vault* files.
* orbsvcs/orbsvcs/Security/PrincipalAuthenticator.cpp:
* orbsvcs/orbsvcs/Security/PrincipalAuthenticator.h:
Updated the PrincipalAuthenticator implementation to use the
Chain-of-Responsibility design pattern on all registered
SecurityReplaceable::Vault implementations until one is found
that recognizes the user-supplied parameters.
* orbsvcs/orbsvcs/Security/PrincipalAuthenticator_Impl.h:
Removed this file in favor of the standard
SecurityReplaceable::Vault functionality.
Tue Jan 15 16:22:48 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Use a local interface for the AMH_*ResponseHandler, that
generates *exactly* the right code for the *C.{h,i,cpp} files.
We need different visitors for the implementation class on the
*S.{h,i,cpp} files.
* TAO_IDL/be_include/be_visitor_interface.h:
* TAO_IDL/be_include/be_visitor_operation.h:
* TAO_IDL/be/be_visitor_interface.cpp:
* TAO_IDL/be/be_visitor_operation.cpp:
Enable compilation of AMH visitors by default.
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_sh.h:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.h:
* TAO_IDL/be_include/be_visitor_interface/interface_ss.h:
Improved generated AMH code. For starters the IDL compiler does
not crash while generating AMH code :-) But the generated code
does not compile yet.
Mayur and myself factored out the shared code between the
skeleton source visitors (*S.cpp files) for AMH and non-AMH
interfaces.
Also stopped the system from generating any AMH classes for
implied AMH or AMI classes.
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
Fixed warnings.
* TAO_IDL/Makefile.BE:
* TAO_IDL/Makefile.EXE:
* TAO_IDL/Makefile.FE:
Updated dependencies.
Tue Jan 15 15:55:54 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Makefile.Security (IDL_FILES):
Added the `SecurityReplaceable.idl' file to the IDL file list.
Tue Jan 15 15:46:20 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/SecurityReplaceable.idl:
Corrected typo. "Replaceable" not "Replacable."
Tue Jan 15 15:01:48 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableServer/ServerRequestInfo.cpp :
* tao/PortableServer/POA.i :
* tao/PortableServer/ObjectReferenceTemplate.h :
* tao/PortableServer/ObjectReferenceFactory.cpp :
* tao/PortableServer/ObjectReferenceTemplate.cpp :
* tao/PortableServer/IORInfo.cpp :
Corrected the usage of TAO_ENV_ARG_DECL and
TAO_ENV_ARG_PARAMETER
* tao/PortableServer/POA.h :
* tao/PortableServer/POA.cpp :
In addition to correcting the usage of TAO_ENV_ARG_DECL, added a
new protected method so that there is only a single ACE_TRY
block in TAO_POA::establish_components method.
Tue Jan 15 14:28:50 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableInterceptorC.h:
Fixed by inserting a space where needed.
Tue Jan 15 13:30:07 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be_include/be_visitor_amh_pre_proc.h:
* TAO_IDL/be_include/be_visitor_operation.h:
* TAO_IDL/be_include/be_visitor_operation/amh_sh.h:
* TAO_IDL/be_include/be_visitor_operation/amh_ss.h:
* TAO_IDL/be_include/be_visitor_operation/amh_rh_sh.h:
* TAO_IDL/be_include/be_visitor_operation/amh_rh_ss.h:
* TAO_IDL/be_include/be_visitor_interface.h:
* TAO_IDL/be_include/be_visitor_interface/amh_ch.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_rh_sh.cpp:
* TAO_IDL/be_include/be_visitor_interface/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_visitor_operation.cpp:
* TAO_IDL/be/be_visitor_operation/amh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
* TAO_IDL/be/be_visitor_operation/amh_rh_sh.cpp:
* TAO_IDL/be/be_visitor_operation/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_interface.cpp:
* TAO_IDL/be/be_visitor_interface/interface.cpp:
* TAO_IDL/be/be_visitor_interface/amh_ch.cpp:
* TAO_IDL/be/be_visitor_interface/amh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/amh_rh_sh.cpp:
* TAO_IDL/be/be_visitor_interface/amh_rh_ss.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
This is a snap-shot of the changes to facilitate parallel
working on AMH. The new files and changes to old ones is part
of a new approach to generate AMh code from the IDL-compiler.
In the new approach, only one new implied-idl node is added to
the main AST i.e. the ResponseHandler (RH) node. With this
node, code is generated in the following files:
- The Client Header (Base abstract RH class)
- The Skeleton Header (implementation RH class declaration)
- The Skeleton Source (implementation RH class definition)
In this snapshot, the code for the above is in place and there
are no compilation errors. The implementation is yet to be
tested, though. Also, in keeping with the new approach,
AMH-skeleton code is generated 'on the fly'. In the
interface_{ch/sh/ss} files, AMH_skeleton code is generated if
the be_global->generate_amh_classes () is set. Currently, this
code is commented out and the amh_{ch/sh/ss} files are not
included in the compiltation of TAO_IDL but once the code is in
place amd working, the IDL compiler will include these visitors.
Tue Jan 15 13:35:07 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableInterceptorS.h:
Committing the right one.
* tests/Portable_Interceptors/ForwardRequest/Makefile:
Added -Gv to the TAO_IDLFLAGS since PortableInterceptor.pidl now
has valuetypes.
Tue Jan 15 12:33:34 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ORB_Core.cpp:
Removed stray characters put in by mistake.
Tue Jan 15 12:28:21 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableInterceptorC.i:
* tao/PortableInterceptorC.h:
* tao/PortableInterceptorC.cpp:
Regenerated and applied patches.
Tue Jan 15 12:03:54 2002 Ossama Othman <ossama@uci.edu>
* docs/releasenotes/index.html:
Updated Security Service and SSLIOP release notes.
Tue Jan 15 14:02:04 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup.bor:
* orbsvcs/orbsvcs/PortableGroup.rc:
Added resource files for the PortableGroup library. Thanks
to Johnny Willemsen <johnny_willemsen@planet.nl> for pointing
this out.
Tue Jan 15 11:50:37 2002 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* utils/nslist/nsdel: There were 2 problems with nsdel:
1. difficult to remove subcontexts
2. not possible to remove contexts where the name.kind is not null
We've now fixe this problem so it's possible to do the following:
usage example nsdel --name com/sun/server/app1.service
usage example nsdel --name com/sun/server.context
Thanks to Paul Caffrey <pcaffrey@iel.ie> for contributing this.
Tue Jan 15 11:43:48 2002 Jeff Parsons <parsons@cs.wustl.edu>
* docs/releasenotes/index.html:
Added items to IDL compiler section about the expanded
support of value types, and about the revamped/expanded
support of the IDL #pragma directives. Also add item in the
Notification Service section about the new support of the
Extended Trader Constraint Language (ETCL) grammar for filter
construction.
Tue Jan 15 09:08:17 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tests/Portable_Interceptors/IORInterceptor/FOO_IORInterceptor.cpp:
* tests/Portable_Interceptors/IORInterceptor/FOO_IORInterceptor.h:
Added new methods to class FOO_IORInterceptor to go along with
the added methods in PortableInterceptor::IORInterceptor. Missed
committing in the first round.
Tue Jan 15 08:55:52 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ORB_Core.cpp (create_stub_object):
Fixed usage of TAO_ENV_ARG_DECL
Tue Jan 15 09:16:22 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile:
Added Makefile.ETCL to the list when Makefile>CosNotification
is added.
* orbsvcs/orbsvcs/ETCL/ETCL_Static.dsp:
Fixed path errors.
* orbsvcs/tests/Notify/lib/Notify_Test_Client.cpp:
Changed an incorrect TAO_ENV_ARG_PARAMETER to
TAO_ENV_ARG_DECL.
Tue Jan 15 13:22:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/ORT/*.bor:
Added BCB makefiles for this test
* tests/Makefile.bor:
Added new ORT test
Tue Jan 15 11:09:13 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/Makefile.bor:
Added PortableGroup_Hooks
* orbsvcs/orbsvcs/PortableGroup.bor:
Added new BCB makefile for building PortableGroup
* orbsvcs/orbsvcs/Makefile.bor
Added PortableGroup
Tue Jan 15 02:51:04 2002 Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/RTCP.cpp: Return 0 in
TAO_AV_RTCP_Callback::handle_destroy().
Tue Jan 15 07:35:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Makefile.bor:
Removed IORInfo
* tao/PortableServer/Makefile.bor:
Added IORInfo, ObjectReferenceFactory and ObjectReferenceTemplate
Mon Jan 14 22:08:46 2002 Ossama Othman <ossama@uci.edu>
From Bruce Trask <trask_b@ociweb.com>
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Factory.h:
Use the ACE_STATIC_SVC_DECLARE_EXPORT macro instead of
ACE_STATIC_SVC_DECLARE to force the static service descriptor to
be exported on Windows, and thus allow it to be used when the
TAO SSLIOP pluggable protocol is linked statically.
Tue Jan 15 00:01:09 2002 Rob Ruff <rruff@scires.com>
Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/UDP.:
* orbsvcs/orbsvcs/AV/UDP.cpp: Fix memory leaks of address
and control_address.
* orbsvcs/orbsvcs/AV/RTCP.cpp: Fix TAO_AV_RTCP_Object::destroy().
Call send_report() from TAO_AV_RTCP_Callback::handle_stop() and
TAO_AV_RTCP_Callback::handle_destroy().
Mon Jan 14 23:51:54 2002 Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/tests/AVStreams/server_discovery: Removed.
Depends on files from the old mpeg player which is no longer
in repository.
Mon Jan 14 19:53:18 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableServer/IORInfo.cpp (current_factory):
Was a returning a void value. Fixed it.
* tao/PortableServer/POA.cpp (establish_components):
Modified variable i as variable j to satisfy win.
Also modified a const variable as non-const.
Mon Jan 14 19:37:03 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/PortableServer/TAO_PortableServer_Static.dsp (SOURCE):
* tao/PortableServer/TAO_PortableServer.dsp:
Updated to add IORInfor, ObjectReferenceTemplate and
ObjectReferenceFactory.
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
Updated to remove IORInfo
Mon Jan 14 18:08:50 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ORB_Core.h (TAO_ORB_Core):
Used the correct form of TAO_ENV_ARG_DECL
Mon Jan 14 17:56:09 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile.CosNotification:
* orbsvcs/orbsvcs/Makefile.ETCL:
Updated dependencies.
Mon Jan 14 15:25:25 2002 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_interface_fwd/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_valuetype/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_valuetype_fwd/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype_fwd/cdr_op_ci.cpp:
Fixed syntax error generated in the CDR operators for
` valuetypes. There was no blank after the export macro name.
* TAO_IDL/be/be_codegen.cpp:
* TAO_IDL/be/be_global.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_valuetype.cpp:
Cosmetic fixes
Mon Jan 14 15:19:05 2002 Carlos O'Ryan <coryan@uci.edu>
* tao/PortableInterceptorC.h:
Fixed compilation problem due to bugs in IDL compiler.
* tao/PortableServer/ObjectReferenceTemplate.cpp:
Removed bogus #include for ObjectReferenceTemplate.i, the file
does not exist.
* tao/Makefile:
* tao/BiDir_GIOP/Makefile:
* tao/Domain/Makefile:
* tao/DynamicAny/Makefile:
* tao/DynamicInterface/Makefile:
* tao/IFR_Client/Makefile:
* tao/IORManipulation/Makefile:
* tao/IORTable/Makefile:
* tao/PortableServer/Makefile:
* tao/RTCORBA/Makefile:
* tao/RTPortableServer/Makefile:
* tao/SmartProxies/Makefile:
* tao/Strategies/Makefile:
* tao/TypeCodeFactory/Makefile:
Update dependencies.
Mon Jan 14 15:03:53 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* tao/ORB_Core.cpp:
Removed include of IORInfo.h
Mon Jan 14 14:41:17 2002 Priyanka Gontla <pgontla@ece.uci.edu>
The following set of changes are wrt to Object Reference Template.
* tao/IORInfo.h:
* tao/IORInfo.cpp:
Moved these files to PortableServer directory to continue
keeping the TAO library independent of PortableServer.
* tao/Exception.cpp:
Added a new minor code to the OBJ_ADAPTER_TABLE.
The description of the minor code is "Exception in
IORInterceptor::components_established in call
to POA::create_POA "
* tao/ClientRequestInfo.cpp (get_service_context_i):
Changed the minor code from 23 to 26 according to the ORT
spec.
* tao/ORB_Core.h :
* tao/ORB_Core.i :
* tao/ORB_Core.cpp :
Removed the include of IORInfo.h since ORB_Core doesnt use
IORInfo anymore.
Added support for the new ORB Configuration Options:
-ORBId: is to set an Id to the ORB as the name suggests.
-ORBServerId: is to uniquely identify a server.
-ORBListenEndpoints: is similar to ORBEndPoint option.
The ORBEndpoint Option will be deprecated later.
-ORBNoProprietaryActivation: is to set a glabal flag so
that none of the ORB's proprietary can be used.
Added a new method set_endpoint_helper for code reusing purposes
since the two ORB options -ORBEndpoint and -ORBListenEndPoints
are the same. This might not be needed later when the
-ORBEndpoint is deprecated totally.
New accessor method for the ORBServerId that was passed
using the -ORBServerId Option:
const char *server_id (void) const;
Added another accessor method is to get the underlying
transport cache:
TAO_Transport_Cache_Manager *transport_cache (void);
Modified the implementation of create_stub_object method.
The establish_components method should now be invoked
every time a new POA is created and hence should be
invoked even before the create_stub_object is invoked.
Hence the implementation of TAO_ORB_Core::create_stub_object
now doesnt involve invoking the establish components method.
The establish_components method is now modified and moved to
TAO_POA.
Added a new method open (TAO_ENV_ARG_DECL) to set endpoints for
listening.
In the TAO_ORB_Core::run method, the Environment variable is
going to be used. So, changed TAO_ENV_ARG_DECL_NOT_USED to
TAO_ENV_ARG_DECL. Also, invoke the new TAO_ORB_Core::open method
in here. We donot want to setup the listening points
when the RootPOA is created but now. One of the main features of
ORT is the ability to set a new factory (and possibly point the
ior to another endpoint) with the help of interceptors.
If we open an endpoint when the RootPOA is created, then it
would endup costly if another endpoint has to be
opened during run time (i.e. because of the interceptors being
used). So, we are going to open the endpoints during the run
time rather than during the RootPOA creation.
Private variables: server_id_, open_lock_, open_called_;
* tao/PortableServer/IORInfo.h:
* tao/PortableServer/IORInfo.h:
Moved the files from tao to PortableServer. And, added new
methods: manager_id, state, adapter_template, current_factory
according to the ORT spec.
Modified the implementation of add_ior_component and
add_ior_component_to_profile to invoke
TAO_POA::save_ior_component and
save_ior_component_and_profile_id instead of adding them
immediately for reasons explained later.
* tao/PortableServer/ObjectReferenceTemplate.h :
* tao/PortableServer/ObjectReferenceTemplate.cpp :
* tao/PortableServer/ObjectReferenceFactory.h :
* tao/PortableServer/ObjectReferenceFactory.cpp :
New files for the ObjectReferenceFactory and
ObjectReferenceTemplate classes.
* tao/RTPortableServer/RT_POA.i (create_reference_with_priority):
Modified the call create_reference_i and
create_reference_with_id_i to go along with the
modified signatures of the respective methods.
* tao/PortableServer/ServerRequestInfo.h:
* tao/PortableServer/ServerRequestInfo.cpp:
New methods server_id, orb_id and adapter_name from the ORT
spec. Accessor methods to get the server_id of the server
( passed via -ORBServerId option), orb_id ( ORBId value that
is passed to the ORB_init call) and the name of the related
Object Adapter.
* tao/PortableServer/POAManager.h:
* tao/PortableServer/POAManager.cpp:
New method adapter_manager_state_changed which calls all
the registered interceptor's adapter_manager_state_changed
methods. Included new header files as needed.
* tao/PortableServer/Object_Adapter.cpp (open):
As explained in ORB_Core changes, we are going to open
the default resources during run time and not during RootPOA
creation. So, removed the invocation leading to opening the
endpoints.
* tao/PortableServer/POA.cpp :
This file has a big bunch of changes.
Included new header files as needed.
New methods:
set_obj_ref_factory: Public method to set the private
variable: TAO_ObjectReferenceFactory *obj_ref_factory_
The value of this variable is initially the same as
TAO_ObjectReferenceTemplate *obj_ref_template_.
The value of obj_ref_factory_ can be reset by the
TAO_IOR_Info::current_factory method.
tao_establish_components: Helper method for
establish_components. Instantiates the needed variables and
calls establish_components.
adapter_name: Returns the adapter_name of an object_adapter
(POA).
adapter_name_i: Helper method for adapter_name.
get_adapter_template:
set_adapter_template:
get_obj_ref_factory:
set_obj_ref_factory: Accessor methods to ort_template_ and
obj_ref_factory_ member variables related to a POA.
get_policy_list:
set_policy_list:
get_mprofile:
set_mprofile: Accessor methods to get policy_list_ and
mprofile_ respectively. TAO_IORInfo needs these values.
save_ior_component:
save_ior_component_and_profile_id:
According to the ORT spec, the Interceptor's
establish_components method should be invoked each time a new
POA is created. And, the establish_components method is where
the IORInfo can get hold of the ior components that are to be
added to the mprofiles. But, we donot add the components to the
profile when the POA is created but rather when the stub object is
to be created. So, to solve this, we save the tagged component
and profile_id that we get via the establish_components method
and use them later when we are actually creating the stub
object. These two methods help save the values, as the name of
the method suggests.
tao_add_ior_component:
tao_add_ior_component_to_profile: Methods to call the
add_tagged_component of all the registered interceptors.
get_adapter_state:
set_adapter_state: Accessor methods to the POA state which could
be in one of HOLDING, ACTIVE, DISCARDING, INACTIVE and
NON_EXISTENT states.
adapter_state_changed: Method to notify the IOR Interceptors
when there is a change in the state of the POA not related to the
POA Manager.
invoke_key_to_object: The TAO_ObjectReferenceFactory::make_object
creates the object references by default (ie. unless the factory
is changed with the help of interceptors). It invokes the POA's
invoke_key_to_object method for the same purpose. This method
gets all the required values and invokes the key_to_object which
actually creates the object reference.
get_manager_id: Accessor method to get the manager id.
The constructor of TAO_POA is also changed. Each POA has an
ObjectReferenceTemplate * and ObjectReferenceFactory * member
variables. The initial values of the ObjectReferenceTemplate is
set in the TAO_POA constructor. The initial value of
obj_ref_factory_ is the same as that of ort_template_. While
the value of ort_template_ is remains the same, the value of the
obj_ref_factory_ can be changed with the help of the
interceptors.
According to the ORT specification, the interceptor's
establish_components method needs to be invoked each time any
new POA is created. By invoking the tao's
establish_components method from the constructor itself, we
are making sure that this method is called for all the POA's
including the RootPOA.
Changed the order in which the private variables are
instantiated in the constructor.
Modified the signature of create_reference_i and
create_reference_with_id_i to not have the priority as
an argument. Where needed, we can get the priority value using
the cached_policies_ variable.
Modified their implementation to call the this->obj_ref_factory_
's make_object method instead of calling the key_to_object
method directly. Made changes accordingly. The implementation of
servant_to_reference method is also modified similarly.
This is because the ObjectReferenceFactory associated with the
POA is the one that is supposed to create the object references.
To generalize between the default case and the case in which the
object reference factory is changed with the help of interceptors,
all the methods that end up creating a object reference (by
invoking key_to_object method) now end up invoking the
associated object reference factory's make_object method. If the
default value of the obj_ref_factory_ is not changed, the
TAO_ObjectReferenceFactory::make_object is invoked. If the value
of obj_ref_factory_ is changed, the make_object of that
particular class in invoked.
Also, in the servant_to_reference method, instead of setting
value of the priority variable to
this->cached_policies_.server_priority (), am setting it to
TAO_INVALID_PRIORITY. This is because when the control comes to
this method, this->cached_policies_ is nil. By setting it to
TAO_INVALID_PRIORITY doesnt hurt since the priority is actually
set in servant_to_system_id method.
Added TAO_ObjectReferenceFactory and TAO_ObjectReferenceTemplate
as friend classes to TAO_POA class.
* tao/PortableServer/Makefile:
Added new files.
IORInfo
ObjectReferenceTemplate
ObjectReferenceFactory
* tao/PortableInterceptorC.cpp:
* tao/PortableInterceptorC.h:
* tao/PortableInterceptorC.i:
* tao/PortableInterceptorS.h:
Regenerated and applied patches. The diffs are generated and
placed in diffs directory.
* tao/PortableInterceptor.pidl:
Modified according to the ORT specification.
* tao/Makefile:
Removed IORInfo since its now moved to PortableServer. Updated
dependencies.
* tao/BiDir_GIOP/Makefile:
* tao/Domain/Makefile:
* tao/DynamicAny/Makefile:
* tao/DynamicInterface/Makefile:
* tao/IFR_Client/Makefile:
* tao/IORManipulation/Makefile:
* tao/IORTable/Makefile:
Updated dependencies.
* orbsvcs/examples/ORT/README :
* orbsvcs/examples/ORT/Makefile :
* orbsvcs/examples/ORT/server.cpp :
* orbsvcs/examples/ORT/client.cpp :
* orbsvcs/examples/ORT/Gateway.idl :
* orbsvcs/examples/ORT/sum_server.idl :
* orbsvcs/examples/ORT/sum_server_i.h :
* orbsvcs/examples/ORT/sum_server_i.cpp :
* orbsvcs/examples/ORT/Server_IORInterceptor.cpp :
* orbsvcs/examples/ORT/Server_IORInterceptor.h :
* orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp :
* orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.h :
* orbsvcs/examples/ORT/Gateway_i.h :
* orbsvcs/examples/ORT/Gateway_i.cpp :
* orbsvcs/examples/ORT/Server_IORInterceptor_ORBInitializer.cpp :
* orbsvcs/examples/ORT/Object_Factory_i.h :
* orbsvcs/examples/ORT/Object_Factory_i.cpp :
* orbsvcs/examples/ORT/Gateway_ObjRef_Factory.h :
* orbsvcs/examples/ORT/Gateway_ObjRef_Factory.cpp :
Example to show how ORT can be used.
* tests/ORT/README:
* tests/ORT/Makefile:
* tests/ORT/server.cpp:
* tests/ORT/ORT_test.idl:
* tests/ORT/ORT_test_IORInterceptor.cpp:
* tests/ORT/ORT_test_IORInterceptor.h:
* tests/ORT/ORT_test_IORInterceptor_ORBInitializer.cpp:
* tests/ORT/ORT_test_IORInterceptor_ORBInitializer.h:
* tests/ORT/ORT_test_i.cpp:
* tests/ORT/ORT_test_i.h:
* tests/ORT/client.cpp:
Test for the ORT changes.
Mon Jan 14 14:46:54 2002 Carlos O'Ryan <coryan@uci.edu>
* docs/tutorials/Quoter/Event_Service/Makefile:
* docs/tutorials/Quoter/RT_Event_Service/Makefile:
Update dependencies.
Mon Jan 14 14:44:31 2002 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/Makefile.av:
The dependencies for AV/md5c.c were not generated properly
because the Makefile assumed all sources were .cpp files.
Tue Jan 15 00:30:30 2002 Boris Kolpackov <bosk@ipmce.ru>
* TAO_IDL/be/be_valuetype.cpp:
Moved implementation to client stubs for _var and _out classes.
Mon Jan 14 15:35:13 2002 Rob Ruff <rruff@scires.com>
Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/AV_Core.h:
* orbsvcs/orbsvcs/AV/AV_Core.cpp: Add remove_acceptor(), remove_connector(),
get_control_flowname() methods.
* orbsvcs/orbsvcs/AV/UDP.h: Add close() method.
* orbsvcs/orbsvcs/AV/UDP.i: Add close() method.
* orbsvcs/orbsvcs/AV/UDP.cpp: Improve cleanup in TAO_AV_UDP_Connector
TAO_AV_UDP_Flow_Handler, and TAO_AV_UDP_Acceptor classes. Close
socket in TAO_AV_UDP_Flow_Handler destructor.
* orbsvcs/orbsvcs/AV/AVStreams_i.cpp: Improve cleanup in destructors
and destroy() method. TAO_Tokenizer::operator[] returns
a const char * instead of dynamically allocated char *.
In TAO_StreamEndpoint::destroy(), call destroy() on protocol
objects AFTER calling remove_connector() on the AV core.
* orbsvcs/orbsvcs/AV/TCP.h: Add virtual destructor to TAO_AV_TCP_Flow_Handler.
* orbsvcs/orbsvcs/AV/TCP.cpp: Add destructor to TAO_AV_TCP_Flow_Handler, improve cleanup in other classes.
* orbsvcs/orbsvcs/AV/Transport.h: Add close() methods to
TAO_AV_Connector_Registry and TAO_AV_Acceptor_Registry.
* orbsvcs/orbsvcs/AV/Transport.cpp: Add close() methods to
TAO_AV_Connector_Registry and TAO_AV_Acceptor_Registry.
Return result of reactor()->cancel_timer() in
TAO_AV_Flow_Handler::cancel_timer().
* orbsvcs/orbsvcs/AV/RTCP.cpp: In TAO_AV_RTCP_Object::destroy(),
delete this.
* orbsvcs/orbsvcs/AV/RTP.cpp: In TAO_AV_RTP_Object::destroy(),
delete this.
* orbsvcs/orbsvcs/AV/FlowSpec_Entry.h: Make operator[] return
const char *. Add variables for cleanup.
* orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp: Add variables for cleanup.
* orbsvcs/orbsvcs/AV/Endpoint_Strategy_T.cpp: Memory leak fixes.
Comment out calls to activate_with_poa().
* orbsvcs/tests/AVStreams/Asynch_Three_Stage/receiver.cpp:
Do not call orb->shutdown(), instead set a flag.
Mon Jan 14 14:04:36 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile.PortableGroup: Regenerated
dependencies.
Mon Jan 14 13:41:11 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/orbsvcs/ETCL/ETCL.dsp:
* orbsvcs/orbsvcs/ETCL/ETCL_Static.dsp:
* orbsvcs/orbsvcs/ETCL/ETCL.rc:
* orbsvcs/orbsvcs/ETCL/ETCL_Constraint.inl:
* orbsvcs/orbsvcs/ETCL/ETCL_Constraint_Visitor.h:
* orbsvcs/orbsvcs/ETCL/ETCL_Interpreter.cpp:
* orbsvcs/orbsvcs/ETCL/ETCL_Interpreter.h:
* orbsvcs/orbsvcs/ETCL/ETCL_y.cpp.diff:
* orbsvcs/orbsvcs/ETCL/ETCL_y.h.diff:
New files added to finish the implementation of the
Extended Trader Constraint Language library that was
begun by Carlos O'Ryan <coryan@uci.edu>. Thanks to
Chad Elliott <elliott_c@ociweb.com> for supplying
ETCL_Static.dsp.
* orbsvcs/orbsvcs/ETCL/ETCL.ll:
* orbsvcs/orbsvcs/ETCL/ETCL.yy:
* orbsvcs/orbsvcs/ETCL/ETCL_Constraint.cpp:
* orbsvcs/orbsvcs/ETCL/ETCL_Constraint.h:
* orbsvcs/orbsvcs/ETCL/ETCL_l.cpp:
* orbsvcs/orbsvcs/ETCL/ETCL_l.cpp.diff:
* orbsvcs/orbsvcs/ETCL/ETCL_y.cpp:
* orbsvcs/orbsvcs/ETCL/ETCL_y.h:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.h:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.h:
* orbsvcs/orbsvcs/Notify/Notify_Filter_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Filter_i.h:
* orbsvcs/orbsvcs/Makefile.CosNotification:
* orbsvcs/orbsvcs/Makefile.ETCL:
* TAOACE_Static.dsw:
Changes to ETCL and Notification Service files to complete
the implementation of the ETCL library and to make the
Notification Service use this library to filter events,
instead of using the Trading Service's Trader Constraint
Language, as it did previously.
* orbsvcs/tests/Notify/Notify_Tests.dsw:
* orbsvcs/tests/Notify/Basic/Simple.dsp:
* orbsvcs/tests/Notify/lib/Notify_Test_Client.cpp:
* orbsvcs/tests/Notify/lib/Notify_Test_Client.h:
Changes to Notification Service test coce submitted by
Chad Elliott <elliott_c@ociweb.com>.
Mon Jan 14 13:09:31 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp:
Added .in() to instances of TAO_String_Manager and
TAO_Object_Manager when used in the rhs of an expression,
and made other cosmetic changes.
* TAO_IDL/be/be_visitor_valuetype/valuetype_obv_ch.cpp:
Removed unused local variable in visit_valuetype().
Mon Jan 14 10:01:12 2002 Ossama Othman <ossama@uci.edu>
* tao/PortableServer/PortableServerC.i
(tao_PortableServer_IdUniquenessPolicy_narrow):
* tao/diffs/PortableServerC.i.diff:
Fixed incorrect use of TAO_ENV_ARG_PARAMETER where
TAO_ENV_ARG_DECL was expected.
* tao/PortableServer/POA.cpp (reference_to_ids):
Fixed incorrect use of PortableServer::IDs::_nil(). There is no
such thing. Zero is the correct value.
Mon Jan 14 10:32:09 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/tests/FaultTolerance/IOGRManipulation/IOGRTest.dsp:
* orbsvcs/tests/FaultTolerance/IOGR/Manager.dsp:
* orbsvcs/tests/FaultTolerance/IOGR/server.dsp: Fixed the
libraries that are linked to.
Mon Jan 14 10:25:22 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/Fault_Tolerance.dsp (RSC): Added the right
library for linking in the debug builds.
Mon Jan 14 09:34:35 2002 Chad Elliott <elliott_c@ociweb.com>
* tests/IDL_Test/including.idl:
Prefix the enum value FE with TAO_ to avoid a conflict on HP-UX
10.20.
Mon Jan 14 09:27:44 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile.PortableGroup: Added missing
PortableGroup directory for POA_Hooks.
Mon Jan 14 09:19:43 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* performance-tests/AMI_Latency/client.cpp:
Fixed compile error.
Mon Jan 14 08:49:31 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* orbsvcs/orbsvcs/PortableGroup.idl: Changed include
specification to work under Win32 release builds.
Mon Jan 14 09:52:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Makefile.bor:
Added Request_Dispatcher
* orbsvcs/tests/Makefile.bor:
Added new Miop directory
* orbsvcs/tests/Miop/Makefile.bor:
Added new BCB makefile
* orbsvcs/orbsvcs/FT_ORB.bor:
Added new BCB makefile for this library
* orbsvcs/orbsvcs/FaultTolerance.bor:
Updated makefile to use the new FT_ORB library
* orbsvcs/orbsvcs/Makefile.bor:
Added new FT_ORB.bor makefile
Sun Jan 13 21:50:22 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* tao/TAO_Static.dsp: Added Request_Dispatcher.{cpp,h} to the
file listing.
Sun Jan 13 21:24:59 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* tao/Request_Dispatcher.cpp: Fixed ACE_CHECK typo. Thanks to
Venkita for catching it.
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Loader.h:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.h:
Cleaned up two comments.
Sun Jan 13 18:23:11 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/Makefile:
Regenerated dependencies.
Sun Jan 13 16:19:24 2002 Ossama Othman <ossama@uci.edu>
* orbsvcs/orbsvcs/Security/Security_ORBInitializer.cpp (pre_init):
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp
(pre_init):
Corrected erroneous comments.
Sun Jan 13 15:22:10 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* docs/releasenotes/index.html (MIOP): Added a section for
MIOP.
Sun Jan 13 14:35:08 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
* performance-tests/AMI_Latency/client.cpp: Rearranged the code
a bit to perform better in single-threaded configurations.
Thanks to Sean McCauliff <seanm@Narus.com> for reporting this.
Sun Jan 13 13:02:41 2002 Frank Hunleth <fhunleth@cs.wustl.edu>
* TAOACE.dsw:
* orbsvcs/orbsvcs/PortableGroup.dsp
Added PortableGroup (MIOP) to the workspace.
* orbsvcs/orbsvcs/Makefile:
* orbsvcs/orbsvcs/Makefile.PortableGroup:
Build the PortableGroup code now.
* orbsvcs/orbsvcs/PortableGroup.idl:
* orbsvcs/orbsvcs/mgm.idl:
* orbsvcs/orbsvcs/miop.idl:
Added new IDL from the MIOP specification:
* tao/IOP.pidl:
* tao/corbafwd.h:
Added MIOP specification tag identifiers. These need to be
updated to OMG specified numbers as soon as they come out.
* orbsvcs/orbsvcs/PortableGroup/README:
Readme for the MIOP and PortableGroup code.
* orbsvcs/orbsvcs/PortableGroup/POA_Hooks.cpp:
* orbsvcs/orbsvcs/PortableGroup/POA_Hooks.h:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Acceptor_Registry.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Acceptor_Registry.h:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Loader.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Loader.h:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_ORBInitializer.h:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Request_Dispatcher.cpp:
* orbsvcs/orbsvcs/PortableGroup/PortableGroup_Request_Dispatcher.h:
* orbsvcs/orbsvcs/PortableGroup/Portable_Group_Map.cpp:
* orbsvcs/orbsvcs/PortableGroup/Portable_Group_Map.h:
* orbsvcs/orbsvcs/PortableGroup/portablegroup_export.h:
PortableGroup implementation. Includes hooks to handle
new POA methods to associate group references with normal
references, dispatch code based on group ID, and code to
dynamically open multicast endpoint acceptors when association
is made.
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.i:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connection_Handler.i:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Endpoint.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Endpoint.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Endpoint.i:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Factory.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Factory.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Profile.i:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.i:
UIPMC (Unreliable IP MultiCast) pluggable protocol
implementation.
* orbsvcs/tests/Miop/README:
README for MIOP tests. Currently just describes the
McastHello test.
* orbsvcs/tests/Miop/McastHello/Makefile:
* orbsvcs/tests/Miop/McastHello/Makefile.bor:
* orbsvcs/tests/Miop/McastHello/McastHello.cpp:
* orbsvcs/tests/Miop/McastHello/McastHello.dsw:
* orbsvcs/tests/Miop/McastHello/McastHello.h:
* orbsvcs/tests/Miop/McastHello/README:
* orbsvcs/tests/Miop/McastHello/Test.idl:
* orbsvcs/tests/Miop/McastHello/client.bor:
* orbsvcs/tests/Miop/McastHello/client.conf:
* orbsvcs/tests/Miop/McastHello/client.cpp:
* orbsvcs/tests/Miop/McastHello/client.dsp:
* orbsvcs/tests/Miop/McastHello/run_test.pl:
* orbsvcs/tests/Miop/McastHello/server.bor:
* orbsvcs/tests/Miop/McastHello/server.conf:
* orbsvcs/tests/Miop/McastHello/server.cpp:
* orbsvcs/tests/Miop/McastHello/server.dsp:
Added a simple unit test to try out multicast
request generation, transmission, reception,
and dispatch.
* tao/CORBALOC_Parser.cpp:
Added check to allow "miop" corbaloc specifiers.
* tao/GIOP_Message_Base.cpp:
Added call to request dispatcher to strategize how
requests are dispatched to the POA. For MIOP, a
request be identified by a GroupId and be dispatched
to one or more ObjectKeys.
* 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:
Moved GIOP 1.2 target address spec demarshal code
to Tagged_Profile.*, so that the TAO_Tagged_Profile could
know what kind of addressing mode it was actually
representing. Previously, it was always assumed that
TAO_Tagged_Profile contained an object key. Now, with
MIOP, it is possible for requests to not have ObjectKeys
in their target specifiers. Instead, they have a profile
that has a GroupID embedded within it.
* tao/Tagged_Profile.cpp:
* tao/Tagged_Profile.h:
* tao/Tagged_Profile.i:
Added logic to unmarshal target specifications from
GIOP_Message_Generator_Parser*. Note that
TAO_Tagged_Profile is only used to handle the target
specification field and was specialized for this
purpose before this change - despite what it's name
may imply.
* tao/IIOP_Acceptor.cpp:
* tao/Strategies/DIOP_Acceptor.cpp:
* tao/Strategies/SHMIOP_Acceptor.cpp:
Fixed debug text to indicate the right method name.
* tao/Makefile:
Added Request_Dispatcher and updated dependencies.
* tao/Profile.cpp:
* tao/Profile.h:
* tao/Profile.i:
* tao/Stub.cpp
* tao/Stub.h
* tao/Stub.i
* tao/Invocation.cpp:
Changes to maintain the GIOP 1.2 target addressing mode
in the profile as opposed to the stub. This is the needed
since the target addressing mode is decided upon based on
the profile. For example, a UIPMC profile needs to use
the "profile" addressing mode, since it does not have an
object key. Additionally, if a remote ORB sends an
addressing mode exception back, it should only affect the
current profile as opposed to all profiles on a stub, since
those profiles might go to some other ORB.
* tao/ORB_Core.cpp:
* tao/ORB_Core.h:
* tao/ORB_Core.i:
Added request dispatcher strategy and hooks for the
PortableGroup library to replace functionality in the
PortableServer library.
* tao/Request_Dispatcher.cpp:
* tao/Request_Dispatcher.h:
Default request dispatcher to send requests to the POA
based on their ObjectKey. (Replaced when the
PortableGroup library is active.)
* tao/TAO.dsp:
Added Request_Dispatcher.{cpp,h}.
* tao/TAO_Server_Request.cpp:
Added missing this-> to conform to ACE standard.
* tao/orbconf.h:
Added MIOP version definitions.
* tao/PortableServer/POA.cpp:
* tao/PortableServer/POA.h:
Added methods to forward processing of the new group
functionality introduced by the MIOP specification.
* tao/PortableServer/PortableGroup_Hooks.cpp:
* tao/PortableServer/PortableGroup_Hooks.h:
Base class to implementing the PortableGroup functionality.
* tao/PortableServer/TAO_PortableServer.dsp:
Added PortableGroup_Hooks.{cpp,h}.
* tao/BiDir_GIOP/Makefile:
* tao/Domain/Makefile:
* tao/DynamicAny/Makefile:
* tao/DynamicInterface/Makefile:
* tao/IFR_Client/Makefile:
* tao/IORManipulation/Makefile:
* tao/IORTable/Makefile:
* tao/PortableServer/Makefile:
* tao/RTCORBA/Makefile:
* tao/RTPortableServer/Makefile:
* tao/SmartProxies/Makefile:
* tao/Strategies/Makefile:
* tao/TypeCodeFactory/Makefile:
Regenerated dependencies.
* tao/PortableServer/PortableServer.pidl:
* tao/PortableServer/PortableServerC.cpp:
* tao/PortableServer/PortableServerC.h:
* tao/PortableServer/PortableServerC.i:
* tao/diffs/PortableServerC.cpp.diff:
* tao/diffs/PortableServerC.h.diff:
* tao/diffs/PortableServerC.i.diff:
Updated the POA with the group reference association
methods introduced by the MIOP specification.
Sun Jan 13 10:52:03 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/tests/FaultTolerance/IOGManpulation/Makefile: Updated
dependencies.
* orbsvcs/tests/FaultTolerance/IOGManpulation/IOGRTest.cpp: Fixed
a compilation error.
Sun Jan 13 10:33:18 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/Makefile: Added an FTORB option.
* orbsvcs/tests/FaultTolerance/IOGR/Makefile: Updated
dependencies.
Sun Jan 13 09:35:31 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* TAOACE_Static.dsw (Project): Added FT_ORB.dsp.
Sun Jan 13 09:03:25 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/worker.h:
* tests/Two_Objects/server.cpp:
Fixed compile errors on SunCC51.
Sat Jan 12 21:45:31 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/FT_ORB.dsp (RSC): Added a new dsp file
* orbsvcs/orbsvcs/Fault_Tolerance.dsp: Made some slight changes.
* orbsvcs/orbsvcs/orbsvcs.dsw:
* orbsvcs/orbsvcs/orbsvcs_static.dsw: Added the new dsp file to
the workspace.
Sat Jan 12 21:14:31 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* orbsvcs/orbsvcs/FT_CORBA_ORB.idl: A new file that contains
additions only to the ORB core. This would be good for a variety
of reasons. Some point in time, users would like to have only
the FT ORB features loaded without the service layer. This
should be useful for such cases. An excellent example is when
the Heartbeats are going to be implemented. Regular users may
need that without any extra stuff, like Notification, DynamicAny
etc.
* orbsvcs/orbsvcs/FT_CORBA.idl: Has only the service layer
interfaces.
* orbsvcs/orbsvcs/Makefile.FTORB: A new file for the TAO_FTORB
library.
* orbsvcs/orbsvcs/Makefile.FaultTolerance: Updated this file.
* orbsvcs/orbsvcs/Makefile: Added the new Makefile.
* orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.h:
* orbsvcs/orbsvcs/FaultTolerance/FT_ORBInitializer.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_PolicyFactory.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_Policy_i.h:
* orbsvcs/orbsvcs/FaultTolerance/FT_Service_Callbacks.h: Included
FT_CORBA_ORBC.h.
* orbsvcs/tests/FaultTolerance/IOGR/Makefile:
* orbsvcs/tests/FaultTolerance/IOGRManipulation/Makefile: Updated
the file to include the TAO_FTORB library.
* orbsvcs/tests/FaultTolerance/IOGR/svc.conf: Used the new library
to load.
Sat Jan 12 10:46:47 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/worker.h:
Fixed compile error on Fuzz builds.
Sat Jan 12 09:46:00 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/server.cpp:
* tests/Two_Objects/First_i.cpp:
* tests/Two_Objects/Second_i.cpp:
* tests/Two_Objects/Second_i.h:
* tests/Two_Objects/Object_Factory_i.cpp:
Fixed compile errors on certain builds.
Sat Jan 12 13:06:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Makefile.bor:
Added new Two_Obects directory to BCB makefile
Fri Jan 11 17:36:22 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/orbconf.h: Removed the #if defined clause for the
TAO_NAMESPACE definition. Now TAO_NAMESPACE will define
namespace by default with no conditionality associated. The
macro has been left behind for backward compatibility. This
shoudl fix the LynxOS builds.
Fri Jan 11 12:28:48 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* orbsvcs/tests/Security/Makefile (DIRS):
Added MT_SSLIOP to DIRS section.
Fri Jan 11 07:50:41 2002 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/performance-tests/EC_Colocated_Latency/POA_Destroyer.h:
Fixed some Fuzz warnings.
Fri Jan 11 09:53:41 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Makefile:
Added entry for Two_Objects test.
Thu Jan 10 17:43:22 2002 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/Makefile.RTCORBAEvent:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Dispatching.h:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Dispatching.inl:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Dispatching.cpp:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Factory.h:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Factory.inl:
* orbsvcs/orbsvcs/Event/EC_RTCORBA_Factory.cpp:
Add new dispatching strategy based on RT-CORBA. Still
work-in-progress.
* orbsvcs/performance-tests/EC_Colocated_Latency/Makefile:
* orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/Consumer.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/POA_Destroyer.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/POA_Destroyer.inl:
* orbsvcs/performance-tests/EC_Colocated_Latency/POA_Destroyer.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/Receive_Task.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/Receive_Task.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/Send_Task.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/Send_Task.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/Servant_var.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/Servant_var.inl:
* orbsvcs/performance-tests/EC_Colocated_Latency/Servant_var.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.h:
* orbsvcs/performance-tests/EC_Colocated_Latency/Supplier.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/driver.cpp:
* orbsvcs/performance-tests/EC_Colocated_Latency/ec.supplier_filter_null.conf:
* orbsvcs/performance-tests/EC_Colocated_Latency/ec.supplier_filter_per_supplier.conf:
* orbsvcs/performance-tests/EC_Colocated_Latency/run_supplier_filtering.sh:
Add new performance test to measure latency in the colocated
case.
Thu Jan 10 12:48:02 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/worker.cpp:
* tests/Two_Objects/worker.h:
Fixed compile errors.
Thu Jan 10 12:13:28 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* tests/Two_Objects/Two_Objects.idl:
* tests/Two_Objects/server.cpp:
* tests/Two_Objects/client.cpp:
* tests/Two_Objects/worker.h:
* tests/Two_Objects/worker.cpp:
* tests/Two_Objects/First_i.cpp:
* tests/Two_Objects/First_i.h:
* tests/Two_Objects/Second_i.cpp:
* tests/Two_Objects/Second_i.h:
* tests/Two_Objects/Object_Factory_i.h:
* tests/Two_Objects/Object_Factory_i.cpp:
* tests/Two_Objects/Two_Objects.dsw:
* tests/Two_Objects/server.dsp:
* tests/Two_Objects/client.dsp:
* tests/Two_Objects/run_test.pl:
* tests/Two_Objects/Makefile:
* tests/Two_Objects/Makefile.bor:
* tests/Two_Objects/server.bor:
* tests/Two_Objects/client.bor:
* tests/Two_Objects/README:
Created a new test for bug fix 575. This is a test to show
that there can be concurrent upcalls to two objects in the
same POA on the same connection.
Thu Jan 10 11:53:22 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/GIOP.pidl: Added come comments.
* tao/GIOPC.h:
* tao/GIOPC.cpp:
* tao/GIOPC.i (Version_var): Added GIOP::Version_var to the
generated code.
* tao/diffs/GIOPC.cpp.diff:
* tao/diffs/GIOPC.h.diff:
* tao/diffs/GIOPC.i.diff:
* tao/diffs/GIOPS.cpp.diff:
* tao/diffs/GIOPS.h.diff:
* tao/diffs/GIOPS.i.diff:
* tao/diffs/GIOPS_T.cpp.diff:
* tao/diffs/GIOPS_T.h.diff:
* tao/diffs/GIOPS_T.i.diff: Added diffs to the generated code.
Wed Jan 9 18:07:55 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TO_IDL/fe/fe_init.cpp (populate_global_scope):
Removed the guards around the calls related to valuetypes.
Wed Jan 9 11:35:58 2002 Ossama Othman <ossama@uci.edu>
* tao/ORB_Core.cpp (init):
Removed last remnants of the long deprecated -ORBSetUID and
-ORBSetGID ORB options.
Wed Jan 9 13:36:14 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_decl.cpp:
Changed the order of member initialization to match the
order of declaration.
Wed Jan 9 11:39:02 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_array/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp:
Added declaration of CDR operators for anonymous sequence
array element to the stub inline file. When ACE_INLINE is
defined, the declarations of these in the header file is
not included.
Wed Jan 9 08:46:58 2002 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* docs/Options.html: Clarified the use of the
-ORBDottedDecimalAddresses option. Thanks to Michael Gillmann
<michael.gillmann@infor.de> for motivating this.
Tue Jan 8 16:20:37 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
* TAO_IDL/be/be_visitor_typecode/typecode_decl.cpp:
Added '::' to instances of 'CORBA::TypeCode_ptr' in
type code generation. If there is a nested module
named 'CORBA', MSVC gets confused. Thanks to
Tom Howard <tom_howard@yahoo.com> for pointing out
the problem.
Tue Jan 8 14:52:46 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/ast/ast_typedef.cpp:
* TAO_IDL/be/be_array.cpp:
* TAO_IDL/be/be_sequence.cpp:
* TAO_IDL/be/be_type.cpp:
* TAO_IDL/be/be_typedef.cpp:
Added explicit calls to base class constructors.
* TAO_IDL/be/be_decl.cpp:
Added explicit calls to base class constructors, and
added missing member initialization.
* TAO_IDL/be/be_visitor_array/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_array/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_typedef/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_typedef/cdr_op_ci.cpp:
Changed the logic for generating CDR operators for
named arrays of anonymous sequences. Some recent
change broke this, and it was showing up in IDL_Test.
Also made cosmetic changes.
* TAO_IDL/be/be_visitor_sequence/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_typedef/any_op_ch.cpp:
Added line breaks to strings of output stream operators,
to avoid side effects when a method call is in the string.
Also made cosmetic changes.
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface_fwd/interface_fwd_ch.cpp:
Changed the logic of the code generation for forward
declared interfaces. The existing logic was a case of two
wrongs making a right, and was causing a problem with the
implementation of AMH in the IDL compiler. Thanks to
Carlos O'Ryan <coryan@uci.edu> and Mayur Deshpande
<mayur@ics.uci.edu> for pointing out the problem.
Mon Jan 7 10:27:43 2002 Chad Elliott <elliott_c@ociweb.com>
* tao/PortableServer/PolicyS_T.i:
Corrected an invalid ENV parameter macro name. This was detected
as an error on HP-UX. Thanks to Rob Martin <martin_r@ociweb.com>
for pointing this out.
Sun Jan 6 13:18:43 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_operation_strategy.cpp:
Removed an unused argument, and made cosmetic changes.
Sun Jan 6 09:45:24 2002 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* examples/Advanced/ch_8_and_10/client.cpp (main):
Added some casts to make certain C++ compilers happy.
Thanks to Roy Sharon <roysharon@hotmail.com> for
reporting this.
Sat Jan 5 21:31:43 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be_include/be_visitor_amh_pre_proc.h:
* TAO_IDL/be/be_visitor_amh_pre_proc.cpp:
Added code to generate the Client side abstract RH class and the
skeleton RH class. For the above two interfaces, there should be
no classes generated on teh 'other side' i.e. for the client RH
interface node, there should be no class generatd in the
skeleton files. Currently there are a few problems with this
and with the exact names and inheritance of the generated
classes.
Sat Jan 5 18:27:59 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be_include/be_visitor_operation/amh_ss.h:
* TAO_IDL/be/be_visitor_operation/amh_ss.cpp:
Added code to generate the skeleton-source code for AMH-skelton
operation. The amh-method differs from the original method in
the following ways:
- Return type is always void
- IN and INOUT parameters _only_ are de-marshalled
One part left to be done is the creation and instantiation of
the RH inside the generated method body.
Sat Jan 5 18:15:34 2002 Mayur Deshpande <mayur@ics.uci.edu>
* TAO_IDL/be/be_visitor_interface/interface.cpp:
Added actions for all the AMH states (including amh_rh).
Previously some of them returned 0 or just didn't do anything.
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Removed all the code from the visit_interface that generates
code for the this_method and put it into a seperate method
called this_method. This method already existed but for some
reason a part of the code was left in the visit_interface
method. With this in place, the AMH class can now implement all
the changes that are needed in the _this () method.
* TAO_IDL/be/be_visitor_interface/amh_ss.cpp:
- Changed the this_method(). This method now generates all the
code for the _this() method in amh-skeleton. Changes include a
narrow of original interface rather than teh AMH-skeleton narrow
and commenting of the generation of the safe_stub.release()
line. - Changed the dispath_method () so that it now generates
a call to asynchronous_upcall_dispatch rather than
synchronous_upcall_dispatch as is generated for a normal
skeleton.
Sat Jan 5 20:39:25 2002 Ossama Othman <ossama@uci.edu>
* tao/IIOP_Connection_Handler.cpp (handle_input, handle_output):
Reverted my change that avoided a function call. Bala correctly
points out that the handled passed in as a parameter may be an
invalid handle if the event handler is dispatched by the
reactor's notification mechanism. Not bueno.
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connection_Handler.cpp
(handle_input, handle_output):
Likewise.
Sat Jan 5 20:00:21 2002 Ossama Othman <ossama@uci.edu>
* tao/Connection_Handler.inl (TAO_Connection_Handler):
Initialize "pending_upcalls_" and "pending_upcall_lock_" in the
base member initializer list. Although this constructor is not
used, it is best to ensure that proper initialization is
performed in the event this constructor is used in the future.
Sat Jan 5 19:30:08 2002 Ossama Othman <ossama@uci.edu>
* tao/orbconf.h:
Include "ace/Basic_Types.h" to pull in the definition of
ACE_LITTLE_ENDIAN.
Sat Jan 5 17:54:27 2002 Ossama Othman <ossama@uci.edu>
* tao/LF_Strategy.h:
No need to include "tao/orbconf.h." Forward declaring
ACE_Time_Value is enough.
* tao/orbconf.h:
Instead of "ace/OS.h", include "ace/config-all.h". The latter
is all that is needed. This change should improve compile times
since "config-all.h" does not include the large number of system
headers found in "OS.h," which provides for improved C++
preprocessing times in TAO.
(TAO_DEFAULT_ORB_TABLE_SIZE):
New constant that is used when setting the initial size of the
ORB table. Previously a default of 1024 was used. However,
most applications rarely use more than one ORB, meaning that
an ORB table size of 1024 is overkill. The default is now 16.
This size should be more than adequate for the majority of
applications.
(MCAST_SERVICE_ID, NO_OF_MCAST_SERVICES):
Prepend "TAO_" to these macros to avoid polluting the global
namespace.
* tao/ORB.h (resolve_service):
* tao/ORB.cpp (resolve_service):
* tao/params.h (service_port):
* tao/params.i (service_port):
* tao/params.cpp (TAO_ORB_Parameters):
Changed the parameter type "MCAST_SERVICEID" to
"TAO_MCAST_SERVICEID," in accordance with the changes made to
`orbconf.h' described above.
* tao/ORB_Table.cpp (TAO_ORB_Table):
Initialize the underlying hash map (the ORB table) to a size of
TAO_DEFAULT_ORB_TABLE_SIZE. This change reduces the default ORB
table size from 1024 to 16 (TAO_DEFAULT_ORB_TABLE_SIZE), thus
greatly reducing the initial ORB table memory utilization.
* tao/IIOP_Connection_Handler.cpp (handle_input, handle_output):
No need to make a function call to retrieve the handle. Just
use the handle parameter passed in to the method.
Sat Jan 5 15:04:46 2002 Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/Fill_ACE_QoS.h: Fix comments.
* orbsvcs/performance-tests/EC_Federated_Scalability/Makefile:
* orbsvcs/performance-tests/EC_Scalability/Makefile:
* orbsvcs/performance-tests/EC_Federated_Latency/Makefile:
* orbsvcs/performance-tests/EC_Latency/Makefile:
Only build these tests if RTEvent is set in TAO_ORBSVCS.
Fri Jan 4 17:30:21 2002 Jaiganesh Balasubramanian <jai@kelvar.ece.uci.edu>
* docs/tutorials/Quoter/RT_Event_Service/index.html:
Corrected some broken links. The errors were pointed out thanks
to Eric Peters <egpeters@u.washington.edu>.
Fri Jan 4 19:02:41 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* ChangeLogs/ChangeLog-01c: A new file after splitting from this
one.
Fri Jan 4 18:28:44 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_decl.cpp:
* TAO_IDL/be_include/be_decl.h:
Removed compute_repoID(), the version that is always
called in in the base class AST_Decl. Thanks to
Brian Olson <bolson@rtlogic.com> for pointing out
that the be_decl version was not doing the version
part of the string correctly.
Fri Jan 4 16:30:04 2002 Jeff Parsons <parsons@cs.wustl.edu>
* tao/DynamicAny/DynCommon.cpp (insert_reference):
Since the argument is passed in as a CORBA::Object_ptr,
and ultimately inserted into the member Any with the
non-virtual operator <<=, then
dyn_any->to_any()->type ()->id() would always yield
"IDL:CORBA/Object:1.0", no matter what
dyn_any->type()->id() yields. So the insertion into
the memeber Any has been changed to use _tao_replace(),
and passing in the dyn_any's type code, which is
always of the derived type. Thanks to Mahesh Vedantam
<mahesh@ociweb.com> for reporting the problem.
Fri Jan 4 15:21:33 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvcs/IFR_Service/ifr_visitor.cpp (visit_factory):
Removed an unused argument.
* TAO_IDL/fe/fe_tmplinst.cpp:
Removed explicit instantiation of ACE_Node<char *>, since
it already appears in ACE.
* TAO_IDL/fe/lex.yy.cpp:
Changed isspace() to ACE_OS::ace_isspace().
* TAO_IDL/be/be_interface_strategy.cpp (compute_coll_names):
Changed a local const char[] to static const char*. The
string "POA_" is assigned to this constant, and there
has been a long-standing intermittent problem with
garbage being generated in place of the string. Although
the problem has never been duplicated by the DOC Group,
Sorin Iordachescu <sorin.iordachescu@am-beo.com> has
produced it repeated and has suggested the above fix.
* TAO_IDL/util/utl_err.cpp:
Removed all use of ACE_TEXT from methods that return char*.
When compilation is done with ACE_USES_WCHAR, the return
type is incorrect. Thanks to Johnny Willemsen
<johnny_willemsen@planet.nl> for reporting the problem.
Fri Jan 4 14:32:43 2002 Craig Rodrigues <crodrigu@bbn.com>
* orbsvcs/orbsvcs/AV/Fill_QoS.h: Add #include <ace/OS_QoS.h>.
Thu Jan 3 07:18:22 2002 Christopher Kohlhoff <chris@kohlhoff.com>
* orbsvcs/LifeCycle_Service/LifeCycle_Service.bor:
Added library required for a statically linked build.
* orbsvcs/Notify_Service/NT_Notify_Service.bor:
* orbsvcs/Notify_Service/Notify_Service.bor:
Reverted the changes made to these files in
Sun Dec 30 20:30:12 2001 Johnny Willemsen <jwillemsen@remedy.nl>
as the trading library is required for a static build.
* orbsvcs/orbsvcs/*.bor:
* orbsvcs/orbsvcs/Security.rc:
* tao/*/Makefile.bor:
* tao/*/*.rc:
Added Borland makefile support for the new resource files.
Wed Jan 2 20:48:36 2002 Douglas C. Schmidt <schmidt@siesta.cs.wustl.edu>
* TAO-INSTALL.html: Fixed a couple of missing links. Thanks to
Patrick Cosmo <Patrick@incognito.com> for reporting this.
Wed Jan 2 18:00:43 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/fe/lex.yy.cpp:
Changed an instance of != ' ' to !isspace.
Wed Jan 2 15:57:52 2002 Priyanka Gontla <pgontla@ece.uci.edu>
* orbsvcs/orbsvcs/Naming/Naming_Context_Interface.cpp (to_url):
The to_url method should actually be returning a corbaname type
URL instead of the corbaloc style URL. According to the
INS specification, the method should return a fully formed URL
along with the key_string and corbaname format is the one that
can have the key_string in it.
Moved the pointer to the end of the dest string before
concatenating something to it. Previously, it was returning only
escaped key_string.
* orbsvcs/tests/Interoperable_Naming/ncontextext_client_i.cpp :
Modified the string that is passed to the to_url method to have
a ':' before the dummy address. Now, its in one of the correct
syntaxes.
Thanks to Scott Harris <harris_s@ociweb.com> for reporting all
these.
Wed Jan 02 15:25:53 2002 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/ValueFactory.h: Removed the non-standard tao extension
repository_id(). According to the spec, for valuetypes without
a factory method, the developer supplied ValueFactory class
should inherit from CORBA::ValueFactoryBase directly.
Therefore, we can no longer generate this repository_id() method
in the IDL compiler.
Changed the TAO_OBV_REGISTER_FACTORY to take the type of
valuetype it handles as an extra parameter. The macro will
simply use the non-standard TAO extension to stick in the
repository_id for the valuetype. This may not be the correct
way to get the repository_id for a valuetype as it is not clear
to me how one can get it.
* examples/OBV/Typed_Events/Event_Types_impl.h: Changed to inherit
valuetype factories from CORBA::ValueFactoryBase.
* examples/OBV/Typed_Events/Server_i.cpp:
* examples/OBV/Typed_Events/Client_i.cpp: Added type of valuetype
when registering factory with the TAO_OBV_REGISTER_FACTORY
macro.
Wed Jan 2 15:27:57 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_valuetype.cpp:
Added some missing ACE_INLINEs to the _var and _out class
method implementation code generation.
Wed Jan 2 12:02:35 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/fe/lex.yy.cpp (idl_valid_version):
Had to add a check for trailing whitespace. SunCC's
preprocessor leaves it in, it seems, and this was
leading to version strings being falsely invalidated.
Wed Jan 2 10:22:59 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_typedef/typedef_ci.cpp (visit_array):
Made changes that were overlooked in
Fri Dec 28 15:41:18 2001 Jeff Parsons <parsons@cs.wustl.edu>
that correspond to changes made in typedef_ch.cpp.
* TAO_IDL/be/be_visitor_typedef/typedef_ch.cpp (visit_array):
Cosmetic changes.
Wed Jan 2 09:41:03 2002 Jeff Parsons <parsons@cs.wustl.edu>
* orbsvvcs/IFR_Service/drv_init_ifr.cpp:
* orbsvvcs/IFR_Service/ifr_adding_visitor.cpp:
* orbsvvcs/IFR_Service/ifr_adding_visitor.h:
* orbsvvcs/IFR_Service/ifr_adding_visitor_exception.cpp:
* orbsvvcs/IFR_Service/ifr_adding_visitor_operation.cpp:
* orbsvvcs/IFR_Service/ifr_adding_visitor_structure.cpp:
* orbsvvcs/IFR_Service/ifr_adding_visitor_union.cpp:
* orbsvvcs/IFR_Service/ifr_visitor.cpp:
* orbsvvcs/IFR_Service/ifr_visitor.h:
Changes related to corresponding changes in the TAO IDL
compiler regarding value types and #pragma prefix.
Tue Jan 1 17:40:23 2002 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/AV/AVStreams_i.h:
* orbsvcs/orbsvcs/AV/AVStreams_i.cpp:
Remove dummy copy constructor, that should clear some of the
builds.
Tue Jan 1 09:38:58 2002 Venkita Subramonian <venkita@cs.wustl.edu>
* examples/RTCORBA/Activity/Activity.cpp:
examples/RTCORBA/Activity/Builder.cpp:
Fixed compile errors.
|