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
|
Sat Apr 29 20:57:34 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Buffering_Constraint_Policy.h:
* tao/Buffering_Constraint_Policy.cpp:
* tao/Client_Priority_Policy.h:
* tao/Client_Priority_Policy.cpp:
* tao/Messaging_Policy_i.h:
* tao/Messaging_Policy_i.cpp:
Fixed throw specs for several methods, most compilers did not
caught this problem, but KAI is always ready.
* tao/POA_CORBA.h:
Remove the POA_CORBA::*Pollable* classes.
* tests/MProfile_Forwarding/Servant_Locator.h:
* tests/MProfile_Forwarding/Servant_Locator.cpp:
Use the new macros for exception enabled ServantManagers.
* examples/Simulator/Event_Supplier/Makefile:
Updated dependencies
Sat Apr 29 22:41:57 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/Pluggable_Messaging.h:
* tao/Pluggable_Messaging.cpp: Fixed a compile error in
KAI. Thanks to Darrell for reporting this.
Sat Apr 29 19:41:15 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Invocation.cpp:
* tao/Transport_Mux_Strategy.h:
* tao/Transport_Mux_Strategy.cpp:
If a timeout expires while sending a request we need to clear
the reply dispatcher from the transport object. There was no
way to do that.
* tests/Timeout/client.cpp:
* tests/Timeout/server.cpp:
* tests/Timeout/test_i.cpp:
Change the test to ensure that the ORB does not crash if a reply
is received after the request timeout has expired.
Reduce debugging output.
* tests/Timeout/run_test.pl:
Extend the range of timeouts that the we check for.
Sat Apr 29 19:41:39 2000 Darrell Brunsch <brunsch@uci.edu>
* orbsvcs/orbsvcs/RTEvent_Static.dsp:
* orbsvcs/orbsvcs/RTSched_Static.dsp:
* orbsvcs/tests/Property/client.dsp:
* tests/Endpoint_Per_Priority/client.dsp:
* tests/Endpoint_Per_Priority/server.dsp:
These were not set up to the standard type of configuration
we normally use.
Sat Apr 29 19:20:16 2000 Darrell Brunsch <brunsch@uci.edu>
* examples/Buffered_Oneways/client.dsp:
* examples/Buffered_Oneways/server.dsp:
* examples/Callback_Quoter/Consumer.dsp:
* examples/Callback_Quoter/Notifier.dsp:
* examples/Callback_Quoter/Supplier.dsp:
* examples/OBV/Typed_Events/client.dsp:
* examples/OBV/Typed_Events/server.dsp:
* examples/POA/Explicit_Activation/Alt_Resources/Alt_Resource_Factory.dsp:
* examples/POA/Generic_Servant/client.dsp:
* examples/POA/Generic_Servant/server.dsp:
* examples/POA/Loader/server.dsp:
* examples/POA/On_Demand_Loading/server.dsp:
* examples/Simple/bank/client.dsp:
* examples/Simple/bank/server.dsp:
* examples/Simple/chat/client.dsp:
* examples/Simple/chat/server.dsp:
* examples/Simple/echo/client.dsp:
* examples/Simple/echo/server.dsp:
* examples/Simple/time-date/Time_Date.dsp:
* examples/Simple/time-date/client.dsp:
* examples/Simple/time-date/server.dsp:
* orbsvcs/LifeCycle_Service/LifeCycle_Service.dsp:
* orbsvcs/Notify_Service/Notify_Service.dsp:
* orbsvcs/Time_Service/Time_Service_Server.dsp:
* orbsvcs/Trading_Service/Trading_Service.dsp:
* orbsvcs/examples/CosEC/Factory/FactoryClient.dsp:
* orbsvcs/examples/CosEC/Factory/FactoryServer.dsp:
* orbsvcs/orbsvcs/AV_Static.dsp:
* orbsvcs/orbsvcs/CosConcurrency_Static.dsp:
* orbsvcs/orbsvcs/CosEvent_Static.dsp:
* orbsvcs/orbsvcs/CosLifeCycle_Static.dsp:
* orbsvcs/orbsvcs/CosNaming_Static.dsp:
* orbsvcs/orbsvcs/CosNotification_Static.dsp:
* orbsvcs/orbsvcs/CosProperty_Static.dsp:
* orbsvcs/orbsvcs/CosTime_Static.dsp:
* orbsvcs/orbsvcs/CosTrading_Static.dsp:
* orbsvcs/orbsvcs/DsLogAdmin_Static.dsp:
* orbsvcs/orbsvcs/RTEvent_Static.dsp:
* orbsvcs/orbsvcs/RTSched_Static.dsp:
* orbsvcs/orbsvcs/Svc_Utils_Static.dsp:
* orbsvcs/tests/EC_Basic/EC_Basic.dsp:
* orbsvcs/tests/EC_Multiple/EC_Multiple.dsp:
* orbsvcs/tests/EC_Throughput/ECT_Consumer.dsp:
* orbsvcs/tests/EC_Throughput/ECT_Supplier.dsp:
* orbsvcs/tests/EC_Throughput/ECT_Throughput.dsp:
* orbsvcs/tests/Event/Basic/Atomic_Reconnect.dsp:
* orbsvcs/tests/Event/Basic/BCast.dsp:
* orbsvcs/tests/Event/Basic/Bitmask.dsp:
* orbsvcs/tests/Event/Basic/Complex.dsp:
* orbsvcs/tests/Event/Basic/Control.dsp:
* orbsvcs/tests/Event/Basic/Disconnect.dsp:
* orbsvcs/tests/Event/Basic/Gateway.dsp:
* orbsvcs/tests/Event/Basic/MT_Disconnect.dsp:
* orbsvcs/tests/Event/Basic/Negation.dsp:
* orbsvcs/tests/Event/Basic/Observer.dsp:
* orbsvcs/tests/Event/Basic/Random.dsp:
* orbsvcs/tests/Event/Basic/Reconnect.dsp:
* orbsvcs/tests/Event/Basic/Schedule.dsp:
* orbsvcs/tests/Event/Basic/Shutdown.dsp:
* orbsvcs/tests/Event/Basic/Timeout.dsp:
* orbsvcs/tests/Event/Basic/Wildcard.dsp:
* orbsvcs/tests/Event/Performance/Connect.dsp:
* orbsvcs/tests/Event/Performance/Inversion.dsp:
* orbsvcs/tests/Event/Performance/Throughput.dsp:
* orbsvcs/tests/Event/lib/ECTest.dsp:
* orbsvcs/tests/Event_Latency/Event_Latency.dsp:
* orbsvcs/tests/Property/client.dsp:
* orbsvcs/tests/Property/server.dsp:
* orbsvcs/tests/Simple_Naming/client.dsp:
* orbsvcs/tests/Trading/Colocated_Test.dsp:
* orbsvcs/tests/Trading/Export_Test.dsp:
* orbsvcs/tests/Trading/Import_Test.dsp:
* performance-tests/Cubit/TAO/MT_Cubit/client.dsp:
* performance-tests/Cubit/TAO/MT_Cubit/server.dsp:
* performance-tests/Latency/client.dsp:
* performance-tests/Latency/deferred_synch_client.dsp:
* performance-tests/Latency/server.dsp:
* performance-tests/Latency/st_client.dsp:
* performance-tests/Latency/st_server.dsp:
* performance-tests/POA/Object_Creation_And_Registration/registration.dsp:
* performance-tests/Pluggable/client.dsp:
* performance-tests/Pluggable/server.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Endpoint_Per_Priority/Client.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Endpoint_Per_Priority/Server.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/Client.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/Server.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/Client.dsp:
* performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/Server.dsp:
* performance-tests/RTCorba/Oneways/Reliable/client.dsp:
* performance-tests/RTCorba/Oneways/Reliable/server.dsp:
* tao/TAO_Static.dsp:
* tests/Collocation/Coll_Test_Stubs.dsp:
* tests/Collocation/Diamond.dsp:
* tests/Connection_Purging/Connection_Purging.dsp:
* tests/DynAny_Test/basic_test.dsp:
* tests/Explicit_Event_Loop/client.dsp:
* tests/Explicit_Event_Loop/server.dsp:
* tests/Faults/client.dsp:
* tests/Faults/ping.dsp:
* tests/Faults/pong.dsp:
* tests/Faults/server.dsp:
* tests/IDL_Test/idl_test.dsp:
* tests/IORManipulation/IORTest.dsp:
* tests/InterOp-Naming/client.dsp:
* tests/InterOp-Naming/server.dsp:
* tests/Interceptors/client.dsp:
* tests/Interceptors/server.dsp:
* tests/MProfile/client.dsp:
* tests/MProfile/server.dsp:
* tests/MT_Client/client.dsp:
* tests/MT_Client/orb_creation.dsp:
* tests/MT_Client/server.dsp:
* tests/MT_Client/simple_client.dsp:
* tests/MT_Server/client.dsp:
* tests/MT_Server/server.dsp:
* tests/Native_Exceptions/client.dsp:
* tests/Native_Exceptions/server.dsp:
* tests/NestedUpcall/Simple/client.dsp:
* tests/NestedUpcall/Simple/server.dsp:
* tests/ORB_init/ORB_init.dsp:
* tests/OctetSeq/client.dsp:
* tests/OctetSeq/server.dsp:
* tests/POA/Deactivation/Deactivation.dsp:
* tests/POA/Destruction/Destruction.dsp:
* tests/POA/Identity/Identity.dsp:
* tests/Param_Test/client.dsp:
* tests/Smart_Proxies/client.dsp:
* tests/Smart_Proxies/server.dsp:
* tests/Smart_Proxies/Collocation/Coll_Test_Stubs.dsp:
* tests/Smart_Proxies/Collocation/Diamond.dsp:
* tests/Timed_Buffered_Oneways/client.dsp:
* tests/Timed_Buffered_Oneways/server.dsp:
* tests/Timeout/client.dsp:
* tests/Timeout/server.dsp:
* utils/nslist/nslist.dsp:
I started to test out my msvc_auto_compile.pl script and after
testing it for the whole thing, found out that I soon ran out
of disk space. By the time I ran out of space, the PCH files
made up 3 GB of disk. So I removed them from these projects.
Note that I did leave them in the projects that use MFC, since
they do use them in a more beneficial way.
* tests/MProfile/MProfile.dsw: (added)
Add a workspace in this directory since there didn't seem to be
one already.
Sat Apr 29 19:26:05 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp:
Further change to my fix of Apr 27. Used the
ACE_NESTED_CLASS macro on the generation of the
pointer to the ancestor's _narrow() method in
_tao_QueryInterface(). Thanks to Darrell for pointing
out the error in the SUNCC5 build that prompted this.
Sat Apr 29 15:44:42 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp:
Avoid deadlocks while testing if the peer exists. We cannot
hold the mutex while invoking _non_existent()
* orbsvcs/orbsvcs/Event/EC_Reactive_ConsumerControl.cpp:
* orbsvcs/orbsvcs/Event/EC_Reactive_SupplierControl.cpp:
Add debugging messaging, to be removed once the testing is
completed.
* orbsvcs/tests/Event/Basic/Gateway.cpp:
Add new test, removing some subscriptions and verifying that
only the remaining events are received.
* orbsvcs/examples/RtEC/Simple/ec.conf:
Enable the reactive control strategies, for testing purposes.
Sat Apr 29 13:48:53 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Buffering_Constraint_Policy.h:
* tao/Buffering_Constraint_Policy.i:
* tao/Buffering_Constraint_Policy.cpp:
* tao/Messaging_Policy_i.h:
* tao/Messaging_Policy_i.i:
* tao/Messaging_Policy_i.cpp:
For performance reasons we don't want to use the default
CORBA::Environment argument when accessing the values of some
policies: doing so would require a new access to TSS storage on
the critical path. Yet, in some points a CORBA::Environment is
not available.
The first solution was to add a new accessor method, without an
Environment, but that resulted in ambiguous calls when the code
was changed to use local interfaces.
The new solution is to have a get_foo(Foo&) method, this method
does not need to be virtual (in fact it is inlined) and it is as
efficient as the other call.
* tao/Invocation.cpp:
* tao/Sync_Strategies.cpp:
Use the new methods.
Sat Apr 29 15:24:03 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/DomainC.cpp:
* tao/GIOP_Message_Connectors.cpp:
* tao/GIOP_Message_Lite.cpp:
* tao/ImplRepoC.cpp:
* tao/InterfaceC.cpp:
* tao/Object.cpp:
* tao/POAC.cpp:
* tao/PolicyC.cpp:
* tao/Stub.cpp: Replaced all occurences of the magic number 131
with TAO_TWOWAY_RESPONSE_FLAG. This will indicate a regular two
way operation in TAO.
* tao/corbafwd.h: Added the macro TAO_TWOWAY_RESPONSE_FLAG.
Sat Apr 29 12:54:08 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/orbconf.h:
Define macros to transparently remove the extra
CORBA::Environment argument in platforms with exceptions
enabled. This macros (ACE_ENV_ARG_DECL, ENV_ARG_DECL_NOT_USED,
ENV_ARG_DECL_DEFN) are intended for declarations of operations
that the user derives from, for example, the ServantManagers.
* tao/POAS.h:
* tao/POAS.cpp:
Use the new ACE_ENV_ARG_* macros in the declaration of
ServantManagers. This solves [BUGID:41]
* examples/POA/Forwarding/Servant_Locator.h:
* examples/POA/Forwarding/Servant_Locator.cpp:
* examples/POA/Loader/Servant_Activator.h:
* examples/POA/Loader/Servant_Activator.cpp:
* examples/POA/Loader/Servant_Locator.h:
* examples/POA/Loader/Servant_Locator.cpp:
* examples/POA/On_Demand_Activation/Servant_Activator.h:
* examples/POA/On_Demand_Activation/Servant_Activator.cpp:
* examples/POA/On_Demand_Activation/Servant_Locator.h:
* examples/POA/On_Demand_Activation/Servant_Locator.cpp:
* examples/POA/On_Demand_Loading/Servant_Activator.h:
* examples/POA/On_Demand_Loading/Servant_Activator.cpp:
* examples/POA/On_Demand_Loading/Servant_Locator.h:
* examples/POA/On_Demand_Loading/Servant_Locator.cpp:
Updated the test to use the new macros. Normally the
applications will not use the macros, but our tests must compile
and run correctly with a without native C++ exception support.
Sat Apr 29 14:51:39 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_operation/operation_cs.cpp:
For the generated GIOP request header response flag
value for twoway requests, changed the hard-coded
'131' value to the constant TAO_TWOWAY_RESPONSE_FLAG
defined in corbafwd.h by Bala.
Sat Apr 29 14:16:40 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/GIOP_Message_Accept_State.cpp:
* tao/GIOP_Message_Connectors.cpp: Removed support for reliable
oneways from GIOP 1.1 implementation. This means that there are
only two types of calls ie. oneway and two ways. All the
policy settings for reliable oneways will not be considered at
all. They will be mapped to a simple oneway.
Sat Apr 29 11:49:19 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/Param_Test/anyop.dsp:
Updated dependencies.
* 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/operation_cs.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
Cosmetic fixes.
Sat Apr 29 12:53:26 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/Makefile.am:
* tao/Makefile.bor: Added new files
* tao/Invocation.cpp: Made some fixes to the changes that I made
yesterday.
Sat Apr 29 03:10:01 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp (gen_skel_helper): Changed some
"env" to "ACE_TRY_ENV".
Fri Apr 28 21:49:27 2000 Darrell Brunsch <brunsch@uci.edu>
* tao/TAO.dsp:
* tao/TAO_Static.dsp
Bala didn't add new files to the MSVC projects.
Fri Apr 28 21:32:34 2000 Carlos O'Ryan <coryan@uci.edu>
* MessagingC.h:
* MessagingC.i:
* MessagingC.cpp:
* MessagingS.cpp:
* diffs/MessagingC.h.diff:
* diffs/MessagingC.i.diff:
* diffs/MessagingC.cpp.diff:
* diffs/MessagingS.cpp.diff:
Fixed problems when not all the fancy features (ami, callbacks,
messaging, smart proxies) are enabled.
Fri Apr 28 23:29:03 2000 Marina Spivak <marina@cs.wustl.edu>
* docs/releasenotes/index.html:
Updated RT CORBA section, Naming section and fixed incorrect
link (thanks to Steve Vranyes for pointing it out).
* docs/INS.html:
Fixed link.
Fri Apr 28 20:56:43 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/ImplRepoC.h:
Sun/CC 5.0 was not compiling because of a missing include, beats
me why it needs it and all the other platforms don't.
Fri Apr 28 20:09:34 2000 Carlos O'Ryan <coryan@uci.edu>
* Modified Messaging.pidl, Pollable.pidl and TAO.pidl to use local
interfaces, then re-generated the code using the local
interfaces, made whatever modifications where required and
stored the modifications as a patch file for future reference.
The change is good because it is a step to resolve [BUGID:322],
the memory management of local interfaces is well defined.
And because the change reduces the code size, for example, on
Linux the sizes before the change are:
text data bss dec hex filename
39074 11832 264 51170 c7e2 .shobj/PollableC.o
17353 5812 60 23225 5ab9 .shobj/PollableS.o
109438 32556 2536 144530 23492 .shobj/MessagingC.o
53514 18712 88 72314 11a7a .shobj/MessagingS.o
27061 7516 584 35161 8959 .shobj/TAOC.o
6739 2048 32 8819 2273 .shobj/TAOS.o
Once the files are generated using local interfaces the numbers
change to:
text data bss dec hex filename
8647 2684 64 11395 2c83 .shobj/PollableC.o
990 84 28 1102 44e .shobj/PollableS.o
50581 16344 1192 68117 10a15 .shobj/MessagingC.o
10532 2488 84 13104 3330 .shobj/MessagingS.o
11928 3136 488 15552 3cc0 .shobj/TAOC.o
990 84 28 1102 44e .shobj/TAOS.o
* tao/Buffering_Constraint_Policy.h:
* tao/Buffering_Constraint_Policy.i:
* tao/Buffering_Constraint_Policy.cpp:
* tao/Client_Priority_Policy.h:
* tao/Client_Priority_Policy.cpp:
* tao/Messaging_Policy_i.h:
* tao/Messaging_Policy_i.cpp:
Reimplement the policies using the semantics for local
interfaces. We inherit from the stub instead of the skeleton
class, and there is no need to activate the object with the
POA. Interestingly destroy() becomes a no-op, when the last
references goes away the object is destroyed without any other
intervention.
* tao/ORB.cpp:
* tao/Policy_Manager.cpp:
* tao/Stub.cpp:
Changed to use the new local interfaces, no more references to
the POA or activation.
* tao/corbafwd.h:
* tao/Exception.cpp:
New minor code to indicate problems while manipulating
policies.
* tao/Messaging.pidl:
* tao/MessagingC.h:
* tao/MessagingC.i:
* tao/MessagingC.cpp:
* tao/MessagingS.h:
* tao/MessagingS.i:
* tao/MessagingS.cpp:
* tao/MessagingS_T.h:
* tao/MessagingS_T.i:
* tao/MessagingS_T.cpp:
* tao/diffs/MessagingC.h.diff:
* tao/diffs/MessagingC.i.diff:
* tao/diffs/MessagingC.cpp.diff:
* tao/diffs/MessagingS.h.diff:
* tao/diffs/MessagingS.i.diff:
* tao/diffs/MessagingS.cpp.diff:
* tao/diffs/MessagingS_T.h.diff:
* tao/diffs/MessagingS_T.i.diff:
* tao/diffs/MessagingS_T.cpp.diff:
The new files for Messaging.pidl
* tao/Pollable.pidl:
* tao/PollableC.h:
* tao/PollableC.i:
* tao/PollableC.cpp:
* tao/PollableS.h:
* tao/PollableS.i:
* tao/PollableS.cpp:
* tao/PollableS_T.h:
* tao/PollableS_T.i:
* tao/PollableS_T.cpp:
* tao/diffs/PollableC.h.diff:
* tao/diffs/PollableC.i.diff:
* tao/diffs/PollableC.cpp.diff:
The new files for Pollable.pidl
* tao/TAO.pidl:
* tao/TAOC.h:
* tao/TAOC.i:
* tao/TAOC.cpp:
* tao/TAOS.h:
* tao/TAOS.i:
* tao/TAOS.cpp:
* tao/TAOS_T.h:
* tao/TAOS_T.i:
* tao/TAOS_T.cpp:
* tao/diffs/TAOC.h.diff:
* tao/diffs/TAOC.i.diff:
* tao/diffs/TAOC.cpp.diff:
The new files for TAO.pidl
Fri Apr 28 21:22:44 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/Invocation.cpp (create_ior_info):
* tao/Invocation.h: Added support for GIOP 1.2 exceptions. GIOP
1.2 raises two new exceptions for the Request and
LocateRequest. Added support to handle these exceptions. To add
support, I had to add a new method called create_ior_info ()
which would create IOP::IOR information only once, if an
exception is received from the server side seeking that
information.
* tao/Acceptor_Registry.cpp:
* tao/Acceptor_Registry.h: Added a new method, that would return
the right acceptor by taking a tag value. This is similar to the
method in Connector_Registry.{h,cpp}.
* tao/Pluggable_Messaging_Utils.h:
* tao/operation_details.h:
* tao/operation_details.i:
* tao/target_specification.h:
* tao/target_specification.i:
* tao/GIOP_Utils.h:
* tao/GIOP_Message_Accept_State.cpp:
* tao/GIOP_Message_Accept_State.h:
* tao/GIOP_Message_Acceptors.cpp:
* tao/GIOP_Message_Connectors.cpp:
* tao/GIOP_Message_Connectors.h:
* tao/GIOP_Message_Headers.h:
* tao/GIOP_Message_Headers.i:
* tao/GIOP_Message_Lite.cpp: Added support for GIOP 1.2
* tao/GIOP_Server_Request.cpp:
* tao/GIOP_Server_Request.h:
* tao/GIOP_Server_Request.i: Removed some of the GIOP 1.2 specific
data from here and moved it to a new file
TaggedProfile.{h,cpp,i} which would do the related processing of
the data to extract ObjectKey. As TAO servers, as on date do not
use any data other than ObjectKey, we need to do the processing
to extract ObjectKey from IOP::IOR and IOP::TaggedProfile.
* tao/Pluggable.h: Added a virtual function that would extract an
ObjectKey from an IOP::TaggedProfile.
* tao/IIOP_Acceptor.cpp:
* tao/IIOP_Acceptor.h:
* tao/SHMIOP_Acceptor.cpp:
* tao/SHMIOP_Acceptor.h:
* tao/UIOP_Acceptor.cpp:
* tao/UIOP_Acceptor.h: Concrete implementations for the above.
* tao/Profile.cpp:
* tao/Profile.h: Added a virtual function that would create a
IOP::TaggedProfile info from the profile info that is being
stored. This is necessary as different protocol implementations
could encapsulate different types of info in its profile which
is a part of the server exhibited IOR.
* tao/IIOP_Profile.cpp:
* tao/IIOP_Profile.h:
* tao/IIOP_Profile.i:
* tao/UIOP_Profile.cpp:
* tao/UIOP_Profile.h:
* tao/SHMIOP_Profile.cpp:
* tao/SHMIOP_Profile.h: Concrete implementations for the above.
* tao/Stub.cpp:
* tao/Stub.h:
* tao/Stub.i: Added a method to store and retrieve information
about the GIOP 1.2 specific exception thrown. If we have
received a LOC_NEEDS_ADDRESSING, we need to change the
addressing mode and restart the request. This is something
similar to LOCATION_FORWARD, but here we store only a flag to
indicate what addressing mode to use so that subsequent
invocations would use the right addressing mode.
* tao/MProfile.h:
* tao/MProfile.i: Added a method get_current_handle () that would
allow acces for const objects.
* tao/Tagged_Profile.cpp:
* tao/Tagged_Profile.h:
* tao/Tagged_Profile.i: New files that would do GIOP 1.2 specific
data processing for the server side.
* tao/Makefile: Added the above file in the Makefile.
* tao/orbconf.h: Turned on support for GIOP 1.2. Now would be
ideal time. Any bugs that arises can be fixed I am gone on vacation.
Fri Apr 28 19:57:41 2000 Carlos O'Ryan <coryan@uci.edu>
* Minor fixes to the IDL compiler to facilitate the automatic
generation of code in the TAO library (i.e. the locality
constrained interfaces).
* TAO_IDL/be/be_visitor_operation/arglist.cpp:
Operations in locality constrained interfaces should have a
default value for the CORBA::Environment argument.
* TAO_IDL/be/be_visitor_exception/exception_cs.cpp:
Do not generate a _tao_any_destructor implementation for
locality constrained types.
The _tao_encode() and _tao_decode() methods should be trivial
for locality constrained exceptions.
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
Use CORBA_Object in place of ACE_CORBA_1(Object), the former is
more readable and easier to maintain. Ditto cor CORBA_ValueBase
and CORBA_ValueFactoryBase
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_interface/smart_proxy_cs.cpp:
* TAO_IDL/be/be_visitor_interface/tie_sh.cpp:
* TAO_IDL/be/be_visitor_interface/tie_si.cpp:
Use ACE_TRY_ENV for all the CORBA::Environment arguments.
* TAO_IDL/be/be_visitor_sequence/sequence_ch.cpp:
* TAO_IDL/be/be_visitor_interface/smart_proxy_ch.cpp:
Fixed indentation in the generated code.
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
Removed spurious blank at the end of a line.
* TAO_IDL/be/be_visitor_interface/interface_is.cpp:
* TAO_IDL/be/be_visitor_operation/ami_arglist.cpp:
* TAO_IDL/be/be_visitor_operation/ami_exception_holder_operation_ch.cpp:
* TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_ch.cpp:
* TAO_IDL/be/be_visitor_operation/ami_handler_reply_stub_operation_cs.cpp:
* TAO_IDL/be/be_visitor_operation/argument.cpp:
Cosmetic fixes
Fri Apr 28 14:41:52 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Xt_Stopwatch/Makefile: Ran a make depend on the
file. Thanks to Bill Tonseth <tonseth@shamra.mv.com> for
reporting this.
Fri Apr 28 13:40:34 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/diffs/InterceptorC.h.diff:
* tao/diffs/InterceptorC.cpp.diff:
* tao/diffs/InterceptorC.cpp:
* tao/Makefile (interceptor.target): Updated the patches for
Interceptor.pidl and regenerate InterceptorC.*.
Fri Apr 28 13:16:58 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/InterceptorC.h: This file needs to be conditionally
compiled.
Fri Apr 28 11:17:35 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/InterceptorC.cpp:
Moved the line '#if (TAO_HAS_INTERCEPTORS == 1)' line to come
after the line '#include tao/InterceptorC.h' to avoid link
errors on NT.
Fri Apr 28 08:29:09 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Typecode.cpp:
Fixed unused argument warning. The real fix is documented in
[BUGID:550]
* tests/Explicit_Event_Loop/server.cpp:
The code was not using the exception macros.
Thu Apr 27 22:36:48 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/TAOC.h: Changed "orbconf.h" to "corbafwd.h". Otherwise, it
wouldn't compile for minimum CORBA.
* tao/Interceptor.h:
* tao/Interceptor.cpp:
* tao/InterceptorC.cpp: Made sure we complete disable interceptors
when TAO_HAS_INTERCEPTORS==0 (which is default for minimum
CORBA.)
Thu Apr 27 18:06:53 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/ImplRepoC.h:
* tao/ImplRepoC.cpp:
* tao/ImplRepoS.h:
* tao/ImplRepoS.cpp:
tao/corba.h should not be included directly by files in the TAO
library, it increases coupling and makes the (re)build times too
long.
* tao/POA.h:
* tao/POA.cpp:
POA.h did not need to include ImplRepoC.h
* tao/Makefile:
* examples/OBV/Typed_Events/Makefile:
Updated dependencies.
Thu Apr 27 18:27:06 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/TAO.dsp;
* tao/TAO_Static.dsp:
Removed varout.h from the project files.
Thu Apr 27 18:00:08 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be/be_visitor_valuetype_fwd/interface_fwd_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype_fwd/interface_fwd_ci.cpp:
* TAO_IDL/be/be_visitor_valuetype_fwd/valuetype_fwd_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype_fwd/valuetype_fwd_ci.cpp:
Renamed interface_fwd_c?.cpp to valuetype_fwd_c?.cpp and updated
the macros name used in them.
* TAO_IDL/be_include/be_visitor_valuetype_fwd/cdr_op_ci.h:
* TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ch.h:
* TAO_IDL/be_include/be_visitor_valuetype_fwd/valuetype_fwd_ci.h: Fixed
incorrect macro names.
* TAO_IDL/be/be_visitor_root/root.cpp (visit_valuetype_fwd): Some
cosmetic changes.
* TAO_IDL/be/be_visitor_valuetype_fwd.cpp: Fixed the erroneous
include filenames. Althought they don't actually get compiled
for now.
* TAO_IDL/be/be_visitor_factory.cpp (make_visitor): Added but
*disabled* the states for TAO_VALUETYPE_FWD_CH and
TAO_VALUETYPE_FWD_CI so we can simply turn them on when they are
ready.
Thu Apr 27 17:51:59 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* examples/OBV/Typed_Events/Event_Types.idl: I accidentally
checked in the forward declaration for the valuetype in this
idl. Unfortunately, forward_decl for valuetype is not
implemented yet.
Thu Apr 27 15:25:34 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/DynArray_i.cpp:
* tao/DynSequence_i.cpp:
* tao/DynStruct_i.cpp:
* tao/DynUnion_i.cpp:
Fixed exception handling problems. I was using ACE_TRY_CHECK
when an ACE_CHECK was enough.
Thu Apr 27 14:31:58 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Makefile:
* tao/Makefile.am:
* tao/varout.h:
* tao/varout.i:
* tao/varout.cpp:
Removed the TAO_Object_Field_T<> template, is was only required
for interpretive marshaling, but that is long gone. This is
another step in solving [BUGID:135]
* TAO_IDL/be/be_visitor_field/field_ch.cpp:
* TAO_IDL/be/be_visitor_interface/any_op_cs.cpp:
* TAO_IDL/be/be_visitor_union_branch/private_ch.cpp:
* TAO_IDL/be/be_visitor_union_branch/public_access_cs.cpp:
* TAO_IDL/be/be_visitor_union_branch/public_assign_cs.cpp:
* TAO_IDL/be/be_visitor_union_branch/public_ci.cpp:
Don't generate code that uses TAO_Object_Field_T<>
* tao/Any.cpp:
* tao/CDR.cpp:
* tao/DomainC.cpp:
* tao/DynAnyC.cpp:
* tao/IORC.cpp:
* tao/ImplRepoC.cpp:
* tao/InterfaceC.cpp:
* tao/InterfaceC.h:
* tao/LocalObject.cpp:
* tao/Marshal.cpp:
* tao/MessagingC.cpp:
* tao/MessagingC.h:
* tao/Object.cpp:
* tao/Object.h:
* tao/PolicyC.cpp:
* tao/PollableC.cpp:
* tao/Sequence_T.cpp:
* tao/Sequence_T.h:
* tao/TAOC.cpp:
* tao/TAOC.h:
* tao/Typecode.cpp:
* tao/corba.h:
* tao/singletons.h:
Removed all references to TAO_Object_Field, TAO_Object_Field_T<>
or varout.h
Also removed singletons.h because it was empty.
* */Makefile:
Updated all dependencies (again)
Thu Apr 27 13:08:00 2000 Darrell Brunsch <brunsch@uci.edu>
* TAO_IDL/tao_idl_static.dsp:
* tao/TAO_Static.dsp:
Changed the static configs to be of type Win32 Static Release/
Debug instead of Win32 Release/Debug.
Thu Apr 27 15:08:31 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/DynAny_i.h: Also need to include Typecode.h here.
Thu Apr 27 15:07:21 2000 Shawn Hannan <hannan@cs.wustl.edu>
* orbsvcs/examples/RtEC/Simple/Consumer.cpp:
* orbsvcs/examples/RtEC/Simple/Supplier.cpp:
Replaced #include "orbsvcs/RtecEventChannelAdminS.h"
with #include "orbsvcs/RtecEventChannelAdminC.h"
Thu Apr 27 11:10:51 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Makefile:
* tao/Marshal.h:
* tao/Marshal.i:
* tao/Marshal.cpp:
Removed the TAO_Marshal_Factory class it was not used because
there is only one 'marshaling engine'. In fact the marshaling
engine has been reduced to a couple of virtual functions.
* tao/CDR.h:
* tao/CDR.cpp:
Decouple the CDR classes from the append() and skip() operations
required to implement Anys. Someday we will be able to separate
the Any implementation from the rest of the ORB.
* tao/corba.h:
Marshal.h does not need to get exposed to the users.
* tao/ORB.cpp:
There is no need to initialize the (almost non-existant)
marshaling engine.
* tao/Any.cpp:
* tao/Typecode.cpp:
* tao/append.cpp:
* tao/skip.cpp:
* tao/NVList.cpp:
* tao/ORB_Core.cpp:
Reimplemented using the new TAO_Marshal_Object interface.
* tao/BoundsC.cpp:
* tao/CONV_FRAMEC.cpp:
* tao/DomainS.cpp:
* tao/DynAnyC.h:
* tao/DynAnyS.cpp:
* tao/DynArray_i.cpp:
* tao/DynSequence_i.cpp:
* tao/DynStruct_i.cpp:
* tao/DynUnion_i.cpp:
* tao/GIOPC.cpp:
* tao/GIOP_Server_Request.cpp:
* tao/IOPC.cpp:
* tao/IORC.h:
* tao/InterfaceC.h:
* tao/PolicyC.h:
* tao/PollableS.cpp:
* tao/Services.cpp:
* tao/TAOC.cpp:
* tao/TAOS.cpp:
* tao/TimeBaseC.cpp:
* tao/singletons.h:
CDR.h does not include Typecode.h nor Exception.h anymore, so we
have to include them in a few files that needed them.
* tests/Param_Test/Makefile:
Update dependencies.
Thu Apr 27 12:29:01 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
Changed generation of a node's full name to
generation of the local name in a few spots. At
most places inside a function body, the local name
is sufficient and also avoids compiler confusion
when nested scoped names are repeated after skipping,
for example foo::bar::foo.
Thu Apr 27 11:48:20 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_module/module.cpp:
Removed an extra 'break' statement.
Wed Apr 26 20:11:09 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Makefile:
* tao/Makefile.am:
* tao/Union.h:
* tao/Union.cpp:
* tao/corba.h:
* tao/GIOPC.h:
* tao/GIOPC.i:
* tao/GIOPC.cpp:
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
The TAO_Base_Union class has been removed. It was required for
interpretive marshaling, that is not in use anymore. This is
part of the fixes for [BUGID:135]
* TAO_IDL/be/be_visitor_union/union_ch.cpp:
* TAO_IDL/be/be_visitor_union/union_ci.cpp:
* TAO_IDL/be/be_visitor_union/union_cs.cpp:
Do not generate any uses of the TAO_Base_Union class.
* TAO_IDL/Makefile:
* examples/AMI/FL_Callback/Makefile:
* examples/Buffered_AMI/Makefile:
* examples/Buffered_Oneways/Makefile:
* examples/Callback_Quoter/Makefile:
* examples/Event_Comm/Makefile:
* examples/Load_Balancing/Makefile:
* examples/Load_Balancing_persistent/Makefile:
* examples/Logging/Makefile:
* examples/OBV/Typed_Events/Makefile:
* examples/POA/Adapter_Activator/Makefile:
* examples/POA/DSI/Makefile:
* examples/POA/Default_Servant/Makefile:
* examples/POA/Explicit_Activation/Makefile:
* examples/POA/FindPOA/Makefile:
* examples/POA/Forwarding/Makefile:
* examples/POA/Generic_Servant/Makefile:
* examples/POA/Loader/Makefile:
* examples/POA/NewPOA/Makefile:
* examples/POA/On_Demand_Activation/Makefile:
* examples/POA/On_Demand_Loading/Makefile:
* examples/POA/Reference_Counted_Servant/Makefile:
* examples/POA/RootPOA/Makefile:
* examples/POA/TIE/Makefile:
* examples/Persistent_Grid/Makefile:
* examples/Quoter/Makefile:
* examples/Simple/bank/Makefile:
* examples/Simple/chat/Makefile:
* examples/Simple/echo/Makefile:
* examples/Simple/grid/Makefile:
* examples/Simple/time/Makefile:
* examples/Simple/time-date/Makefile:
* examples/Simulator/Event_Supplier/Makefile:
* orbsvcs/Concurrency_Service/Makefile:
* orbsvcs/CosEvent_Service/Makefile:
* orbsvcs/Dump_Schedule/Makefile:
* orbsvcs/Event_Service/Makefile:
* orbsvcs/ImplRepo_Service/Makefile:
* orbsvcs/LifeCycle_Service/Makefile:
* orbsvcs/Logging_Service/Makefile:
* orbsvcs/Naming_Service/Makefile:
* orbsvcs/Notify_Service/Makefile:
* orbsvcs/Scheduling_Service/Makefile:
* orbsvcs/Time_Service/Makefile:
* orbsvcs/Trading_Service/Makefile:
* orbsvcs/examples/CosEC/Factory/Makefile:
* orbsvcs/examples/CosEC/Simple/Makefile:
* orbsvcs/examples/Log/Client/Makefile:
* orbsvcs/examples/Log/test/Makefile:
* orbsvcs/examples/Notify/Filter/Makefile:
* orbsvcs/examples/Notify/Subscribe/Makefile:
* orbsvcs/examples/RtEC/MCast/Makefile:
* orbsvcs/examples/RtEC/Schedule/Makefile:
* orbsvcs/examples/RtEC/Simple/Makefile:
* orbsvcs/orbsvcs/Makefile.CosConcurrency:
* orbsvcs/orbsvcs/Makefile.CosEvent:
* orbsvcs/orbsvcs/Makefile.CosLifeCycle:
* orbsvcs/orbsvcs/Makefile.CosNaming:
* orbsvcs/orbsvcs/Makefile.CosNotification:
* orbsvcs/orbsvcs/Makefile.CosProperty:
* orbsvcs/orbsvcs/Makefile.CosTime:
* orbsvcs/orbsvcs/Makefile.CosTrading:
* orbsvcs/orbsvcs/Makefile.DsLogAdmin:
* orbsvcs/orbsvcs/Makefile.RTEvent:
* orbsvcs/orbsvcs/Makefile.RTSched:
* orbsvcs/orbsvcs/Makefile.Svc_Utils:
* orbsvcs/orbsvcs/Makefile.av:
* orbsvcs/tests/AVStreams/Full_Profile/Makefile:
* orbsvcs/tests/AVStreams/Latency/Makefile:
* orbsvcs/tests/AVStreams/Multicast/Makefile:
* orbsvcs/tests/AVStreams/Multicast_Full_Profile/Makefile:
* orbsvcs/tests/AVStreams/Pluggable/Makefile:
* orbsvcs/tests/AVStreams/benchmark/Makefile:
* orbsvcs/tests/Concurrency/Makefile:
* orbsvcs/tests/CosEC_Basic/Makefile:
* orbsvcs/tests/CosEC_Multiple/Makefile:
* orbsvcs/tests/CosEvent/Basic/Makefile:
* orbsvcs/tests/CosEvent/lib/Makefile:
* orbsvcs/tests/EC_Basic/Makefile:
* orbsvcs/tests/EC_Custom_Marshal/Makefile:
* orbsvcs/tests/EC_Mcast/Makefile:
* orbsvcs/tests/EC_Multiple/Makefile:
* orbsvcs/tests/EC_Throughput/Makefile:
* orbsvcs/tests/Event/Basic/Makefile:
* orbsvcs/tests/Event/Performance/Makefile:
* orbsvcs/tests/Event/lib/Makefile:
* orbsvcs/tests/Event_Latency/Makefile:
* orbsvcs/tests/ImplRepo/Makefile:
* orbsvcs/tests/Property/Makefile:
* orbsvcs/tests/Sched/Makefile:
* orbsvcs/tests/Sched_Conf/Makefile:
* orbsvcs/tests/Simple_Naming/Makefile:
* orbsvcs/tests/Time/Makefile:
* orbsvcs/tests/Trading/Makefile:
* performance-tests/Cubit/TAO/DII_Cubit/Makefile:
* performance-tests/Cubit/TAO/IDL_Cubit/Makefile:
* performance-tests/Cubit/TAO/MT_Cubit/Makefile:
* performance-tests/Latency/Makefile:
* performance-tests/POA/Demux/Makefile:
* performance-tests/POA/Object_Creation_And_Registration/Makefile:
* performance-tests/Pluggable/Makefile:
* performance-tests/RTCorba/Multiple_Endpoints/Endpoint_Per_Priority/Makefile:
* performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/Makefile:
* performance-tests/RTCorba/Multiple_Endpoints/Single_Endpoint/Makefile:
* performance-tests/RTCorba/Oneways/Reliable/Makefile:
* performance-tests/Thruput/TAO/Makefile:
* tests/Makefile:
* tests/AMI/Makefile:
* tests/CDR/Makefile:
* tests/Connection_Purging/Makefile:
* tests/DSI_Gateway/Makefile:
* tests/DynAny_Test/Makefile:
* tests/Endpoint_Per_Priority/Makefile:
* tests/Explicit_Event_Loop/Makefile:
* tests/FL_Cube/Makefile:
* tests/Faults/Makefile:
* tests/IDL_Test/Makefile:
* tests/IORManipulation/Makefile:
* tests/InterOp-Naming/Makefile:
* tests/Interceptors/Makefile:
* tests/Leader_Followers/Makefile:
* tests/MProfile/Makefile:
* tests/MProfile_Forwarding/Makefile:
* tests/MT_Client/Makefile:
* tests/MT_Server/Makefile:
* tests/Multiple_Inheritance/Makefile:
* tests/Native_Exceptions/Makefile:
* tests/NestedUpcall/MT_Client_Test/Makefile:
* tests/NestedUpcall/Simple/Makefile:
* tests/NestedUpcall/Triangle_Test/Makefile:
* tests/Nested_Event_Loop/Makefile:
* tests/ORB_init/Makefile:
* tests/Object_Loader/Makefile:
* tests/OctetSeq/Makefile:
* tests/POA/Deactivation/Makefile:
* tests/POA/Destruction/Makefile:
* tests/POA/Identity/Makefile:
* tests/Param_Test/Makefile:
* tests/Smart_Proxies/Makefile:
* tests/Smart_Proxies/On_Demand/Makefile:
* tests/Timed_Buffered_Oneways/Makefile:
* tests/Timeout/Makefile:
* utils/IOR-parser/Makefile:
* utils/catior/Makefile:
* utils/nslist/Makefile:
Updated dependencies.
Wed Apr 26 18:42:38 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
Remove CDR_Interpreter.{h,cpp} from the project files too.
Wed Apr 26 18:30:17 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Makefile:
* tao/CDR_Interpreter.h:
* tao/CDR_Interpreter.cpp:
Removed the TAO_CDR_Interpreter class its main clients were the
encode() and decode() aspects of the interpretive marshaling
engine that was removed sometime ago. This is part of the work
for [BUGID:135]
* tao/ORB.cpp:
There is no need to initialize the TAO_CDR_Interpreter class.
* tao/Typecode.h:
* tao/Typecode.i:
* tao/Typecode.cpp:
Removed a couple of methods that were using the
TAO_CDR_Interpreter. In turn those methods were not used
anymore.
Wed Apr 26 16:57:51 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/CosEvent/CosEvent.dsw:
* tests/CosEvent/Basic/Basic.dsw:
* tests/CosEvent/Basic/Random.dsp:
Add a project file for the new Random test.
* orbsvcs/tests/CosEvent/Basic/run_test.pl:
Add the Random test to the driver script
Wed Apr 26 15:41:23 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/Param_Test/bd_wstr_seq.cpp:
* tests/Param_Test/ub_wstr_seq.cpp:
Use ACE_OS::wscmp() instead of ACE_OS::strcmp() to compare wide
strings.
* tests/Param_Test/Makefile:
Update dependencies
Wed Apr 26 17:34:29 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/diffs/InterceptorC.h.diff:
* tao/InterceptorC.h: Added "#include" for Object.h and
Environment.h for it to compile on SunCC 4.2. Thanks to Carlos
for noticing this.
Wed Apr 26 14:06:28 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.h:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.i:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.h:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.i:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.h:
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.i:
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.cpp:
Include support for nil peers to the ProxyPushConsumer and
ProxyPullSupplier objects. In other words, the application can
push events without having to implement the ProxyPushSupplier
interface or it can pull events without having to implement the
ProxyPullConsumer interface. The disadvantage is that the
application will not receive any notifications if the event
channel terminates. This fixes [BUGID:507]
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp:
The ProxyPushSuppliers and the ProxyPullConsumers should not
receive a nil object references as their peer. If they do they
raise the CORBA::BAD_PARAM exception
* orbsvcs/tests/CosEvent/Basic/Makefile:
* orbsvcs/tests/CosEvent/Basic/Random.h:
* orbsvcs/tests/CosEvent/Basic/Random.cpp:
A CosEvent version of the randomized test for the event
channel. Several threads perform random operations
concurrently. The operations include connecting suppliers and
consumers, disconnecting consumers or suppliers and pushing new
events.
* orbsvcs/tests/Event/Basic/Random.cpp:
To control the rate of the generated events we sleep before
sending each event. This is better than sleeping after each
event is sent, because the latter approach does not work if an
exception is raised while pushing the event.
* tao/Makefile:
* orbsvcs/orbsvcs/Makefile.CosConcurrency:
* orbsvcs/orbsvcs/Makefile.CosEvent:
* orbsvcs/orbsvcs/Makefile.CosLifeCycle:
* orbsvcs/orbsvcs/Makefile.CosNaming:
* orbsvcs/orbsvcs/Makefile.CosNotification:
* orbsvcs/orbsvcs/Makefile.CosProperty:
* orbsvcs/orbsvcs/Makefile.CosTime:
* orbsvcs/orbsvcs/Makefile.CosTrading:
* orbsvcs/orbsvcs/Makefile.DsLogAdmin:
* orbsvcs/orbsvcs/Makefile.RTEvent:
* orbsvcs/orbsvcs/Makefile.RTSched:
* orbsvcs/orbsvcs/Makefile.Svc_Utils:
* orbsvcs/orbsvcs/Makefile.av:
Update dependencies
Wed Apr 26 15:34:00 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/Interceptor.pidl: Renamed "corba.pidl" to "CORBA.pidl".
* tao/diffs/InterceptorC.h.diff:
* tao/Makefile (interceptor.target): Added an example on how to
auto generate code for pidl files with only local interfaces in
them.
Wed Apr 26 12:36:28 2000 Carlos O'Ryan <coryan@uci.edu>
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
The ACE_TRY_ENV argument is not used in the _unchecked_narrow
operation, so there is no sense in generating it. This removes
a bunch of 'unused argument' warnings.
Wed Apr 26 10:57:15 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/LocalObject.i:
* tao/LocalObject.cpp:
* tao/InterceptorC.cpp:
Fixed warnings about unused arguments.
Wed Apr 26 11:50:30 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/InterfaceC.h:
Added Managed_Types.h and Sequence_T.h to included
files. This fixes a compile error with SunCC 4.2
when using exceptions=1 and interface_repo=1.
Thanks to Ramiro Peñataro <penataro@ll.iac.es>
for sending in the bug and the fix.
Wed Apr 26 08:35:25 2000 Darrell Brunsch <brunsch@uci.edu>
* TAO_IDL/fe/fe_extern.cpp:
One more utl_error to utl_err change.
Wed Apr 26 08:26:39 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/LocalObject.h:
* tao/LocalObject.cpp:
Changed CORBA::InterfaceDef to IR::InterfaceDef and
ASYS_TEXT to ACE_TEXT.s
* tao/Object.h:
Cosmetic changes.
Wed Apr 26 02:32:38 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/Makefile:
* TAO_IDL/Makefile.bor:
* TAO_IDL/tao_idl.dsp:
* TAO_IDL/tao_idl_static.dsp:
* TAO_IDL/include/util.h:
* TAO_IDL/include/utl_err.h:
* TAO_IDL/util/utl_err.cpp: Renamed utl_error.* to utl_err.*.
Wed Apr 26 02:19:34 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* docs/releasenotes/index.html:
* docs/LocalObject.html: Added information about local
interfaces.
Tue Apr 25 19:25:28 2000 Nanbor Wang <nanbor@cs.wustl.edu>
Added local interfaces support as defined in the CCM spec.
Currently, all programming contructs (struct, union,
sequence...) occurring within a local interface are treated
correctly by the TAO_IDL compiler. However, if these contructed
types occurred outside of a local interface but contain other
local types, then they don't get necessarily treated correctly
at the moment and should get fixed in no time. Support for
semantic checking is also not complete (e.g., an operation of a
regular interface can not take an argument of any local types.)
Please see the "Portable Interceptor" test under
$TAO_ROOT/tests/Interceptors for an example on how to implement
local objects. Also check out the releasenotes in local
interface section which I will add very soon.
Mon Apr 24 14:41:38 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO/tao/LocalObject.cpp:
* TAO/tao/LocalObject.h: Fixed _is_equivalent's signature.
* TAO/tao/Makefile:
* TAO/tao/Makefile.am:
* TAO/tao/Makefile.bor: Added LocalObject.
* TAO/tao/Object.h:
* TAO/tao/Object.i: Fixed some inlining problems on old gcc.
* TAO/tests/Interceptors/client.cpp:
* TAO/tests/Interceptors/server.cpp:
* TAO/tests/Interceptors/interceptors.cpp:
* TAO/tests/Interceptors/interceptors.h: Fixed gcc specific
problems (like not able to use a var in place of ptr.)
Mon Apr 24 03:40:36 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/ast/ast_decl.cpp:
* TAO_IDL/ast/ast_enum.cpp:
* TAO_IDL/ast/ast_exception.cpp:
* TAO_IDL/ast/ast_generator.cpp:
* TAO_IDL/ast/ast_interface.cpp:
* TAO_IDL/ast/ast_interface_fwd.cpp:
* TAO_IDL/ast/ast_sequence.cpp:
* TAO_IDL/ast/ast_structure.cpp:
* TAO_IDL/ast/ast_type.cpp:
* TAO_IDL/ast/ast_typedef.cpp:
* TAO_IDL/ast/ast_union.cpp:
* TAO_IDL/be/be_enum.cpp:
* TAO_IDL/be/be_exception.cpp:
* TAO_IDL/be/be_generator.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be/be_sequence.cpp:
* TAO_IDL/be/be_structure.cpp:
* TAO_IDL/be/be_typedef.cpp:
* TAO_IDL/be/be_union.cpp:
* TAO_IDL/be/be_valuetype.cpp:
* TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
* TAO_IDL/be/be_visitor_array/array_ch.cpp:
* TAO_IDL/be/be_visitor_array/array_ci.cpp:
* TAO_IDL/be/be_visitor_array/array_cs.cpp:
* TAO_IDL/be/be_visitor_enum/enum_ch.cpp:
* TAO_IDL/be/be_visitor_enum/enum_cs.cpp:
* TAO_IDL/be/be_visitor_exception/exception_ch.cpp:
* TAO_IDL/be/be_visitor_exception/exception_cs.cpp:
* TAO_IDL/be/be_visitor_interface/ami_interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_interface/any_op_cs.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ci.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_si.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
* TAO_IDL/be/be_visitor_module/module.cpp:
* TAO_IDL/be/be_visitor_root/root.cpp:
* TAO_IDL/be/be_visitor_sequence/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_sequence/any_op_cs.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
* TAO_IDL/be/be_visitor_structure/structure_ch.cpp:
* TAO_IDL/be/be_visitor_structure/structure_cs.cpp:
* TAO_IDL/be/be_visitor_typedef/typedef_ch.cpp:
* TAO_IDL/be/be_visitor_typedef/typedef_cs.cpp:
* TAO_IDL/be/be_visitor_union/union_ch.cpp:
* TAO_IDL/be/be_visitor_union/union_cs.cpp:
* TAO_IDL/be/be_visitor_valuetype/valuetype_ch.cpp:
* TAO_IDL/be_include/be_enum.h:
* TAO_IDL/be_include/be_exception.h:
* TAO_IDL/be_include/be_generator.h:
* TAO_IDL/be_include/be_interface.h:
* TAO_IDL/be_include/be_sequence.h:
* TAO_IDL/be_include/be_structure.h:
* TAO_IDL/be_include/be_typedef.h:
* TAO_IDL/be_include/be_union.h:
* TAO_IDL/fe/fe_interface_header.cpp:
* TAO_IDL/fe/idl.yy:
* TAO_IDL/fe/y.tab.cpp:
* TAO_IDL/include/ast_decl.h:
* TAO_IDL/include/ast_enum.h:
* TAO_IDL/include/ast_exception.h:
* TAO_IDL/include/ast_generator.h:
* TAO_IDL/include/ast_interface.h:
* TAO_IDL/include/ast_interface_fwd.h:
* TAO_IDL/include/ast_sequence.h:
* TAO_IDL/include/ast_structure.h:
* TAO_IDL/include/ast_type.h:
* TAO_IDL/include/ast_typedef.h:
* TAO_IDL/include/ast_union.h: Moved the local and
abstract information down into COMMON_Base as many
"types" in IDL files can be "local". TAO_IDL now
propagates the local state from an local interface down
into types defined within the interface correctly.
* tao/Interceptor.cpp:
* tao/Interceptor.h:
* tao/Interceptor.pidl:
* tao/InterceptorC.cpp:
* tao/InterceptorC.h:
* tao/InterceptorC.i:
* tao/InterceptorS.cpp:
* tao/InterceptorS.h: Re-defined the "Portable"
interceptor interfaces as local to test out the local
interfaces. (Notice that we are going to change the
Portable Interceptors interfaces completely to conform
with the latest Portable Interceptors specification.)
* tao/LocalObject.cpp:
* tao/LocalObject.h: Oops, _is_equivalent should always
take an Object, instead of LocalObject.
* tao/ORB.i: Removed the type-checking in interceptor
registration operations because they use _is_a which is
not supported for local interfaces.
* tests/Interceptors/client.cpp:
* tests/Interceptors/interceptors.cpp:
* tests/Interceptors/interceptors.h:
* tests/Interceptors/server.cpp: Revised to test to
demonstrate how to use local interfaces.
Thu Apr 20 03:00:35 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be_include/be_codegen.h: Attribute
accessors/mutators also need to be handled differently
if they are part of a local interface. Added local
attribute states.
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_visitor_attribute/attribute.cpp:
* TAO_IDL/be/be_visitor_interface/interface.cpp: Added
state transition rules for "local attributes."
* TAO_IDL/be/be_visitor_module/module.cpp:
* TAO_IDL/be/be_visitor_operation/arglist.cpp: Fixed
previously missing state transitions.
* TAO_IDL/be/be_interface.cpp: Fixed a syntax error in
generated code.
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp: I
accidentally removed the endif codegen for local
interfaces.
* TAO_IDL/be/be_visitor_interface/interface_ci.cpp: Forgot
to supress codegen for remote object constructor for
local interfaces.
Thu Apr 20 00:40:19 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be_include/be_codegen.h: Added several new
compiler states to propagate local interface information
down the chain.
* TAO_IDL/be/be_visitor_factory.cpp:
* TAO_IDL/be/be_visitor_root/root.cpp:
* TAO_IDL/be/be_visitor_interface/interface.cpp: Changed
to propagate local interface states down the chain.
* TAO_IDL/be/be_visitor_ami_pre_proc.cpp: No need to
preprocess local interfaces for AMI.
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp: Do not
generate typecode information for local interfaces.
* TAO_IDL/be/be_visitor_operation/arglist.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ch.cpp:
Operations of local interfaces should be declared as
pure virtual functions.
* TAO_IDL/be/be_visitor_operation/operation_cs.cpp: Do not
generate code local interface's operations.
Wed Apr 19 04:05:39 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/LocalObject.h:
* tao/LocalObject.i:
* tao/LocalObject.cpp:
* tao/Object.h:
* tao/Object.h: Reverted my previous changes about
differentiating local and remote
_interface_repository_id methods. It didn't solve any
problem. Instead, the LocalObject class should not
implement the _interface_repository_id method to avoid
inheritance ambiguity. Removed _interface_repository_id
method from LocalObject class.
* TAO_IDL/be_include/be_interface.h:
* TAO_IDL/be/be_interface.cpp: Added a new
queryinterface_helper method to help traverse the
inheritance tree and generate the proper
_tao_QueryInterface implementation.
* TAO_IDL/be/be_visitor_interface/any_op_ch.cpp:
* TAO_IDL/be/be_visitor_interface/any_op_cs.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_interface/cdr_op_cs.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
Implemented local interface code generation and remove
the old hack for generating locality constraint
interfaces.
* TAO_IDL/be/be_visitor_operation/operation.cpp:
* TAO_IDL/be/be_visitor_operation/arglist.cpp:
* TAO_IDL/be/be_visitor_operation/operation_cs.cpp:
* TAO_IDL/be/be_visitor_operation/operation_sh.cpp:
* TAO_IDL/be/be_visitor_operation/operation_ss.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_ch.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_ci.cpp:
* TAO_IDL/be/be_visitor_sequence/cdr_op_cs.cpp:
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_si.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Removed code for generating locality constraint
interfaces. They are superceded by local interfaces.
* docs/compiler.html:
* TAO_IDL/be/be_codegen.cpp:
* TAO_IDL/include/idl_global.h:
* TAO_IDL/util/utl_global.cpp:
* TAO_IDL/driver/drv_args.cpp: Removed support for -Gl
flag which directed idl compiler to generate locality
constraint interfaces. This is now depreciated.
Tue Apr 18 16:06:11 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp: The
idl compiler must generate
<_remote_interface_repository_id> for remote client
stubs now.
* TAO_IDL/be/be_visitor_interface/interface_sh.cpp:
* TAO_IDL/be/be_visitor_interface/interface_si.cpp:
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp: Do not
generate skeletons for local interfaces.
* tao/Object.h:
* tao/Object.i:
* tao/Object.cpp: Changed the method
<_interface_repository_id> as inlined, non-virtual
function and invoke either
<_remote_interface_repository_id> or
<_local_interface_repository_id> depending on whether
the interface is remote or local. Added the two
aforementioned new virtual functions.
* tao/LocalObject.h:
* tao/LocalObject.cpp: Rename <_interface_repository_id>
to <_local_interface_repository_id>.
Tue Apr 18 03:17:37 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/corba.h: Included "tao/LocalObject" in this file.
* tao/LocalObject.h:
* tao/LocalObject.cpp: Changed <_is_a> operation back to
throw NO_IMPLEMENT exception.
Tue Apr 18 02:03:12 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be_include/be_interface.h: Forgot to initialize
other virtual base classes in be_local_interface and
be_abstract_interface.
* TAO_IDL/ast/ast_interface.cpp (fwd_redefinition_helper):
Added redefinition check for local interface (forward
declaration must match with the actual definition.)
* TAO_IDL/fe/fe_interface_header.h:
* TAO_IDL/fe/fe_interface_header.cpp (check_further):
Added check for inproper inheritance of local interface.
A remote interface can not inherit from local
interfaces. Also changed to compile the inheritance in
the derived class'es constructors.
Mon Apr 17 20:48:42 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/fe/y.tab.h:
* TAO_IDL/fe/idl.ll:
* TAO_IDL/fe/lex.yy.cpp:
* TAO_IDL/fe/lex.yy.cpp.diff: Added a new token IDL_LOCAL.
* TAO_IDL/fe/idl.yy:
* TAO_IDL/fe/y.tab.cpp: Added rules for local and abstract
interfaces. Currently, however, abstract interface is
still not supported.
* TAO_IDL/include/ast_generator.h:
* TAO_IDL/ast/ast_generator.cpp:
* TAO_IDL/be_include/be_generator.h:
* TAO_IDL/be/be_generator.cpp: Modified the
{be_ast}_generate::create_{interface|interface_fwd} to
create different interface type based on the information
passed in from FE_InterfaceHeader.
* TAO_IDL/include/fe_interface_header.h:
* TAO_IDL/fe/fe_interface_header.cpp: Added new methods,
is_local and is_abstract to differentiate the type of
interface being parsed.
* TAO_IDL/ast/ast_interface.cpp:
* TAO_IDL/ast/ast_interface_fwd.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be_include/be_interface.h:
* TAO_IDL/include/ast_interface.h:
* TAO_IDL/include/ast_interface_fwd.h: Extended
{be|ast}_interface and ast_interface_fwd to represent
"local" and "abstract" interfaces other than regular
CORBA interface. Two new methods, is_local_interface
and is_abstract_interface, are added to differentiate
the interface type.
I didn't create new visitor classes for either local or
abstract interfaces because they more or less generate
subset of regular interface and it's esier to simply
"turn off" some feature of regular interface depend on
the type of interfaces we are generating.
Mon Apr 17 13:18:29 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* TAO_IDL/fe/idl.ll:
* TAO_IDL/fe/y.tab.h:
* TAO_IDL/fe/lex.yy.cpp:
* TAO_IDL/fe/lex.yy.cpp.diff: Added the "local" keyword.
Thu Apr 13 02:00:09 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/Object.h:
* tao/Object.i:
* tao/Object.cpp: Added implementation of
_tao_QueryInterface. This method is used to downcast
local object. Added a member data called <is_local_>
and a readonly accessor. We use this method to find out
whether an object reference points to a local object or
not. <_narrow> behaves differently for LocalObject and
Object.
* tao/LocalObject.h:
* tao/LocalObject.i:
* tao/LocalObject.cpp: Added implementation of
_tao_QueryInterface.
Sat Apr 01 02:04:09 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* tao/corbafwd.h:
* tao/LocalObject.cpp:
* tao/LocalObject.h:
* tao/LocalObject.i:
* tao/TAO.dsp:
* tao/TAO_Static.dsp: Added LocalObject.*
* tao/Object.cpp:
* tao/Object.h:
* tao/Object.i: Changed _incr_refcnt and _decr_refcnt to
protected method. Added two new virtual function
_add_ref and _remove_ref which call _incr_refcnt and
_decr_refcnt to manage the reference counting of
objects. The CCM specifies these functions for
LocalObject. So we need to change to use them in Object
also.
* be/be_visitor_interface/interface_cs.cpp:
* tao/CurrentC.cpp:
* tao/DomainC.cpp:
* tao/DynAnyC.cpp:
* tao/IORC.cpp:
* tao/ImplRepoC.cpp:
* tao/InterceptorC.cpp:
* tao/InterfaceC.cpp:
* tao/MessagingC.i:
* tao/Object.cpp:
* tao/Object.i:
* tao/POAC.cpp:
* tao/PolicyC.cpp:
* tao/PolicyC.i:
* tao/PollableC.i:
* tao/RT_Current.cpp:
* tao/TAOC.cpp: Changed to use _incr_refcnt and
_decr_refcnt for Object derived interfaces.
Tue Apr 25 19:45:18 2000 Ossama Othman <ossama@uci.edu>
* tao/IORManipulation.cpp:
* tao/Object.cpp:
Moved template instantations for auto_ptr<TAO_MProfile> to
IORManipulation.cpp. auto_ptr<TAO_MProfile> is only used by
TAO_IOR_Manipulation. One less potential contributor to
footprint.
* tao/Makefile:
Updated dependencies.
Tue Apr 25 15:05:48 2000 Ossama Othman <ossama@uci.edu>
* tao/Profile.h:
* tao/IIOP_Profile.h:
* tao/IIOP_Profile.i:
* tao/IIOP_Profile.cpp:
* tao/UIOP_Profile.h:
* tao/UIOP_Profile.i:
* tao/UIOP_Profile.cpp:
* tao/SHMIOP_Profile.h:
* tao/SHMIOP_Profile.i:
* tao/SHMIOP_Profile.cpp:
Removed copy constructor and assignment operator
implementations, and declared them to be ACE_UNIMPLEMENTED_FUNC
and private. TAO_Profile instances should not be copied.
(object_key):
Removed deprecated method that sets the underlying object key.
(hash):
Improved the hashing code to provide a more a unique hash by
utilizing the ACE::hash_pjw() method, and the profile tag, in
addition to values that were used before. [Bug 543]
* tao/IIOP_Profile.cpp (set):
* tao/SHMIOP_Profile.cpp (set):
If hostname lookup fails, then fallback on the IP address.
* tao/Object.cpp (_is_a, _key, _non_existent, _create_request,
_request, _get_interface, _set_policy_overrides):
Added error (errno) minor codes to some of the exceptions that
potentially get thrown to improve information supplied by the
exception.
* tao/Connector_Registry.cpp (object_key_delimiter):
Set errno to EINVAL if the supplied IOR pointer is null.
Tue Apr 25 15:10:25 2000 Carlos O'Ryan <coryan@uci.edu>
* tao/Exception.h:
* tao/Exception.cpp:
The _raise() method for CORBA::SystemException should be pure
virtual, thanks to Jonathan Biggar <jon@biggar.org>, Charles
Frasch <cfrasch@spawar.navy.mil> for suggesting the right fixes
and Benoit Viaud <benoit.viaud@artal.fr> for pointing this out.
* tao/Makefile:
Updated dependencies
Tue Apr 25 12:39:41 2000 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/RTCorba/Multiple_Endpoints/Orb_Per_Priority/Makefile:
More stuff that should not build when minimum corba is enabled.
* tests/Native_Exceptions/Makefile:
The magic to disable the build when native exceptions where
disabled was not working. I changed it to use something similar
to all the other makfiles and now it seems to work ok.
Tue Apr 25 12:08:49 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/examples/RtEC/MCast/MCast.cpp:
Exception handling code for the mcast_eh.close() call was
incorrect.
The subscriptions of the multicast sender were incorrectly
initialized.
* orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp:
The constructor was not initializing the timeout_counter_
field.
Fixed the EGC_Mcast_EH::close() method, it was mistakenly
reporting errors when it shouldn't.
* orbsvcs/examples/RtEC/MCast/MCast.dsw:
* orbsvcs/examples/RtEC/MCast/MCast.dsp:
Add NT project file and workspace for this example.
Tue Apr 25 10:05:10 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/examples/RtEC/MCast/Consumer.cpp:
* orbsvcs/examples/RtEC/MCast/Makefile:
* orbsvcs/examples/RtEC/MCast/Supplier.cpp:
* orbsvcs/tests/Event/Basic/Random.cpp:
Fixed warnings and errors in platforms that lack exception
handling.
* tests/Object_Loader/Makefile:
Fixed the realclean target.
* tests/MProfile/server.cpp:
* tests/MProfile/test_i.h:
* tests/MProfile/test_i.cpp:
Removed extra POA, that way the test can compile even when
minimum corba is enabled.
* examples/Load_Balancing_persistent/Makefile:
* performance-tests/RTCorba/Multiple_Endpoints/Endpoint_Per_Priority/Makefile:
* tests/MProfile_Forwarding/Makefile:
Disable for minimum CORBA builds
Mon Apr 24 15:24:19 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/examples/RtEC/Makefile:
* orbsvcs/examples/RtEC/MCast/Makefile:
* orbsvcs/examples/RtEC/MCast/README:
* orbsvcs/examples/RtEC/MCast/svc.conf:
* orbsvcs/examples/RtEC/MCast/AddrServer.h:
* orbsvcs/examples/RtEC/MCast/AddrServer.cpp:
* orbsvcs/examples/RtEC/MCast/Consumer.h:
* orbsvcs/examples/RtEC/MCast/Consumer.cpp:
* orbsvcs/examples/RtEC/MCast/MCast.h:
* orbsvcs/examples/RtEC/MCast/MCast.cpp:
* orbsvcs/examples/RtEC/MCast/MCast.dsp:
* orbsvcs/examples/RtEC/MCast/Supplier.h:
* orbsvcs/examples/RtEC/MCast/Supplier.cpp:
A new simple example that shows how to use multicast to federate
multiple event channels. This fixes [BUGID:344]
* orbsvcs/examples/RtEC/Simple/Consumer.h:
* orbsvcs/examples/RtEC/Simple/Supplier.h:
Fixed the comments.
* orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp:
It was rejecting the ACE_ES_UNDEFINED_EVENT which is the first
event available to the user.
* orbsvcs/orbsvcs/Event/EC_ObserverStrategy.cpp:
Use STL style iterators for the event header collection.
Mon Apr 24 14:38:15 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/orbsvcs_static.dsw:
* orbsvcs/orbsvcs/orbsvcs_static.dsp:
* orbsvcs/orbsvcs/AV_Static.dsp:
* orbsvcs/orbsvcs/CosConcurrency_Static.dsp:
* orbsvcs/orbsvcs/CosEvent_Static.dsp:
* orbsvcs/orbsvcs/CosLifeCycle_Static.dsp:
* orbsvcs/orbsvcs/CosNaming_Static.dsp:
* orbsvcs/orbsvcs/CosNotification_Static.dsp:
* orbsvcs/orbsvcs/CosProperty_Static.dsp:
* orbsvcs/orbsvcs/CosTime_Static.dsp:
* orbsvcs/orbsvcs/CosTrading_Static.dsp:
* orbsvcs/orbsvcs/DsLogAdmin_Static.dsp:
* orbsvcs/orbsvcs/RTEvent_Static.dsp:
* orbsvcs/orbsvcs/RTSched_Static.dsp:
* orbsvcs/orbsvcs/Svc_Utils_Static.dsp:
New project to build each service as a static library.
* tao/TAO_Static.dsp:
In Release mode ACE is compiled with inline functions enabled,
so should be the TAO static library.
* examples/Simple/time/client.dsp:
* examples/Simple/time/client_static.dsp:
* examples/Simple/time/server_static.dsp:
Use the new static ORBSVCS libraries.
Compile using the correct macro settings (TAO_NAMING_HAS_DLL=0,
ACE_NO_INLINE cannot be defined for release builds, etc.)
Remove obsolete dependencies on the TAO IDL compiler.
* orbsvcs/orbsvcs/CosTrading.dsp:
Remove template files from the release build.
Mon Apr 24 11:46:56 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/ESF/ESF_Proxy_RB_Tree.cpp:
Fixed memory management problems with the RB Tree based proxy
collections.
Mon Apr 24 13:16:23 2000 Shawn Hannan <hannan@tango.cs.wustl.edu>
* orbsvcs/examples/RtEC/Simple/Supplier.h:
* orbsvcs/examples/RtEC/Simple/Consumer.h: Fixed minor typos
Sun Apr 23 16:15:16 2000 Darrell Brunsch <brunsch@uci.edu>
* orbsvcs/orbsvcs/Naming/Persistent_Context_Index.cpp:
I missed a LPTSTR during my last changes (all the win32 specific
macros were replaced with ACE_TCHAR types). Thanks to Yamuna for
spotting this.
Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
* TAO/TAO_IDL/ast/ast_module.cpp:
* TAO/TAO_IDL/be/be_exception.cpp:
* TAO/TAO_IDL/be/be_sequence.cpp:
* TAO/TAO_IDL/be/be_structure.cpp:
* TAO/TAO_IDL/be/be_union.cpp:
* TAO/TAO_IDL/be/be_visitor_operation/ami_exception_holder_operation_ch.cpp:
* TAO/TAO_IDL/be/be_visitor_operation/ami_exception_holder_operation_cs.cpp:
* TAO/TAO_IDL/be/be_visitor_operation/arglist.cpp:
* TAO/TAO_IDL/be/be_visitor_typecode/typecode_defn.cpp:
* TAO/TAO_IDL/util/utl_global.cpp:
* TAO/examples/Load_Balancing_persistent/Identity_Client.cpp:
* TAO/examples/Load_Balancing_persistent/Load_Balancer_i.cpp:
* TAO/examples/Logging/Logger_i.cpp:
* TAO/examples/Simple/time-date/server.cpp:
* TAO/orbsvcs/IFR_Service/TCF_Loader.cpp:
* TAO/orbsvcs/ImplRepo_Service/ImplRepo_i.cpp:
* TAO/orbsvcs/ImplRepo_Service/Options.cpp:
* TAO/orbsvcs/ImplRepo_Service/Options.h:
* TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp:
* TAO/orbsvcs/ImplRepo_Service/tao_imr_i.cpp:
* TAO/orbsvcs/ImplRepo_Service/tao_imr_i.h:
* TAO/orbsvcs/Naming_Service/NT_Naming_Service.cpp:
* TAO/orbsvcs/Naming_Service/NT_Naming_Service.h:
* TAO/orbsvcs/Naming_Service/Naming_Service.cpp:
* TAO/orbsvcs/Naming_Service/Naming_Service.h:
* TAO/orbsvcs/orbsvcs/IOR_Multicast.cpp:
* TAO/orbsvcs/orbsvcs/AV/RTCP.cpp:
* TAO/orbsvcs/orbsvcs/AV/RTP.cpp:
* TAO/orbsvcs/orbsvcs/AV/TCP.cpp:
* TAO/orbsvcs/orbsvcs/AV/UDP.cpp:
* TAO/orbsvcs/orbsvcs/AV/sfp.cpp:
* TAO/orbsvcs/orbsvcs/CosEvent/CEC_Default_Factory.cpp:
* TAO/orbsvcs/orbsvcs/Event/EC_Default_Factory.cpp:
* TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp:
* TAO/orbsvcs/orbsvcs/Event/EC_Gateway_UDP.h:
* TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.cpp:
* TAO/orbsvcs/orbsvcs/Naming/Naming_Utils.h:
* TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.cpp:
* TAO/orbsvcs/orbsvcs/Naming/Persistent_Context_Index.h:
* TAO/orbsvcs/orbsvcs/Trader/Trader.cpp:
* TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp:
* TAO/performance-tests/Cubit/TAO/MT_Cubit/server.cpp:
* TAO/tao/Acceptor_Registry.cpp:
* TAO/tao/Any.cpp:
* TAO/tao/Connector_Registry.cpp:
* TAO/tao/DomainS.cpp:
* TAO/tao/Environment.cpp:
* TAO/tao/Exception.cpp:
* TAO/tao/GIOP_Message_Accept_State.cpp:
* TAO/tao/GIOP_Message_Acceptors.cpp:
* TAO/tao/GIOP_Message_Base.cpp:
* TAO/tao/GIOP_Message_Connectors.cpp:
* TAO/tao/GIOP_Message_Lite.cpp:
* TAO/tao/GIOP_Server_Request.cpp:
* TAO/tao/GIOP_Utils.cpp:
* TAO/tao/IIOP_Acceptor.cpp:
* TAO/tao/IIOP_Connect.cpp:
* TAO/tao/IIOP_Connector.cpp:
* TAO/tao/IIOP_Factory.cpp:
* TAO/tao/IIOP_Lite_Factory.cpp:
* TAO/tao/IIOP_Profile.cpp:
* TAO/tao/IIOP_Transport.cpp:
* TAO/tao/Invocation.cpp:
* TAO/tao/Leader_Follower.cpp:
* TAO/tao/Leader_Follower.i:
* TAO/tao/Messaging_Policy_i.cpp:
* TAO/tao/NVList.cpp:
* TAO/tao/ORB.cpp:
* TAO/tao/ORB_Core.cpp:
* TAO/tao/Object.cpp:
* TAO/tao/Operation_Table.cpp:
* TAO/tao/POA.cpp:
* TAO/tao/POAS.cpp:
* TAO/tao/Pluggable.cpp:
* TAO/tao/Pluggable_Messaging.cpp:
* TAO/tao/Pool_Per_Endpoint.cpp:
* TAO/tao/Reactor_Per_Priority.cpp:
* TAO/tao/Reply_Dispatcher.cpp:
* TAO/tao/Request.cpp:
* TAO/tao/SHMIOP_Acceptor.cpp:
* TAO/tao/SHMIOP_Acceptor.h:
* TAO/tao/SHMIOP_Connect.cpp:
* TAO/tao/SHMIOP_Connector.cpp:
* TAO/tao/SHMIOP_Factory.cpp:
* TAO/tao/SHMIOP_Profile.cpp:
* TAO/tao/SHMIOP_Transport.cpp:
* TAO/tao/Stub.cpp:
* TAO/tao/Stub.i:
* TAO/tao/TAO.cpp:
* TAO/tao/Transport_Mux_Strategy.cpp:
* TAO/tao/Typecode.cpp:
* TAO/tao/UIOP_Connector.cpp:
* TAO/tao/UIOP_Factory.cpp:
* TAO/tao/UIOP_Lite_Factory.cpp:
* TAO/tao/UIOP_Profile.cpp:
* TAO/tao/UIOP_Transport.cpp:
* TAO/tao/ValueBase.cpp:
* TAO/tao/Wait_Strategy.cpp:
* TAO/tao/append.cpp:
* TAO/tao/default_client.cpp:
* TAO/tao/default_resource.cpp:
* TAO/tao/default_server.cpp:
* TAO/tao/qt_resource.cpp:
* TAO/tao/skip.cpp:
* TAO/tao/xt_resource.cpp:
* TAO/tests/Smart_Proxies/server.cpp:
* TAO/tests/Smart_Proxies/On_Demand/server.cpp:
Made the appropriate changes based on the Wide Character support
I did in ACE. Mainly just renaming the ASYS_* macros to their
ACE_* equivalents.
Unicode support in TAO is pretty iffy right now anyway, so it is
debatable if any of these macros will continue to be used in TAO.
Sat Apr 22 01:31:13 2000 Nanbor Wang <nanbor@cs.wustl.edu>
* docs/Options.html: Added a reminder for compiling idl files with
-Gd flag if "direct" collocation strategy is to be used on those
interfaces. Thanks to Klemen Zagar <klemen.zagar@ijs.si> for
uncovering the inadquency.
Fri Apr 21 20:04:53 2000 Darrell Brunsch <brunsch@uci.edu>
* tests/Explicit_Event_Loop/Explicit_Event_Loop.dsw: (added)
* tests/Explicit_Event_Loop/client.dsp: (added)
* tests/Explicit_Event_Loop/server.dsp: (added)
Added the MSVC projects for this test.
* tests/Explicit_Event_Loop/server.cpp:
Fixed a warning on Kai, at the end there was return 0 that
was unreached. Altered the return statements so this should
not occur anymore.
Fri Apr 21 20:13:49 2000 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/POA/Demux/demux_test_client.cpp:
* performance-tests/POA/Demux/demux_test_server.cpp:
The ORB id strings were not const-correct, but they are
actually not needed for this test so I just use empty strings as
ids.
Fri Apr 21 19:41:20 2000 Darrell Brunsch <brunsch@uci.edu>
* TAO/orbsvcs/ImplRepo_Service/ImplRepo_i.cpp:
* TAO/orbsvcs/ImplRepo_Service/ImplRepo_i.h:
* TAO/orbsvcs/ImplRepo_Service/Options.cpp:
* TAO/orbsvcs/ImplRepo_Service/Options.h:
The ImR now pings a server right after starting it up. It will
not forward the client until after the server responds to a ping
(or times out). This prevents annoying race conditions where a
server can notify the ImR but not be ready for requests yet.
Thanks to Steve Totten <totten_s@ociweb.com> and Chanaka
Liyanaarachchi <chanaka@ociweb.com> for providing examples and
info on what was happening.
Fri Apr 21 18:40:12 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/MProfile/test_i.cpp:
Removed an extra #include, the file included does not exist and
it is not needed, clearly too much cut&paste programming.
Fri Apr 21 17:31:55 2000 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* examples/Simple: Updated the README files in all these directories
thanks to Pradeep's help.
Fri Apr 21 17:19:33 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* examples/Simple/chat/README:
added a section on using a file to publish the server IOR.
Fri Apr 21 13:27:56 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* orbsvcs/orbsvcs/Notify/Notify_Resource_Manager.cpp:
dereference <default_filter_factory_> via in ()
* orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.h:
* orbsvcs/orbsvcs/Notify/Notify_SupplierAdmin_i.h:
modified #pragma once usage
- fixes for Vxworks warnings
Fri Apr 21 09:15:08 2000 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/POA/Demux/demux_test_server.cpp:
* performance-tests/POA/Demux/demux_test_client.cpp:
Fixed 'unreached statement' warnings. When using ACE_RETHROW
the return statement must go after the ACE_ENDTRY, actually
implicit in an ACE_CHECK_RETURN macro.
Fri Apr 21 10:36:29 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/util/utl_scope.cpp:
Warnings for case-only differences in spellings (-Cw)
were stopping code generation the same as an
error would. Code generation now proceeds normally
for warnings. Thanks to Moore Y. Cao <yilincao@lucent.com>
for reporting this bug.
Thu Apr 20 21:05:42 2000 Darrell Brunsch <brunsch@uci.edu>
* orbsvcs/examples/CosEC/Factory/FactoryClient.dsp:
* orbsvcs/examples/CosEC/Factory/FactoryServer.dsp:
* tests/AMI/AMI_Test_Client.dsp:
* tests/AMI/AMI_Test_Server.dsp:
* tests/AMI/AMI_Test_Simple_Client.dsp:
Fixed the IDL file custom builds so they have the correct
release builds and dependency information.
Thu Apr 20 20:14:14 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/IIOP_Transport.h:
* tao/IIOP_Transport.cpp:
* tao/SHMIOP_Transport.cpp:
* tao/SHMIOP_Transport.h:
* tao/UIOP_Transport.h:
* tao/UIOP_Transport.cpp: Thanks to Phil Mesnier
<mesnier_p@ociweb.com> for finding out that the Transport
classes store two copies of the connection handler pointers. One
of them was held by the concrete implementation classes and
other by the base class. So, removed the redundant copy in the
implementation class.
Thu Apr 20 20:04:01 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ConsumerAdmin_i.h:
* orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_EventChannelFactory_i.h:
* orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_EventChannel_i.h:
* orbsvcs/orbsvcs/Notify/Notify_Event_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Event_Manager.h:
* orbsvcs/orbsvcs/Notify/Notify_FilterAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_FilterFactory_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Filter_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Listeners.h:
* orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ProxyPushConsumer_i.h:
* orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_ProxyPushSupplier_i.h:
* orbsvcs/orbsvcs/Notify/Notify_ProxySupplier_T.h:
* orbsvcs/orbsvcs/Notify/Notify_Proxy_T.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Proxy_T.h:
* orbsvcs/orbsvcs/Notify/Notify_QoSAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Resource_Manager.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Resource_Manager.h:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushConsumer_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushConsumer_i.h:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_SequenceProxyPushSupplier_i.h:
* orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushConsumer_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushConsumer_i.h:
* orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_StructuredProxyPushSupplier_i.h:
* orbsvcs/orbsvcs/Notify/Notify_SupplierAdmin_i.cpp:
* orbsvcs/orbsvcs/Notify/Notify_SupplierAdmin_i.h:
* orbsvcs/orbsvcs/Notify/Notify_Types.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Types.h:
Fixed the bug in the EC destroy method. Thanks to Boris <Boris@webglide.com>
for reporting this.
Also made most of the changes that were suggested in the previous code review.
Thu Apr 20 16:36:51 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/Logging_Service/Makefile:
* orbsvcs/Notify_Service/Makefile:
* orbsvcs/tests/AVStreams/benchmark/Makefile:
* performance-tests/Latency/Makefile:
More makefiles that were out of date or did not work correctly
with non-default configurations.
Thu Apr 20 15:42:18 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/ORB.cpp:
Changes suggested by Carlos to prevent actual and
possible memory leaks.
Thu Apr 20 13:50:01 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/ORB_Core.h:
* tao/ORB_Core.i:
* tao/ORB_Core.cpp:
New field typecode_factory_, along with accessors
initialization, and release code.
* ORB.cpp:
Modified case for resolve_initial_references ("TypeCodeFactory")
to use the above field, and to fill it if it is null.
Thu Apr 20 12:08:10 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* examples/Load_Balancing_persistent/Load_Balancer_i.cpp: Fixed a
compiler error in SGI.
Thu Apr 20 09:31:41 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/MProfile_Forwarding/test_i.h:
* tests/MProfile_Forwarding/test_i.cpp:
Add missing throw specs.
* performance-tests/POA/Demux/demux_test_i.h:
* performance-tests/POA/Demux/demux_test_i.cpp:
Add missing throw specs.
* tests/Explicit_Event_Loop/server.cpp:
Remove unreachable statement.
Wed Apr 19 20:16:42 2000 Carlos O'Ryan <coryan@uci.edu>
* tests/Smart_Proxies/On_Demand/Makefile:
This directory should not be built unless smart proxies are
enabled.
* orbsvcs/tests/AVStreams/Full_Profile/Makefile:
* orbsvcs/tests/AVStreams/Latency/Makefile:
* orbsvcs/tests/AVStreams/Multicast/Makefile:
* orbsvcs/tests/AVStreams/Multicast_Full_Profile/Makefile:
* orbsvcs/tests/AVStreams/Pluggable/Makefile:
* orbsvcs/tests/AVStreams/mpeg/source/client/Makefile:
* orbsvcs/tests/AVStreams/mpeg/source/mpeg_client/Makefile:
* orbsvcs/tests/AVStreams/mpeg/source/mpeg_server/Makefile:
* orbsvcs/tests/AVStreams/mpeg/source/mpeg_shared/Makefile:
* orbsvcs/tests/AVStreams/mpeg/source/server/Makefile:
The AV library has been renamed.
* examples/Load_Balancing_persistent/Identity_Client.cpp:
* examples/Load_Balancing_persistent/Identity_Server.cpp:
* examples/Load_Balancing_persistent/Identity_i.cpp:
* examples/Load_Balancing_persistent/Load_Balancer_i.cpp:
* orbsvcs/examples/Notify/Subscribe/Subscribe.cpp:
* orbsvcs/orbsvcs/AV/AVStreams_i.h:
* orbsvcs/orbsvcs/AV/Policy.h:
* orbsvcs/orbsvcs/AV/Policy.cpp:
* orbsvcs/tests/AVStreams/Latency/ping.cpp:
* orbsvcs/tests/AVStreams/Latency/pong.cpp:
* performance-tests/POA/Demux/client.cpp:
* performance-tests/POA/Demux/demux_test_client.cpp:
* performance-tests/POA/Demux/demux_test_server.cpp:
* performance-tests/POA/Demux/demux_test_server.h:
* performance-tests/POA/Demux/server.cpp:
* tests/MProfile_Forwarding/Manager.cpp:
* tests/MProfile_Forwarding/Servant_Locator.cpp:
* tests/Native_Exceptions/client.cpp:
* tests/Native_Exceptions/test_i.cpp:
Fixed minor warnings and some more severe errors in old code
that was out of the regular compilation path. Now things seem
happy.
Wed Apr 19 20:41:40 2000 Pradeep Gore <pradeep@flamenco.cs.wustl.edu>
* orbsvcs/Logging_Service/Makefile:
* orbsvcs/Notify_Service/Makefile:
added $(TAO_ROOT)/rules.tao.GNU macros. Thanks to Thomas Groth
<groth.th@t-online.de> for providing the fix.
Wed Apr 19 17:47:12 2000 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/Cubit/README:
* performance-tests/Cubit/COOL/Makefile: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/Makefile: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/README: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/client.cpp: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/client.h: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/cubit.idl: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/cubit_i.cpp: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/cubit_i.h: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/server.cpp: (removed)
* performance-tests/Cubit/COOL/IDL_Cubit/tmplinst.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/Makefile: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/README: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/Task_Client.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/Task_Client.h: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/Util_Thread.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/Util_Thread.h: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/client.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/client.h: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/cubit.idl: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/cubit_i.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/cubit_i.h: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/pccTimer.cpp: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/pccTimer.h: (removed)
* performance-tests/Cubit/COOL/MT_Cubit/server.cpp: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/Makefile: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/README: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/clnt.cpp: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/clnt.h: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/cubit.idl: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/cubit_i.cpp: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/cubit_i.h: (removed)
* performance-tests/Cubit/CORBAplus/IDL_Cubit/svr.cpp: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/Makefile: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/README: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/client/Makefile: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/client/Task_Client.cpp: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/client/Task_Client.h: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/client/client.cpp: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/client/cubit.idl: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/server/Makefile: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/server/cubit.idl: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/server/cubit_i.cpp: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/server/cubit_i.h: (removed)
* performance-tests/Cubit/CORBAplus/MT_Cubit/server/svr.cpp: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/Imakefile: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/Makefile: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/README: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/client.cpp: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/client_i.cpp: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/client_i.h: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/cubit.idl: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/cubit_impl.cc: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/cubit_impl.hh: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/initref.cfg: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/server.cpp: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/server_i.cpp: (removed)
* performance-tests/Cubit/Hardpack/IDL_Cubit/server_i.h: (removed)
* performance-tests/Cubit/Orbix/Makefile: (removed)
* performance-tests/Cubit/Orbix/orb.mk: (removed)
* performance-tests/Cubit/Orbix/base_server/Makefile: (removed)
* performance-tests/Cubit/Orbix/base_server/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/base_server/cubit_impl.cpp: (removed)
* performance-tests/Cubit/Orbix/base_server/cubit_impl.h: (removed)
* performance-tests/Cubit/Orbix/base_server/server.cpp: (removed)
* performance-tests/Cubit/Orbix/client/Makefile: (removed)
* performance-tests/Cubit/Orbix/client/client.cpp: (removed)
* performance-tests/Cubit/Orbix/client/cubit.h: (removed)
* performance-tests/Cubit/Orbix/client/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/client/cubitC.cpp: (removed)
* performance-tests/Cubit/Orbix/factory_client/Makefile: (removed)
* performance-tests/Cubit/Orbix/factory_client/client.cpp: (removed)
* performance-tests/Cubit/Orbix/factory_client/cubit.h: (removed)
* performance-tests/Cubit/Orbix/factory_client/cubit.hh: (removed)
* performance-tests/Cubit/Orbix/factory_client/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/factory_client/cubitC.cpp: (removed)
* performance-tests/Cubit/Orbix/factory_client/cubitS.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/Makefile: (removed)
* performance-tests/Cubit/Orbix/tpool/cubit.h: (removed)
* performance-tests/Cubit/Orbix/tpool/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/tpool/cubitC.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/cubitS.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/cubit_impl.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/cubit_impl.h: (removed)
* performance-tests/Cubit/Orbix/tpool/server.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/tpool.cpp: (removed)
* performance-tests/Cubit/Orbix/tpool/tpool.h: (removed)
* performance-tests/Cubit/Orbix/tpr/Makefile: (removed)
* performance-tests/Cubit/Orbix/tpr/cubit.h: (removed)
* performance-tests/Cubit/Orbix/tpr/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/tpr/cubitC.cpp: (removed)
* performance-tests/Cubit/Orbix/tpr/cubitC.h: (removed)
* performance-tests/Cubit/Orbix/tpr/cubitS.cpp: (removed)
* performance-tests/Cubit/Orbix/tpr/cubitS.h: (removed)
* performance-tests/Cubit/Orbix/tpr/cubit_impl.cpp: (removed)
* performance-tests/Cubit/Orbix/tpr/cubit_impl.h: (removed)
* performance-tests/Cubit/Orbix/tpr/server.cpp: (removed)
* performance-tests/Cubit/Orbix/tpr/tpr.cpp: (removed)
* performance-tests/Cubit/Orbix/tpr/tpr.h: (removed)
* performance-tests/Cubit/Orbix/tps/Makefile: (removed)
* performance-tests/Cubit/Orbix/tps/cubit.h: (removed)
* performance-tests/Cubit/Orbix/tps/cubit.idl: (removed)
* performance-tests/Cubit/Orbix/tps/cubitC.cpp: (removed)
* performance-tests/Cubit/Orbix/tps/cubitS.cpp: (removed)
* performance-tests/Cubit/Orbix/tps/cubit_impl.cpp: (removed)
* performance-tests/Cubit/Orbix/tps/cubit_impl.h: (removed)
* performance-tests/Cubit/Orbix/tps/tps.cpp: (removed)
* performance-tests/Cubit/Orbix/tps/tps.h: (removed)
* performance-tests/Cubit/VisiBroker/base_server/Makefile: (removed)
* performance-tests/Cubit/VisiBroker/base_server/Profile_Timer.cpp: (removed)
* performance-tests/Cubit/VisiBroker/base_server/Profile_Timer.h: (removed)
* performance-tests/Cubit/VisiBroker/base_server/cubit.idl: (removed)
* performance-tests/Cubit/VisiBroker/base_server/cubit_impl.cpp: (removed)
* performance-tests/Cubit/VisiBroker/base_server/cubit_impl.h: (removed)
* performance-tests/Cubit/VisiBroker/base_server/server.cpp: (removed)
* performance-tests/Cubit/VisiBroker/base_server/stdmk: (removed)
* performance-tests/Cubit/VisiBroker/client/Makefile: (removed)
* performance-tests/Cubit/VisiBroker/client/Profile_Timer.cpp: (removed)
* performance-tests/Cubit/VisiBroker/client/Profile_Timer.h: (removed)
* performance-tests/Cubit/VisiBroker/client/client.cpp: (removed)
* performance-tests/Cubit/VisiBroker/client/cubit.idl: (removed)
* performance-tests/Cubit/VisiBroker/client/stdmk: (removed)
* performance-tests/Thruput/COOL/Makefile: (removed)
* performance-tests/Thruput/COOL/README: (removed)
* performance-tests/Thruput/COOL/client.cpp: (removed)
* performance-tests/Thruput/COOL/server.cpp: (removed)
* performance-tests/Thruput/COOL/ttcp.idl: (removed)
* performance-tests/Thruput/COOL/ttcp_decl.h: (removed)
* performance-tests/Thruput/COOL/ttcp_i.cpp: (removed)
* performance-tests/Thruput/COOL/ttcp_i.h: (removed)
* performance-tests/Thruput/COOL/utils.cpp: (removed)
* performance-tests/Thruput/CORBAplus/Makefile: (removed)
* performance-tests/Thruput/CORBAplus/README: (removed)
* performance-tests/Thruput/CORBAplus/client.cpp: (removed)
* performance-tests/Thruput/CORBAplus/extract: (removed)
* performance-tests/Thruput/CORBAplus/run: (removed)
* performance-tests/Thruput/CORBAplus/run_client: (removed)
* performance-tests/Thruput/CORBAplus/run_server: (removed)
* performance-tests/Thruput/CORBAplus/run_test: (removed)
* performance-tests/Thruput/CORBAplus/run_tests: (removed)
* performance-tests/Thruput/CORBAplus/server.cpp: (removed)
* performance-tests/Thruput/CORBAplus/ttcp.idl: (removed)
* performance-tests/Thruput/CORBAplus/ttcp_decl.h: (removed)
* performance-tests/Thruput/CORBAplus/ttcp_i.cpp: (removed)
* performance-tests/Thruput/CORBAplus/ttcp_i.h: (removed)
* performance-tests/Thruput/CORBAplus/utils.cpp: (removed)
* performance-tests/Thruput/Orbix/Client.cpp: (removed)
* performance-tests/Thruput/Orbix/Makefile: (removed)
* performance-tests/Thruput/Orbix/README: (removed)
* performance-tests/Thruput/Orbix/Srv_Main.cpp: (removed)
* performance-tests/Thruput/Orbix/extract: (removed)
* performance-tests/Thruput/Orbix/loop64: (removed)
* performance-tests/Thruput/Orbix/orbixsol2s4.mk: (removed)
* performance-tests/Thruput/Orbix/run: (removed)
* performance-tests/Thruput/Orbix/run_client: (removed)
* performance-tests/Thruput/Orbix/run_server: (removed)
* performance-tests/Thruput/Orbix/run_test: (removed)
* performance-tests/Thruput/Orbix/run_tests: (removed)
* performance-tests/Thruput/Orbix/ttcp.idl: (removed)
* performance-tests/Thruput/Orbix/ttcp_decl.h: (removed)
* performance-tests/Thruput/Orbix/ttcp_i.cpp: (removed)
* performance-tests/Thruput/Orbix/ttcp_i.h: (removed)
* performance-tests/Thruput/Orbix/utils.cpp: (removed)
Remove all the old performance tests for other ORBS.
The tests were not being actively maintained, nor where the ORBs
that they tested for.
If funding and time permits we could create tests for
next-generation ORBs.
Wed Apr 19 15:19:12 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/LifeCycle_Service/Makefile:
* orbsvcs/Logging_Service/Makefile:
Missed in the last round of changes.
Wed Apr 19 15:47:59 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/TAO_Internal.cpp:
Reverting yesterday's change to this file. It wasn't
the right thing to do. Thanks to Bala for pointing
out the problem.
Wed Apr 19 14:46:13 2000 Balachandran Natarajan <bala@cs.wustl.edu>
* tao/IIOP_Transport.cpp (messaging_init):
* tao/SHMIOP_Transport.cpp:
* tao/UIOP_Transport.cpp:
* tao/GIOP_Message_Accept_State.cpp:
* tao/GIOP_Message_Accept_State.h:
* tao/GIOP_Message_Accept_State.i:
* tao/GIOP_Message_Acceptors.cpp:
* tao/GIOP_Message_Acceptors.i:
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Connectors.cpp:
* tao/GIOP_Message_Connectors.i:
* tao/GIOP_Message_Headers.cpp:
* tao/GIOP_Message_Headers.h:
* tao/GIOP_Message_Headers.i:
* tao/GIOP_Message_Lite.cpp:
* tao/GIOP_Message_Lite.h:
* tao/GIOP_Message_Lite.i:
* tao/GIOP_Server_Request.h:
* tao/GIOP_Server_Request.i:
* tao/GIOP_Utils.h: Implemented the GIOP1.2 message formats. The
clients and servers would now be able to recognise the 1.2
message formats. I have not switched the GIOP format for TAO
from 1.1 to 1.2, as some more work is pending.
Wed Apr 19 12:11:47 2000 Carlos O'Ryan <coryan@uci.edu>
* examples/Simulator/Event_Supplier/DOVE_Supplier.cpp:
* examples/Simulator/Event_Supplier/DualEC_Sup.cpp:
* examples/Simulator/Event_Supplier/Event_Sup.cpp:
* examples/Simulator/Event_Supplier/Logging_Sup.cpp:
* tests/Explicit_Event_Loop/server.h:
* tests/Explicit_Event_Loop/server.cpp:
This directories were not in the daily builds, so they needed
some updating to compile.
* */Makefile:
Many Makefiles were missing from the automatic builds.
I updated as many as I could find.
Some directories cannot compile in certain configurations, for
example when minimum corba is present many tests and examples
cannot work. Before this change the higher level Makefile would
not recurse to that directory, but that breaks encapsulation,
and the priciple of least surprise: somebody may still try to
compile in that directory and get spurious failures.
I have changed the higher-level Makefiles to always recurse, and
each Makefile decides if it is able to compile with the current
configuration, using the BIN2 trick.
Wed Apr 19 11:00:16 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushSupplier.cpp:
Deactivation of the proxies is handled by the ESF classes, we
don't need to do that anymore.
Wed Apr 19 10:55:36 2000 Carlos O'Ryan <coryan@uci.edu>
* docs/tutorials/Quoter/AMI/Makefile:
* docs/tutorials/Quoter/Event_Service/Consumer_i.h:
* docs/tutorials/Quoter/Event_Service/Makefile:
* docs/tutorials/Quoter/Event_Service/Stock_Consumer.h:
* docs/tutorials/Quoter/Event_Service/Stock_Factory_i.h:
* docs/tutorials/Quoter/Event_Service/Stock_i.h:
* docs/tutorials/Quoter/Event_Service/client.cpp:
* docs/tutorials/Quoter/Event_Service/server.cpp:
* docs/tutorials/Quoter/Naming_Service/Makefile:
* docs/tutorials/Quoter/Naming_Service/client.cpp:
* docs/tutorials/Quoter/Naming_Service/server.cpp:
* docs/tutorials/Quoter/RT_Event_Service/Makefile:
* docs/tutorials/Quoter/RT_Event_Service/Stock_Consumer.h:
* docs/tutorials/Quoter/RT_Event_Service/Stock_Factory_i.h:
* docs/tutorials/Quoter/RT_Event_Service/Stock_i.cpp:
* docs/tutorials/Quoter/RT_Event_Service/Stock_i.h:
* docs/tutorials/Quoter/RT_Event_Service/client.cpp:
* docs/tutorials/Quoter/RT_Event_Service/server.cpp:
* docs/tutorials/Quoter/Simple/Client/Makefile:
* docs/tutorials/Quoter/Simple/Persistent/Makefile:
* docs/tutorials/Quoter/Simple/Server/Makefile:
Use #include <...> to generate minimal dependencies. Otherwise
the tutorial gets tied to a particular version of ACE+TAO,
furthermore, most users will use TAO like that in their
applications.
Update all the dependencies.
Tue Apr 18 21:29:24 2000 Carlos O'Ryan <coryan@uci.edu>
* */Makefile:
Update all the dependencies, or at least the ones reachable from
a top-level make depend.
Tue Apr 18 21:14:45 2000 Darrell Brunsch <brunsch@uci.edu>
* orbsvcs/orbsvcs/Sched/Reconfig_Sched_Utils.h:
* orbsvcs/orbsvcs/Sched/Reconfig_Sched_Utils_T.h:
* orbsvcs/orbsvcs/Sched/Reconfig_Scheduler.h:
* orbsvcs/orbsvcs/Sched/Reconfig_Scheduler_T.h:
* performance-tests/Cubit/IDL_Cubit/client.cpp:
* performance-tests/Cubit/IDL_Cubit/server.cpp:
* performance-tests/Cubit/MT_Cubit/client.cpp:
* performance-tests/Cubit/MT_Cubit/server.cpp:
Some more of the config-all changes.
Tue Apr 18 22:43:52 2000 Carlos O'Ryan <coryan@cs.wustl.edu>
* tests/Leader_Followers/run_test.pl:
Add a missing -ORBSvcConf option.
Tue Apr 18 19:08:37 2000 Darrell Brunsch <brunsch@uci.edu>
* TAO/TAO_IDL/ast/ast_generator.cpp:
* TAO/TAO_IDL/be/be_generator.cpp:
* TAO/tao/Timeprobe.h:
Changed inc_user_config.h to config-all.h (see ACE's changelog
entry for more info).
Tue Apr 18 16:56:21 2000 Jeff Parsons <parsons@cs.wustl.edu>
* tao/TAO_Internal.cpp:
Added a line to open_services() (suggested by Carlos)
that enables dynamic loading of the TypeCodeFactory
DLL.
Tue Apr 18 15:37:26 2000 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/be/be_visitor_interface/interface_ss.cpp:
Removed generation of ACE_ERROR message in the
_dispatch() method. There is already code in place
to throw an exception if the operation lookup fails.
Thanks to Carlos for suggesting this fix.
Tue Apr 18 13:34:27 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/tests/Event/Basic/Random.cpp:
Fixed a few broken throw specs
* orbsvcs/tests/Event/Basic/exhaustive_test.pl:
This script will invoke the Random test with several different
configurations. The test is rather slow, so it cannot be
executed on the daily builds, but it really tests every feature
of the event service.
* orbsvcs/tests/Event/Basic/svc.conf:
Use copy_on_write as the default strategy.
Tue Apr 18 14:37:04 2000 Jeff Parsons <parsons@cs.wustl.edu>
* docs/releasenotes/orbcore.html:
Update to item about the Typecode factory.
Tue Apr 18 09:42:47 2000 Ossama Othman <ossama@uci.edu>
* docs/Options.html:
* docs/releasenotes/index.html:
Removed descriptions of the deprecated "-ORBHost" and "-ORBPort"
options, and updated the pluggable protocol release notes to
reflect the changes.
* tao/ORB_Core.cpp:
Removed inclusion of "ace/INET_Addr.h." It was only needed to
support "-ORBHost" and "-ORBPort." Those options have been
removed, as detailed below.
(init):
Removed support for the deprecated "-ORBHost" and "-ORBPort"
options. These options were superseded by "-ORBEndpoint" long
ago.
Removed support for the old style "-ORBPreconnect" syntax
(i.e. "-ORBPreconnect hostname:port"). It too was deprecated
long ago.
* tao/ORB_Core.h (TAO_ORB_Core):
* tao/ORB_Core.cpp (set_iiop_endpoint):
Removed this method since it was only needed to support the
deprecated "-ORBHost" and "-ORBPort" options.
* tao/Connector_Registry (make_mprofile):
* tao/Exception.cpp (_info):
* tao/ORB.cpp (url_ior_string_to_object):
* tao/IIOP_Profile.cpp (parse_string):
* tao/SHMIOP_Profile.cpp (parse_string):
* tao/UIOP_Profile.cpp (parse_string):
* tao/corbafwd.h (TAO_NULL_POINTER_MINOR_CODE):
Removed all uses of TAO_NULL_POINTER_MINOR_CODE. It was
misused as an exception location code. An EINVAL error code
should instead be set in the exception being thrown.
This also frees up a location minor code.
* tao/Makefile:
Updated dependencies.
Tue Apr 18 08:52:27 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/orbsvcs/ESF/ESF_Proxy_RefCount_Guard.h:
* orbsvcs/orbsvcs/ESF/ESF_Proxy_RefCount_Guard.i:
* orbsvcs/orbsvcs/ESF/ESF_Proxy_RefCount_Guard.cpp:
* orbsvcs/orbsvcs/ESF/ESF_RefCount_Guard.h:
* orbsvcs/orbsvcs/ESF/ESF_RefCount_Guard.i:
* orbsvcs/orbsvcs/ESF/ESF_RefCount_Guard.cpp:
New implementations of the Guard idiom that deal with safely
incrementing and decrementing the reference count on a proxy.
* orbsvcs/orbsvcs/ESF/ESF_Delayed_Changes.cpp:
Cosmetic fixes.
* orbsvcs/orbsvcs/ESF/ESF_Proxy_Admin.cpp:
The proxy should be deactivated *before* removing it from the
collection.
* orbsvcs/orbsvcs/ESF/ESF_Proxy_List.cpp:
The reconnected() call was leaking resources when the object was
not in the set.
* orbsvcs/orbsvcs/ESF/ESF_Copy_On_Write.h:
* orbsvcs/orbsvcs/ESF/ESF_Copy_On_Write.i:
* orbsvcs/orbsvcs/ESF/ESF_Copy_On_Write.cpp:
The Write_Guard was copying not only the contents of the
original collection, but also the reference count value.
There was a subtle race condition, the destructor has to wait
until all the pending writes have completed before removing the
object.
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.h:
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.i:
* orbsvcs/orbsvcs/Event/EC_ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Event/EC_ProxySupplier.cpp:
Use Guard idioms to safely remove reference count objects and
destroy some entities when their reference count reaches 0.
In some cases resources where leaked because the destructor was
assuming that shutdown() or something similar was invoked. In
general this is correct, but in concurrent scenarios a thread
may invoke shutdown() triggering the destruction of the object,
while another thread is still making changes. In such a case
the destructor is responsible for the final cleanup operations,
because the shutdown() method is not invoked again.
* orbsvcs/orbsvcs/Event/EC_Dispatching_Task.cpp:
Removed bogus inline.
* orbsvcs/tests/Event/Event.dsw:
* orbsvcs/tests/Event/Basic/Basic.dsw:
* orbsvcs/tests/Event/Basic/Makefile:
* orbsvcs/tests/Event/Basic/Random.dsp:
* orbsvcs/tests/Event/Basic/Random.h:
* orbsvcs/tests/Event/Basic/Random.cpp:
* orbsvcs/tests/Event/Basic/Random.dsp:
* orbsvcs/tests/Event/Basic/run_test.pl:
New test for the Event service.
The test performs random operations on the event service, adding
consumers, suppliers, then removing them, pushing events, etc.
The operations are performed by multiple concurrent threads, in
many cases in the context of an upcall to some consumer.
This is the worst (or is it best?) torture test for the event
channel.
* orbsvcs/orbsvcs/Event/EC_Gateway_UDP.h:
* orbsvcs/orbsvcs/Event/EC_Gateway_UDP.cpp:
Add an optional argument to the ECG_UDP_EH::open() method,
allowing the user to reuse the same socket address in multiple
calls. Thanks to Tom Ziomek <tomz@cc.comm.mot.com> for
providing the patch for this feature.
* orbsvcs/orbsvcs/Makefile.CosNotification:
More missing libraries.
* orbsvcs/orbsvcs/CosEvent/CEC_Dispatching_Task.h:
* orbsvcs/orbsvcs/CosEvent/CEC_Dispatching_Task.i:
* orbsvcs/orbsvcs/CosEvent/CEC_Dispatching_Task.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPullSupplier.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.h:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.i:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_ProxyPushSupplier.cpp:
Systematically use Guards to increment and decrement reference
counts, and to destroy objects once their count reaches 0.
Simplified the memory management of some objects by clearly
delineating who is responsible for their destruction.
Tue Apr 18 08:19:20 2000 Carlos O'Ryan <coryan@uci.edu>
* orbsvcs/tests/Concurrency/CC_command.h:
* orbsvcs/tests/Concurrency/CC_command.cpp:
* orbsvcs/tests/Concurrency/CC_naming_service.h:
* orbsvcs/tests/Concurrency/CC_naming_service.cpp:
Fixed several const-correctness problems.
Tue Apr 18 10:14:05 2000 Jeff Parsons <parsons@cs.wustl.edu>
* InterfaceS.h:
* InterfaceS.cpp:
Removed from TAO, code moved to the IFR_Service
directory.
* Makefile:
* TAO.dsp:
* TAO_static.dsp:
* POA_CORBA.h:
'TAO_Export' removed from declaration of IRObject,
since it is never instantiated inside TAO, and
declared there only because it must be in the
CORBA namespace.
Mon Apr 17 20:12:13 2000 Vishal <vishal@cs.wustl.edu>
* TAO version 1.1.1 released.
|