1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
|
Fri Jun 12 16:12:36 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* utils/logWalker/logWalker.mpc:
Cannot build on ace_for_tao platforms.
Fri Jun 12 14:29:55 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tao/Block_Flushing_Strategy.h:
* tao/Block_Flushing_Strategy.cpp:
* tao/Flushing_Strategy.h:
* tao/Flushing_Strategy.cpp:
* tao/Transport.cpp:
If send() returns -1 with EWOULDBLOCK and the Flushing Strategy is
blocking, return -1 instead of 0. This is an error condition and
the transport must be closed to avoid looping indefinitely in the
flushing strategy's flush_transport().
Fri Jun 12 11:16:39 UTC 2009 Olli Savia <ops@iki.fi>
* utils/logWalker/Invocation.cpp:
Fixed memset's parameter order.
Fri Jun 12 10:25:58 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* utils/logWalker/Invocation.cpp:
HPUX apparently uses something novel for either size_t or ACE_CDR::ULong.
Fri Jun 12 02:05:32 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* utils/logWalker/logWalker.cpp:
Clean up WChar errors.
Thu Jun 11 23:16:41 UTC 2009 Yan Dai <dai_y@ociweb.com>
* NEWS:
Added entry for bug #3688 fix.
Thu Jun 11 19:29:51 UTC 2009 Steven Stallion <stallions@ociweb.com>
* PROBLEM-REPORT-FORM:
Added additional PRF question about build method (commit performed
on behalf of Chris Cleeland).
Thu Jun 11 19:19:42 UTC 2009 Adam Mitz <mitza@ociweb.com>
* utils/logWalker/Invocation.cpp:
Cast to int to force ternary operator's type to int, avoiding a
warning on GCC 4.0.2 on Solaris.
Thu Jun 11 18:19:57 UTC 2009 Adam Mitz <mitza@ociweb.com>
* utils/logWalker/Invocation.cpp:
ACE CDR can't be used with size_t because its size varies on
different platforms.
Thu Jun 11 13:20:09 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/logWalker/PeerProcess.cpp:
Initialize several pointers with 0
* utils/monitor/monitor_client.cpp:
* utils/NamingViewer/NamingViewerDlg.cpp:
Removed not needed unicode conversion
* utils/nslist/nslist.cpp:
Layout changes
Wed Jun 10 13:56:48 UTC 2009 Adam Mitz <mitza@ociweb.com>
* utils/logWalker/Log.h:
* utils/logWalker/Log.cpp:
* utils/logWalker/logWalker.cpp:
Fixed build errors with ACE_USES_WCHAR.
Wed Jun 10 13:37:03 UTC 2009 Adam Mitz <mitza@ociweb.com>
* utils/logWalker/Log.cpp:
s_addr is a macro (for use with struct in_addr) on some platforms.
Wed Jun 10 02:20:40 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tao/IIOP_Endpoint.h:
fix compile error.
Tue Jun 9 23:17:14 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* utils/logWalker/HostProcess.cpp:
* utils/logWalker/Invocation.cpp:
* utils/logWalker/Log.cpp:
* utils/logWalker/PeerProcess.cpp:
* utils/logWalker/Thread.cpp:
* utils/logWalker/logWalker.cpp:
* utils/logWalker/logWalker.mpc:
Fuzz fix.
Tue Jun 9 22:26:07 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* utils/README:
* utils/logWalker:
* NEWS:
Adding a new utility for parsing TAO debug log files.
Tue Jun 9 22:04:49 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/lib.cpp:
* TAO_IDL/contrib/mcpp/system.cpp:
Compile warning fixes.
Tue Jun 9 21:01:30 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/directive.cpp:
* TAO_IDL/contrib/mcpp/eval.cpp:
* TAO_IDL/contrib/mcpp/expand.cpp:
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/main.cpp:
* TAO_IDL/contrib/mcpp/mbchar.cpp:
* TAO_IDL/contrib/mcpp/mcpp.mpc:
* TAO_IDL/contrib/mcpp/noconfig.H:
* TAO_IDL/contrib/mcpp/support.cpp:
* TAO_IDL/contrib/mcpp/system.H:
* TAO_IDL/contrib/mcpp/system.cpp:
Compile warning fixes.
Tue Jun 9 20:25:50 UTC 2009 Adam Mitz <mitza@ociweb.com>
* bin/tao_orb_tests.lst:
* tao/IIOP_Endpoint.h:
* tao/IIOP_Endpoint.cpp:
* tao/IIOP_Profile.h:
* tao/IIOP_Profile.cpp:
Fix for bug #3695. Keep alternate endpoints within a profile in
the same order after marshalling/demarshalling so that is_equivalent
return true.
Tue Jun 9 15:37:40 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* TAO_IDL/contrib/mcpp/directive.cpp:
* TAO_IDL/contrib/mcpp/eval.cpp:
* TAO_IDL/contrib/mcpp/expand.cpp:
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/support.cpp:
* TAO_IDL/contrib/mcpp/system.cpp:
fuzz fix.
Tue Jun 9 13:25:10 UTC 2009 Paul Calabrese <calabrese_p@ociweb.com>
* DevGuideExamples/AMH/AMH_Messenger_i.cpp:
* DevGuideExamples/AMH/MessengerServer.cpp:
* DevGuideExamples/AMH/Messenger_i.cpp:
* DevGuideExamples/AMH_AMI/inner_server.cpp:
* DevGuideExamples/BiDirectionalGIOP/callback_i.cpp:
* DevGuideExamples/BiDirectionalGIOP/client.cpp:
* DevGuideExamples/BiDirectionalGIOP/server.cpp:
* DevGuideExamples/BiDirectionalGIOP/simple_i.cpp:
* DevGuideExamples/DevGuideExamples.mwc:
* DevGuideExamples/GettingStarted/MessengerServer.cpp:
* DevGuideExamples/LocalObjects/Messenger/Messenger_i.cpp:
* DevGuideExamples/LocalObjects/ServantLocator/MessengerServer.cpp:
* DevGuideExamples/Messaging/AMIcallback/MessengerClient.cpp:
* DevGuideExamples/Messaging/AMIcallback/MessengerHandler.cpp:
* DevGuideExamples/Messaging/AMIcallback/MessengerServer.cpp:
* DevGuideExamples/Messaging/AMIcallback/Messenger_i.cpp:
* DevGuideExamples/Messaging/RelativeRoundtripTimeout/MessengerServer.cpp:
* DevGuideExamples/Multithreading/GracefulShutdown/MessengerServer.h:
* DevGuideExamples/Multithreading/GracefulShutdown/MessengerShutdownTimer.cpp:
* DevGuideExamples/Multithreading/GracefulShutdown/Messenger_i.cpp:
* DevGuideExamples/Multithreading/GracefulShutdown/run_test.pl:
* DevGuideExamples/Multithreading/Reactive/MessengerServer.cpp:
* DevGuideExamples/Multithreading/Reactive/Messenger_i.cpp:
* DevGuideExamples/Multithreading/Reactive/run_test.pl:
* DevGuideExamples/Multithreading/ThreadPerConnection/MessengerServer.cpp:
* DevGuideExamples/Multithreading/ThreadPerConnection/Messenger_i.cpp:
* DevGuideExamples/Multithreading/ThreadPerConnection/run_test.pl:
* DevGuideExamples/Multithreading/ThreadPool/MessengerServer.cpp:
* DevGuideExamples/Multithreading/ThreadPool/Messenger_i.cpp:
* DevGuideExamples/Multithreading/ThreadPool/run_test.pl:
* DevGuideExamples/PortableInterceptors/Auth/ClientInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/Auth/MessengerClient.cpp:
* DevGuideExamples/PortableInterceptors/Auth/MessengerServer.cpp:
* DevGuideExamples/PortableInterceptors/Auth/Messenger_i.cpp:
* DevGuideExamples/PortableInterceptors/Auth/ServerInitializer.h:
* DevGuideExamples/PortableInterceptors/Auth/run_test.pl:
* DevGuideExamples/PortableInterceptors/IOR/ClientInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/IOR/MessengerClient.cpp:
* DevGuideExamples/PortableInterceptors/IOR/MessengerServer.cpp:
* DevGuideExamples/PortableInterceptors/IOR/Messenger_i.cpp:
* DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.h:
* DevGuideExamples/PortableInterceptors/IOR/ServerIORInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/IOR/ServerInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/PICurrent/ClientInitializer.cpp:
* DevGuideExamples/PortableInterceptors/PICurrent/ClientInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/PICurrent/MessengerServer.cpp:
* DevGuideExamples/PortableInterceptors/PICurrent/Messenger_i.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/ClientInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/MessengerClient.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/MessengerServer.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/Messenger_i.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/ServerInterceptor.cpp:
* DevGuideExamples/PortableInterceptors/SimpleCodec/run_test.pl:
* DevGuideExamples/RTCORBA/MessengerServer.cpp:
* DevGuideExamples/RTCORBA/Messenger_i.cpp:
* DevGuideExamples/SmartProxies/LoggerServer.cpp:
* DevGuideExamples/SmartProxies/Logger_i.cpp:
* DevGuideExamples/SmartProxies/MessengerServer.cpp:
* DevGuideExamples/SmartProxies/Messenger_i.cpp:
* DevGuideExamples/ValueTypes/Bank/server.cpp:
* DevGuideExamples/ValueTypes/Messenger/Message_i.cpp:
* DevGuideExamples/ValueTypes/Messenger/MessengerServer.cpp:
* DevGuideExamples/ValueTypes/Messenger/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/EventServices/OMG_Basic/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/OMG_SupplierSideEC/run_test.pl:
* orbsvcs/DevGuideExamples/EventServices/OMG_TypedEC/ConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Basic/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Basic/EchoEventSupplierMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Federated/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Federated/EchoEventSupplierMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Filter/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_Filter/EchoEventSupplierMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/EchoEventConsumerMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/EchoEventSupplierMain.cpp:
* orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/run_test.pl:
* orbsvcs/DevGuideExamples/ImplRepo/Basic/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/ImplRepo/IORTable/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/ImplRepo/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/Messenger/MessengerClient.cpp:
* orbsvcs/DevGuideExamples/NamingService/Messenger/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/Messenger/run_test.pl:
* orbsvcs/DevGuideExamples/NamingService/Naming_Client/MessengerClient.cpp:
* orbsvcs/DevGuideExamples/NamingService/Naming_Client/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/Naming_Client/run_test.pl:
* orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/README:
* orbsvcs/DevGuideExamples/NamingService/Naming_Context_Ext/run_test.pl:
* orbsvcs/DevGuideExamples/NamingService/Naming_Server/MessengerTask.cpp:
* orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/MessengerClient.cpp:
* orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/README:
* orbsvcs/DevGuideExamples/NamingService/corbaloc_Messenger/run_test.pl:
* orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger/README:
* orbsvcs/DevGuideExamples/NamingService/corbaname_Messenger/run_test.pl:
* orbsvcs/DevGuideExamples/NotifyService/EventSequence/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/EventSequence/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/EventSequence/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/NotifyService/Filtering/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/Filtering/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/Messenger/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/Messenger/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/Messenger/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/OfferSubscriptions/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/NotifyService/QoSProperties/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/QoSProperties/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/QoSProperties/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/NotifyService/RTNotify/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/RTNotify/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/RTNotify/Messenger_i.cpp:
* orbsvcs/DevGuideExamples/NotifyService/RTNotify/run_test.pl:
* orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/MessengerConsumer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/NotifyService/SupplierSideNC/MessengerSupplier.cpp:
* orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/ClientInitializer.cpp:
* orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/MessengerClient.cpp:
* orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/README:
* orbsvcs/DevGuideExamples/PortableInterceptors/PICurrent_NameService/run_test.pl:
* orbsvcs/DevGuideExamples/Security/ParticipatingApp/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/Security/PolicyControllingApp/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/Security/SecurityUnawareApp/MessengerServer.cpp:
* orbsvcs/DevGuideExamples/ValueTypes/Notify/run_test.pl:
* orbsvcs/DevGuideExamples/readme.txt:
Merge DevGuideExamples changes from TAO 1.6a.
Mon Jun 8 22:25:23 UTC 2009 Adam Mitz <mitza@ociweb.com>
* bin/tao_orb_tests.lst:
* tests/Bug_3695_Regression:
* tests/Bug_3695_Regression/Bug_3695.cpp:
* tests/Bug_3695_Regression/Bug_3695_Regression.mpc:
* tests/Bug_3695_Regression/run_test.pl:
Added a new test, this will fail until the patch is committed
tomorrow (see bugzilla).
Mon Jun 8 19:42:36 UTC 2009 Adam Mitz <mitza@ociweb.com>
* bin/tao_orb_tests.lst:
TransportCurrent is not available with CORBA/e compact or micro.
Mon Jun 8 19:18:58 UTC 2009 Adam Mitz <mitza@ociweb.com>
* MPC/config/taodefaults.mpb:
Fix a bad comment.
* docs/compiler.html:
s/gperf/ace_gperf/ in a few places that must have been missed when
the name of this executable was changed a year ago.
* docs/rtcorba/features.html:
Fix the name of the -RTORBNetworkPriorityMapping option.
* orbsvcs/Notify_Service/README:
Add information about -LoggingInterval and how to use it.
* orbsvcs/examples/Notify/MC/monitor/monitor.cpp:
Fix a bug in how Numeric statistics print their last value.
* tests/Bug_2593_Regression/run_test.pl:
Use a random port instead of hard-coding :4444.
* tests/IPV6/run_test.pl:
This test requires -ORBUseSharedProfile 0, even though it's the
default now that might change in the future and it's safer to be
explicit.
* tests/ORB_Local_Config/Two_DLL_ORB/Two_DLL_ORB.mpc:
Added an "after" needed for the single-threaded configuration.
* tests/ORB_Local_Config/ORB_Local_Config.mwc:
Removed this file. This test doesn't need its own workspace.
Mon Jun 8 06:41:03 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/tests/Notify/Bug_3688b_Regression/TestBroadcaster.h:
Added missing include.
Sat Jun 6 05:58:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3688b_Regression/*:
* bin/tao_other_tests.lst:
Added initial version of this test again as 3688b and enabled
that also in our test suite
Sat Jun 6 00:31:39 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/tests/Notify/Bug_3688_Regression/consumer.cpp:
* orbsvcs/tests/Notify/Bug_3688_Regression/supplier.cpp:
Corrected the test scenario. The filter constraint is
"$data == 1 or $data == 2 or $data == 4" and the supplier push
event with filterable_data "data=5". Before the fix, the filter
constraint was not evaluated so it will receive events. With the
fix, the constraint was evaluated so the consumer should not
receive the event.
Fri Jun 05 22:45:57 UTC 2009 Trevor Fields <fields_t@ociweb.com>
* orbsvcs/orbsvcs/Notify/Buffering_Strategy.cpp:
Changed enqueue method to log and return -1 when the enqueue is
not attempted. This should help identify the case where the
enqueues are not occurring and memory is leaking.
Fri Jun 5 20:42:42 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/directive.cpp:
* TAO_IDL/contrib/mcpp/eval.cpp:
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/lib.cpp:
* TAO_IDL/contrib/mcpp/main.cpp:
* TAO_IDL/contrib/mcpp/support.cpp:
* TAO_IDL/contrib/mcpp/system.cpp:
Porting for Borland.
Fri Jun 5 21:01:43 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
Fixed a bug in build_tree() that ignored the user defined
constraint expression when the domain name or event type is
defined.
* orbsvcs/tests/Notify/Bug_3688_Regression/Bug_3688_Regression.mpc:
* orbsvcs/tests/Notify/Bug_3688_Regression/common.h:
* orbsvcs/tests/Notify/Bug_3688_Regression/consumer.cpp:
* orbsvcs/tests/Notify/Bug_3688_Regression/run_test.pl:
* orbsvcs/tests/Notify/Bug_3688_Regression/supplier.cpp:
Added simple test based on Bug_1884_Regression test.
* orbsvcs/tests/Notify/Bug_3688_Regression/Bug_3688.mpc:
* orbsvcs/tests/Notify/Bug_3688_Regression/DllORB.h:
* orbsvcs/tests/Notify/Bug_3688_Regression/DllORB.cpp:
* orbsvcs/tests/Notify/Bug_3688_Regression/TestBroadcaster.h:
* orbsvcs/tests/Notify/Bug_3688_Regression/TestBroadcaster.cpp:
* orbsvcs/tests/Notify/Bug_3688_Regression/TestListener.h:
* orbsvcs/tests/Notify/Bug_3688_Regression/TestListener.cpp:
* orbsvcs/tests/Notify/Bug_3688_Regression/bug3688_export.h:
* orbsvcs/tests/Notify/Bug_3688_Regression/server.cpp:
Removed these files.
* bin/tao_other_tests.lst:
Added Bug_3688_Regression test.
* orbsvcs/tests/Notify/Bug_1884_Regression/consumer.cpp:
Made received flag set true when consumer receives message. It did
not show any problem is because the test defaults to not expecting
to receive events.
Fri Jun 5 17:37:27 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/directive.cpp:
* TAO_IDL/contrib/mcpp/eval.cpp:
* TAO_IDL/contrib/mcpp/expand.cpp:
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/main.cpp:
* TAO_IDL/contrib/mcpp/mbchar.cpp:
* TAO_IDL/contrib/mcpp/mcpp_out.h:
* TAO_IDL/contrib/mcpp/noconfig.H:
* TAO_IDL/contrib/mcpp/support.cpp:
* TAO_IDL/contrib/mcpp/system.H:
* TAO_IDL/contrib/mcpp/system.cpp:
Porting for Windows/VC8.
Fri Jun 5 16:33:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
sequences use CORBA::ULong, use const, various layout changes
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
Const and layout changes
Fri Jun 5 14:35:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
Layout changes
* orbsvcs/orbsvcs/Notify/FilterAdmin.inl:
Initialise pointer with 0
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
Const changes, debug changes, and initialise pointer with 0
* orbsvcs/orbsvcs/Notify/Method_Request_Lookup.cpp:
Debug changes
* orbsvcs/orbsvcs/Notify/Proxy.inl:
Const/bool changes
Fri Jun 5 13:48:21 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/Makefile.am:
* TAO_IDL/contrib/mcpp/cc1.cpp:
* TAO_IDL/contrib/mcpp/configed.H:
* TAO_IDL/contrib/mcpp/directive.cpp:
* TAO_IDL/contrib/mcpp/eval.cpp:
* TAO_IDL/contrib/mcpp/expand.cpp:
* TAO_IDL/contrib/mcpp/internal.H:
* TAO_IDL/contrib/mcpp/main.cpp:
* TAO_IDL/contrib/mcpp/main_libmcpp.c:
* TAO_IDL/contrib/mcpp/mbchar.cpp:
* TAO_IDL/contrib/mcpp/mcpp.mpc:
* TAO_IDL/contrib/mcpp/mcpp_lib.h:
* TAO_IDL/contrib/mcpp/mcpp_out.h:
* TAO_IDL/contrib/mcpp/noconfig.H:
* TAO_IDL/contrib/mcpp/support.cpp:
* TAO_IDL/contrib/mcpp/system.H:
* TAO_IDL/contrib/mcpp/system.cpp:
* TAO_IDL/contrib/mcpp/testmain.c:
Updated mcpp version to 2.7.2.
Fri Jun 5 12:06:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3688_Regression/*
New regression test
* bin/tao_other_tests.lst:
Added 3688
Fri Jun 5 08:20:56 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Bug_3683_Regression/Echo_Client_i.cpp:
Fixed compilation warning.
Thu Jun 4 11:52:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
3646d should run now
Thu Jun 4 11:15:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Another set of cleanup improvements
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
Added a missing \n
* orbsvcs/tests/Notify/Bug_3646d_Regression/server.cpp:
Use a loop and more worker threads
Thu Jun 4 10:17:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Do better cleanup, check for nil, use the correct wait() methods
* orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp:
* orbsvcs/tests/Notify/Bug_3646c_Regression/server.cpp:
Use a loop instead of duplicated code
* orbsvcs/tests/Notify/Bug_3646d_Regression/Bug_3646d_Regression.mpc:
We don't need a consumer
* orbsvcs/tests/Notify/Bug_3646d_Regression/Consumer.cpp:
Deleted from the repository
* orbsvcs/tests/Notify/Bug_3646d_Regression/run_test.pl:
Simplified
Thu Jun 4 09:13:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/Notify_Service/Notify_Service.h:
Set the ORB in the worker to nil and also cancel the timer
when we don't need it anymore
Thu Jun 4 07:21:46 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3676_Regression/Bug_3676_Regression.mpc:
Properly fixed mpc which requires corba_messaging.
Thu Jun 4 00:33:14 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tao/Compression/Base_Compressor.cpp:
It seems the syntax of '<::' or '<:' is converted to '[' by the
compiler or preprocessor. Changing the syntax to be '< ::'
resolves that.
Wed Jun 3 12:54:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Make sure we have use the name service before using it and don't
use asserts
Wed Jun 3 12:30:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Incoming_Message_Stack.h:
Updated for CB2009 Update 3
Wed Jun 3 12:16:21 2009 Marcel Smit <msmit@remedy.nl>
* tao/ZIOP/ZIOP.cpp
* tao/ZIOP/ZIOP.h
Applied ZIOP beta 2 spec. Compression ratio is defined
as float and renamed struct CompressedData into
CompressionData
* tao/ZIOP/ZIOP.pidl
Renamed struct CompressedData into CompressionData
(according to ZIOP beta 2 spec).
* tao/Compression/Base_Compressor.cpp
* tao/Compression/Compression.pidl
* tests/ZIOP/client.cpp
* tests/ZIOP/server.cpp
Applied ZIOP beta 2 spec. Compression ratio is defined
as float.
Wed Jun 3 09:07:07 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3676_Regression/Bug_3676_Regression.mpc:
* bin/tao_orb_tests.lst:
Test 3676 requires corba_messaging.
Wed Jun 3 08:20:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Only run the orb when we have no orb threads
Tue Jun 2 18:40:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Added 3646d
Tue Jun 2 13:14:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp
* orbsvcs/orbsvcs/Trader/Trader.h
Fixed problems with CB2009 Update 3
Tue Jun 2 07:21:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3646d_Regression/*:
Another test that loads and unload the notify service, this one
also loads the naming service and uses one run thread
* orbsvcs/orbsvcs/Naming/Hash_Naming_Context.cpp:
Const change
Tue Jun 2 06:50:50 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added Bug 3683
Tue Jun 2 06:47:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/Options.html:
When we use ClientConnectionHandler RW we don't use the LF
loop. In case the buffers are full, we use the flushing
strategy for which the default is leader follower, but that
will not work because we don't use the lf loop in this case.
Added a note the ClientConnectionHandler RW needs a
FlushingStrategy of blocking
* tests/Bug_3683_Regression/Echo_Client_i.cpp
* tests/Bug_3683_Regression/Echo_Client_i.h
* tests/Bug_3683_Regression/run_test.pl
* tests/Bug_3683_Regression/Simple_util.cpp
Use a commandline argument -p to indicate the size of the
string in megabytes.
* tests/Bug_3683_Regression/svc.conf
Set the FlushingStrategy to blocking
* tao/Transport.cpp:
Small layout to debug message
* tao/PortableServer/Root_POA.cpp:
* tao/LocateRequest_Invocation_Adapter.cpp
Layout change
Fri May 29 12:47:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Transport.cpp (schedule_output):
Log an error when the reactor is zero
Fri May 29 11:27:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/ZIOP/TestCompressor/TAO_TestCompressor.rc:
Fixed for WinCE GCC
Fri May 29 10:29:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3683_Regression/*:
New regression test
Thu May 28 14:56:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Bug_3673_Regression/client.cpp:
Print the iteration count when we get an exception
Thu May 28 14:12:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Bug_3673_Regression/client.cpp:
Field id of name 0 has to be set
Thu May 28 07:32:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Fix a bug when unregistering from the naming service
Wed May 27 18:10:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.cpp:
* TAO_IDL/tao_idl.cpp:
Unicode fixes
* tao/PortableServer/Root_POA.h:
Layout changes
Wed May 27 18:03:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.h:
Fixed compile error with OpenVMS
Wed May 27 11:58:05 UTC 2009 Carlos O'Ryan <coryan@glamdring>
* tests/Bug_3647_Regression/client.cpp:
I guess not all compilers know that 'and' is a keyword in C++.
* tests/Bug_3647_Regression/Middle_Impl.cpp:
Make sure I use the exceptions caught in this program, at least
for debugging output. Eliminates warnings for VC8
Wed May 27 03:00:37 UTC 2009 Carlos O'Ryan <coryan@atdesk.com>
* tests/Bug_3647_Regression/client.cpp:
* tests/Bug_3647_Regression/middle_server.cpp:
* tests/Bug_3647_Regression/backend_server.cpp:
Fixed Unicode build problems.
Tue May 26 17:09:00 UTC 2009 Carlos O'Ryan <coryan@atdesk.com>
* tao/Transport.h:
* tao/IIOP_Transport.h:
* tao/Transport.cpp:
* tao/IIOP_Transport.cpp:
* tests/Bug_3647_Regression/client.cpp:
* tests/Bug_3647_Regression/Middle_Impl.cpp:
* tests/Bug_3647_Regression/Middle_Impl.h:
* tests/Bug_3647_Regression/middle_server.cpp:
* tests/Bug_3647_Regression/Test.idl:
* tests/Bug_3647_Regression/Backend_Impl.cpp:
* tests/Bug_3647_Regression/run_test.pl:
* tests/Bug_3647_Regression/Backend_Impl.h:
Fix fuzz problems, tabs, indentation in perl scripts, the Id
stuff, etc.
Tue May 26 11:25:03 UTC 2009 Carlos O'Ryan <coryan@glamdring>
* tao/Transport.h:
* tao/IIOP_Transport.h:
* tao/IIOP_Transport.cpp:
I had the signature of sendfile() completely wrong in
IIOP_Transport. Lucky for me, Johnny pointed out the warnings
in the Solaris10_Studio12_Debug build.
I also had to move the io_timeout() function in Tranport to the
protected section. This whole sendfile() thing looks like a
hack.
* tao/Transport.cpp:
Fix Unicode build problem. Again, thanks to Johnny for keeping
an eye out for me.
Tue May 26 09:26:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added Bug 3672 regression as not fixed
Mon May 25 19:05:22 UTC 2009 Carlos O'Ryan <coryan@atdesk.com>
* Fixed bug #3647. In this commit I am merging the changes form
the Bug_3647_Regression branch. The exact command used to merge
the changes was:
$ svn merge --accept postpone -r85163:HEAD \
https://svn.dre.vanderbilt.edu/DOC/Middleware/\
branches/Bug_3647_Regression .
The typical conflict in the ChangeLog was manually resolved.
* bin/tao_orb_tests.lst:
Add the new test, in alphabetical order, preserve tests added in
trunk.
* tao/Transport.h:
* tao/Transport.cpp:
Restore the ACE_Countdown_Time object in drain_queue_helper().
I removed it because I thought there were no side effects and it
was not needed, but after Johnny W asked, I realised it was
indeed important.
The header changes are required because the Drain_Constraints
object needs a non-const ACE_Time_Value* parameter now.
* tests/Bug_3647_Regression/Backend_Impl.cpp:
* tests/Bug_3647_Regression/backend_server.cpp:
* tests/Bug_3647_Regression/Backend_Impl.hpp:
* tests/Bug_3647_Regression/Backend_Impl.h:
* tests/Bug_3647_Regression/Middle_Impl.cpp:
* tests/Bug_3647_Regression/Throw_Spec.h:
* tests/Bug_3647_Regression/Middle_Impl.hpp:
* tests/Bug_3647_Regression/middle_server.cpp:
* tests/Bug_3647_Regression/Middle_Impl.h:
I used a hacky macro to compile this code with both
TAO-1.5.1 (need throw specs) and TAO-1.6.9 (cannot have throw
specs)
I also changed the .hpp files to .h to be less consistent with
the .cpp files, but more consistent with the rest of ACE+TAO.
Thanks to Johnny to point out the ugliness before it reached the
main branch.
* tao/Transport.h:
* tao/Transport.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/Block_Flushing_Strategy.cpp:
* tao/Connection_Handler.cpp:
Seemingly completed the fixes for 3647.
Fundamentally, the calls to sendv() need to use a timeout
parameter when called with the blocking flushing strategy or
with the read-write waiting strategy *and* when there is a
timeout.
Unfortunately, the point(s) where we call sendv() does not have
enough context to determine if the parameter is needed.
I changed the Transport class to pass a little struct with both
the timeout value and flag to indicate if using blocking I/O
calls was desired.
The caller makes the determination and passes the parameter into
the Transport object, for example, the Block_Flushing_Strategy
certainly wants to use blocking I/O calls.
Several interface in TAO_Transport changed, and so did its
callers.
* tests/Bug_3647_Regression/client.cpp:
* tests/Bug_3647_Regression/Middle_Impl.cpp:
* tests/Bug_3647_Regression/Backend_Impl.cpp:
* tests/Bug_3647_Regression/run_test.pl:
Fine-tune the test so it would pass all the time. The default
parameters showed the problem before the changes, but then
failed due to a timeout during shutdown.
Also expanded run_test.pl to test with SYNC_NONE vs. other
policies. It was important to me to verify that the test
continues to fail with SYNC_WITH_SERVER, so my "fine tuning" did
not hide real errors.
* tao/Transport.h:
* tao/Transport.cpp:
First attempt at fixing bug 3647.
The ORB is blocking in ACE::sendv(), because we are passing a
timeout parameter which results in blocking for the prescribed
timeout period on select(). But on a select() call with only
one socket!
What we want to achieve is pass the timeout parameter when we
are using the blocking configurations of the ORB, such as RW
waiting strategies.
This fix, changes the way the timeout parameter to sendv() calls
is computed, by looking at the wait_strategy.
Unfortunately, this missed the blocking flushing strategies,
where we want to block too! The Oneway_Send_Timeout tests
caught this.
So more work is needed, but I want to save the work first.
* tests/Bug_3647_Regression:
* tests/Bug_3647_Regression/Bug_3647_Regression.mpc:
* tests/Bug_3647_Regression/run_test.pl:
* tests/Bug_3647_Regression/README:
* tests/Bug_3647_Regression/svc.conf:
* tests/Bug_3647_Regression/Test.idl:
* tests/Bug_3647_Regression/Throw_Spec.h:
Add a regression test for bug #3647. The test consists of three
processeses:
* tests/Bug_3647_Regression/Backend_Impl.hpp:
* tests/Bug_3647_Regression/Backend_Impl.cpp:
* tests/Bug_3647_Regression/backend_server.cpp:
The backend server receives oneway calls. On request, it calls
sleep for a long period of time to block its I/O on particular
sockets.
* tests/Bug_3647_Regression/Middle_Impl.hpp:
* tests/Bug_3647_Regression/Middle_Impl.cpp:
* tests/Bug_3647_Regression/middle_server.cpp:
A middle tier server, which never calls sleep, but because of
bug 3647 it blocks trying to make calls on the backend server,
though it should not.
* tests/Bug_3647_Regression/client.cpp:
The client coordinates the work. It setups connections between
all the servers and makes calls on the middle tier server. It
expects the middle tier server to be always available, but it
did not before the fixes.
* bin/tao_orb_tests.lst:
Add Bug_3647_Regression to the list.
Mon May 25 14:26:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3672_Regression:
New test for bug 3672, we seem to have a resource leak with AMI
Mon May 25 12:54:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/Notify_Service/Notify_Service.h:
* orbsvcs/Notify_Service/README:
By default the notify service does a shutdown of the global
orb and its dispatching ORB. In case the notify service is
loaded into a process using service config this could cause
issues to other parts that use the same ORBs. Added a
-ShutdownORB and -ShutdownDispatchingORB which are default
1, but they could be set to 0 to not shutdown the mentioned
ORB
Fri May 22 15:02:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/README:
Extended this file
Fri May 22 09:56:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Trader/Constraint_l.cpp:
* orbsvcs/tests/FT_App/FT_Client.cpp:
Use ACE_OS::fileno
Wed May 20 11:50:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tests/Bug_3674_Regression/test.cpp:
Ensure that RootPOA, then orb are destroyed.
Wed May 20 09:35:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/AV.rc
* orbsvcs/orbsvcs/CosConcurrency.rc
* orbsvcs/orbsvcs/CosEvent.rc
* orbsvcs/orbsvcs/CosEvent_Serv.rc
* orbsvcs/orbsvcs/CosEvent_Skel.rc
* orbsvcs/orbsvcs/CosLifeCycle.rc
* orbsvcs/orbsvcs/CosLoadBalancing.rc
* orbsvcs/orbsvcs/CosNaming.rc
* orbsvcs/orbsvcs/CosNaming_Serv.rc
* orbsvcs/orbsvcs/CosNaming_Skel.rc
* orbsvcs/orbsvcs/CosNotification.rc
* orbsvcs/orbsvcs/CosNotification_Serv.rc
* orbsvcs/orbsvcs/CosNotification_Skel.rc
* orbsvcs/orbsvcs/CosProperty.rc
* orbsvcs/orbsvcs/CosTime.rc
* orbsvcs/orbsvcs/CosTrading.rc
* orbsvcs/orbsvcs/CosTrading_Serv.rc
* orbsvcs/orbsvcs/CosTrading_Skel.rc
* orbsvcs/orbsvcs/DsEventLogAdmin.rc
* orbsvcs/orbsvcs/DsLogAdmin.rc
* orbsvcs/orbsvcs/DsNotifyLogAdmin.rc
* orbsvcs/orbsvcs/FaultTolerance.rc
* orbsvcs/orbsvcs/IFRService.rc
* orbsvcs/orbsvcs/PortableGroup.rc
* orbsvcs/orbsvcs/RT_Notification.rc
* orbsvcs/orbsvcs/RTEvent.rc
* orbsvcs/orbsvcs/RTEvent_Serv.rc
* orbsvcs/orbsvcs/RTEvent_Skel.rc
* orbsvcs/orbsvcs/RTSched.rc
* orbsvcs/orbsvcs/RTSchedEvent.rc
* orbsvcs/orbsvcs/Security.rc
* orbsvcs/orbsvcs/SSLIOP.rc
* orbsvcs/orbsvcs/Svc_Utils.rc
Use unix style of includes to work with cegcc
Wed May 20 09:32:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/SmartProxies/SmartProxies.rc
* tao/BiDir_GIOP/TAO_BiDir_GIOP.rc
* tao/Compression/bzip2/TAO_Bzip2Compressor.rc
* tao/CodecFactory/TAO_CodecFactory.rc
* tao/Compression/TAO_Compression.rc
* tao/DynamicAny/TAO_DynamicAny.rc
* tao/DynamicInterface/TAO_DynamicInterface.rc
* tao/IFR_Client/TAO_IFR_Client.rc
* tao/ImR_Client/TAO_IMR_Client.rc
* tao/IORInterceptor/TAO_IORInterceptor.rc
* tao/IORManipulation/TAO_IORManip.rc
* tao/IORTable/TAO_IORTable.rc
* tao/Compression/lzo/TAO_LzoCompressor.rc
* tao/Messaging/TAO_Messaging.rc
* tao/ObjRefTemplate/TAO_ObjRefTemplate.rc
* tao/PortableServer/TAO_PortableServer.rc
* tao/RTCORBA/TAO_RTCORBA.rc
* tao/RTPortableServer/TAO_RTPortableServer.rc
* tao/RTScheduling/TAO_RTScheduler.rc
* tao/Strategies/TAO_Strategies.rc
* tao/Valuetype/TAO_Valuetype.rc
* tao/Compression/zlib/TAO_ZlibCompressor.rc
* tao/TypeCodeFactory/TypeCodeFactory.rc
Use unix style of includes to work with cegcc
Wed May 20 09:21:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Client_Leaks/Process_Factory.cpp:
Use ACE_ERRNO_GET
Wed May 20 09:06:43 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Asynch_Queued_Message.cpp:
* tao/Leader_Follower.cpp
Layout changes
* tao/GIOP_Message_Base.cpp
* tao/IIOP_Transport.cpp
* tao/RTCORBA/RT_Protocols_Hooks.cpp
* tao/Strategies/DIOP_Transport.cpp
* tao/Transport.cpp
* tao/Transport_Connector.cpp
Use ACE_ERRNO_GET
* tao/Messaging/Messaging_Queueing_Strategies.cpp
Const changes
* tao/SystemException.cpp
Initialise pointer with 0
Wed May 20 07:26:43 UTC 2009 Marcel Smit <msmit@remedy.nl>
* TAO_IDL/be/be_interface.cpp
* TAO_IDL/util/utl_global.cpp
Fixed compiler errors on CE gcc on Cygwin.
Tue May 19 12:12:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tao/Invocation_Base.h:
* tao/Invocation_Base.cpp:
Cosmetic variable name change to better conform to coding
standard.
* tests/Bug_3674_Regression/test.cpp:
Ensure that PICurrent global is destroyed, BEFORE orb
is destroyed.
Tue May 19 09:43:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Unbind also the event channels from the naming service
Mon May 18 14:47:24 UTC 2009 Abdullah Sowayan <sowayan@gmail.com>
* tao/LocalObject.h:
* tao/LocalObject.inl:
Disabled fuzz check_for_TAO_Local_RefCounted_Object.
Mon May 18 14:05:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tao/Makefile.am:
Added new files from below.
Mon May 18 13:38:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* bin/tao_orb_tests.lst:
* tao/RequestInterceptor_Adapter.h:
* tao/RequestInterceptor_Adapter.cpp:
* tao/tao.mpc:
* tao/Invocation_Base.h:
* tao/Invocation_Base.cpp:
* tao/ClientRequestInterceptor_Adapter.h:
* tao/PI_Server/ServerInterceptorAdapter.h:
* tao/PI/RequestInterceptor_Adapter_Impl.cpp:
* tao/PI/RequestInterceptor_Adapter_Impl.h:
* tao/PI/ClientRequestInterceptor_Adapter_Impl.h:
* tao/PI/PICurrent_Impl.h:
* tao/PI/PICurrent.cpp:
* tao/PI/PICurrent_Impl.cpp:
* tao/PI/PICurrent_Impl.inl:
* tao/ServerRequestInterceptor_Adapter.h:
Bugzilla 3674 Fix.
Mon May 18 10:39:46 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3676_Regression/Hello.mpc:
Renamed MPC file to Bug_3676_Regression.mpc.
Mon May 18 09:15:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tests/Bug_3674_Regression/test.cpp:
TAO_Local_RefCounted_Object is deprecated. Changed
it to CORBA::LocalObject.
Mon May 18 08:09:16 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tao/Transport.h:
* tao/LocateRequest_Invocation.cpp:
* tao/Transport.inl:
Fixed bug#3676. Now after sending LocateRequest message
transport will remain in a state when no first request is
send. This is necessary for codeset negotiation which
happens in the first normal request.
* tests/Bug_3676_Regression/client.cpp:
* tests/Bug_3676_Regression/Hello.mpc:
* tests/Bug_3676_Regression/Hello.cpp:
* tests/Bug_3676_Regression/Test.idl:
* tests/Bug_3676_Regression/server.cpp:
* tests/Bug_3676_Regression/Hello.h:
* tests/Bug_3676_Regression/README:
* tests/Bug_3676_Regression/run_test.pl:
* bin/tao_orb_tests.lst:
Added a regression test and scheduled it for run.
Fri May 15 12:50:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tests/Bug_3674_Regression/test.cpp:
Removed unused parameter warnings.
Fri May 15 11:50:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Bug_2800_Regression/NamingTask.cpp:
* orbsvcs/tests/Bug_3673_Regression/NamingTask.cpp:
Fixed memory leaks
Fri May 15 10:50:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.cpp:
Only print debug messages when ORB debug is enabled
* orbsvcs/tests/Bug_3673_Regression/Bug_3873_Regression.mpc:
Remvoed
* orbsvcs/tests/Bug_3673_Regression/Bug_3673_Regression.mpc:
Added
* orbsvcs/tests/Bug_3673_Regression/client.cpp:
Make 10 iterations
Fri May 15 08:10:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* tests/Bug_3674_Regression/test.cpp:
Fixed Fuzz error (MS_VER_ 1200)
Wed May 13 19:44:04 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tao/Strategies/DIOP_Acceptor.cpp:
Fixed a crash that occurs with -ORBUseSharedProfile 1.
Wed May 13 16:33:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Added 3673
Wed May 13 16:30:00 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Bug_3673_Regression/*:
Added new test for bug 3673
* orbsvcs/tests/ior_corbaname/ior_corbaname_client_i.cpp:
Const change
Wed May 13 13:35:00 UTC 2009 Simon Massey <sma at prismtech dot com>
* bin/tao_orb_tests.lst:
* tests/Bug_3674_Regression/test.idl:
* tests/Bug_3674_Regression/run_test.pl:
* tests/Bug_3674_Regression/Bug_3674_Regression.mpc:
* tests/Bug_3674_Regression/test.cpp:
Added regression test for PICurrent TSC client corruption.
Tue May 12 08:26:55 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_2234_Regression/server.cpp:
* tests/Bug_3171_Regression/server.cpp:
* tests/DII_AMI_Forward/orb_initializer.h:
TAO_Local_RefCounted_Object is deprecated. Changed
it to CORBA::LocalObject.
Mon May 11 09:54:38 UTC 2009 Olli Savia <ops@iki.fi>
* tests/DII_AMI_Forward/server_interceptor.cpp:
Fixed fuzz error.
Mon May 11 07:21:16 UTC 2009 Olli Savia <ops@iki.fi>
* tests/DII_AMI_Forward/server_interceptor.cpp:
Fixed compile warning.
Fri May 8 19:30:55 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* examples/RTCORBA/Activity/Builder.cpp:
Really fix fuzz.
Fri May 8 14:23:07 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_2234_Regression/server.cpp:
* tests/Bug_3171_Regression/server.cpp:
* tests/Bug_2345_Regression/server.cpp:
* tests/DII_AMI_Forward/server_interceptor.cpp:
* tests/DII_AMI_Forward/server_interceptor.h:
* tests/DII_AMI_Forward/orb_initializer.h:
Fixed memory leaks in these tests.
* tao/ORB.cpp:
Fixed allocation of a string with incorrect length.
Thu May 7 22:46:50 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tests/RTCORBA/Bug_3643_Regression/Bug_3643_Regression.mpc:
Prevent building the server for corba_e/minimum_corba.
Thu May 7 19:45:01 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* examples/RTCORBA/Activity/Builder.cpp:
Fuzz fix.
* orbsvcs/tests/ImplRepo/ReconnectServer/client.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverA.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverB.cpp:
Clean up compiler errors.
Thu May 7 18:14:03 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_exception\exception_ch.cpp:
* TAO_IDL/be/be_visitor_home\home_ch.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\amh_ch.cpp:
* TAO_IDL/be/be_visitor_interface\ami_interface_ch.cpp:
* TAO_IDL/be/be_visitor_component\component_ch.cpp:
* TAO_IDL/be/be_visitor_component\component_ci.cpp:
* TAO_IDL/be/be_visitor_array\array_ch.cpp:
* TAO_IDL/be/be_visitor_valuebox\valuebox_ch.cpp:
* TAO_IDL/be/be_visitor_union\union_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype\valuetype_obv_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype\valuetype_init_ch.cpp:
* TAO_IDL/be/be_visitor_valuetype\valuetype_ch.cpp:
Removed generation of #ifdef guards for all type declarations
except sequences (duplicate anonymous sequence declarations
of the same element type, and thus with the same constructed
name, can appear in the same scope).
* TAO_IDL/be/be_helper.cpp:
* TAO_IDL/be/be_codegen.cpp:
Cosmetic changes.
Thu May 7 13:01:00 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_2084_Regression/Hello.cpp:
* tests/Bug_2084_Regression/EventNode.cpp:
* tests/Bug_2084_Regression/Collocated_Test.cpp:
* tests/Bug_2084_Regression/run_test.pl:
* tests/Bug_1482_Regression/Client_Task.cpp:
* tests/Bug_1482_Regression/Client_Task.h:
* tests/Bug_1482_Regression/server.cpp:
* tests/Bug_1482_Regression/run_test.pl:
* tests/COIOP/Hello.cpp:
* tests/Collocation_Oneway_Tests/Hello.cpp:
* tests/Collocation_Exception_Test/Hello.cpp:
* tests/Bug_1568_Regression/server.cpp:
* tests/DII_Collocation_Tests/oneway/Hello.cpp:
* tests/DII_Collocation_Tests/oneway/run_test.pl:
* tests/DII_Collocation_Tests/twoway/Hello.cpp:
* tests/DII_Collocation_Tests/twoway/run_test.pl:
Fixed memory leaks in these tests. And also changed
perl scripts so that no collocation is used when it was
meant.
Thu May 7 01:43:48 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/drv_extern.h:
* TAO_IDL/driverdrv_preproc.cpp(DRV_pre_proc):
Doubled the size of the command line buffer to 8192
and added a check of the return value from calling
command_line() on ACE_Process_Options. Thanks to
Russ Noseworthy <j dot russell dot noseworthy at said dot com>
for sending in the patches.
Wed May 6 12:53:20 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Bug_1269_Regression/Server_Timer.cpp:
* tests/Bug_1270_Regression/Server_Timer.cpp:
* tests/Bug_1361_Regression/Echo.cpp:
Fixed memset's parameter order.
Tue May 5 13:26:24 UTC 2009 Olli Savia <ops@iki.fi>
* examples/RTCORBA/Activity/Builder.cpp:
Fixed memset's parameter order.
Tue May 5 08:41:48 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_2356_Regression/client.cpp:
* tests/Bug_2356_Regression/ami_test_i.cpp:
Fixed memory leaks.
Mon May 4 18:27:17 UTC 2009 Yan Dai <dai_y@ociweb.com>
* tests/ForwardUponObjectNotExist/client.cpp:
Increased the orb run time to maximum 30 seconds to resolve the
test failure on some platforms that reply is not received
before orb is shutdown.
Fri May 1 19:12:14 UTC 2009 Yan Dai <dai_y@ociweb.com>
* tests/ForwardUponObjectNotExist/client.cpp:
Fixed compilation errors on wchar builds.
Fri May 1 08:09:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3646c_Regression/*:
New test that where we use the TAO_Notify_Service to create
multiple channels using service config. This closes enhancement
issue 3646
* bin/tao_other_tests.lst:
Added new test
Fri May 1 07:05:29 UTC 2009 Yan Dai <dai_y@ociweb.com>
* tests/ForwardUponObjectNotExist/ForwardUponObjectNotExist.mpc:
* tests/ForwardUponObjectNotExist/README:
* tests/ForwardUponObjectNotExist/client.cpp:
* tests/ForwardUponObjectNotExist/run_test.pl:
* tests/ForwardUponObjectNotExist/server.cpp:
* tests/ForwardUponObjectNotExist/test.idl:
* tests/ForwardUponObjectNotExist/test_i.h:
* tests/ForwardUponObjectNotExist/test_i.inl:
* tests/ForwardUponObjectNotExist/test_i.cpp:
Added test for -ORBForwardInvocationOnObjectNotExist option
and feature without using any service.
* bin/tao_orb_tests.lst:
Added ForwardUponObjectNotExist test.
Thu Apr 30 21:31:11 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tests/Portable_Interceptors/IORInterceptor/FOO_IORInterceptor.cpp:
This test uses an arbitrary constant from the PortableServer module
so we'll use one that's present in CORBA/e Compact configurations.
Thu Apr 30 18:35:47 UTC 2009 Yan Dai <dai_y@ociweb.com>
* tao/Synch_Invocation.cpp:
Moved the strcmp for OBJECT_NOT_EXIST to if condition instead of outside
of if statement to improve the performance a little bit.
* docs/Options.html:
Added description for -ORBForwardInvocationOnObjectNotExist.
Wed Apr 29 13:18:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Makefile.am:
Added missing files. Thanks to Steven Hartmann
<shartmann at militho dot com> for reporting this
Wed Apr 29 07:08:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_2926_Regression/DllORB.cpp:
Fixed compile error
* orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp:
Fixed variable not used warning
* orbsvcs/tests/Notify/Bug_3663_Regression/server.cpp
Fixed variable not used warning
Tue Apr 28 20:33:21 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tao/TAO_Server_Request.cpp:
Fixed the placement of the TAO_END_VERSIONED_NAMESPACE_DECL macro.
Tue Apr 28 15:04:45 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tests/Sequence_Unit_Tests/bounded_string_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/string_sequence_tester.hpp:
* tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp:
Fixed compile errors on Solaris9_i386_gcc_Debug.
Tue Apr 28 10:00:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3663_Regression:
New test for bugzilla bug 3663, not fixed yet, seems a problem with
service configurator
* bin/tao_other_tests.lst
Added new test
Tue Apr 28 09:51:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* MPC/config/tao_notify_service.mpb:
new base project
* orbsvcs/Notify_Service/Notify_Server.cpp:
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/Notify_Service/Notify_Service.h:
* orbsvcs/Notify_Service/Notify_Service.mpc:
* orbsvcs/Notify_Service/Notify_Service_Export.h:
Moved the TAO_Notify_Service_Driver class to its own
DLL which then can be loaded with service configurator as
done in regression 3646b.
Changed -ORBRunThreads to -RunThreads, the -ORB options
are reserved for the ORB and shouldn't be used by
services. This caused problems when trying to load
the TAO_Notify_Service as DLL.
Make sure we destroy the ORB so that we can do multiple
load/unload cycles
* orbsvcs/Notify_Service/README:
Updated -ORBRunThreads to -RunThreads
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
Layout changes
* orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
Use true/false
* orbsvcs/tests/Notify/Bug_2926_Regression/DllORB.cpp:
* orbsvcs/tests/Notify/Bug_3252_Regression/DllOrb.cpp
No need for arg converter
* orbsvcs/tests/Notify/Bug_3646b_Regression/bug3646b_export.h
* orbsvcs/tests/Notify/Bug_3646b_Regression/Bug_3646b_Regression.mpc
* orbsvcs/tests/Notify/Bug_3646b_Regression/DllORB.cpp
* orbsvcs/tests/Notify/Bug_3646b_Regression/DllORB.h
* orbsvcs/tests/Notify/Bug_3646b_Regression/run_test.pl
* orbsvcs/tests/Notify/Bug_3646b_Regression/server.cpp
* bin/tao_other_tests.lst
New regression test for loading and unloading the TAO_Notify_Service
dll
Tue Apr 28 08:00:12 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/AnyTypeCode/Any_Unknown_IDL_Type.{h,cpp}:
Return a const object from lock_i, this fixes bugzilla 3665. Thanks to
Rob Beekmans <r dot a dot beekmans at philips dot com> for reporting this.
It is really a diab compiler bug but we can easily work around it
* tao/AnyTypeCode/Enum_TypeCode.cpp:
* tao/AnyTypeCode/Enum_TypeCode_Static.cpp:
* tao/CORBALOC_Parser.cpp:
* tao/Intrusive_Ref_Count_Handle_T.h
layout change
Tue Apr 28 01:51:44 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/tests/ImplRepo/ReconnectServer/serverB.cpp:
Renamed the global variable delay to avoid compilation errors on
QNX platform due to redefination of "delay".
Mon Apr 27 16:08:54 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/Notify_Service/README:
Fixed typo
Mon Apr 27 15:54:55 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/Notify_Service/README:
The README file was out of date with reality regarding the names
and purpose of some svc.conf arguments. I've cleaned up the list
to remove deprecated entries and add an entry for an option that
was overlooked before. I suspect that a previous author mistook
the purpose of the -ListenerThreads option to be that of the
-SourceThreads option. The two appear to be similar in name, but
in fact -ListenerThreads is a deprecated synonym for
-DispatchingThreads.
Mon Apr 27 15:12:06 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/driver/drv_mcpp_preproc.cpp:
* TAO_IDL/driver/drv_preproc.cpp:
Applied patches from Ken Sedgwick <ken at bonsai dot com>
for platforms (including Fedora RPM) that use TAO_IDL_INCLUDE_DIR
instead of TAO_ROOT. This checkin closes [BUGID:3661].
Mon Apr 27 03:20:52 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/tests/ImplRepo/ReconnectServer/client.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverA.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverB.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/test.idl:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.h:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp:
Fixed fuzz errors and compilation errors in unicode builds.
* NEWS:
Added entry for the new features.
Sat Apr 25 06:25:37 UTC 2009 Yan Dai <dai_y@ociweb.com>
Added IMR changes OCI prepared for some customers.
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/Locator_Options.h:
* orbsvcs/ImplRepo_Service/Locator_Options.cpp:
* orbsvcs/ImplRepo_Service/Locator_Repository.h:
* orbsvcs/ImplRepo_Service/Locator_Repository.cpp:
* orbsvcs/ImplRepo_Service/Locator_XMLHandler.h:
* orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp:
* orbsvcs/ImplRepo_Service/Server_Info.h:
* orbsvcs/ImplRepo_Service/Server_Info.cpp:
Added -UnregisterIfAddressReused IMR option to enable the
address reuse checking upon server registering via
server_is_running. If a new server reuses already registered
server's address, the previous server will be unregistered
from IMR.
Current implementation registers server per POA instead of per
server process. The ServerId info is added to ServerInfo to
help identify if different POAs are from same server
process. The POA registering will not affect the POAs
registered with the same ServerId.
* tao/ImR_Client/ImR_Client.cpp:
Made server ID (set via -ORBServerId) info be part of the server
name info to pass to IMR. This info helps IMR to identify if two
poas created by same server process.
* tao/ORB_Core.cpp:
* tao/Synch_Invocation.cpp:
* tao/params.h:
* tao/params.inl:
* tao/params.cpp:
Added new ORB option -ORBForwardInvocationOnObjectNotExist to
support request forwarding to next available profile upon
receiving OBJECT_NOT_EXIST exception reply.
* orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc:
* orbsvcs/tests/ImplRepo/ReconnectServer/client.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/run_test.pl:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverA.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverB.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/test.idl:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.h:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp:
Added test case for the changes.
* bin/tao_other_tests.lst:
Added ImplRepo ReconnectServer test.
Sat Apr 25 06:14:45 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
* orbsvcs/ImplRepo_Service/Locator_Options.h:
* orbsvcs/ImplRepo_Service/Locator_Options.cpp:
* orbsvcs/ImplRepo_Service/Locator_Repository.h:
* orbsvcs/ImplRepo_Service/Locator_Repository.cpp:
* orbsvcs/ImplRepo_Service/Locator_XMLHandler.h:
* orbsvcs/ImplRepo_Service/Locator_XMLHandler.cpp:
* orbsvcs/ImplRepo_Service/Server_Info.h:
* orbsvcs/ImplRepo_Service/Server_Info.cpp:
Added -UnregisterIfAddressReused IMR option to enable the
address reuse checking upon server registering via
server_is_running. If a new server reuses already registered
server's address, the previous server will be unregistered from
IMR.
Current implementation registers server per POA instead of per
server process. The ServerId info is added to ServerInfo to help
identify if different POAs are from same server process. The POA
registering will not affect the POAs registered with the same
ServerId.
* tao/ImR_Client/ImR_Client.cpp:
Made server ID (set via -ORBServerId) info be part of the server
name info to pass to IMR. This info helps IMR to identify if two
poas created by same server process.
* tao/ORB_Core.cpp:
* tao/Synch_Invocation.cpp:
* tao/params.h:
* tao/params.inl:
* tao/params.cpp:
Added new ORB option -ORBForwardInvocationOnObjectNotExist to
support request forwarding to next available profile upon
receiving OBJECT_NOT_EXIST exception reply.
* orbsvcs/tests/ImplRepo/ReconnectServer/ReconnectServer.mpc:
* orbsvcs/tests/ImplRepo/ReconnectServer/client.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/run_test.pl:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverA.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/serverB.cpp:
* orbsvcs/tests/ImplRepo/ReconnectServer/test.idl:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.h:
* orbsvcs/tests/ImplRepo/ReconnectServer/test_i.cpp:
Added test case for the changes.
* orbsvcs/ImplRepo_Service/ImR_Locator_i.h:
Added ImplRepo ReconnectServer test.
Fri Apr 24 15:17:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Notify/Bug_3646a_Regression/Consumer.cpp:
Fixed variable not used warning
Fri Apr 24 15:11:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
Unicode fix
Fri Apr 24 12:03:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/start_services:
Removed this old script
Thu Apr 23 16:09:54 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/ast/ast_interface.cpp:
* TAO_IDL/fe/y.tab.cpp:
* TAO_IDL/fe/idl.yy:
Further tweaks to the fix of
Wed Apr 22 17:59:18 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
to correct a problem uncovered by processing
RTPortableServer.pidl. Thanks to Will Otte
<wotte at dre dot vanderbilt.edu> for reporting the problem.
Thu Apr 23 11:10:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/Notify_Service/Notify_Service.{h,cpp}:
Only keep the IOR file open when we write the IOR, close it
directly after we are ready
Thu Apr 23 10:14:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/Bug_2626_Regression
* orbsvcs/tests/Notify/Bug_2626_Regression
Move tests to notify directory
* bin/tao_other_tests.lst:
Updated 2926
Thu Apr 23 09:31:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Added Bug_3646a_Regression
* orbsvcs/Notify_Service/Notify_Service.cpp
* orbsvcs/Notify_Service/Notify_Service.h
Added support for multiple ChannelName arguments, the notification service
will then create multiple channels and register them in the naming services
* orbsvcs/tests/Notify/Bug_3646a_Regression
* orbsvcs/tests/Notify/Bug_3646a_Regression/Bug_3646a_Regression.mpc
* orbsvcs/tests/Notify/Bug_3646a_Regression/Consumer.cpp
* orbsvcs/tests/Notify/Bug_3646a_Regression/run_test.pl
New test for multiple ChannelName arguments
* orbsvcs/orbsvcs/AV/AVStreams_i.cpp:
* orbsvcs/orbsvcs/CosEvent/CEC_DynamicImplementation.cpp
Initialise pointer with 0
* orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp
Const changes
* orbsvcs/FTRT_Event_Service/Gateway_Service/FTRTEC_Gateway_Service.cpp
* orbsvcs/performance-tests/RTEvent/Federated_Roundtrip/client.cpp
* orbsvcs/tests/AVStreams/Latency/control.cpp
* orbsvcs/tests/Bug_2247_Regression/Manager.cpp
* orbsvcs/tests/Bug_2248_Regression/client.cpp
* orbsvcs/tests/Bug_2926_Regression/DllORB.cpp
* orbsvcs/tests/Bug_3598b_Regression/client.cpp
* orbsvcs/tests/FaultTolerance/IOGR/Manager.cpp
* orbsvcs/tests/ImplRepo/Bug_689_Regression/client.cpp
* orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/test_idl.cpp
* orbsvcs/tests/InterfaceRepo/Bug_3174_Regression/test_idl.cpp
* orbsvcs/tests/Notify/Blocking/Structured_Consumer.cpp
* orbsvcs/tests/Notify/Bug_1385_Regression/Structured_Consumer.cpp
* orbsvcs/tests/Notify/Bug_2561_Regression/Consumer.cpp
* orbsvcs/tests/Notify/Discarding/Sequence_Consumer.cpp
* orbsvcs/tests/Notify/Discarding/Structured_Consumer.cpp
* orbsvcs/tests/Notify/lib/Notify_Test_Client.cpp
* orbsvcs/tests/Notify/lib/Notify_Test_Client.h
* orbsvcs/tests/Notify/MC/Structured_Consumer.cpp
* orbsvcs/tests/Notify/MC/test_monitor.cpp
* orbsvcs/tests/Notify/MT_Dispatching/Structured_Consumer.cpp
* orbsvcs/tests/Notify/Ordering/Sequence_Consumer.cpp
* orbsvcs/tests/Notify/Ordering/Structured_Consumer.cpp
* orbsvcs/tests/Notify/performance-tests/Filter/Sequence_Consumer.cpp
* orbsvcs/tests/Notify/performance-tests/Filter/Structured_Consumer.cpp
* orbsvcs/tests/Notify/Sequence_Multi_ETCL_Filter/Sequence_Consumer.cpp
* orbsvcs/tests/Notify/Sequence_Multi_Filter/Sequence_Consumer.cpp
* orbsvcs/tests/tests_svc_loader/tests_svc_loader.cpp
Removed not needed unicode to ascii conversion
Thu Apr 23 07:18:37 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/FL_Cube/client.cpp
* tests/HandleExhaustion/client.cpp
* tests/Abstract_Interface/client.cpp
* tests/Big_Reply/client.cpp
* tests/Bug_1254_Regression/client.cpp
* tests/Bug_2174_Regression/client.cpp
* tests/Bug_2734_Regression/client.cpp
* tests/Bug_2768_Regression/client.cpp
* tests/Bug_3198_Regression/bug_3198_regression.cpp
* tests/Bug_3598a_Regression/client.cpp
* tests/Client_Leaks/client.cpp
* tests/Leader_Followers/client.cpp
* tests/MProfile_Forwarding/Manager.cpp
* tests/Multiple/client.cpp
* tests/Nested_Event_Loop/client.cpp
* tests/NestedUpcall/Simple/client.cpp
* tests/NestedUpcall/Simple/simple-client.cpp
* tests/ORB_Local_Config/Two_DLL_ORB/client.cpp
* tests/POA/EndpointPolicy/client.cpp
* tests/POA/Generic_Servant/client.cpp
* tests/POA/Persistent_ID/client.cpp
* tests/Portable_Interceptors/AdvSlot/client.cpp
* tests/Portable_Interceptors/AdvSlotDblCpy/client.cpp
* tests/Portable_Interceptors/AdvSlotExt/client.cpp
* tests/Portable_Interceptors/AMI/client.cpp
* tests/Portable_Interceptors/Bug_2133/client.cpp
* tests/RTCORBA/Linear_Priority/client.cpp
* tests/RTCORBA/Persistent_IOR/client.cpp
* tests/RTCORBA/Policy_Combinations/client.cpp
* tests/Server_Connection_Purging/client2.cpp
* tests/Single_Read/client.cpp
* tests/Smart_Proxies/dtor/client.cpp
* tests/Timed_Buffered_Oneways/client.cpp
* tests/Timeout/client.cpp
Removed not needed unicode to ascii conversion
* tests/Hello/client.cpp:
Fixed typo in comment
Thu Apr 23 08:13:37 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/Bug_3643_Regression/client.cpp:
Resolved unicode compiler error.
Wed Apr 22 17:59:18 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/ast_sequence.h:
* TAO_IDL/ast/ast_interface.cpp:
* TAO_IDL/ast/ast_sequence.cpp:
* TAO_IDL/fe/y.tab.cpp:
* TAO_IDL/fe/idl.yy:
Added check to catch illegal use of incomplete sequence
type (sequence of undefined struct or union) as an
operation return type or parameter. Thanks to
Ron van Hoof <rvhoof27@gmail.com> for reporting the bug
and for sending in the example IDL. This fix closes
[BUGID:3648].
* TAO_IDL/util/utl_err.cpp:
Changed message associated with EIDL_ILLEGAL_ADD flag
to be more informative.
* TAO_IDL/tao_idl.mpc:
Removed a redundant item from the 'after' line of
TAO_IDL_EXE.
Wed Apr 22 09:07:44 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3632_Regression/test.cpp:
* tests/Bug_3632_Regression/test.idl:
* tests/Bug_3632_Regression/Bug_3632_Regression.mpc:
* tests/Bug_3632_Regression/run_test.pl:
* tests/Bug_3632_Regression/README:
Added a regression test.
* bin/tao_orb_tests.lst:
Scheduled the test for run.
* tao/Bounded_Array_Sequence_T.h:
* tao/Bounded_Basic_String_Sequence_T.h:
* tao/Valuetype/Bounded_Valuetype_Sequence_T.h:
* tao/Bounded_Value_Sequence_T.h:
* tao/Bounded_Object_Reference_Sequence_T.h:
Fixed bug#3632. Now user cannot change a maximum value
of a bounded sequence.
Wed Apr 22 09:32:37 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/Bug_3643_Regression/client.cpp:
Resolved unicode compiler error.
Tue Apr 21 10:17:06 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/RTCORBA/Bug_3643_Regression/*:
New regression test
Tue Apr 21 09:52:06 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/nslist/nslist.cpp:
Removed argc/argv conversion
Thu Apr 16 16:11:07 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
Added new section anticipating version 1.7.
Tue Apr 14 10:06:19 CDT 2009 Phil Mesnier <mesnier_p@ociweb.com>
* TAO version 1.6.9 released.
Tue Apr 14 13:57:16 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
Reworded entries to be consistent with release note.
Fri Apr 10 12:44:12 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Sequence_Unit_Tests/clean_tao_export.pl:
* tests/Sequence_Unit_Tests/run_test.pl:
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp:
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
Reverted my previous attempts to fix this test on windows
and disabled unbounded octet sequence test on this platform.
Fri Apr 10 12:17:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
3630 is not fixed yet
Thu Apr 9 11:01:26 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp:
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
There were compile errors on Linux and Solaris builds with
previous attempt to fix octet sequence test on Windows. Now
those custom build steps are done only on windows builds.
Wed Apr 8 12:45:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/NamingViewer/BindDialog.cpp
* utils/NamingViewer/BindDialog.h
* utils/NamingViewer/BindNewContext.cpp
* utils/NamingViewer/BindNewContext.h
Unicode fixes
Tue Apr 7 09:01:37 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Sequence_Unit_Tests/clean_tao_export.pl:
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp:
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
Fixed a test that uses specialization of unbounded_value_sequence
for CORBA::Octet on win32. This test requires that the above
specialization is compiled into tests code and not imported from
TAO.dll as it was done before.
Mon Apr 6 13:39:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 3630 and 3567 has been fixed
* tests/Bug_3630_Regression/*:
Added new test for bugzilla 3630, thanks to Steve Ramsay
<steve dot ramsay at caris dot com> for creating this test
Mon Apr 6 08:19:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/NamingViewer/BindDialog.cpp
* utils/NamingViewer/BindDialog.h
* utils/NamingViewer/BindNewContext.cpp
* utils/NamingViewer/BindNewContext.h
Fixed unicode compile errors
Mon Apr 6 07:35:16 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/Priority_Inversion_With_Bands/run_test.pl:
Fixed time out errors.
Fri Apr 3 13:40:46 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/tests/Security/mixed_security_test/server.cpp:
Fixed compilation warnings on LynxOS.
Fri Apr 3 13:33:14 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/DevGuideExamples/Security/ParticipatingApp/Messenger_i.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_OpenSSL_st_T.inl:
Fixed compile errors on LynxOS 4.0.
Fri Apr 3 12:50:23 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/NamingViewer/AddNameServerDlg.cpp:
* utils/NamingViewer/BindDialog.cpp:
* utils/NamingViewer/BindNewContext.cpp:
* utils/NamingViewer/NamingTreeCtrl.cpp:
* utils/NamingViewer/NamingViewer.cpp:
* utils/NamingViewer/SelectNSDialog.cpp:
* utils/NamingViewer/ViewIORDialog.cpp:
Minor code improvements
Thu Apr 2 11:03:23 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Exclusive_TMS.cpp
* tao/Exclusive_TMS.h
Resolved compiler errors on Codegear 2009.
* tao/Muxed_TMS.h
* tao/Reply_Dispatcher.h
Resolved compiler errors when versioned
namespaces are used.
Wed Apr 1 14:28:11 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Sequence_Unit_Tests/value_sequence_tester.hpp:
* tests/Sequence_Unit_Tests/unbounded_sequence_cdr_ut.cpp:
* tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/bounded_object_reference_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/unbounded_object_reference_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/string_sequence_tester.hpp:
* tests/Sequence_Unit_Tests/run_test.pl:
* tests/Sequence_Unit_Tests/object_reference_sequence_element_ut.cpp:
* tests/Sequence_Unit_Tests/testing_counters.hpp:
* tests/Sequence_Unit_Tests/bounded_string_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp:
* tests/Sequence_Unit_Tests/bounded_sequence_cdr_ut.cpp:
* tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/testing_allocation_traits.hpp:
* tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp:
* tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp:
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc:
* tests/Sequence_Unit_Tests/unbounded_fwd_object_reference_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/Makefile.am:
Updated the test with respect to all recent changes in the
implementation of sequences in TAO. This fixes bug#3488.
* tao/Unbounded_Octet_Sequence_T.h:
* tao/Generic_Sequence_T.h:
Fixed several things. 1) In copy constructor. When a new
sequence is created from a sequence that has buffer_==0
there is no need to allocate a buffer in a new sequence.
Also if the original sequence has length_<maximum_ then we
have to initialize elements length_ through maximum_.
2) There were several places in Unbounded_Octet_Sequence_T.h
where release_ was not properly set when buffer_ was updated.
3) There is no need for initialize_range in
Unbounded_Octet_Sequence_T.h since this is a sequence of
primitive types and C++ mapping says that "Sequence
elements of a basic type, such as ULong, have undefined default
values."
* tao/Bounded_Array_Sequence_T.h:
* tao/Valuetype/Bounded_Valuetype_Sequence_T.h:
* tao/Bounded_Object_Reference_Sequence_T.h:
Added allocbuf() with no arguments to bounded sequences as it's
required by the C++ mapping (ver 1.2).
Wed Apr 1 09:26:16 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3636_Regression/*:
New test for bug 3636, work_pending doesn't return false
on solaris. This seems to happen not anymore on svn head
* bin/tao_orb_tests.lst:
Add new test
Tue Mar 31 10:44:16 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Asynch_Reply_Dispatcher_Base.cpp:
* tao/Asynch_Reply_Dispatcher_Base.h:
* tao/Asynch_Reply_Dispatcher_Base.inl:
* tao/DynamicInterface/DII_Reply_Dispatcher.cpp:
* tao/Exclusive_TMS.cpp:
* tao/Exclusive_TMS.h:
* tao/LocateRequest_Invocation.cpp:
* tao/Messaging/Asynch_Reply_Dispatcher.cpp:
* tao/Muxed_TMS.cpp:
* tao/Muxed_TMS.h:
* tao/Reply_Dispatcher.cpp:
* tao/Reply_Dispatcher.h:
* tao/Synch_Invocation.cpp:
* tao/Transport_Mux_Strategy.h:
Refactored Reply Dispatchers. It's now possible to make a CORBA
call (synchronous or asynchronous) during an AMI reply
dispatch without running into a deadlock.
Also, the reply dispatchers are now created on the heap,
using an ACE_Intrusive_Auto_Ptr.
This fixes Bugzilla 3567.
* tests/Big_AMI/client.cpp:
Using a different CORBA:Object_var for ior.
* NEWS:
Listed this change.
Mon Mar 30 07:39:16 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl:
* tests/RTCORBA/Priority_Inversion_With_Bands/run_test.pl:
* tests/RTCORBA/Profile_And_Endpoint_Selection/run_test.pl:
* tests/RTCORBA/RTMutex/run_test.pl:
* tests/RTCORBA/Server_Declared/run_test.pl:
* tests/RTCORBA/Thread_Pool/run_test.pl:
Resolved some runtime errors which were introduced while making these
scripts fuzz compliant.
Fri Mar 27 15:23:32 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* NEWS:
Added entry for bug fix below
Fri Mar 20 16:04:58 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
Fri Mar 27 14:42:07 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/Persistent_IOR/run_test.pl:
* tests/RTCORBA/Policy_Combinations/run_test.pl:
* tests/RTCORBA/Priority_Inversion_With_Bands/run_test.pl:
* tests/RTCORBA/Thread_Pool/run_test.pl:
Resolved remaining fuzz warnings.
Fri Mar 27 12:48:10 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/RTCORBA/Banded_Connections/run_test.pl:
* tests/RTCORBA/Destroy_Thread_Pool/run_test.pl:
* tests/RTCORBA/Explicit_Binding/run_test.pl:
* tests/RTCORBA/Linear_Priority/run_test.pl:
* tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl:
* tests/RTCORBA/Persistent_IOR/run_test.pl:
* tests/RTCORBA/Policies/run_test.pl:
* tests/RTCORBA/Policy_Combinations/run_test.pl:
* tests/RTCORBA/Priority_Inversion_With_Bands/run_test.pl:
* tests/RTCORBA/Profile_And_Endpoint_Selection/run_test.pl:
* tests/RTCORBA/RTMutex/run_test.pl:
* tests/RTCORBA/Server_Declared/run_test.pl:
* tests/RTCORBA/Server_Protocol/run_test.pl:
* tests/RTCORBA/Thread_Pool/run_test.pl:
Resolved fuzz errors and warnings.
Fri Mar 27 10:29:10 UTC 2009 Marcel Smit <msmit@remedy.nl>
* bin/tao_orb_tests.lst:
Removed !LabVIEW_RT, !WinCE and !FUZZ in order to run
the following tests on these targets.
* tests/RTCORBA/Banded_Connections/run_test.pl:
* tests/RTCORBA/Bug_3382_Regression/run_test.pl:
* tests/RTCORBA/Client_Protocol/run_test.pl:
* tests/RTCORBA/Collocation/run_test.pl:
* tests/RTCORBA/Destroy_Thread_Pool/run_test.pl:
* tests/RTCORBA/Dynamic_Thread_Pool/run_test.pl:
* tests/RTCORBA/Explicit_Binding/run_test.pl:
* tests/RTCORBA/Linear_Priority/run_test.pl:
* tests/RTCORBA/MT_Client_Protocol_Priority/run_test.pl:
* tests/RTCORBA/Persistent_IOR/run_test.pl:
* tests/RTCORBA/Policies/run_test.pl:
* tests/RTCORBA/Policy_Combinations/run_test.pl:
* tests/RTCORBA/Priority_Inversion_With_Bands/run_test.pl:
* tests/RTCORBA/Private_Connection/run_test.pl:
* tests/RTCORBA/Profile_And_Endpoint_Selection/run_test.pl:
* tests/RTCORBA/RTMutex/run_test.pl:
* tests/RTCORBA/Server_Declared/run_test.pl:
* tests/RTCORBA/Server_Protocol/run_test.pl:
* tests/RTCORBA/Thread_Pool/run_test.pl:
Made Fuzz compliant
* tests/RTCORBA/Dynamic_Thread_Pool/client.cpp:
When -x is supplied, the only thing the client has to do, is shutdown
the server.
Thu Mar 26 15:39:23 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_2936_Regression/run_test.pl:
Removed not used variable
Thu Mar 26 13:47:23 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Big_AMI/run_test.pl:
* tests/Bug_2936_Regression/run_test.pl:
* bin/tao_orb_tests.lst:
Converted to the new test framework
Thu Mar 26 13:21:23 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3567_Regression/client.cpp:
Resolved compiler warning.
Thu Mar 26 09:10:23 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Sequence_Unit_Tests/testing_object_reference_traits.hpp:
* tests/Sequence_Unit_Tests/testing_string_traits.hpp:
Fixed compile errors with HPUX
Thu Mar 26 08:52:23 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Sequence_Unit_Tests/bounded_string_sequence_ut.cpp:
* tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp:
* tests/Sequence_Unit_Tests/string_sequence_tester.hpp:
* tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp:
Only test wchar when it is available
Wed Mar 25 02:49:23 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tests/Sequence_Unit_Tests/bounded_object_reference_sequence_ut.cpp:
Fixed a few cases where the expected state of the
default-constructed sequence was incorrect.
This is related to the change in
Fri Jun 8 19:23:45 UTC 2007 Adam Mitz <mitza@ociweb.com>
Tue Mar 24 19:46:00 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3567_Regression/client.cpp:
Refactoring in preparation of upcoming AMI changes.
Tue Mar 24 16:41:18 UTC 2009 Joe Hoffert <jhoffert@dre.vanderbilt.edu>
* tao/Valuetype/Bounded_Valuetype_Sequence_T.h
* tao/Valuetype/Unbounded_Valuetype_Sequence_T.h
Adding iterators that support memory management.
Tue Mar 24 07:03:42 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Sequence_Iterators/Bounded_String.cpp
* tests/Sequence_Iterators/StringSeq.cpp
* tests/Sequence_Iterators/Unbounded_Objectref.cpp
* tests/Sequence_Iterators/Unbounded_Value.cpp
Disable more code when stl iterators are disabled
Tue Mar 24 06:43:42 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added new IDL_Inherited_Operation and the sequence unit tests
are not using boost anymore
* tests/Sequence_Unit_Tests/bounded_object_reference_sequence_ut.cpp
* tests/Sequence_Unit_Tests/bounded_sequence_cdr_ut.cpp
* tests/Sequence_Unit_Tests/bounded_string_sequence_ut.cpp
* tests/Sequence_Unit_Tests/bounded_value_sequence_ut.cpp
* tests/Sequence_Unit_Tests/fwd_mock_reference.cpp
* tests/Sequence_Unit_Tests/fwd_mock_reference.hpp
* tests/Sequence_Unit_Tests/mock_array.hpp
* tests/Sequence_Unit_Tests/mock_reference.hpp
* tests/Sequence_Unit_Tests/object_reference_sequence_element_ut.cpp
* tests/Sequence_Unit_Tests/run_test.pl
* tests/Sequence_Unit_Tests/Sequence_Unit_Tests.mpc
* tests/Sequence_Unit_Tests/string_sequence_element_ut.cpp
* tests/Sequence_Unit_Tests/string_sequence_tester.hpp
* tests/Sequence_Unit_Tests/string_ut.cpp
* tests/Sequence_Unit_Tests/test_macros.h
* tests/Sequence_Unit_Tests/testing_allocation_traits_ut.cpp
* tests/Sequence_Unit_Tests/testing_counters.hpp
* tests/Sequence_Unit_Tests/testing_string_traits.hpp
* tests/Sequence_Unit_Tests/unbounded_array_sequence_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_fwd_object_reference_sequence_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_object_reference_sequence_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_nocopy_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_sequence_cdr_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_string_sequence_ut.cpp
* tests/Sequence_Unit_Tests/unbounded_value_sequence_ut.cpp
* tests/Sequence_Unit_Tests/value_sequence_tester.hpp
Removed usage of boost. The boost unit test framework is nice, but we
don't have boost on just a few build/test systems which results in the
fact that we don't run these tests which we really need to do, given
the fact that several of them are broken
Mon Mar 23 20:24:42 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tests/IDL_Inherited_Operation/InheritedOp_i.h:
* tests/IDL_Inherited_Operation/InheritedOp_i.cpp:
Fuzz fix.
Mon Mar 23 19:38:59 UTC 2009 Joe Hoffert <jhoffert@dre.vanderbilt.edu>
* tests/Sequence_Iterators/Bounded_String.cpp:
* tests/Sequence_Iterators/StringSeq.cpp:
* tests/Sequence_Iterators/Unbounded_Objectref.cpp:
* tests/Sequence_Iterators/Unbounded_Value.cpp:
* tests/Sequence_Iterators/run_test.pl:
Removed extraneous comments, uncommented code that causes
crashes in Unbounded_Objectref, and added Perl preamble to
run_test.pl so it will run on Linux.
Mon Mar 23 19:33:25 UTC 2009 Olli Savia <ops@iki.fi>
* tests/TransportCurrent/lib/Client_Request_Interceptor.cpp:
Fixed compile warning.
Mon Mar 23 19:05:25 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* tests/IDL_Inherited_Operation/*.*:
New test, to guard against reoccurrence of an IDL compiler
bug that resulted in base class operations missing from
the operation table of code generated for a derived interface.
Similar bug fixes are tested in the directory IDL_Test, but
this bug can be detected only at runtime by a remote call,
unlike any of the possible errors detectable by IDL_Test.
The IDL compiler bug fix entry is
Fri Mar 20 16:04:58 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
Mon Mar 23 15:29:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Sequence_Iterators/Bounded_String.cpp:
* tests/Sequence_Iterators/StringSeq.cpp:
* tests/Sequence_Iterators/Unbounded_Objectref.cpp:
* tests/Sequence_Iterators/Unbounded_Value.cpp:
Removed checked for ACE_WIN32
* tao/Generic_Sequence_T.h:
* tao/MM_Sequence_Iterator_T.h:
Made some constructors explicit to get the tests compiling on
win32
Mon Mar 23 15:09:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Sequence_Iterators/run_test.pl:
Converted to the new test framework
* tests/Transport_Cache_Manager/run_test.pl:
Simplified
* bin/tao_orb_tests.lst:
Added new test
Mon Mar 23 13:48:21 UTC 2009 Adam Mitz <mitza@ociweb.com>
* rules.tao.GNU:
Removed section specific to Win32/MinGW that set the make variable
TAO_IDL_PREPROCESSOR to the full path to $(CXX). This is not needed,
we can treat it like any other platform.
Mon Mar 23 09:55:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Bounded_Basic_String_Sequence_T.h
* tao/Bounded_Object_Reference_Sequence_T.h
* tao/Generic_Sequence_T.h
* tao/Makefile.am
* tao/MM_Sequence_Iterator_T.h
* tao/orbconf.h
* tao/tao.mpc
* tao/Unbounded_Basic_String_Sequence_T.h
* tao/Unbounded_Object_Reference_Sequence_T.h
* tao/Unbounded_Value_Sequence_T.h
* tests/Sequence_Iterators/*
Added support for STL iterators for the CORBA sequences. This
has been developed by Joe Hoffert <jhoffert at dre dot vanderbilt dot edu>
The code is not 100% finished yet, some last memory leaks and
portability issues are left. By merging this to svn head it
is much easier to test the code on all the platforms. This
feature is disabled by default, you have to define
TAO_HAS_SEQUENCE_ITERATORS to 1 in your config.h file to enable
this feature. Be aware that these STL iterators are a TAO specific
addition and are not part of the CORBA C++ mapping
Sat Mar 21 17:53:17 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/XML_Saver.cpp:
* orbsvcs/tests/Notify/Persistent_Filter/Filter.cpp:
Fix for running on wchar systems.
Fri Mar 20 16:04:58 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/ast/ast_module.cpp(fe_add_interface_fwd):
Fixed logic in setting the 'full_definition' member of
a forward declared interface node, and other changes to
make sure the memory management is still handled correctly.
Thanks to Maxim Khon<mkhon@parallels.com> for reporting
the problem of a derived inteface's operation table not
containing base class operations, when a forward declaration
of the base class interface occurs between the two
full definitions,
Fri Mar 20 10:01:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ZIOP/ZIOP_ORBInitializer.cpp:
* tao/ZIOP/ZIOP_Service_Context_Handler.cpp:
* tao/ZIOP/ZIOP_Service_Context_Handler.h:
Don't compile when we have no messaging
Fri Mar 20 07:01:18 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Xt_Stopwatch/timer.h:
* tests/Xt_Stopwatch/timer.cpp:
Added virtual destructor to fix compile warning.
Fri Mar 20 01:54:00 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Validate_Client/Makefile.am:
Fix for automake builds.
Thu Mar 19 18:34:18 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
* orbsvcs/Notify_Service/README:
Add text to describe the new validate_client functionality.
* orbsvcs/tests/Notify/Validate_Client/run_test.pl:
clean up all the intermediate files at the end of the test.
Thu Mar 19 15:16:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/MProfile.cpp:
Const change
* tao/Profile.cpp:
Layout change
* tao/ZIOP/ZIOP_ORBInitializer.cpp:
* tao/ZIOP/ZIOP_Service_Context_Handler.cpp:
* tao/ZIOP/ZIOP_Service_Context_Handler.h:
Added a ZIOP sc handler that transfers the ZIOP enabled and
idlevellist policy from the client to the server. These
are transmitted through the Messaging Invocation Policies which
aren't supported yet by TAO. We have to make some changes to
the core and pluggable transports to make all reply and
request service contexts available on all places.
* tao/Makefile.am:
Added new files
Thu Mar 19 13:49:23 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* configure.ac:
* orbsvcs/tests/Notify/Makefile.am:
Add new build to the automake files.
* orbsvcs/tests/Notify/Validate_Client/Makefile.am:
* orbsvcs/tests/Notify/Validate_Client/README:
* orbsvcs/tests/Notify/Validate_Client/Validate_Client.mpc:
* orbsvcs/tests/Notify/Validate_Client/proxy_dummy.cpp:
* orbsvcs/tests/Notify/Validate_Client/run_test.pl:
Added a server that generates the persistence file for the
notify service that is uses locally created references. This
should ensure that the validator feature will actually get a
OBJECT_NOT_EXIST exception rather than time out trying to
resolve an unknown hostname.
The problem with this test was the original source persistence
file contained proxy references that were unresolvable, and so
on some hosts, it took longer than the timeout period to fail to
resolve, and this caused the validator to get a TIMEOUT
exception and decide that the peer is still present, just
busy. Thus the proxy would not be reaped, and the persistence
file would end up with proxy references, causing the test to
fail.
* orbsvcs/tests/Notify/Validate_Client/persistency_copy:
Removed this file, the source data file is generated now.
Thu Mar 19 04:55:02 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
Ensure the validator thread is explicitly halted on shutdown of
the notify service. This was a problem on some platforms such as
Solaris where the validator thread continued to run during
service shutdown, yielding a crash.
Thu Mar 19 03:02:52 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
Improve defense against the same pointer value coincidently
being reused when allocating a filter servant. This occasionally
happens in some of the test drivers, where the same notify
service instance is reused although the specific event channel
is destroyed after each test. Unfortunately the filter_POA is
not, and could hold stale pointers.
* orbsvcs/orbsvcs/Notify/POA_Helper.cpp:
Cleaned up the debug output a bit.
Wed Mar 18 19:04:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Profile.cpp:
Removed not used variable and check the return value of the
streaming operators
Wed Mar 18 13:13:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/IFR_Service/ifr_adding_visitor.cpp:
Fixed wrong delete
Wed Mar 18 13:00:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Compression test can always run
Wed Mar 18 09:51:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_other_tests.lst:
Disabled a few tests for WCHAR, the needed executables are not
compiled
Wed Mar 18 09:47:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_12/client.cpp
* examples/Advanced/ch_18/client.cpp
* examples/Advanced/ch_21/client.cpp
* examples/Advanced/ch_8_and_10/client.cpp
Use intermediate variable to resolve ambiguity errors
with C++ Builder 2009
Wed Mar 18 07:55:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/RTCORBA/RTMutex/run_test.pl:
Fixed this script
Tue Mar 17 21:43:12 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/ZIOP/client.cpp:
Removed unused variable.
Tue Mar 17 19:28:21 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Persistent_Filter/Makefile.am:
Fix library paths for autobuild.
Tue Mar 17 19:09:12 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/ZIOP/client.cpp:
Resolved compiler warning.
Tue Mar 17 15:26:12 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Messaging/Asynch_Reply_Dispatcher.cpp:
Corrected misspelled log messages.
* tests/ZIOP/TestCompressor/TestCompressor.cpp:
Resolved compiler warnings on Solaris.
Tue Mar 17 10:09:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.h:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.h:
* tao/BiDir_GIOP/BiDir_Service_Context_Handler.cpp:
* tao/BiDir_GIOP/BiDir_Service_Context_Handler.h:
* tao/Codeset/Codeset_Manager_i.cpp:
* tao/Codeset/Codeset_Manager_i.h:
* tao/Codeset_Manager.h:
* tao/DiffServPolicy/DiffServ_Protocols_Hooks.cpp:
* tao/DiffServPolicy/DiffServ_Protocols_Hooks.h:
* tao/DiffServPolicy/DiffServ_Service_Context_Handler.cpp:
* tao/DiffServPolicy/DiffServ_Service_Context_Handler.h:
* tao/DiffServPolicy/DiffServPolicy_ORBInitializer.cpp:
* tao/GIOP_Message_Base.cpp:
* tao/IIOP_Transport.cpp:
* tao/IIOP_Transport.h:
* tao/IORManipulation/IORManip_IIOP_Filter.cpp:
* tao/LocateRequest_Invocation.cpp:
* tao/Makefile.am:
* tao/Network_Priority_Protocols_Hooks.h:
* tao/ORB_Core.cpp:
* tao/ORB_Core.h:
* tao/Protocols_Hooks.h:
* tao/Remote_Invocation.cpp:
* tao/Remote_Invocation.h:
* tao/RTCORBA/RT_Endpoint_Selector_Factory.h:
* tao/RTCORBA/RT_ORBInitializer.cpp:
* tao/RTCORBA/RT_Protocols_Hooks.cpp:
* tao/RTCORBA/RT_Protocols_Hooks.h:
* tao/RTCORBA/RT_Service_Context_Handler.cpp:
* tao/RTCORBA/RT_Service_Context_Handler.h:
* tao/RTCORBA/RT_Thread_Lane_Resources_Manager.h:
* tao/Service_Context_Handler.h:
* tao/Service_Context_Handler_Registry.cpp:
* tao/Service_Context_Handler_Registry.h:
* tao/Strategies/SCIOP_Transport.cpp:
* tao/Strategies/SCIOP_Transport.h:
* tao/Transport.cpp:
* tao/Transport.h:
* tao/TypeCodeFactory/TypeCodeFactory_i.cpp:
Refactored BiDir/Diffserv/RTCORBA/Codeset support. The service contexts are
now generated by the specific service context handlers. This way the
special RTCORBA/Diffserv hooks are removed from the code, generating
the service contexts is now a generic solution. In the near future
we will also rework the handling of those service contexts. The
generation of the BiDIR service context is now also moved out of the
specific transports
Tue Mar 17 05:25:49 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tests/RTCORBA/Collocation/run_test.pl:
Fuzz fix.
Mon Mar 16 19:26:32 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* configure.ac:
Added missing declaration for new orbsvcs/Notify test directory.
Mon Mar 16 19:17:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/RTCORBA/Collocation/run_test.pl:
* tests/RTCORBA/ORB_init/run_test.pl:
* tests/RTCORBA/RTMutex/run_test.pl:
* bin/tao_orb_tests.lst:
Converted to the new test framework
Mon Mar 16 18:35:09 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Compression/zlib/ZlibCompressor.cpp:
Fixed error when compressing a small number of bytes.
It should be compliant to ZLib spec now.
* tests/Compression/bzip2server.cpp:
* tests/Compression/lzoserver.cpp:
* tests/Compression/zlibserver.cpp:
Extended tests with compression of a small
number of bytes.
Mon Mar 16 16:31:25 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Compression/bzip2/Bzip2Compressor.cpp:
Fix issue when compressing just a few bytes.
* tao/GIOP_Message_Base.cpp:
Fixed logging errors.
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
Optimized log information.
Better handling of exceptions/return values (GIOP
should be used).
* tests/ZIOP/TestCompressor:
* tests/ZIOP/testcompressor.mpb:
* tests/ZIOP/TestCompressor/TAO_TestCompressor.pc.in:
* tests/ZIOP/TestCompressor/TAO_TestCompressor.rc:
* tests/ZIOP/TestCompressor/TestCompressor.cpp:
* tests/ZIOP/TestCompressor/TestCompressor.h:
* tests/ZIOP/TestCompressor/TestCompressor_export.h:
* tests/ZIOP/TestCompressor/TestCompressor_Factory.cpp:
* tests/ZIOP/TestCompressor/TestCompressor_Factory.h:
* tests/ZIOP/ZIOP.mpc:
Added testcompressor. This compressor just throws
compression and decompression exceptions. These exception
should be handled properly by ZIOP.
* tests/ZIOP/client.cpp:
* tests/ZIOP/run_test.pl:
* tests/ZIOP/server.cpp:
Optimized tests. Refactored code by using
functions. Optimized tests when TAO_HAS_ZIOP define
is zero or not defined.
Added test compressor.
Mon Mar 16 15:52:33 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_enum.cpp(gen_ostream_operator):
For the (optional) generation of an ostream operator for
enums, changed the code generation to use the actual enum
value for the switch cases, rather than the equivalent
integers. Thanks to Johnny Willemsen <jwillemsen@remedy.nl>
for reporting the bug. This fix closes [BUGID:3625].
Mon Mar 16 15:27:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Thread_Lane_Resources_Manager.h:
* tao/Asynch_Reply_Dispatcher_Base.h:
Added private copy constructor/assignment operator to prevent
making a copy which leads to a double delete
Mon Mar 16 15:12:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Fault_Tolerance_Service.h:
* tao/IIOP_Acceptor.h:
* tao/LF_Event_Binder.h:
* tao/LF_Multi_Event.h:
* tao/ObjectKey_Table.h:
* tao/Policy_Validator.h:
* tao/Profile_Transport_Resolver.h:
Added private copy constructor/assignment operator to prevent
making a copy which leads to a double delete
* tao/Resume_Handle.inl:
Check for self assignment
Mon Mar 16 14:58:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/DiffServ/run_test.pl
* bin/tao_orb_tests.lst:
Converted to the new test framework
Mon Mar 16 13:08:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Adapter_Registry.h:
* tao/Asynch_Queued_Message.h:
* tao/Connection_Handler.h:
* tao/IIOP_Connector.cpp:
* tao/Muxed_TMS.h:
Added private copy constructor/assignment operator to prevent
making a copy which leads to a double delete
* tao/IIOP_Endpoint.cpp:
* tao/Transport_Selection_Guard.h:
Check for self assignment
Mon Mar 16 12:44:49 UTC 2009 Simon McQueen <sm@prismtech.com>
* bin/tao_orb_tests.lst:
* bin/tao_other_tests.lst:
Added bug #3598 tests.
Mon Mar 16 11:50:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/RTCORBA/Client_Propagated/run_test.pl:
Fixed fuzz errors
Mon Mar 16 11:36:58 UTC 2009 Simon McQueen <sm@prismtech.com>
* orbsvcs/orbsvcs/FaultTolerance/FT_Invocation_Endpoint_Selectors.cpp:
Remove uninterceptable exception.
* orbsvcs/tests/Bug_3598b_Regression/Bug_3598b_Regression.mpc:
* orbsvcs/tests/Bug_3598b_Regression/ClientORBInitializer.h:
* orbsvcs/tests/Bug_3598b_Regression/ClientORBInitializer.cpp:
* orbsvcs/tests/Bug_3598b_Regression/ClientRequest_Interceptor.h:
* orbsvcs/tests/Bug_3598b_Regression/ClientRequest_Interceptor.cpp:
* orbsvcs/tests/Bug_3598b_Regression/Hello.h:
* orbsvcs/tests/Bug_3598b_Regression/Hello.cpp:
* orbsvcs/tests/Bug_3598b_Regression/README:
* orbsvcs/tests/Bug_3598b_Regression/Test.idl:
* orbsvcs/tests/Bug_3598b_Regression/client.cpp:
* orbsvcs/tests/Bug_3598b_Regression/run_test.pl:
* orbsvcs/tests/Bug_3598b_Regression/server.cpp:
Regression test for the above.
* tao/Strategies/Optimized_Connection_Endpoint_Selector.cpp:
Remove uninterceptable exception.
* tests/Bug_3598a_Regression/Bug_3598a_Regression.mpc:
* tests/Bug_3598a_Regression/ClientORBInitializer.h:
* tests/Bug_3598a_Regression/ClientORBInitializer.cpp:
* tests/Bug_3598a_Regression/ClientRequest_Interceptor.h:
* tests/Bug_3598a_Regression/ClientRequest_Interceptor.cpp:
* tests/Bug_3598a_Regression/Hello.h:
* tests/Bug_3598a_Regression/Hello.cpp:
* tests/Bug_3598a_Regression/README:
* tests/Bug_3598a_Regression/Test.idl:
* tests/Bug_3598a_Regression/client.cpp:
* tests/Bug_3598a_Regression/run_test.pl:
* tests/Bug_3598a_Regression/server.cpp:
* tests/Bug_3598a_Regression/svc.conf:
Regression test for the above.
Mon Mar 16 08:54:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.cpp:
Use CORBA::is_nil and small optimizations
* tao/DynamicInterface/DII_Reply_Dispatcher.h:
* tao/Codeset/Codeset.cpp:
Layout changes
Mon Mar 16 08:34:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Exclusive_TMS.h:
* tao/Muxed_TMS.h:
Added forward declaration
* tao/Policy_Set.cpp:
Layout changes
* tao/Profile.cpp:
Fixed 64bit issue, use operator!
* tao/Synch_Invocation.cpp:
* tao/RTPortableServer/RT_Servant_Dispatcher.cpp:
Use operator!
Mon Mar 16 08:26:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/RTCORBA/Client_Propagated/run_test.pl:
Converted to the new test framework
* bin/tao_orb_tests.lst:
Enabled Client_Propagated test for WinCE/FUZZ/Labview
Mon Mar 16 07:56:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/FaultTolerance/FT_ClientRequest_Interceptor.cpp:
* orbsvcs/orbsvcs/FaultTolerance/FT_Invocation_Endpoint_Selectors.cpp:
Layout, const, and use operator! changes
Mon Mar 16 07:54:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Event/EC_Thread_Flags.cpp:
* orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.cpp:
Unicode fixes
Sun Mar 15 19:50:41 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
* orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp:
Fixed compile warnings.
Sun Mar 15 18:39:22 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/tao_idl.mpc:
Added $TAO_ROOT to the includes to pull in rules.tao.GNU which
results in all TAO_IDL libs to get the TAO version number.
This fixes bugzilla 3395
Sat Mar 14 13:29:22 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.h:
* orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp:
Added new virtual function required by change to
Notify/FilterFactory.h.
Fri Mar 13 23:26:08 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.h:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.h:
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/FilterFactory.h:
Fix for recent uptick in Notify test failures. The problem is
that now each EC gets its own filter factory instance, and in
the tests, a single notify service has multiple ECs being
created and destroyed, and cleaning up the FilterFactory servant
reference. On occasion, a new filter factory servant instance
would be allocated at the same address as a previous one, which
caused the POA to believe the servant was already active.
The solution is to deactivate the FilterFactory object when done
with it rather than explicitly deleting the servant. This way if
the builder ever does want to legitemately reuse a common
servant, that should work too.
Fri Mar 13 08:01:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_8_and_10/server.cpp:
Disable the server project again
Thu Mar 12 20:36:47 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/orbsvcs/Log/Log_Constraint_Visitors.cpp:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Visitors.cpp:
Fixed compile errors on LynxOS 4.0 with gcc 2.95.
Thu Mar 12 12:45:05 UTC 2009 Olli Savia <ops@iki.fi>
* docs/tutorials/Quoter/RTCORBA/StockNameConsumer_i.cpp:
* examples/Simple/Simple_util.cpp:
Fixed compile warnings.
Thu Mar 12 08:42:59 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/tests/InterfaceRepo/Application_Test/Makefile.am:
Fixed a compile/link problem on autoconf builds. My
previous attepmts were unlucky because I added missing
include/libs to a wrong executable.
Thu Mar 12 07:53:36 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Bug_2953_Regression/server.cpp:
Fixed compile warning.
Thu Mar 12 07:42:57 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
* tao/Transport.cpp:
* tao/ZIOP/ZIOP.cpp:
Refactored decompression of large data blocks.
* tao/GIOP_Message_State.cpp:
* tao/GIOP_Message_State.h:
* tao/GIOP_Message_State.inl:
Always set the compressed flag. Now, a ZIOP client
connecting to a non-ZIOP server receives an
exception.
* tao/ZIOP/ZIOP_Policy_i.cpp:
Return the compressor ID/Level list instead of
a copy of this list.
* tao/ZIOP/ZIOP_Stub.cpp:
Refactored. Make a copy of an existing policy
instead of creating a new one.
* tests/ZIOP/client.cpp:
Refactored.
Extended tests.
* tests/ZIOP/Hello.cpp:
* tests/ZIOP/server.cpp:
* tests/ZIOP/ZIOP.mpc:
Extended tests.
Wed Mar 11 22:14:04 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tao/ZIOP/ZIOP.cpp:
Fix for wchar builds.
Wed Mar 11 19:40:38 UTC 2009 Olli Savia <ops@iki.fi>
* orbsvcs/tests/Notify/Bug_1884_Regression/common.h:
* orbsvcs/tests/Notify/Bug_1884_Regression/filter.cpp:
Fixed compile warnings.
Wed Mar 11 18:54:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* MPC/config/taobaseidldefaults.mpb:
Added build_files as base project, that way also the mpc/mwc
files are added to the generated solution. This way we see
in the ms ide also for custom idl projects the mpc files.
Thanks to Adam Mitz for suggesting this solution
Wed Mar 11 07:39:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_12/icp.cpp
* examples/Advanced/ch_18/icp.cpp
* examples/Advanced/ch_21/icp.cpp
* examples/Advanced/ch_8_and_10/icp.cpp
Always use ACE_OS::rand
Wed Mar 11 07:20:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_12/Advanced_ch_12.mpc
* examples/Advanced/ch_18/Advanced_ch_18.mpc
* examples/Advanced/ch_21/Advanced_ch_21.mpc
Disabled server project for the moment
* examples/Advanced/ch_21/server.cpp:
Fixed compile warning
Tue Mar 10 23:56:26 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/tests/Notify/Persistent_Filter/Filter.cpp:
Added delay to synchronize supplier and consumer to
avoid test failure due to lost events.
Tue Mar 10 19:05:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Generator_Parser_12.cpp:
Check return values of write_ulong
* tao/IIOP_Transport.cpp:
Use operator!
Tue Mar 10 18:47:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Base.cpp:
Fixed unicode compile error
Tue Mar 10 14:18:19 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
Optimized logging when ZIOP is not enabled.
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP_Stub.cpp:
Implemented CompressorIdLevelList policy. On the client
ZIOP checks which compressor should be used.
Bug 3619 is added since a ZIOP server has no idea of the
client CompressorIdLevelList policy at this moment. A ZIOP
client should always implement at least one ZIOP server
CompressorIdLevelList policy.
Tue Mar 10 10:20:54 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Codeset/Codeset_Manager_i.cpp:
Retrieve the locale as string and add that to the
debug messages.
Tue Mar 10 09:11:54 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
* utils/catior/catior.cpp:
Moved ziop_compressor_name to Ziop loader class.
Made this function static.
Tue Mar 10 08:46:08 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
Resolved compiler warning.
Tue Mar 10 08:22:08 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
* utils/catior/catior.cpp:
Resolved bugzilla 3611. ZIOP logging according to
TAO standard. More log info regarding compression
details.
Tue Mar 10 07:05:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_12/client.cpp
* examples/Advanced/ch_12/server.cpp
* examples/Advanced/ch_18/Advanced_ch_18.mpc
* examples/Advanced/ch_18/client.cpp
* examples/Advanced/ch_18/server.cpp
* examples/Advanced/ch_21/Advanced_ch_21.mpc
* examples/Advanced/ch_21/client.cpp
* examples/Advanced/ch_21/server.cpp
Fixed compile issues
Mon Mar 9 22:06:29 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Bug_1884_Regression/consumer.cpp:
more wchar fixes.
Mon Mar 9 21:06:36 UTC 2009 Yan Dai <dai_y@ociweb.com>
* bin/tao_other_tests.lst:
* orbsvcs/tests/Notify/Validate_Client/README:
* orbsvcs/tests/Notify/Validate_Client/notify.conf:
* orbsvcs/tests/Notify/Validate_Client/persistency_copy:
* orbsvcs/tests/Notify/Validate_Client/run_test.pl:
Added test for Notify_Service client connection validation
feature.
* bin/tao_other_tests.lst:
Added Notify Validate_Client test.
Mon Mar 9 19:08:39 UTC 2009 Olli Savia <ops@iki.fi>
* docs/tutorials/Quoter/RTCORBA/StockQuoter.mpc:
Changed RTCORBA_Quoter_Admin to depend on rt_server rather than
rt_client. This isn't quite right but it fixes nasty linking
problem on LynxOS and doesn't do any harm on other platforms.
Mon Mar 9 14:04:35 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/InterfaceRepo/Application_Test/Makefile.am:
Added missing include directories for server build.
* orbsvcs/tests/Notify/Bug_1884_Regression/common.h:
* orbsvcs/tests/Notify/Bug_1884_Regression/consumer.cpp:
* orbsvcs/tests/Notify/Bug_1884_Regression/filter.cpp:
* orbsvcs/tests/Notify/Bug_1884_Regression/supplier.cpp:
Clean up fuzz errors.
Mon Mar 9 13:39:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* etc/*:
Added all TAO doxygen files
* Release
Added etc directory
Mon Mar 9 11:21:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Advanced/ch_12/Advanced_ch_12.mpc
* examples/Advanced/ch_12/client.cpp
* examples/Advanced/ch_12/icp.cpp
* examples/Advanced/ch_12/icp.h
* examples/Advanced/ch_12/server.cpp
* examples/Advanced/ch_12/server.h
* examples/Advanced/ch_18/Advanced_ch_18.mpc
* examples/Advanced/ch_18/client.cpp
* examples/Advanced/ch_18/icp.cpp
* examples/Advanced/ch_18/icp.h
* examples/Advanced/ch_18/server.cpp
* examples/Advanced/ch_18/server.h
* examples/Advanced/ch_21/Advanced_ch_21.mpc
* examples/Advanced/ch_21/client.cpp
* examples/Advanced/ch_21/icp.cpp
* examples/Advanced/ch_21/icp.h
* examples/Advanced/ch_21/server.cpp
* examples/Advanced/ch_21/server.h
* examples/Advanced/ch_8_and_10/Advanced_ch_8_and_10.mpc
* examples/Advanced/ch_8_and_10/client.cpp
* examples/Advanced/ch_8_and_10/icp.cpp
* examples/Advanced/ch_8_and_10/icp.h
* examples/Advanced/ch_8_and_10/server.cpp
Added missing mpc files, missing includes, use long instead of short
to resolve convertion warnings.
Mon Mar 9 07:16:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/ZIOP.pdf:
Removed, the ZIOP spec is now available at the OMG website as
ptc/09-01-03
* MPC/config/bzip2compressor.mpb:
* MPC/config/lzocompressor.mpb:
new base projects
* MPC/config/tao_versioning_idl_defaults.mpb
No need to add after TAO_IDL_EXE, that is already in the base
project
Mon Mar 9 07:05:37 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/EventType.h:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.h:
* orbsvcs/orbsvcs/Notify/Notify_Constraint_Interpreter.cpp:
Fixed Bugzilla #1884 - reconstruct the constraint expression
with event type and the expression provided by user so the
event types of a constraint are evaluated as well.
* orbsvcs/tests/Notify/Bug_1884_Regression/Bug_1884_Regression.mpc:
* orbsvcs/tests/Notify/Bug_1884_Regression/common.h:
* orbsvcs/tests/Notify/Bug_1884_Regression/consumer.cpp:
* orbsvcs/tests/Notify/Bug_1884_Regression/ecf.conf:
* orbsvcs/tests/Notify/Bug_1884_Regression/filter.cpp:
* orbsvcs/tests/Notify/Bug_1884_Regression/run_test.pl:
* orbsvcs/tests/Notify/Bug_1884_Regression/supplier.cpp:
Added new regression test.
* bin/tao_other_tests.lst:
Added Bugzilla #1884 test.
Mon Mar 9 07:08:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Compression/bzip2/Bzip2Compressor.cpp:
Removed old comment
* tao/Compression/lzo/LzoCompressor.cpp:
* tao/Compression/lzo/LzoCompressor_Factory.cpp:
Updated includes, now this also compiles on windows with lzo
* tao/LzoCompressor.mpc:
Use lzo1
* tests/Compression/bzip2server.cpp
* tests/Compression/Compression_Test.mpc
* tests/Compression/lzoserver.cpp
* tests/Compression/run_test.pl
* tests/Compression/server.cpp
* tests/Compression/zlibserver.cpp
Test bzip2/lzo/zlib independently.
* tests/IDL_Test/IDL_Test.mpc:
Moved idl files to their own project and list then all source
files explicitly. Now we can build this project with incredibuild
* tests/DIOP/client.cpp:
prefix increment and layout change
Sun Mar 8 19:20:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* Compression/zlib/ZlibCompressor.cpp:
Also retrieve error string
* Compression/bzip2/Bzip2Compressor.cpp:
Fixed call to the bzip2 library
Sun Mar 8 14:41:44 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* MPC/config/notification_serv.mpb:
Add dependency on messaging lib that was introduced by the
new notification feature for validating notification peers.
Sun Mar 8 00:12:06 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Makefile.am:
Added new Notify svc source file.
* orbsvcs/tests/Notify/Makefile.am:
* orbsvcs/tests/Notify/Persistent_Filter/Makefile.am:
Added new Persistent_Filter test.
Sat Mar 7 20:54:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/catior/catior.cpp:
Extended output for ZIOP and check more return values
Sat Mar 7 18:55:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression.mpc:
* bin/tao_orb_tests.lst:
Don't build this with corba/e micro
Sat Mar 7 16:51:20 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Persistent_Filter/Filter.h:
* orbsvcs/tests/Notify/Persistent_Filter/Filter.cpp:
Fix wchar support.
Sat Mar 7 14:54:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTScheduler.mpc
Also disable the idl project with CORBA/e micro
Fri Mar 6 19:49:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression.mpc:
* tests/Bug_3553_Regression/TransportCache.mpc:
Renamed mpc file
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp:
Fixed compile errors/warnings
Fri Mar 6 18:53:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTPortableServer.mpc:
Also disable the idl project with CORBA/e micro
Fri Mar 6 17:28:09 UTC 2009 Adam Mitz <mitza@ociweb.com>
* tao/DynamicInterface/DII_Invocation_Adapter.cpp:
This is an extension of the change in:
Mon Sep 1 20:18:51 UTC 2008 Ciju John <johnc at ociweb dot com>
There are two classes in this file, DII_Invocation_Adapter and
DII_Deferred_Invocation_Adapter. This commit applies the same change
to DII_Deferred_Invocation_Adapter.
Fri Mar 6 07:41:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Messaging.mpc
Added missing file
Thu Mar 5 23:54:00 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/Validate_Client_Task.h:
Correct build issue related to versioned namespace.
Thu Mar 5 20:39:56 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/ZIOP/ZIOP.cpp
Resolved compiler warning
Thu Mar 5 19:56:32 UTC 2009 Yan Dai <dai_y@ociweb.com>
* orbsvcs/orbsvcs/Notify/Admin.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.h:
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
* orbsvcs/orbsvcs/Notify/FilterAdmin.h:
* orbsvcs/orbsvcs/Notify/FilterAdmin.cpp:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
- Reverted to following commit to have filter factory per event
channel.
Mon Mar 17 13:39:57 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.h:
Create a filter factory for each event channel instead
of a global singleton
- Updated to persist filter factory as part of event channel.
* orbsvcs/tests/Notify/Persistent_Filter/run_test.pl:
Minor fix.
* bin/tao_orb_tests.lst:
Added Persistent_Filter test.
Thu Mar 5 19:20:47 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/Compression/Base_Compressor.cpp:
Resolved error in calculating compression ratio.
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
Acceptance of compression ratio is now based on
the current compression ratio in stead of overall
compression ratio.
Thu Mar 5 18:59:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA.mpc
Made idl projects unique to resolve name clashes
Thu Mar 5 17:43:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/EndpointPolicy.mpc
* tao/IORTable.mpc
* tao/Strategies.mpc
* tao/ZIOP.mpc
Made idl projects unique to resolve name clashes
Thu Mar 5 10:22:08 UTC 2009 Marcel Smit <msmit@remedy.nl>
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
Resolved compiler errors.
Thu Mar 5 10:22:08 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/AnyTypeCode.mpc
* tao/BiDir_GIOP.mpc
* tao/Bzip2Compressor.mpc
* tao/CodecFactory.mpc
* tao/Codeset.mpc
* tao/Compression.mpc
* tao/CSD_Framework.mpc
* tao/DiffServPolicy.mpc
* tao/DynamicAny.mpc
* tao/DynamicInterface.mpc
* tao/EndpointPolicy.mpc
* tao/FlResource.mpc
* tao/FoxResource.mpc
* tao/IFR_Client.mpc
* tao/IIOP_Profile.cpp
* tao/ImR_Client.mpc
* tao/IORInterceptor.mpc
* tao/IORManipulation.mpc
* tao/IORTable.mpc
* tao/LzoCompressor.mpc
* tao/Messaging.mpc
* tao/Monitor.mpc
* tao/ObjRefTemplate.mpc
* tao/PI.mpc
* tao/PI_Server.mpc
* tao/PortableServer.mpc
* tao/QtResource.mpc
* tao/RTCORBA.mpc
* tao/RTPortableServer.mpc
* tao/RTScheduler.mpc
* tao/SmartProxies.mpc
* tao/Strategies.mpc
* tao/tao.mpc
* tao/TC.mpc
* tao/TC_IIOP.mpc
* tao/TkResource.mpc
* tao/TypeCodeFactory.mpc
* tao/Valuetype.mpc
* tao/XtResource.mpc
* tao/ZIOP.mpc
* tao/ZlibCompressor.mpc
Use a seperate project for the idl files. This way a clean on a source
project doesn't result in the regeneration of all idl files. Also this
solves the dependency problem when using Incredibuild
* tao/EndpointPolicy/EndpointPolicy_Factory.cpp:
Initialise pointer with 0
* tao/RTScheduling/RTScheduler.pidl:
Changed PI include
* tao/Seq_Out_T.h:
Layout change
Thu Mar 5 07:36:08 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp
* tao/GIOP_Message_Base.h
* tao/ZIOP/ZIOP.cpp
* tao/ZIOP/ZIOP.h
* tao/ZIOP_Adapter.h
Reverted last changes.
Resolved memory leak and assert error during
release of an ACE_Data_Block.
* tao/Transport.cpp
No need to set read write pointer correctly. ZIOP
is responsible for that.
* tests/ZIOP/client.cpp
Enabled all tests again
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp
Reverted last changes. Compiler errors should be resolved.
Wed Mar 4 22:40:08 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
And one more fix to the messup from the previous fix.
Wed Mar 4 20:56:50 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
Fuzz fix.
Wed Mar 4 20:54:01 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
Clean up debug messages for wchar support.
Wed Mar 4 17:41:53 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
Clean up debug messages for wchar support.
Wed Mar 2 13:13:29 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp:
Resolved compiler errors and warnings.
Wed Mar 4 03:04:05 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Consumer.h:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.h:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Validate_Client_Task.cpp:
Fuzz fixes.
Tue Mar 3 23:11:40 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/tests/Notify/Persistent_Filter/Filter.cpp:
Silence warnings on nondebug builds.
Tue Mar 3 21:12:10 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
Fix debug output formatting for wchar consistency.
Tue Mar 3 13:01:25 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3547_Regression/Stock_Quoter_Client.cpp:
Added a worker thread
Tue Mar 3 12:31:25 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Strategies/DIOP_Acceptor.cpp
* tao/Strategies/DIOP_Connection_Handler.cpp
* tao/Strategies/SCIOP_Acceptor.cpp
* tao/Strategies/SCIOP_Connection_Handler.cpp
* tao/Strategies/SCIOP_Connector.cpp
* tao/Strategies/UIOP_Acceptor.cpp
* tao/Strategies/UIOP_Connection_Handler.cpp
* tao/Strategies/UIOP_Connector.cpp
Unicode fixes
Mon Mar 2 07:22:25 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp:
Resolved compiler error on WinCE target.
Mon Mar 2 22:48:25 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* orbsvcs/Notify_Service/Notify_Service.h:
* orbsvcs/Notify_Service/Notify_Service.cpp:
* orbsvcs/orbsvcs/CosNotification.mpc:
* orbsvcs/orbsvcs/Notify/Admin.h:
* orbsvcs/orbsvcs/Notify/Admin.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.h:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.h:
* orbsvcs/orbsvcs/Notify/Any/CosEC_ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.h:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.h:
* orbsvcs/orbsvcs/Notify/Any/ProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Any/PushConsumer.h:
* orbsvcs/orbsvcs/Notify/Any/PushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Any/PushSupplier.h:
* orbsvcs/orbsvcs/Notify/Any/PushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Builder.h:
* orbsvcs/orbsvcs/Notify/Builder.cpp:
* orbsvcs/orbsvcs/Notify/Consumer.h:
* orbsvcs/orbsvcs/Notify/Consumer.cpp:
* orbsvcs/orbsvcs/Notify/ConsumerAdmin.cpp:
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.h:
* orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.h:
* orbsvcs/orbsvcs/Notify/ETCL_FilterFactory.cpp:
* orbsvcs/orbsvcs/Notify/EventChannel.h:
* orbsvcs/orbsvcs/Notify/EventChannel.cpp:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.h:
* orbsvcs/orbsvcs/Notify/EventChannelFactory.cpp:
* orbsvcs/orbsvcs/Notify/FilterAdmin.h:
* orbsvcs/orbsvcs/Notify/FilterAdmin.cpp:
* orbsvcs/orbsvcs/Notify/FilterFactory.h:
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp:
* orbsvcs/orbsvcs/Notify/Properties.h:
* orbsvcs/orbsvcs/Notify/Properties.inl:
* orbsvcs/orbsvcs/Notify/Properties.cpp:
* orbsvcs/orbsvcs/Notify/Proxy.h:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.h:
* orbsvcs/orbsvcs/Notify/ProxyConsumer.cpp:
* orbsvcs/orbsvcs/Notify/ProxySupplier.h:
* orbsvcs/orbsvcs/Notify/ProxySupplier.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequenceProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.h:
* orbsvcs/orbsvcs/Notify/Sequence/SequencePushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.h:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.h:
* orbsvcs/orbsvcs/Notify/Structured/StructuredProxyPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.h:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushConsumer.cpp:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.h:
* orbsvcs/orbsvcs/Notify/Structured/StructuredPushSupplier.cpp:
* orbsvcs/orbsvcs/Notify/Supplier.h:
* orbsvcs/orbsvcs/Notify/Supplier.cpp:
* orbsvcs/orbsvcs/Notify/ThreadPool_Task.cpp:
* orbsvcs/orbsvcs/Notify/Validate_Client_Task.h:
* orbsvcs/orbsvcs/Notify/Validate_Client_Task.cpp:
* orbsvcs/orbsvcs/Notify/Validate_Worker_T.h:
* orbsvcs/orbsvcs/Notify/Validate_Worker_T.cpp:
* orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.h:
* orbsvcs/tests/Notify/Test_Filter/RT_Test_FilterFactory.cpp:
* orbsvcs/tests/Notify/Test_Filter/Test_Filter.mpc:
Reintroducing notify service changes OCI prepared for some
customers. Two new features are added, peer validation and
filter persistence. Also, a debug line was found to contain a
'%a' which triggered an abort when encountered. This was
removed. The original new feature descriptions follow.
Added proxy cleanup feature. It periodically validates the
connection to all clients via _non_exist() call. It records when
last pushing occurs to reduce the number of _non_exist()
calls. If the validate connection caught non-TIMEOUT exception
then the NotificationService disconnect the client.
To use this feature, add "-ValidateClient -ValidateClientDelay
<seconds> -ValidateClientInterval <seconds>" to
TAO_CosNotify_Service directive in service configuration. e.g.
static TAO_CosNotify_Service
"-ValidateClient -ValidateClientDelay 1 -ValidateClientInterval
10"
The -ValidateClient needs be used for -ValidateClientDelay and
-ValidateClientInterval options to take effect. The
-ValidateClientDelay is the validate delay after init and the
-ValidateClientInterval is the interval for periodic
validations.
Added filters to topology persistence. While filter IORs were
persisted before, the actual filter instance was not. Thus a
restored Notify service could not recover the filters.
As filter is independent from admin or proxy object, the filter
factory now keeps track the filter objects and assigns a unique
id to each filter. The admin and proxy reference the filter with
its unique id ("MapId"). When the persistent data is loaded at
init time, the filter factory creates the filters with the
specified ids and constraints and provides reference when
loading admin and proxy that reference it.
Rolled back following changes as the changes actually still
create filter factory servant singleton but activate it with
default poa to create each filter factory object reference for
each event channel.
Mon Mar 2 19:23:21 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
Resolved compiler error when ZIOP is off
Mon Mar 2 19:06:05 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Sequence_Unit_Tests/unbounded_octet_sequence_ut.cpp:
Reordered includes to make sure config.h gets included
before boost headers.
Mon Mar 2 15:42:13 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/tests/ImplRepo/Bug_2604_Regression/Messenger_i.cpp:
* orbsvcs/tests/ImplRepo/Bug_2604_Regression/run_test.pl:
* orbsvcs/tests/ImplRepo/nestea_client_i.cpp:
Fixed memory leaks local to these tests.
* orbsvcs/ImplRepo_Service/ImR_Locator_i.cpp:
Fixed a memory leak in ImR_Locator_i::find(). imr_info was
allocated in that function and immediately overwritten by
new allocation.
Mon Mar 2 15:09:21 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
* tao/ZIOP_Adapter.h:
Changed decompress interface to handle incoming
and outgoing message blocks and errors better.
* tests/ZIOP/client.cpp:
Tempory blocked some tests.
Mon Mar 2 14:54:21 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Xt_Stopwatch/Stopwatch_display.cpp:
Fixed compile warning and run-time error on 64-bit systems.
Mon Mar 2 12:57:14 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/tests/InterfaceRepo/Bug_3155_Regression/test_idl.cpp:
* orbsvcs/tests/InterfaceRepo/Bug_2962_Regression/client.cpp:
Fixed local memory leaks in these tests.
Mon Mar 2 11:42:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 3597
Mon Mar 2 11:10:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/AMH_Oneway/run_test.pl:
Fixed typo in this file
Mon Mar 2 11:08:42 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3575_Regression/test.cpp:
* tests/Bug_3575_Regression/run_test.pl:
* tests/Bug_3575_Regression/README:
* tests/Bug_3575_Regression/Bug_3575_Regression.mpc:
* bin/tao_orb_tests.lst:
Added a test for bug#3575 and scheduled it for run.
Mon Mar 2 10:25:12 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tao/String_Sequence_Element_T.h:
Fixed a bug#3575.
* TAO_IDL/be/be_codegen.cpp:
* TAO_IDL/be/be_helper.cpp:
* TAO_IDL/be/be_interface.cpp:
* TAO_IDL/be_include/be_helper.h:
Fixed known memory leak in tao_idl.
Mon Mar 2 08:44:55 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp:
Resolved compiler warning.
Mon Mar 2 08:20:51 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/tests/InterfaceRepo/Application_Test/Makefile.am:
Added proper include paths for autoconf builds.
Mon Mar 2 07:44:16 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Bug_3558_Regression/client.cpp:
Fixed compile warning.
Sun Mar 1 19:31:00 UTC 2009 Olli Savia <ops@iki.fi>
* docs/tutorials/Quoter/RTCORBA/Admin.cpp:
* docs/tutorials/Quoter/RTCORBA/Broker.cpp:
* docs/tutorials/Quoter/RTCORBA/Broker_i.cpp:
Fixed compile warnings.
Fri Feb 27 10:09:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Compression/bzip2/Bzip2Compressor.cpp:
Don't use TAO_GIOP_MESSAGE_HEADER_LEN
Fri Feb 27 09:26:17 UTC 2009 Olli Savia <ops@iki.fi>
* tao/Compression/bzip2/Bzip2Compressor.cpp:
Added #include "tao/GIOP_Message_State.h" to pull
TAO_GIOP_MESSAGE_HEADER_LEN.
Fri Feb 27 08:36:13 UTC 2009 Olli Savia <ops@iki.fi>
* examples/AMI/FL_Callback/Progress_i.h:
* examples/AMI/FL_Callback/Progress_i.cpp:
* examples/AMI/FL_Callback/progress.cpp:
* tests/FL_Cube/client.cpp:
* tests/FL_Cube/server.cpp:
* tests/FL_Cube/test_i.h:
Fixed includes.
Fri Feb 27 07:13:43 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* tests/Bug_3553_Regression/Bug_3553_Regression_server.cpp:
Resolved unicode compiler error.
Thu Feb 26 15:04:43 UTC 2009 Olli Savia <ops@iki.fi>
* tests/Xt_Stopwatch/Client.h:
* tests/Xt_Stopwatch/server.cpp:
Updated includes (XtResource_Loader.h has been moved).
Thu Feb 26 14:26:25 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/PortableServer/PortableServer_include.pidl:
Removed old comments
Thu Feb 26 12:23:25 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB.cpp:
Updated layout of debug message
* ace/TAO_Internal.cpp:
Pass 0 as default logger key, makes it easier to check in ACE
whether we have set an own key or noet
Thu Feb 26 12:08:25 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3597_Regression/Bug_3597_Regression.mpc:
* tests/Bug_3597_Regression/run_test.pl:
* tests/Bug_3597_Regression/server.cpp:
Added a new regression test for bugzilla 3597, the
-ORBServiceConfigLoggerKey is broken and doesn't work
Thu Feb 26 11:14:25 UTC 2009 Marcel Smit <msmit@remedy.nl>
* Bug_3553_Regression:
* Bug_3553_Regression/Bug_3553_Regression_client.cpp:
* Bug_3553_Regression/Bug_3553_Regression_server.cpp:
* Bug_3553_Regression/Hello.cpp:
* Bug_3553_Regression/Hello.h:
* Bug_3553_Regression/run_test.pl:
* Bug_3553_Regression/Test.idl:
* Bug_3553_Regression/TransportCache.mpc:
* bin/tao_orb_tests.lst:
Added regression test for bug 3553. With this test
you can test how many items the transport cache may
hold and how the orb behaves when a maximum number
of items is reached.
Thu Feb 26 08:40:48 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/tests/InterfaceRepo/Application_Test/Makefile.am:
Fixed link error in autoconf build.
Thu Feb 26 07:18:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3574_Regression/test.cpp:
Added some more tests
Wed Feb 25 16:22:50 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* orbsvcs/orbsvcs/IFRService/Container_i.cpp:
* orbsvcs/orbsvcs/IFRService/ConstantDef_i.cpp:
* orbsvcs/orbsvcs/IFRService/Contained_i.cpp:
* orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/main.cpp:
* orbsvcs/tests/InterfaceRepo/IFR_Inheritance_Test/run_test.pl:
* orbsvcs/tests/InterfaceRepo/Application_Test/IFR_Application_Test.mpc:
* orbsvcs/tests/InterfaceRepo/Application_Test/server.cpp:
* orbsvcs/tests/InterfaceRepo/Application_Test/test_i.cpp:
* tests/NestedUpcall/MT_Client_Test/server.cpp:
* tests/NestedUpcall/MT_Client_Test/client.cpp:
Fixed memory leaks.
Wed Feb 25 10:07:20 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3574_Regression/test.cpp:
* tests/Bug_3574_Regression/run_test.pl:
* tests/Bug_3574_Regression/README:
* tests/Bug_3574_Regression/Bug_3574_Regression.mpc:
* bin/tao_orb_tests.lst:
Added a test for bug#3574 and scheduled it for run.
Wed Feb 25 00:28:09 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
* tao/RTCORBA/RT_Invocation_Endpoint_Selectors.cpp:
Removed two throw statements that prevented client request
interceptors to be invoked. Thanks to Simon McQueen <sm at
prismtech dot com> for pointing this out. This fix
closes [BUGID:3582].
Tue Feb 24 11:27:44 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tao/QtResource/QtResource_Loader.h:
Resolved compiler error when using Qt 4.
Mon Feb 23 17:42:11 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
* tests/Portable_Interceptors/Bug_3582/run_test.pl:
Updated to new test framework.
Mon Feb 23 13:12:52 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp:
* TAO_IDL/be/be_visitor_interface/interface_cs.cpp:
Removed ciao_{pre,post}activate.
Mon Feb 23 08:08:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* DevGuideExamples/Multithreading/GracefulShutdown/MessengerClient.cpp
* DevGuideExamples/Multithreading/GracefulShutdown/MessengerServer.cpp
* docs/tutorials/Quoter/RTCORBA/Admin.cpp
* docs/tutorials/Quoter/RTCORBA/Broker.cpp
* docs/tutorials/Quoter/RTCORBA/Distributor.cpp
* examples/Advanced/ch_3/client.cpp
* examples/AMH/Sink_Server/AMH_Servant.cpp
* examples/AMH/Sink_Server/Base_Server.cpp
* examples/AMH/Sink_Server/MT_AMH_Server.cpp
* examples/AMH/Sink_Server/st_server.cpp
* examples/AMH/Sink_Server/Timer_Handler.cpp
* examples/Buffered_AMI/client.cpp
* examples/Callback_Quoter/Consumer_Handler.cpp
* examples/Callback_Quoter/Consumer_i.cpp
* examples/Callback_Quoter/Consumer_Input_Handler.cpp
* examples/Callback_Quoter/Notifier_Input_Handler.cpp
* examples/Callback_Quoter/Supplier_i.cpp
* examples/Callback_Quoter/Supplier_Timer_Handler.cpp
* examples/Content_Server/SMI_Iterator/client.cpp
* examples/CSD_Strategy/ThreadPool2/OrbShutdownTask.cpp
* examples/CSD_Strategy/ThreadPool3/OrbShutdownTask.cpp
* examples/CSD_Strategy/ThreadPool4/Callback_i.cpp
* examples/CSD_Strategy/ThreadPool4/Foo_i.cpp
* examples/CSD_Strategy/ThreadPool4/OrbShutdownTask.cpp
* examples/CSD_Strategy/ThreadPool5/Callback_i.cpp
* examples/CSD_Strategy/ThreadPool5/Foo_i.cpp
* examples/CSD_Strategy/ThreadPool5/FooServantList.cpp
* examples/CSD_Strategy/ThreadPool5/OrbShutdownTask.cpp
* examples/CSD_Strategy/ThreadPool5/ServerApp.cpp
* examples/CSD_Strategy/ThreadPool6/OrbShutdownTask.cpp
* examples/CSD_Strategy/ThreadPool/OrbShutdownTask.cpp
* examples/Event_Comm/Consumer_Handler.cpp
* examples/Event_Comm/notifier.cpp
* examples/Event_Comm/Notifier_Handler.cpp
* examples/Event_Comm/supplier.cpp
* examples/Kokyu_dsrt_schedulers/EDF_Scheduler.cpp
* examples/Kokyu_dsrt_schedulers/MUF_Scheduler.cpp
* examples/Kokyu_dsrt_schedulers/Task_Stats.cpp
* examples/Load_Balancing/Identity_Client.cpp
* examples/Load_Balancing/Identity_Server.cpp
* examples/Load_Balancing/Load_Balancing_Service.cpp
* examples/Load_Balancing_persistent/Identity_Client.cpp
* examples/Load_Balancing_persistent/Identity_Server.cpp
* examples/Load_Balancing_persistent/Load_Balancer_i.cpp
* examples/Logging/Logging_Test_i.cpp
* examples/Persistent_Grid/Grid_Client_i.cpp
* examples/Persistent_Grid/Persistent_Client_i.cpp
* examples/PluggableUDP/tests/SimplePerformance/client.cpp
* examples/Quoter/Quoter_i.cpp
* examples/RTScheduling/Fixed_Priority_Scheduler/test.cpp
* examples/RTScheduling/POA_Holder.cpp
* examples/RTScheduling/Starter.cpp
* examples/RTScheduling/Task_Stats.cpp
* examples/Simple/Simple_util.cpp
* interop-tests/wchar/client.cpp
* orbsvcs/Concurrency_Service/Concurrency_Service.cpp
* orbsvcs/examples/CosEC/Factory/FactoryClient.cpp
* orbsvcs/examples/CosEC/Factory/FactoryDriver.cpp
* orbsvcs/examples/CosEC/RtEC_Based/lib/CosEvent_Utilities.cpp
* orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Consumer.cpp
* orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Multiple.cpp
* orbsvcs/examples/CosEC/RtEC_Based/tests/Multiple/Supplier.cpp
* orbsvcs/examples/Log/Basic/TLS_Client.cpp
* orbsvcs/examples/Log/Event/Event_Supplier.cpp
* orbsvcs/examples/Log/Notify/Notify_Supplier.cpp
* orbsvcs/examples/Log/RTEvent/RTEvent_Supplier.cpp
* orbsvcs/examples/Notify/Filter/Filter.cpp
* orbsvcs/examples/Notify/Lanes/Consumer.cpp
* orbsvcs/examples/Notify/Lanes/Consumer_Client.cpp
* orbsvcs/examples/Notify/Lanes/Supplier_Client.cpp
* orbsvcs/examples/Notify/ThreadPool/Consumer.cpp
* orbsvcs/examples/Notify/ThreadPool/Consumer_Client.cpp
* orbsvcs/examples/Notify/ThreadPool/Supplier_Client.cpp
* orbsvcs/FTRT_Event_Service/Event_Service/FT_EventService.cpp
* orbsvcs/FTRT_Event_Service/Factory_Service/FTRTEC_Factory_Service.cpp
* orbsvcs/ImplRepo_Service/Activator_Options.cpp
* orbsvcs/ImplRepo_Service/ImR_Activator.cpp
* orbsvcs/ImplRepo_Service/ImR_Activator_i.cpp
* orbsvcs/ImplRepo_Service/ImR_Locator.cpp
* orbsvcs/ImplRepo_Service/tao_imr_i.cpp
* orbsvcs/Logging_Service/RTEvent_Logging_Service/RTEvent_Logging_Service.cpp
* orbsvcs/Notify_Service/Notify_Service.cpp
* orbsvcs/orbsvcs/AV/AV_Core.cpp
* orbsvcs/orbsvcs/AV/FlowSpec_Entry.cpp
* orbsvcs/orbsvcs/AV/QoS_UDP.cpp
* orbsvcs/orbsvcs/AV/Transport.cpp
* orbsvcs/orbsvcs/AV/UDP.cpp
* orbsvcs/orbsvcs/Event/EC_Gateway_IIOP.cpp
* orbsvcs/orbsvcs/Event/EC_Kokyu_Filter_Builder.cpp
* orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.cpp
* orbsvcs/orbsvcs/Event_Utilities.cpp
* orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.cpp
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Fault_Detector_Loader.cpp
* orbsvcs/orbsvcs/HTIOP/HTIOP_Profile.cpp
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp
* orbsvcs/orbsvcs/LoadBalancing/LB_LoadMinimum.cpp
* orbsvcs/orbsvcs/Naming/Persistent_Context_Index.cpp
* orbsvcs/orbsvcs/Notify/Any/AnyEvent.cpp
* orbsvcs/orbsvcs/Notify/CosNotify_Service.cpp
* orbsvcs/orbsvcs/Notify/Event_Manager.cpp
* orbsvcs/orbsvcs/Notify/Method_Request_Dispatch.cpp
* orbsvcs/orbsvcs/Notify/Method_Request_Updates_T.inl
* orbsvcs/orbsvcs/PortableGroup/PG_FactoryRegistry.cpp
* orbsvcs/orbsvcs/PortableGroup/PG_Object_Group.cpp
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Acceptor.cpp
* orbsvcs/orbsvcs/RTCosScheduling/RTCosScheduling_PCP_Manager.cpp
* orbsvcs/orbsvcs/Sched/DynSched.cpp
* orbsvcs/orbsvcs/Sched/Reconfig_Scheduler_T.cpp
* orbsvcs/orbsvcs/Scheduler_Factory.cpp
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Acceptor.cpp
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
* orbsvcs/performance-tests/RTEvent/lib/RIR_Narrow.cpp
* orbsvcs/PSS/PSDL_Code_Gen.cpp
* orbsvcs/PSS/PSDL_Exception_Visitor.cpp
* orbsvcs/PSS/PSDL_Struct_Visitor.cpp
* orbsvcs/tests/AVStreams/Asynch_Three_Stage/Connection_Manager.cpp
* orbsvcs/tests/AVStreams/Component_Switching/Connection_Manager.cpp
* orbsvcs/tests/AVStreams/Component_Switching/receiver.cpp
* orbsvcs/tests/AVStreams/Full_Profile/ftp.cpp
* orbsvcs/tests/AVStreams/Full_Profile/server.cpp
* orbsvcs/tests/AVStreams/Latency/ping.cpp
* orbsvcs/tests/AVStreams/Multicast/ftp.cpp
* orbsvcs/tests/AVStreams/Multicast/server.cpp
* orbsvcs/tests/AVStreams/Multicast_Full_Profile/ftp.cpp
* orbsvcs/tests/AVStreams/Multicast_Full_Profile/server.cpp
* orbsvcs/tests/AVStreams/Pluggable/ftp.cpp
* orbsvcs/tests/AVStreams/Simple_Two_Stage/receiver.cpp
* orbsvcs/tests/AVStreams/Simple_Two_Stage/sender.cpp
* orbsvcs/tests/BiDir_CORBALOC/TimeServer.cpp
* orbsvcs/tests/Bug_2247_Regression/Manager.cpp
* orbsvcs/tests/Bug_2248_Regression/client.cpp
* orbsvcs/tests/Bug_2285_Regression/ServerRequest_Interceptor.cpp
* orbsvcs/tests/Bug_2285_Regression/ServerRequest_Interceptor2.cpp
* orbsvcs/tests/Bug_2316_Regression/client.cpp
* orbsvcs/tests/Bug_3216_Regression/ServerRequest_Interceptor.cpp
* orbsvcs/tests/Concurrency/CC_naming_service.cpp
* orbsvcs/tests/Event/Basic/Reconnect.cpp
* orbsvcs/tests/Event/Mcast/Two_Way/application.cpp
* orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/client.cpp
* orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/server.cpp
* orbsvcs/tests/FaultTolerance/GroupRef_Manipulation/Server_Request_Interceptor.cpp
* orbsvcs/tests/FaultTolerance/IOGR/Manager.cpp
* orbsvcs/tests/FaultTolerance/IOGR/test_i.cpp
* orbsvcs/tests/FaultTolerance/IOGRManipulation/IOGRTest.cpp
* orbsvcs/tests/FT_App/FT_Client.cpp
* orbsvcs/tests/FT_App/FT_ReplicaFactory_i.cpp
* orbsvcs/tests/FT_App/FT_ReplicationManagerController.cpp
* orbsvcs/tests/HTIOP/AMI/client.cpp
* orbsvcs/tests/HTIOP/AMI/simple_client.cpp
* orbsvcs/tests/HTIOP/BiDirectional/test_i.cpp
* orbsvcs/tests/Notify/Basic/AdminProperties.cpp
* orbsvcs/tests/Notify/Basic/ConnectDisconnect.cpp
* orbsvcs/tests/Notify/Basic/Events.cpp
* orbsvcs/tests/Notify/Basic/Filter.cpp
* orbsvcs/tests/Notify/Basic/IdAssignment.cpp
* orbsvcs/tests/Notify/Basic/LifeCycle.cpp
* orbsvcs/tests/Notify/Basic/Sequence.cpp
* orbsvcs/tests/Notify/Basic/Simple.cpp
* orbsvcs/tests/Notify/Basic/Updates.cpp
* orbsvcs/tests/Notify/Destroy/main.cpp
* orbsvcs/tests/Notify/Driver/main.cpp
* orbsvcs/tests/Notify/lib/Driver.cpp
* orbsvcs/tests/Notify/lib/Periodic_Consumer.cpp
* orbsvcs/tests/Notify/lib/Supplier_T.cpp
* orbsvcs/tests/Notify/performance-tests/RedGreen/RedGreen_Test.cpp
* orbsvcs/tests/Notify/Reconnecting/Consumer.cpp
* orbsvcs/tests/Notify/Reconnecting/Supplier.cpp
* orbsvcs/tests/Notify/RT_lib/RT_POA_Command.cpp
* orbsvcs/tests/Property/client.cpp
* orbsvcs/tests/Property/main.cpp
* orbsvcs/tests/Sched_Conf/Sched_Conf.cpp
* orbsvcs/tests/Sched_Conf/Sched_Conf_Anomalies.cpp
* orbsvcs/tests/Security/BiDirectional/test_i.cpp
* orbsvcs/tests/Security/mixed_security_test/Foo_i.cpp
* orbsvcs/tests/Security/MT_IIOP_SSL/client.cpp
* orbsvcs/tests/Security/MT_IIOP_SSL/Client_Worker.cpp
* orbsvcs/tests/Security/MT_SSLIOP/client.cpp
* orbsvcs/tests/Security/MT_SSLIOP/Client_Worker.cpp
* orbsvcs/tests/Security/ssliop_corbaloc/client.cpp
* orbsvcs/tests/Simple_Naming/client.cpp
* orbsvcs/tests/Time/Client_i.cpp
* performance-tests/CSD_Strategy/TestApps/ClientApp.cpp
* performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Client.cpp
* performance-tests/Cubit/TAO/IDL_Cubit/Cubit_i.cpp
* performance-tests/Cubit/TAO/IDL_Cubit/RTI_IO.cpp
* performance-tests/Cubit/TAO/MT_Cubit/Globals.cpp
* performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
* performance-tests/Memory/IORsize/Memory_Growth.cpp
* performance-tests/POA/Demux/demux_test_server.cpp
* performance-tests/POA/Object_Creation_And_Registration/registration.cpp
* tao/Strategies/SHMIOP_Profile.cpp
* tao/Synch_Reply_Dispatcher.cpp
* tao/Synch_Reply_Dispatcher.h
* tao/Wait_On_LF_No_Upcall.cpp
* TAO_IDL/ast/ast_union_branch.cpp
* TAO_IDL/be/be_global.cpp
* TAO_IDL/be/be_visitor_interface/interface_ch.cpp
* TAO_IDL/be/be_visitor_operation/operation.cpp
* TAO_IDL/be/be_visitor_typedef/any_op_ch.cpp
* TAO_IDL/be/be_visitor_typedef/any_op_cs.cpp
* TAO_IDL/be/be_visitor_typedef/cdr_op_ch.cpp
* TAO_IDL/be/be_visitor_typedef/cdr_op_cs.cpp
* TAO_IDL/be/be_visitor_typedef/serializer_op_ch.cpp
* TAO_IDL/be/be_visitor_typedef/serializer_op_cs.cpp
* TAO_IDL/be/be_visitor_typedef/typedef_ch.cpp
* TAO_IDL/be/be_visitor_typedef/typedef_ci.cpp
* TAO_IDL/contrib/mcpp/system.cpp
* tests/Abstract_Interface/client.cpp
* tests/AMH_Oneway/client.cpp
* tests/AMI/client.cpp
* tests/AMI/simple_client.cpp
* tests/BiDirectional/test_i.cpp
* tests/BiDirectional_DelayedUpcall/test_i.cpp
* tests/BiDirectional_NestedUpcall/test_i.cpp
* tests/Big_AMI/client.cpp
* tests/Big_Oneways/server.cpp
* tests/Big_Twoways/server.cpp
* tests/Bug_1361_Regression/Server_Thread_Pool.cpp
* tests/Bug_1482_Regression/Reply_Handler.cpp
* tests/Bug_1495_Regression/Server_Task.cpp
* tests/Bug_1495_Regression/Threaded_Server.cpp
* tests/Bug_1535_Regression/bug_1535_regression.cpp
* tests/Bug_1693_Test/client.cpp
* tests/Bug_2186_Regression/Hello.cpp
* tests/Bug_2319_Regression/server.cpp
* tests/Bug_2356_Regression/client.cpp
* tests/Bug_2542_Regression/bug_2542_regression.cpp
* tests/Bug_2543_Regression/bug_2543_regression.cpp
* tests/Bug_2654_Regression/client.cpp
* tests/Bug_2654_Regression/Hello.cpp
* tests/Bug_2683_Regression/client.cpp
* tests/Bug_2683_Regression/test_i.cpp
* tests/Bug_2805_Regression/client.cpp
* tests/Bug_2826_Regression/bug_2826_regression.cpp
* tests/Bug_3068_Regression/client.cpp
* tests/Bug_3276_Regression/test_i.cpp
* tests/Bug_3547_Regression/run_test.pl
* tests/Bug_3547_Regression/Stock_Quoter_Client.cpp
* tests/Bug_3558_Regression/client.cpp
* tests/Bug_3567_Regression/client.cpp
* tests/Cache_Growth_Test/Hello.cpp
* tests/CDR/basic_types.cpp
* tests/Collocation_Oneway_Tests/Client_Task.cpp
* tests/Connection_Timeout/client.cpp
* tests/Crashed_Callback/Crashed_Callback.cpp
* tests/CSD_Strategy_Tests/Broken/ClientApp.cpp
* tests/CSD_Strategy_Tests/TP_Common/ServantList_T.cpp
* tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_i.cpp
* tests/CSD_Strategy_Tests/TP_Foo_B/Foo_B_Statistics.cpp
* tests/CSD_Strategy_Tests/TP_Test_2/ClientApp.cpp
* tests/CSD_Strategy_Tests/TP_Test_3/ClientApp.cpp
* tests/CSD_Strategy_Tests/TP_Test_4/ClientApp.cpp
* tests/DII_AMI_Forward/client.cpp
* tests/DII_Collocation_Tests/oneway/Client_Task.cpp
* tests/DII_Collocation_Tests/oneway/Hello.cpp
* tests/DII_Collocation_Tests/oneway/Server_Task.cpp
* tests/DII_Collocation_Tests/twoway/Client_Task.cpp
* tests/DII_Collocation_Tests/twoway/Hello.cpp
* tests/DII_Collocation_Tests/twoway/Server_Task.cpp
* tests/Faults/client.cpp
* tests/Faults/test_i.cpp
* tests/GIOP_Fragments/Java_Big_Reply/Client_Task.cpp
* tests/Hang_Shutdown/client.cpp
* tests/Hang_Shutdown/server.cpp
* tests/ICMG_Any_Bug/client.cpp
* tests/MProfile/client.cpp
* tests/MProfile/test_i.cpp
* tests/MProfile_Connection_Timeout/client.cpp
* tests/MProfile_Connection_Timeout/test_i.cpp
* tests/MProfile_Forwarding/client.cpp
* tests/MProfile_Forwarding/Manager.cpp
* tests/MProfile_Forwarding/Servant_Locator.cpp
* tests/MProfile_Forwarding/test_i.cpp
* tests/MT_BiDir/client.cpp
* tests/MT_BiDir/Server_Task.cpp
* tests/Multiple/Collocation_Tester.cpp
* tests/Muxed_GIOP_Versions/client.cpp
* tests/Muxed_GIOP_Versions/server.cpp
* tests/NestedUpcall/MT_Client_Test/server.cpp
* tests/NestedUpcall/Triangle_Test/initiator.cpp
* tests/NestedUpcall/Triangle_Test/server_A.cpp
* tests/NestedUpcall/Triangle_Test/server_B.cpp
* tests/No_Server_MT_Connect_Test/client.cpp
* tests/Objref_Sequence_Test/client.cpp
* tests/Objref_Sequence_Test/server.cpp
* tests/OBV/Collocated/Forward/Client_Task.cpp
* tests/OBV/Forward/client.cpp
* tests/OBV/Simple/OBV_impl.cpp
* tests/OBV/Supports/Supports_Test_impl.cpp
* tests/OBV/Truncatable/client.cpp
* tests/OBV/Truncatable/TruncatableS_impl.cpp
* tests/OBV/ValueBox/client.cpp
* tests/Oneways_Invoking_Twoways/client.cpp
* tests/Oneways_Invoking_Twoways/Receiver_i.cpp
* tests/Oneways_Invoking_Twoways/Sender_i.cpp
* tests/ORB_shutdown/Foo_Bar.cpp
* tests/ORB_shutdown/server.cpp
* tests/Param_Test/multdim_array.cpp
* tests/Param_Test/results.cpp
* tests/Param_Test/ub_any_seq.cpp
* tests/POA/Bug_1592_Regression/test_i.cpp
* tests/POA/DSI/Database_i.cpp
* tests/POA/Forwarding/client.cpp
* tests/POA/Forwarding/server.cpp
* tests/POA/Generic_Servant/client.cpp
* tests/POA/On_Demand_Loading/Servant_Manager.cpp
* tests/POA/TIE/client.cpp
* tests/Portable_Interceptors/Bug_3079/server.cpp
* tests/Portable_Interceptors/Bug_3582/server.cpp
* tests/Portable_Interceptors/Collocated/Service_Context_Manipulation/interceptors.cpp
* tests/Portable_Interceptors/Dynamic/client_interceptor.cpp
* tests/Portable_Interceptors/Redirection/server.cpp
* tests/Portable_Interceptors/Request_Interceptor_Flow/Request_Interceptor.cpp
* tests/QtTests/test_i.cpp
* tests/RTCORBA/Banded_Connections/server.cpp
* tests/RTCORBA/Client_Protocol/server.cpp
* tests/RTCORBA/Diffserv/server.cpp
* tests/RTCORBA/Profile_And_Endpoint_Selection/client.cpp
* tests/RTCORBA/Profile_And_Endpoint_Selection/server.cpp
* tests/RTCORBA/RTMutex/server.cpp
* tests/RTCORBA/Server_Protocol/server.cpp
* tests/Servant_To_Reference_Test/server.cpp
* tests/Server_Connection_Purging/client.cpp
* tests/Server_Connection_Purging/Test_i.cpp
* tests/Smart_Proxies/dtor/server.cpp
* utils/catior/catior.cpp
Zapped some not needed spaces at the end of a debug message
Mon Feb 23 07:58:15 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 3581
* tests/Portable_Interceptors/Bug_3582/client.cpp:
Fixed include
Sun Feb 22 13:53:15 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
* tests/Portable_Interceptors/Bug_3582/server.cpp:
Fixed compiler warning on win platforms.
Sun Feb 22 10:13:07 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Portable_Interceptors/Bug_3582/client.cpp
Fixed compiler error on WinCE.
Fri Feb 20 23:17:07 UTC 2009 Friedhelm Wolf <fwolf@dre.vanderbilt.edu>
* tests/Portable_Interceptors/Bug_3582:
Added test program for a bug about TRANSIENT exceptions being
not intercepted when RTCORBA is used.
Fri Feb 20 11:36:50 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tao/Value_Traits_T.h:
Reverted the change from std::fill to ACE_OS::memset.
Despite there was no problem with it on the scoreboard
it was unsafe in case value_traits was instantiated
for struct that has a non-POD type as its member.
The rest of similar changes are equivalent to what we
had before.
Thu Feb 19 10:59:31 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tao/Generic_Sequence_T.h:
Fixed a small mistake in the commit
"Wed Feb 18 10:37:15 UTC 2009 Vladimir Zykov".
Wed Feb 18 18:57:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/orbconf.h:
Removed commented out code
* tao/Transport_Cache_Manager_T.cpp:
Don't try to always purge 1 entry
* tao/Bug_3558_Regression/client.cpp:
Set the purging percentage to 100
* tao/Transport_Cache_Manager/Bug_3558_Regression.cpp
Fixed gnu warning
Wed Feb 18 10:37:15 UTC 2009 Vladimir Zykov <vz@prismtech.com>
Fixed bug#3574 and bug#3473. This must improve performance
when handling sequences.
* tao/String_Traits_T.h:
* tao/Value_Traits_T.h:
* tao/Object_Reference_Traits_T.h:
* tao/Array_Traits_T.h:
* tao/Valuetype/Valuetype_Traits_T.h:
Added copy_swap_range() which swaps pointers for dynamically
allocated types and copies values for all of the rest. This
is useful when we know that copying is reduntant since the old
buffer will be destroyed immediately after the operation.
Changed std::fill to ACE_OS::memset in zero_range() which
turned to be faster when only needed to zero a region of
memory.
* tao/Bounded_Value_Allocation_Traits_T.h:
* tao/Bounded_Reference_Allocation_Traits_T.h:
* tao/Bounded_Array_Allocation_Traits_T.h:
* tao/Unbounded_Value_Allocation_Traits_T.h:
* tao/Unbounded_Reference_Allocation_Traits_T.h:
* tao/Unbounded_Array_Allocation_Traits_T.h:
* tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h:
* tao/Valuetype/Unbounded_Valuetype_Allocation_Traits_T.h:
Added allocbuf_noinit which does what allocbuf previously
did and now allocbuf works as required by CORBA C++ mapping
i.e. it returns correctly initilized buffer. This also fixes
bug#3473.
* tao/Valuetype/Bounded_Valuetype_Sequence_T.h:
* tao/Valuetype/Unbounded_Valuetype_Sequence_T.h:
* tao/Unbounded_Sequence_CDR_T.h:
* tao/Bounded_Sequence_CDR_T.h:
Changed the way temporaries are created. Since they don't need
a properly constructed internal buffer allocbuf_noinit is used
for their creation.
* tao/Unbounded_Octet_Sequence_T.h:
* tao/Generic_Sequence_T.h:
Updated the temporaries creation and improved generic_sequence::
length(CORBA::ULong) when extending a sequence by employing
copy_swap_range() for old values while moving them to a new
sequence.
Tue Feb 17 15:14:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ORB_Core.cpp:
* tao/orbconf.h:
Added TAO_SO_LINGER, TAO_ACCEPT_ERROR_DELAY and
TAO_USE_PARALLEL_CONNECT which can be set in config.h
to control the default values.
* tao/ORB_Core.cpp:
* tao/IIOP_Acceptor.cpp:
* tao/params.h:
* tao/params.inl:
* tao/Profile.cpp:
Changed std_profile_components to a real bool
Tue Feb 17 14:43:41 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* tao/Strategies/UIOP_Connector.cpp:
Fixed syntax problem.
Tue Feb 17 14:03:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Connector.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/IIOP_SSL_Connector.cpp:
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Connector.cpp:
* tao/Strategies/DIOP_Connector.cpp:
* tao/Strategies/SCIOP_Connector.cpp:
* tao/Strategies/SHMIOP_Connector.cpp:
* tao/Strategies/UIOP_Connector.cpp:
Only the return of -1 with cache_transport should be seen as an error
* tao/Cache_Entries_T.cpp:
Updated some debug statements
* tao/Condition.cpp:
* tao/Condition.h:
Changed delete_lock_ to a bool
* tao/Exception.cpp:
* tao/SystemException.cpp:
Check for self assignment in operator=
* tao/IIOP_Connection_Handler.cpp:
Layout changes to debug statements and use ACE_TEXT
* tao/IIOP_Connector.cpp:
Check the return value of cache_transport
* tao/Leader_Follower.inl:
Const change
* tao/LF_CH_Event.cpp:
* tao/LF_Event.h:
* tao/LF_Event.inl:
Addeds state_name to LF_Event and print the state as string instead
of number
* tao/Strategies/SCIOP_Acceptor.cpp:
Fixed gcc warning, don't use ACE_UNUSED_ARG anymore
* tao/Strategies/SCIOP_Connection_Handler.cpp:
Layout change
* tao/String_Alloc.cpp:
Simplified check
* tao/Transport_Cache_Manager_T.cpp:
* tao/Transport_Cache_Manager_T.h:
* tao/Transport_Cache_Manager_T.inl:
Updated various debug statements. When we have to purge the cache always try
to purge the cache with 1 entry else we don't purge when we have a very small
cache. Make the maximum transport cache size a real maximum, it was previously
not a real maximum, just a default allocation value. This fixes 3570
* tao/Transport_Connector.cpp:
Check the return value of cache_transport.
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h
Layout changes
* tests/Bug_3558_Regression/client.cpp:
* tests/Transport_Cache_Manager/Bug_3558_Regression.cpp:
The cache has now a real maximum, updated these tests
Tue Feb 17 11:04:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
3566 and 4567 are not fixed yet
Mon Feb 16 16:39:26 UTC 2009 Vladimir Zykov <vz@prismtech.com>
* tests/Bug_3524_Regression/run_test.pl:
Fixed a variable name for IOR file deletion at the end of the
script.
Sat Feb 14 07:36:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Compression/lzo/LzoCompressor.cpp:
* tao/Compression/zlib/ZlibCompressor.cpp:
Fixed compile errors
Fri Feb 13 15:44:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ZIOP/ZIOP.cpp:
Fixed compile error
Fri Feb 13 15:37:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Base.cpp:
Unicode fix and removed not needed variable
Fri Feb 13 15:22:39 UTC 2009 Marcel Smit <msmit@remedy.nl>
* tests/Big_Reply/Test.idl:
* tests/Bug_3430_Regression/Bug_3430_Regression.mpc:
* tests/ZIOP/client.cpp:
* tests/ZIOP/Hello.cpp:
* tests/ZIOP/Hello.h:
* tests/ZIOP/run_test.pl:
* tests/ZIOP/server.cpp:
* tests/ZIOP/Test.idl:
* tests/ZIOP/ZIOP.mpc:
Updated to meet the latest ZIOP changes (see previous
commits).
Fri Feb 13 15:17:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp
* orbsvcs/orbsvcs/SSLIOP/SSLIOP_Transport.cpp
* tao/GIOP_Message_Base.cpp
* tao/GIOP_Message_Base.h
* tao/IIOP_Transport.cpp
* tao/Strategies/DIOP_Transport.cpp
* tao/Strategies/SCIOP_Transport.cpp
* tao/Strategies/SHMIOP_Transport.cpp
* tao/Strategies/UIOP_Transport.cpp
* tao/Synch_Invocation.cpp
* tao/Synch_Reply_Dispatcher.cpp
* tao/Transport.cpp
* tao/Transport.h
Pass the stub as pointer, it could be zero
Fri Feb 13 15:04:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
Fixed compile problem when ZIOP is not enabled
Fri Feb 13 14:35:39 UTC 2009 Marcel Smit <msmit@remedy.nl>
Implementation of the ZIOP Beta 1 spec
* tao/CDR.cpp:
* tao/CDR.h:
* tao/CDR.inl:
* tao/Messaging/Asynch_Invocation.cpp:
* tao/TAO_Server_Request.cpp:
Removed obsolete compression flag.
* tao/Compression/zlib/ZlibCompressor.cpp:
* tao/Compression/bzip2/Bzip2Compressor.cpp:
* tao/Compression/Compression.pidl:
Added description to Compression exception in order to
meet the ZIOP Beta 1 specification
* tao/Compression/Compression_Manager.cpp:
No major changes made.
* tao/GIOP_Message_Base.cpp:
* tao/GIOP_Message_Base.h:
* tao/GIOP_Message_State.cpp:
Implementation of compression and decompression methods.
* tao/ORB_Core.h:
* tao/ORB_Core.inl:
Removed ziop_enabled method since it became obsolete.
* tao/orbconf.h:
Implemented compression policies.
* tao/Remote_Invocation.cpp:
* tao/PortableServer/Upcall_Wrapper.cpp:
Removed compression and decompression methods here (moved
to GIOP_Message_Base.
* tao/Synch_Invocation.cpp:
Due to interface change of format_message method in GIOP_Message_Base.
Removed obsolete compression flag.
* tao/ZIOP_Adapter.h:
* tao/ZIOP/ZIOP.cpp:
* tao/ZIOP/ZIOP.h:
* tao/ZIOP/ZIOP.pidl:
Refactored current ZIOP implementation in order to meet
the ZIOP Beta 1 specification.
* tao/ZIOP/ZIOP_Policy_i.cpp:
* tao/ZIOP/ZIOP_Policy_i.h:
* tao/ZIOP/ZIOP_Policy_Validator.cpp:
* tao/ZIOP/ZIOP_PolicyFactory.cpp:
Implemented compression policies.
* tao/Transport.cpp:
* tao/Transport.h:
* tao/IIOP_Transport.cpp:
* orbsvcs/orbsvcs/HTIOP/HTIOP_Transport.cpp:
* orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.cpp:
* tao/Strategies/DIOP_Transport.cpp:
* tao/Strategies/SHMIOP_Transport.cpp:
Due to interface change of format_message method in GIOP_Message_Base.
Fri Feb 13 03:19:39 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tests/Bug_3567_Regression/run_test.pl:
Fuzz fix.
Thu Feb 12 20:22:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Exclusive_TMS.cpp:
Updated a few debug statements to have the same layout as in other
places
* tao/Acceptor_Impl.cpp
* tao/Asynch_Queued_Message.cpp
* tao/CSD_Framework/CSD_Strategy_Repository.cpp
* tao/default_resource.cpp
* tao/DynamicInterface/DII_Invocation.cpp
* tao/DynamicInterface/DII_Reply_Dispatcher.cpp
* tao/DynamicInterface/DII_Reply_Handler.cpp
* tao/Exclusive_TMS.cpp
* tao/FlResource/FlResource_Factory.cpp
* tao/FoxResource/FoxResource_Factory.cpp
* tao/GIOP_Message_Base.cpp
* tao/GIOP_Message_Generator_Parser_10.cpp
* tao/GIOP_Message_State.cpp
* tao/IIOP_Connector.cpp
* tao/IIOP_Profile.cpp
* tao/Invocation_Adapter.cpp
* tao/Messaging/Asynch_Reply_Dispatcher.cpp
* tao/Muxed_TMS.cpp
* tao/ORB_Core.cpp
* tao/PI/Interceptor_List_T.cpp
* tao/PortableServer/Active_Object_Map.cpp
* tao/PortableServer/Object_Adapter.cpp
* tao/PortableServer/Root_POA.cpp
* tao/QtResource/QtResource_Factory.cpp
* tao/Queued_Data.cpp
* tao/Remote_Invocation.cpp
* tao/RTScheduling/Request_Interceptor.cpp
* tao/RTScheduling/RTScheduler_Initializer.cpp
* tao/Strategies/COIOP_Acceptor.cpp
* tao/Strategies/COIOP_Profile.cpp
* tao/Strategies/DIOP_Acceptor.cpp
* tao/Strategies/DIOP_Transport.cpp
* tao/Strategies/SCIOP_Acceptor.cpp
* tao/Strategies/SCIOP_Connection_Handler.cpp
* tao/Strategies/SCIOP_Connector.cpp
* tao/Strategies/SCIOP_Endpoint.cpp
* tao/Strategies/SCIOP_Profile.cpp
* tao/Strategies/SCIOP_Transport.cpp
* tao/Strategies/SHMIOP_Profile.cpp
* tao/Strategies/SHMIOP_Transport.cpp
* tao/Strategies/UIOP_Acceptor.cpp
* tao/Strategies/UIOP_Connector.cpp
* tao/Strategies/UIOP_Profile.cpp
* tao/Strategies/UIOP_Transport.cpp
* tao/Synch_Invocation.cpp
* tao/Synch_Reply_Dispatcher.cpp
* tao/Tagged_Profile.cpp
* tao/TkResource/TkResource_Factory.cpp
* tao/Transport_Cache_Manager_T.cpp
* tao/Transport_Connector.cpp
* tao/Wait_On_Read.cpp
* tao/XtResource/XtResource_Factory.cpp
Updated debug statements with layout and unicode fixes
Thu Feb 12 19:33:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3567_Regression/*:
Extended this reproducer
* bin/tao_orb_tests.lst:
Added 3567
Thu Feb 12 10:36:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3531_Regression/client.cpp:
Unicode fix
Thu Feb 12 10:36:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3531_Regression/server.cpp:
Unicode fix
Thu Feb 12 10:28:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3567_Regression/*:
Added new regression test for bug 3567. The test is not ready yet, working
on extending it to reproduce this bug.
Thu Feb 12 08:52:44 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/AMH_Oneway/run_test.pl:
Fixed a bug in this script
Thu Feb 12 02:39:44 UTC 2009 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/fe/idl.ll:
* TAO_IDL/fe/lex.yy.cpp:
Fixed a small syntax problem from
Wed Feb 11 21:03:46 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
Thu Feb 12 00:02:27 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* tests/Bug_3531_Regression/Bug_3531_Regression.mpc:
* tests/Bug_3531_Regression/test_i.h:
* tests/Bug_3531_Regression/test_i.cpp:
Fuzz fixes.
Wed Feb 11 21:03:46 UTC 2009 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/fe/lex.yy.cpp(idl_get_pragma_string):
* TAO_IDL/fe/idl.ll(idl_get_pragma_string):
Beefed up error checking to catch the case where one or both
quote are missing from the #pragma prefix string, and output
a syntax error instead of crashing. Thanks to Bogdan Jeram
<bjeram at eso dot org> for reporting the bug. This fix closes
[BUGID:3568].
Wed Feb 11 16:14:04 UTC 2009 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* examples/Advanced/ch_8_and_10/Advanced_ch_8_and_10.mpc: Zapped
libs += TAO_PortableServer
based upon recommendation of Johnny Willemsen.
Tue Feb 10 02:48:01 UTC 2009 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* examples/Advanced/ch_8_and_10/Advanced_ch_8_and_10.mpc: Added
libs += TAO_PortableServer
* examples/Advanced/ch_8_and_10/icp.h: Added #include for "ace/OS.h".
* examples/Advanced/ch_8_and_10/server.h: Zapped a stray ')'.
Thanks to Joe Lihn <joelihn at hotmail dot com> for reporting
these problems and providing the fixes.
Wed Feb 11 14:15:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Leader_Follower.cpp:
Layout change
* tao/Leader_Follower.h:
Updated link to bugzilla
* tao/Leader_Follower.inl:
Const change
* tao/LF_Event_Loop_Thread_Helper.h:
Doxygen change
* tao/LF_Strategy_Complete.cpp:
* tao/Transport.cpp:
Updated debug message to match others
* tao/LF_Strategy_Complete.h:
* tao/LocateRequest_Invocation.cpp:
Layout change
* tao/Muxed_TMS.cpp:
Check the return value of pop
* tao/Synch_Invocation.cpp:
Layout changes
Wed Feb 11 13:40:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3531_Regression/*:
* bin/tao_orb_tests.lst:
Added bug 3531 regression. Thanks to Russell Mora
<russell_mora at symantec dot com> for creating this test. This
will fail, no fix integrated at this moment
Wed Feb 11 10:32:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp:
And now the last msc ver check
Wed Feb 11 10:09:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3565_Regression/run_test.pl:
* tests/Bug_3566_Regression/run_test.pl:
Improved these scripts
Wed Feb 11 08:50:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp:
Removed a second old msc ver check
Wed Feb 11 07:03:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp:
Removed old msc ver check
Tue Feb 10 20:13:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/OctetSeq/run_test.pl:
Fixed fuzz errors
Tue Feb 10 18:37:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* bin/tao_orb_tests.lst:
Added 3565/3566 and enabled some tests for fuzz/wince
Tue Feb 10 18:36:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/OctetSeq/run_test.pl:
* tests/AMH_Oneway/run_test.pl:
* tests/AMI/run_test.pl:
* tests/AMI_Timeouts/run_test.pl:
Converted to the new test framework
* tests/Bug_3559_Regression/Bug_3559_Regression_Test.cpp:
Zap empty spaces
Tue Feb 10 18:33:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_3565_Regression/*
New test for bugzilla 3565
* tests/Bug_3566_Regression/*
New test for bugzilla 3566
Tue Feb 10 18:32:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/Naming/Naming_Loader.cpp:
No need for intermediate variable
Tue Feb 10 18:31:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* utils/catior/test.bat:
Updated for catior rename
Tue Feb 10 18:29:28 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/RTCORBA/RT_Mutex.h:
Made destructor public to fix GCC 4.4 compile errors
Tue Feb 10 05:39:28 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* NEWS:
revision bump.
Tue Feb 10 05:19:18 UTC 2009 Phil Mesnier <mesnier_p@ociweb.com>
* ChangeLogs/ChangeLog-09a:
Added this file.
Mon Feb 09 12:01:28 CST 2009 Phil Mesnier <mesnier_p@ociweb.com>
* TAO version 1.6.8 released.
Local Variables:
mode: change-log
add-log-time-format: (lambda () (progn (setq tz (getenv "TZ")) (set-time-zone-rule "UTC") (setq time (format-time-string "%a %b %e %H:%M:%S %Z %Y" (current-time))) (set-time-zone-rule tz) time))
indent-tabs-mode: nil
End:
|