summaryrefslogtreecommitdiff
path: root/TAO/tao/typecode.cpp
blob: ad7ab4b96a1f14f1c5030b6fc7bb3a0904b96cd5 (plain)
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
// @ (#)typecode.cpp	1.4 95/09/19
// Copyright 1994-1995 by Sun Microsystems Inc.
// All Rights Reserved
//
// TYPECODE:	basic implementation of TypeCodes
//
// Typecodes essentially consist of just the CDR octets that get
// marshaled and unmarshaled, and this code knows how to parse those
// octets and answer questions CORBA's TypeCode APIs require.
//
// NOTE: This isn't well tuned performance-wise.  Given how much is
// variable (byte order, alignment) it's clear tuning has its limits
// with respect to CDR bytecode interpretation.
//
// THREADING NOTE: Typecodes are readonly data structures, and the
// only mutual exclusion relates to reference counting and
// construction.

#include "tao/corba.h"

// @@ This is a botch...
// @@ Can you please explain why?
size_t
calc_key_union_attributes (CDR *stream,
			   size_t &alignment,
			   size_t &size_with_pad,
			   CORBA::Environment &env);

// Constructor for CONSTANT typecodes with empty parameter lists.
// These are only created once, and those constants are shared.

CORBA_TypeCode::CORBA_TypeCode (CORBA::TCKind kind)
  : length_ (0),
    buffer_ (0),
    kind_ (kind),
    parent_ (0),
    refcount_ (1),
    delete_flag_ (CORBA::B_FALSE),
    orb_owns_ (CORBA::B_TRUE),
    private_state_ (new TC_Private_State (kind)),
    non_aligned_buffer_ (0)
{
}

// Constructor for all other typecodes, including constants with
// non-empty parameter lists.  See "corba.hh" for details.

CORBA_TypeCode::CORBA_TypeCode (CORBA::TCKind kind,
				CORBA::ULong length,
				CORBA::Octet *buffer,
				CORBA::Boolean orb_owns_tc,
				CORBA::TypeCode_ptr parent)
  : length_ (length),
    //    buffer_ (buffer),
    kind_ (kind),
    parent_ (parent),
    refcount_ (1),
    delete_flag_ (CORBA::B_FALSE),
    orb_owns_ (orb_owns_tc),
    private_state_ (new TC_Private_State (kind))
{
  // The CDR code used to interpret TypeCodes requires in-memory
  // alignments to match the "on-the-wire" alignments, simplifying
  // algorithms used to marshal/unmarshal.
  //
  // However, it's often hard to get compilers (in particular) to
  // generate data that's so aligned, since C++ doesn't provide
  // primitives giving control at that low a level.  Although there
  // are ways to get that alignment which work in almost all cases, we
  // need to ensure adequate alignment in _all_ cases.
  //
  // This code exists to ensure such alignment; since the constructor
  // is intended only for use by an IDL compiler or ORB code, it's not
  // currently a priority to ensure the allocated code is freed.

  // TAO comments:

  // For free standing typecodes, we choose to always make a copy of
  // the buffer passed in. That way, our destructor doesn't have to
  // deal with the case where the buffer was either allocated in which
  // case it must be freed or the case where our buffer just points to
  // the buffer passed in.

  if (!parent_)
    {
      // No parent. We are free standing.
      ptr_arith_t temp;

      // Allocate a buffer to hold the encapsulated stream. We
      // allocate extra space since we need a buffer that is aligned
      // on a 4 byte word boundary. As a result, it is quite possible
      // that we may start accessing the buffer from a position
      // shifted to the right in the allocated buffer. As a result,
      // during destruction, we do not want part of the allocated heap
      // to remain dangling. Hence we save a handle to the original
      // allocated buffer.

      this->non_aligned_buffer_ = new CORBA::Octet [length + 4];

      temp = (ptr_arith_t) non_aligned_buffer_;
      temp += 3;
      temp &= ~0x03;
      this->buffer_ = (CORBA::Octet *) temp;

      (void) ACE_OS::memcpy (this->buffer_, buffer, (size_t) length);

      // The ORB does not own this typecode.
      this->orb_owns_ = CORBA::B_FALSE;
    }
  else
    {
      // We are a child. We do not allocate a new buffer, but share it
      // with our parent. We know that our parent's buffer was
      // properly aligned.
      this->buffer_ = buffer;
    }
}

// Destructor.  For "indirected" typecodes and children, the typecode
// reuses the buffer owned by its parent.

void
CORBA_TypeCode::operator delete (void* p)
{
  CORBA::TypeCode_ptr tc = (CORBA_TypeCode *) p;
  if (!tc->orb_owns_)
    ::delete p;
}

CORBA_TypeCode::~CORBA_TypeCode (void)
{
  if (this->orb_owns_)
    // we are constants, don't do anything
    return;
  else if (this->parent_) // check if we have a parent
    {
      // We have a parent which means that we were not directly
      // created by IDL compiler generated code, but by the
      // precomputation logic. We should delete ourselves and the
      // subtree below us only if our parent was in the process of
      // deleteing itself
      if (parent_->delete_flag_)
        // Parent is deleting, so we have to go.
	{
          // Set our delete flag to TRUE so that our children (if any)
          // will know that we have initiated our destruction
	  this->delete_flag_ = CORBA::B_TRUE;

          // Delete any private state we have and thus free up the
          // children.
	  delete this->private_state_;

	  // We share the buffer octets of our parent. Hence we don't
	  // deallocate it.
	  this->buffer_ = 0;
	}
      // Else, somebody maliciously tried to delete us, but we won't
      // get deleted.
    }
  else
    {
      // We are free standing (IDL compiler generated code) and are to
      // be deleted.  We indicate to our children that we are getting
      // deleted.
      this->delete_flag_ = CORBA::B_TRUE;

      // Free up our children.
      delete this->private_state_;

      // Delete the original, possibly nonaligned, buffer.
      delete [] this->non_aligned_buffer_;
      this->buffer_ = 0;
    }
}

// decreases the refcount and deletes when refcount reaches 0

void CORBA::release (CORBA::TypeCode_ptr tc)
{
  if (tc)
    tc->Release ();
}

// returns true if the typecode is NULL
CORBA::Boolean CORBA::is_nil (CORBA::TypeCode_ptr tc)
{
  return (CORBA::Boolean) tc == 0;
}

// Return the i-th member typecode if it exists, else raise an
// exception. Possible exceptions are BadKind and Bounds.
//
// Applicable only to struct, union, and except

CORBA::TypeCode_ptr
CORBA_TypeCode::member_type (CORBA::ULong index,
			     CORBA::Environment &env) const
{
  if (this->private_state_->tc_member_count_known_
      && this->private_state_->tc_member_type_list_known_)
    {
      if (index < this->private_state_->tc_member_count_)
        return this->private_state_->tc_member_type_list_[index];
      else
        {
          env.exception (new CORBA::TypeCode::Bounds ());
          return 0;
        }
    }
  else
    return this->private_member_type (index, env);
}

// Applicable only to struct, union, and except

const char *
CORBA_TypeCode::member_name (CORBA::ULong index,
			     CORBA::Environment &env) const
{
  if (this->private_state_->tc_member_count_known_
      && this->private_state_->tc_member_name_list_known_)
    {
      if (index < this->private_state_->tc_member_count_)
        return this->private_state_->tc_member_name_list_[index];
      else
        {
          env.exception (new CORBA::TypeCode::Bounds ());
          return 0;
        }
    }
  else
    return this->private_member_name (index, env);
}

// Return the label of the i-th member.  Applicable only to CORBA::tk_union
CORBA::Any_ptr
CORBA_TypeCode::member_label (CORBA::ULong index,
                              CORBA::Environment &env) const
{
  if (this->private_state_->tc_member_count_known_
      && this->private_state_->tc_member_label_list_known_)
    {
      if (index < this->private_state_->tc_member_count_)
        return this->private_state_->tc_member_label_list_[index];
      else
        {
          env.exception (new CORBA::TypeCode::Bounds ());
          return 0;
        }
    }
  else
    return this->private_member_label (index, env);
}

// only applicable to CORBA::tk_unions
CORBA::TypeCode_ptr
CORBA_TypeCode::discriminator_type (CORBA::Environment &env) const
{
  if (this->kind_ == CORBA::tk_union)
    {
      if (this->private_state_->tc_discriminator_type_known_)
        return this->private_state_->tc_discriminator_type_;
      else
        return this->private_discriminator_type (env);
    }
  else
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return (CORBA::TypeCode_ptr)0;
    }
}

// only applicable to CORBA::tk_unions
CORBA::Long
CORBA_TypeCode::default_index (CORBA::Environment &env) const
{
  if (this->kind_ == CORBA::tk_union)
    {
      if (this->private_state_->tc_default_index_used_known_)
        return this->private_state_->tc_default_index_used_;
      else
        return this->private_default_index (env);
    }
  else
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// returns the length. Applicable only to string, sequence, and arrays
CORBA::ULong
CORBA_TypeCode::length (CORBA::Environment &env) const
{
  // a switch stmt, unfortunately, doesn't get inlined
  if (this->kind_ == CORBA::tk_sequence
      || this->kind_ == CORBA::tk_array
      || this->kind_ == CORBA::tk_string
      || this->kind_ == CORBA::tk_wstring)
    {
      if (this->private_state_->tc_length_known_)
        return this->private_state_->tc_length_;
      else
        return this->private_length (env);
    }
  else
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// returns the typecode. Applicable only to string, sequence, and arrays
CORBA::TypeCode_ptr
CORBA_TypeCode::content_type (CORBA::Environment &env) const
{
  if (this->kind_ == CORBA::tk_sequence
      || this->kind_ == CORBA::tk_array
      || this->kind_ == CORBA::tk_alias)
    {
      if (this->private_state_->tc_content_type_known_)
        return this->private_state_->tc_content_type_;
      else
        return this->private_content_type (env);
    }
  else
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// compute the padded size of the discriminant
CORBA::ULong
CORBA_TypeCode::TAO_discrim_pad_size (CORBA::Environment &env)
{
  if (this->kind_ == CORBA::tk_union)
    {
      if (this->private_state_->tc_discrim_pad_size_known_)
        return this->private_state_->tc_discrim_pad_size_;
      else
        return this->private_discrim_pad_size (env);
    }
  else
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// skip a typecode encoding in a given CDR stream
// This is just a helper function
CORBA::Boolean
CORBA_TypeCode::skip_typecode (CDR &stream)
{
  CORBA::ULong kind;
  CORBA::ULong temp;

  if (stream.get_ulong (kind)
      && (kind < CORBA::TC_KIND_COUNT || kind == ~CORBA::ULong(0)))
    {

      switch (kind)
	{
	  // Most TypeCodes have empty parameter lists, nothing to skip
	default:
	  break;

	  // Some have single integer parameters, easy to skip.  Some have
	  // preallocated constants that could be used.
	case CORBA::tk_string:
	case CORBA::tk_wstring:
	case ~0:
	  return stream.get_ulong (temp);

	  // The rest have "complex" parameter lists that are
	  // encoded as bulk octets ... just skip them.
	case CORBA::tk_objref:
	case CORBA::tk_struct:
	case CORBA::tk_union:
	case CORBA::tk_enum:
	case CORBA::tk_sequence:
	case CORBA::tk_array:
	case CORBA::tk_alias:
	case CORBA::tk_except:
	  return stream.get_ulong (temp) != CORBA::B_FALSE
	    && stream.skip_bytes (temp) != CORBA::B_FALSE;
	}

      return CORBA::B_TRUE;
    }
  else
    return CORBA::B_FALSE;
}

// constructor for the private state
TC_Private_State::TC_Private_State (CORBA::TCKind kind)
  : tc_kind_ (kind),
    tc_id_known_ (CORBA::B_FALSE),
    tc_name_known_ (CORBA::B_FALSE),
    tc_member_count_known_ (CORBA::B_FALSE),
    tc_member_type_list_known_ (CORBA::B_FALSE),
    tc_member_name_list_known_ (CORBA::B_FALSE),
    tc_member_label_list_known_ (CORBA::B_FALSE),
    tc_discriminator_type_known_ (CORBA::B_FALSE),
    tc_default_index_used_known_ (CORBA::B_FALSE),
    tc_length_known_ (CORBA::B_FALSE),
    tc_content_type_known_ (CORBA::B_FALSE),
    tc_size_known_ (CORBA::B_FALSE),
    tc_alignment_known_ (CORBA::B_FALSE),
    tc_discrim_pad_size_known_ (CORBA::B_FALSE),
    tc_id_ (0),
    tc_name_ (0),
    tc_member_count_ (0),
    tc_member_type_list_ (0),
    tc_member_name_list_ (0),
    tc_member_label_list_ (0),
    tc_discriminator_type_ (0),
    tc_default_index_used_ (0),
    tc_length_ (0),
    tc_content_type_ (0),
    tc_size_ (0),
    tc_alignment_ (0),
    tc_discrim_pad_size_ (0)
{
}

// destructor for the private state. In effect, this cleans up all the children
// and the subtree we hold.
TC_Private_State::~TC_Private_State (void)
{
  // the following two just point into the buffer. So we just make it point to NUL
  this->tc_id_ = 0;
  this->tc_name_ = 0;

  // determine what kind of children we may have and free the space accordingly
  switch (this->tc_kind_)
    {
    case CORBA::tk_enum:
        // free up the member name list
        if (this->tc_member_name_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                this->tc_member_name_list_ [i] = 0; // not owned by us
              }
            delete [] this->tc_member_name_list_;
          }
        break;
    case CORBA::tk_struct:
    case CORBA::tk_except:
      {
        // free up the member name list
        if (this->tc_member_name_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                this->tc_member_name_list_ [i] = 0; // not owned by us
              }
            delete [] this->tc_member_name_list_;
          }

        // free up member type list
        if (this->tc_member_type_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                // free up the memory allocated for the typecode only if it has a parent
                if (this->tc_member_type_list_[i]->parent_)
                  delete this->tc_member_type_list_[i];
              }
            // now free up the array
            delete [] this->tc_member_type_list_;
          }
        this->tc_member_count_ = 0;
      }
      break;
    case CORBA::tk_sequence:
    case CORBA::tk_array:
    case CORBA::tk_alias:
      // delete the content type only if it has a parent i.e., if it is not
      // acquired from the pool of constant or predefined typecodes
      if (this->tc_content_type_known_)
        if (this->tc_content_type_->parent_)
          delete this->tc_content_type_;
      break;
    case CORBA::tk_union:
      {
        // free up the member name list
        if (this->tc_member_name_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                this->tc_member_name_list_ [i] = 0; // not owned by us
              }
            delete [] this->tc_member_name_list_;
          }

        // Free up type list, label list, and finally the discriminator
        if (this->tc_member_type_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                // free up the memory allocated for the typecode if it has a
                // parent that owns it
                if (this->tc_member_type_list_[i]->parent_)
                  delete this->tc_member_type_list_[i];
              }
            // now free up the array
            delete [] this->tc_member_type_list_;
          }
        if (this->tc_member_label_list_known_)
          {
            for (CORBA::ULong i = 0;
                 i < this->tc_member_count_;
                 i++)
              {
                // free up the label (Any_ptr)
                delete this->tc_member_label_list_[i];
              }
            delete [] this->tc_member_label_list_;
          }
        this->tc_member_count_ = 0;
        // Discriminator must come last b/c it will be inside the Any
        // in each element of the label list.
        delete this->tc_discriminator_type_;
      }
      break;
    default:
      // nothing to do
      break;
    }
}

// COM's IUnknown support

// {A201E4C1-F258-11ce-9598-0000C07CA898}
DEFINE_GUID (IID_CORBA_TypeCode,
0xa201e4c1, 0xf258, 0x11ce, 0x95, 0x98, 0x0, 0x0, 0xc0, 0x7c, 0xa8, 0x98);

// COM stuff
u_long
CORBA_TypeCode::AddRef (void)
{
  ACE_MT (ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, guard, lock_, 0));

  assert (this != 0);

  if (this->orb_owns_)
    return this->refcount_; // this better be 1
  else if (parent_)
    // we are owned by the parent
    //	  return parent_->Addref ();
    return this->refcount_; // 1
  else
    return this->refcount_++;
}

// COM stuff
u_long
CORBA_TypeCode::Release (void)
{
  // This code is subtle since we need to make sure that we don't try
  // to release the lock after we've deleted this...
  ACE_MT (this->lock_.acquire ());

  ACE_ASSERT (this != 0);

  u_long result;

  if (this->orb_owns_)
    result = this->refcount_; // 1
  else if (this->parent_)
    // return parent_->Release ();
    result = this->refcount_; // 1
  else
    {
      result = --this->refcount_;
      ACE_MT (this->lock_.release ());

      if (result == 0)
        delete this;

      return result;
    }

  ACE_MT (this->lock_.release ());
  return result;
}

// COM stuff
TAO_HRESULT
CORBA_TypeCode::QueryInterface (REFIID riid,
				void **ppv)
{
  *ppv = 0;

  if (IID_CORBA_TypeCode == riid || IID_TAO_IUnknown == riid)
    *ppv = this;

  if (*ppv == 0)
    return ResultFromScode (TAO_E_NOINTERFACE);

 (void) AddRef ();
  return TAO_NOERROR;
}

// check if typecodes are equal. Equality is based on a mix of structural and
// name equivalence i.e., if names are provided, we also check for name
// equivalence, else resort simply to structural equivalence.
CORBA::Boolean
CORBA_TypeCode::private_equal (CORBA::TypeCode_ptr tc,
			       CORBA::Environment &env) const
{
  // We come in here only if the typecode kinds of both are same
  // Handle each complex typecode separately.
  switch (this->kind_)
    {
    case CORBA::tk_null:
    case CORBA::tk_void:
    case CORBA::tk_short:
    case CORBA::tk_ushort:
    case CORBA::tk_long:
    case CORBA::tk_ulong:
    case CORBA::tk_float:
    case CORBA::tk_double:
    case CORBA::tk_longlong:
    case CORBA::tk_longdouble:
    case CORBA::tk_boolean:
    case CORBA::tk_octet:
    case CORBA::tk_char:
    case CORBA::tk_wchar:
    case CORBA::tk_TypeCode:
    case CORBA::tk_Principal:
      // all these are simple typecodes and the comparison is based solely on
      // the kind_ field
      return CORBA::B_TRUE;
    case CORBA::tk_objref:
      this->private_equal_objref (tc, env);
    case CORBA::tk_struct:
      this->private_equal_struct (tc, env);
    case CORBA::tk_union:
      this->private_equal_union (tc, env);
    case CORBA::tk_enum:
      this->private_equal_enum (tc, env);
    case CORBA::tk_string:
      this->private_equal_string (tc, env);
    case CORBA::tk_wstring:
      this->private_equal_wstring (tc, env);
    case CORBA::tk_sequence:
      this->private_equal_sequence (tc, env);
    case CORBA::tk_array:
      this->private_equal_array (tc, env);
    case CORBA::tk_alias:
      this->private_equal_alias (tc, env);
    case CORBA::tk_except:
      this->private_equal_except (tc, env);
    default:
      return CORBA::B_TRUE;
    }
}

CORBA::Boolean
CORBA_TypeCode::private_equal_objref (CORBA::TypeCode_ptr tc,
                                      CORBA::Environment &env) const
{
  env.clear ();
  // compare the repoID and name, of which the name is optional as per GIOP
  // spec
  if (!ACE_OS::strcmp (this->id (env), tc->id (env)))
    {
      // same repository IDs. Now check their names
      const char *myname = this->name (env);
      if (env.exception ())
        return 0;
      const char *tcname = tc->name (env);
      if (env.exception ())
        return 0;
      if ((ACE_OS::strlen (myname) > 1) &&
          (ACE_OS::strlen (tcname) > 1))
        {
          // both of them specify names, compare them
          if (!ACE_OS::strcmp (myname, tcname))
            return 1; // success
          else
            return 0; // failed
        }
      return 1; // equal
    }
  return 0; // failed
}

CORBA::Boolean
CORBA_TypeCode::private_equal_struct (CORBA::TypeCode_ptr tc,
                                      CORBA::Environment &env) const
{
  env.clear ();

  // for structs the repoID and names are optional. However, if provided, we
  // must compare them
  const char *my_id = this->id (env);
  if (env.exception ())
    return 0;
  const char *tc_id = tc->id (env);
  if (env.exception ())
    return 0;
  const char *my_name = this->id (env);
  if (env.exception ())
    return 0;
  const char *tc_name = tc->id (env);
  if (env.exception ())
    return 0;

  // compare repoIDs if they exist
  if (ACE_OS::strlen (my_id) > 1 && ACE_OS::strlen (tc_id) > 1)
    if (ACE_OS::strcmp (my_id, tc_id)) // not same
      return 0;

  // compare names if they exist
  if (ACE_OS::strlen (my_name) > 1 && ACE_OS::strlen (tc_name) > 1)
    if (ACE_OS::strcmp (my_name, tc_name)) // not same
      return 0;

  // check if the member count is same
  CORBA::ULong my_count = this->member_count (env);
  if (env.exception ())
    return 0;
  CORBA::ULong tc_count = tc->member_count (env);
  if (env.exception ())
    return 0;

  if (my_count != tc_count)
    return 0; // number of members don't match

  for (CORBA::ULong i=0; i < my_count; i++)
    {
      const char *my_member_name = this->member_name (i, env);
      if (env.exception ())
        return 0;

      const char *tc_member_name = this->member_name (i, env);
      if (env.exception ())
        return 0;

      if (ACE_OS::strlen (my_member_name) > 1 && ACE_OS::strlen
          (tc_member_name) > 1)
        if (ACE_OS::strcmp (my_member_name, tc_member_name)) // not same
          return 0;

      CORBA::TypeCode_ptr my_member_tc = this->member_type (i, env);
      if (env.exception ())
        return 0;

      CORBA::TypeCode_ptr tc_member_tc = tc->member_type (i, env);
      if (env.exception ())
        return 0;

      CORBA::Boolean flag = my_member_tc->equal (tc_member_tc, env);
      if (!flag || env.exception ())
        return 0;
    }

  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_union (CORBA::TypeCode_ptr tc,
                                     CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_enum (CORBA::TypeCode_ptr tc,
                                    CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_string (CORBA::TypeCode_ptr tc,
                                      CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_wstring (CORBA::TypeCode_ptr tc,
                                       CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_sequence (CORBA::TypeCode_ptr tc,
                                        CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_array (CORBA::TypeCode_ptr tc,
                                     CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_alias (CORBA::TypeCode_ptr tc,
                                     CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

CORBA::Boolean
CORBA_TypeCode::private_equal_except (CORBA::TypeCode_ptr tc,
                                      CORBA::Environment &env) const
{
  ACE_UNUSED_ARG (tc);
  ACE_UNUSED_ARG (env);
  return 1;
}

// Return the type ID (RepositoryId) for the TypeCode; it may be empty.
//
// NOTE the string returned here is owned by the typecode!!
//
// Valid only for objref, struct, union, enum, alias, and except. Raises
// BadKind exception for the rest of the cases.
const char *
CORBA_TypeCode::private_id (CORBA::Environment &env) const
{
  env.clear ();

  switch (this->kind_)
    {
      // These are all complex typecodes, which have as their first
      // parameter (number zero) a repository/type ID string encoded
      // per CDR rules.  That means we can just return a pointer to
      // that string directly!

    case CORBA::tk_objref:
    case CORBA::tk_struct:
    case CORBA::tk_union:
    case CORBA::tk_enum:
    case CORBA::tk_alias:
    case CORBA::tk_except:
      {
	this->private_state_->tc_id_known_ = CORBA::B_TRUE;
	this->private_state_->tc_id_ = (CORBA::String) (buffer_
						 + 4	// skip byte order flag
							// and padding
						 + 4);	// skip (strlen + 1)
	return this->private_state_->tc_id_; // this is OK because the strings in the
				       // CDR stream are NULL terminated
      }
    // No other typecodes ever have type IDs
    default:
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// return the name. The string is owned by the typecode
const char *
CORBA_TypeCode::private_name (CORBA::Environment &env) const
{
  env.clear ();

  switch (this->kind_)
    {
      // These are all complex typecodes, which have as their second
      // parameter (number one) a name string encoded
      // per CDR rules.  That means we can just return a pointer to
      // that string directly!

    case CORBA::tk_objref:
    case CORBA::tk_struct:
    case CORBA::tk_union:
    case CORBA::tk_enum:
    case CORBA::tk_alias:
    case CORBA::tk_except:
      {
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) length_);

	// skip the typecode ID
	if (stream.skip_string ())  // ID
	  {
	    this->private_state_->tc_name_known_ = CORBA::B_TRUE;

	    // skip past the length field.
	    this->private_state_->tc_name_ = (CORBA::String) (stream.next +
                                                              CDR::LONG_SIZE);

	    return this->private_state_->tc_name_;
	  }
	else
	  {
	    env.exception (new CORBA::INTERNAL (CORBA::COMPLETED_NO));
	    return (CORBA::String)0;
	  }
      }
    // No other typecodes ever have type IDs
    default:
      env.exception (new CORBA::TypeCode::BadKind ());
      return (CORBA::String)0;
    }
}

// Return the number of members defined by this typecode
//
// Applicable to struct, union, enum, alias, and except
// For the rest of the cases, raises the BadKind exception.

CORBA::ULong
CORBA_TypeCode::private_member_count (CORBA::Environment &env) const
{
  env.clear ();

  switch (kind_)
    {
    case CORBA::tk_alias:
      return 1;

    case CORBA::tk_enum:
    case CORBA::tk_except:
    case CORBA::tk_struct:
      {
	CORBA::ULong members;
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

	// skip rest of header (type ID and name) and collect the
	// number of struct members
	if (!stream.skip_string ()	    	    // ID
	    || !stream.skip_string ()  	    // struct name
	    || !stream.get_ulong (members))
	  {
	    env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	    return 0;
	  }

	this->private_state_->tc_member_count_known_ = CORBA::B_TRUE;
	this->private_state_->tc_member_count_ = members;
	return this->private_state_->tc_member_count_;
      }
    case CORBA::tk_union:
      {
	CORBA::ULong members;
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) length_);

	// skip rest of header (type ID, name, etc...) and collect the
	// number of struct members
	if (!stream.skip_string ()			// ID
	    || !stream.skip_string ()		// struct name
	    || !skip_typecode (stream)		// discriminant TC
	    || !stream.get_ulong (members)	// default used
	    || !stream.get_ulong (members))	// real member count
	  {
	    // this is a system exception indicating something is wrong with
	    // the typecode itself.
	    env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	    return 0;
	  }

	this->private_state_->tc_member_count_known_ = CORBA::B_TRUE;
	this->private_state_->tc_member_count_ = members;
	return this->private_state_->tc_member_count_;
      }
    default:
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

// NOTE special calling convention for stream.decode () when we're
// potentially deencapsulating an indirected typecode: the "data2"
// value indicates that this typecode is the parent.  See comments at
// stream.decode () for further details.
//
// Applicable only to struct, union, and except
//

CORBA::TypeCode_ptr
CORBA_TypeCode::private_member_type (CORBA::ULong index,
				     CORBA::Environment &env) const
{
  CORBA::ULong temp, mcount;

  // Build the de-encapsulating CDR stream, bypassing the stringent
  // alignment tests (we're a bit looser in what we need here, and we
  // _know_ we're OK).  Then skip the byte order code.
  CDR stream;
  CORBA::TypeCode_ptr tc = 0;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

  switch (kind_)
    {
    case CORBA::tk_except:
    case CORBA::tk_struct:		// index from 0
      mcount = this->member_count (env);		// clears env
      if (env.exception () == 0)
	{
	  // the first time in. Precompute and store types of all members

	  // Allocate a list to hold the member typecodes
	  this->private_state_->tc_member_type_list_ = new CORBA::TypeCode_ptr [mcount];

	  if (this->private_state_->tc_member_type_list_)
	    {
	      // skip the id, name, and member_count part
	      if (!stream.skip_string ()	// type ID, hidden
		  || !stream.skip_string ()	// typedef name
		  || !stream.get_ulong (temp))  // member count
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return (CORBA::TypeCode_ptr)0;
		}
	      else
		{
		  // compute the typecodes for all the members and
		  // return the required one.
		  for (CORBA::ULong i = 0; i < mcount; i++)
		    {
		      // the ith entry will have the typecode of the ith guy
		      if (!stream.skip_string ()  // skip the name
			  || stream.decode (CORBA::_tc_TypeCode,
					    // the typecode will be retrieved
					    // at the i-th location. The decode
					    // routine will allocate the
					    // storage to hold a typecode
					    &this->private_state_->
                                            tc_member_type_list_[i],
					    this,  // pass ourselves since we
						   // will be
						   // the parent. This is the
						   // case where the 3rd
						   // parameter is used in a
						   // decode method
					    env) != CORBA::TypeCode::TRAVERSE_CONTINUE)
			{
			  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
			  return 0;
			}
		    }

		  this->private_state_->tc_member_type_list_known_ = CORBA::B_TRUE;

		  if (index < mcount)
		    return this->private_state_->tc_member_type_list_[index];
		  else
		    {
		      env.exception (new CORBA::TypeCode::Bounds ());
		      return (CORBA::TypeCode_ptr)0;
		    }
		}
	    }
	  else  // no memory for the member_list
	    {
	      env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	      return (CORBA::TypeCode_ptr)0;
	    }
	}
      else // out of bounds
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return (CORBA::TypeCode_ptr)0;
	}
      break;
    case CORBA::tk_union:            // index from 0
      mcount = this->member_count (env);		// clears env
      if (env.exception () == 0)
	{
	  // the first time in. Precompute and store types of all members
	  this->private_state_->tc_member_type_list_ = new CORBA::TypeCode_ptr [mcount];
	  if (this->private_state_->tc_member_type_list_)
	    {
	      // skip the id, name, and discrimant type part
	      if (!stream.skip_string ()	// type ID, hidden
		  || !stream.skip_string ()	// typedef name
		  || !skip_typecode (stream))   // skip typecode for discriminant
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return (CORBA::TypeCode_ptr)0;
		}
	      else if (!stream.get_ulong (temp)	    // default used
		       || !stream.get_ulong (temp)) // member count
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return 0;
		}
	      else
		{
		  CORBA::Long scratch; // always big enough because labels can
				      // only be of a few different types of
				      // which "long" has the largest size

		  // get the typecode for the discriminator
		  tc = this->discriminator_type (env);
		  // compute the typecodes for all the members and return the
		  // required one

		  for (CORBA::ULong i = 0; i < mcount; i++)
		    {
		      // the ith entry will have the typecode of the ith guy
		      if (stream.decode (tc, &scratch, this,  env) // member label
			  != CORBA::TypeCode::TRAVERSE_CONTINUE
			  || !stream.skip_string ()  // skip the name
			  || stream.decode (CORBA::_tc_TypeCode,  // get the typecode
					    &private_state_->tc_member_type_list_[i],
					    this,
					    env) !=
			  CORBA::TypeCode::TRAVERSE_CONTINUE)
			{
			  env.exception (new CORBA::BAD_TYPECODE
                                         (CORBA::COMPLETED_NO));
			  return 0;
			}
		    }
		  this->private_state_->tc_member_type_list_known_ = CORBA::B_TRUE;

		  if (index < mcount)
		    return this->private_state_->tc_member_type_list_[index];
		  else
		    {
		      env.exception (new CORBA::TypeCode::Bounds ());
		      return (CORBA::TypeCode_ptr)0;
		    }
		}
	    }
	  else  // no memory for the member_list
	    {
	      env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	      return (CORBA::TypeCode_ptr)0;
	    }
	}
      else // out of bounds
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return (CORBA::TypeCode_ptr)0;
	}

    default:
      // bad kind
      env.exception (new CORBA::TypeCode::BadKind ());
      return (CORBA::TypeCode_ptr)0;
    }
}

// Return the name for the nth member
// Applicable only to CORBA::tk_struct, CORBA::tk_union, CORBA::tk_enum, and
// CORBA::tk_except
const char *
CORBA_TypeCode::private_member_name (CORBA::ULong index,
                                     CORBA::Environment &env) const
{
  CORBA::ULong temp, mcount;

  // Build the de-encapsulating CDR stream, bypassing the stringent
  // alignment tests (we're a bit looser in what we need here, and we
  // _know_ we're OK).  Then skip the byte order code.
  CDR stream;
  CORBA::TypeCode_ptr tc = 0;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

  switch (kind_)
    {
    case CORBA::tk_enum:
      mcount = this->member_count (env);		// clears env
      if (env.exception () == 0)
	{
	  // the first time in. Precompute and store names of all members
	  // Allocate a list to hold the member names
	  this->private_state_->tc_member_name_list_ = new char* [mcount];

	  if (this->private_state_->tc_member_name_list_)
	    {
	      // skip the id, name, and member_count part
	      if (!stream.skip_string ()	// type ID, hidden
		  || !stream.skip_string ()	// typedef name
		  || !stream.get_ulong (temp))  // member count
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return (char *)0;
		}
	      else
		{
		  // compute the typecodes for all the members and
		  // return the required one.
		  for (CORBA::ULong i = 0; i < mcount; i++)
		    {
		      // the ith entry will have the name of the ith member
                      this->private_state_->tc_member_name_list_ [i] = (char *)
                        (stream.next + CDR::LONG_SIZE); // just point ot it
		    }

		  this->private_state_->tc_member_name_list_known_ = CORBA::B_TRUE;

		  if (index < mcount)
		    return this->private_state_->tc_member_name_list_[index];
		  else
		    {
		      env.exception (new CORBA::TypeCode::Bounds ());
		      return (char *)0;
		    }
		}
	    }
	  else  // no memory for the member_list
	    {
	      env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	      return (char *)0;
	    }
	}
      else // out of bounds
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return (char *)0;
	}
      break;
    case CORBA::tk_except:
    case CORBA::tk_struct:		// index from 0
      mcount = this->member_count (env);		// clears env
      if (env.exception () == 0)
	{
	  // the first time in. Precompute and store names of all members
	  // Allocate a list to hold the member names
	  this->private_state_->tc_member_name_list_ = new char* [mcount];

	  if (this->private_state_->tc_member_name_list_)
	    {
	      // skip the id, name, and member_count part
	      if (!stream.skip_string ()	// type ID, hidden
		  || !stream.skip_string ()	// typedef name
		  || !stream.get_ulong (temp))  // member count
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return (char *)0;
		}
	      else
		{
		  // compute the typecodes for all the members and
		  // return the required one.
		  for (CORBA::ULong i = 0; i < mcount; i++)
		    {
		      // the ith entry will have the name of the ith member
                      this->private_state_->tc_member_name_list_ [i] = (char *)
                        (stream.next + CDR::LONG_SIZE); // just point ot it
		      if (!skip_typecode (stream)  // skip the typecode
                          != CORBA::TypeCode::TRAVERSE_CONTINUE)
			{
			  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
			  return 0;
			}
		    }

		  this->private_state_->tc_member_name_list_known_ = CORBA::B_TRUE;

		  if (index < mcount)
		    return this->private_state_->tc_member_name_list_[index];
		  else
		    {
		      env.exception (new CORBA::TypeCode::Bounds ());
		      return (char *)0;
		    }
		}
	    }
	  else  // no memory for the member_list
	    {
	      env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	      return (char *)0;
	    }
	}
      else // out of bounds
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return (char *)0;
	}
      break;
    case CORBA::tk_union:            // index from 0
      mcount = this->member_count (env);		// clears env
      if (env.exception () == 0)
	{
	  // the first time in. Precompute and store names of all members
	  // Allocate a list to hold the member names
	  this->private_state_->tc_member_name_list_ = new char* [mcount];

	  if (this->private_state_->tc_member_name_list_)
	    {
	      // skip the id, name, and discrimant type part
	      if (!stream.skip_string ()	// type ID, hidden
		  || !stream.skip_string ()	// typedef name
		  || !skip_typecode (stream))   // skip typecode for discriminant
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return (char *)0;
		}
	      else if (!stream.get_ulong (temp)	    // default used
		       || !stream.get_ulong (temp)) // member count
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return 0;
		}
	      else
		{
		  CORBA::Long scratch; // always big enough because labels can
				      // only be of a few different types of
				      // which "long" has the largest size

		  // get the typecode for the discriminator
		  tc = this->discriminator_type (env);
		  // compute the name for all the members and return the
		  // required one

		  for (CORBA::ULong i = 0; i < mcount; i++)
		    {
		      // the ith entry will have the name of the ith member
		      if (stream.decode (tc, &scratch, this,  env) // member label
			  != CORBA::TypeCode::TRAVERSE_CONTINUE)
                        {
			  env.exception (new CORBA::BAD_TYPECODE
                                         (CORBA::COMPLETED_NO));
			  return 0;
                        }
                      this->private_state_->tc_member_name_list_ [i] = (char *)
                        (stream.next + CDR::LONG_SIZE);
                      // skip typecode for member
                      if (!skip_typecode (stream))
			{
			  env.exception (new CORBA::BAD_TYPECODE
                                         (CORBA::COMPLETED_NO));
			  return 0;
			}
		    }
		  this->private_state_->tc_member_name_list_known_ = CORBA::B_TRUE;

		  if (index < mcount)
		    return this->private_state_->tc_member_name_list_[index];
		  else
		    {
		      env.exception (new CORBA::TypeCode::Bounds ());
		      return (char *)0;
		    }
		}
	    }
	  else  // no memory for the member_list
	    {
	      env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	      return (char *)0;
	    }
	}
      else // out of bounds
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return (char *)0;
	}
      break;
    default:
      // bad kind
      env.exception (new CORBA::TypeCode::BadKind ());
      return (char *)0;
    }
  return (char *)0;
}

// Return member labels for CORBA::tk_union typecodes.
CORBA::Any_ptr
CORBA_TypeCode::private_member_label (CORBA::ULong n,
                                      CORBA::Environment &env) const
{
  env.clear ();

  // this function is only applicable to the CORBA::tk_union TC
  if (this->kind_ == CORBA::tk_union)
    {
      CDR stream;

      stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

      // skip ID and name, and then get the discriminant TC
      CORBA::TypeCode_ptr    tc = 0;

      if (!stream.skip_string ()       // type ID, hidden
	  || !stream.skip_string ()    // typedef name
	  || !skip_typecode (stream))  // skip discriminant typecode
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}

      // skip default used, and get member count
      CORBA::ULong member_count;

      if (!stream.get_ulong (member_count)	// default used
	  || !stream.get_ulong (member_count))  // member count
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  dmsg ("TypeCode::private_member_label -- error reading from stream");
	  return 0;
	}

      // member labels are of type Any. However, the actual types are
      // restricted to simple types
      this->private_state_->tc_member_label_list_ = new CORBA::Any_ptr [member_count];
      if (this->private_state_->tc_member_label_list_)
	{
	  tc = this->discriminator_type (env); // retrieve the discriminator
                                               // type as this decides what the
                                               // label is
	  for (CORBA::ULong i = 0; i < member_count; i++)
	    {
	      // allocate buffer to hold the member label value
	      void *buf = new CORBA::Octet [tc->size (env)];
	      if (stream.decode (tc, buf, this,  env)
		  != CORBA::TypeCode::TRAVERSE_CONTINUE
		  || !stream.skip_string ()   	    // member name
		  || !skip_typecode (stream)) // member type
		{	    // member TC
		  dmsg1 ("TypeCode::private_member_label -- error getting typecode for member %d",i);
		  delete [] buf;
		  // XXXASG: free this list on error
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return 0;
		}
	      else
		{
		  this->private_state_->tc_member_label_list_[i] = new
                    CORBA::Any (tc, buf, CORBA::B_TRUE);
		}
	    }
	}
      else
	{
	  env.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
	  return 0;
	}

      this->private_state_->tc_member_label_list_known_ = CORBA::B_TRUE;

      // If caller asked for the label for a nonexistent member, they get
      // an error report!
      if (n >= member_count)
	{
	  env.exception (new CORBA::TypeCode::Bounds ());
	  return 0;
	}
      else
	return this->private_state_->tc_member_label_list_[n];
    }
  else // wrong typecode
    {
      env.exception (new CORBA::TypeCode::BadKind ());
      return 0;
    }
}

CORBA::TypeCode_ptr
CORBA_TypeCode::private_discriminator_type (CORBA::Environment &env) const
{
  CDR stream;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

  // skip ID and name, and then get the discriminant TC

  if (!stream.skip_string ()		// type ID, hidden
      || !stream.skip_string ()	        // typedef name
      || stream.decode (CORBA::_tc_TypeCode,
			&this->private_state_->tc_discriminator_type_, this,
                        env) != CORBA::TypeCode::TRAVERSE_CONTINUE)
    {
      env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
      return 0;
    }
  else
    {
      this->private_state_->tc_discriminator_type_known_ = CORBA::B_TRUE;
      return this->private_state_->tc_discriminator_type_;
    }
}

CORBA::Long
CORBA_TypeCode::private_default_index (CORBA::Environment &env) const
{
  CDR stream;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

  // skip ID and name, and then get the discriminant TC

  if (!stream.skip_string ()		// type ID, hidden
      || !stream.skip_string ()	        // typedef name
      || !skip_typecode (stream)        // skip discriminant
      || !stream.get_long (this->private_state_->tc_default_index_used_))
    {
      env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
      return 0;
    }
  else
    {
      this->private_state_->tc_default_index_used_known_ = CORBA::B_TRUE;
      return this->private_state_->tc_default_index_used_;
    }
}

CORBA::Long
CORBA_TypeCode::private_length (CORBA::Environment &env) const
{
  CDR stream;
  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);
  switch (this->kind_)
    {
    case CORBA::tk_sequence:
    case CORBA::tk_array:
      {
	// skip the typecode of the element and get the bounds
	if (!skip_typecode (stream) // skip typecode
	    || !stream.get_ulong (this->private_state_->tc_length_))
	  {
	    env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
	    return 0;
	  }
	else
	  {
	    this->private_state_->tc_length_known_ = CORBA::B_TRUE;
	    return this->private_state_->tc_length_;
	  }
      case CORBA::tk_string:
      case CORBA::tk_wstring:
	{
	  if (stream.get_ulong (this->private_state_->tc_length_))
	    {
	      this->private_state_->tc_length_known_ = CORBA::B_TRUE;
	      return this->private_state_->tc_length_;
	    }
	  else
	    {
	      env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
	      return 0;
	    }
	}
      default:
	env.exception (new CORBA::TypeCode::BadKind);
	return 0;
      }
    }
}

CORBA::TypeCode_ptr
CORBA_TypeCode::private_content_type (CORBA::Environment &env) const
{
  CDR stream;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);
  switch (kind_)
    {
    case CORBA::tk_sequence:
    case CORBA::tk_array:
      {
	// retrieve the content type
	if (stream.decode (CORBA::_tc_TypeCode,
                           &this->private_state_->tc_content_type_,
			   this,  env) !=
	    CORBA::TypeCode::TRAVERSE_CONTINUE) // element type
	  {
	    env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
	    return 0;
	  }
	else
	  {
	    this->private_state_->tc_content_type_known_ = CORBA::B_TRUE;
	    return this->private_state_->tc_content_type_;
	  }
      case CORBA::tk_alias:
	{
	  if (!stream.skip_string ()  // typeID
	      || !stream.skip_string () // name
	      || stream.decode (CORBA::_tc_TypeCode,
				&this->private_state_->tc_content_type_, this,
                                env) != CORBA::TypeCode::TRAVERSE_CONTINUE)
	    {
	      env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
	      return 0;
	    }
	  else
	    {
	      this->private_state_->tc_content_type_known_ = CORBA::B_TRUE;
	      return this->private_state_->tc_content_type_;
	    }
	}
      default:
	env.exception (new CORBA::TypeCode::BadKind);
	return 0;
      }
    }
}

CORBA::ULong
CORBA_TypeCode::private_discrim_pad_size (CORBA::Environment &env)
{
  CDR stream;
  size_t discrim_size,
    overall_align;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

 (void) calc_key_union_attributes (&stream, overall_align, discrim_size, env);

  if (env. exception () == 0)
    {
      this->private_state_->tc_discrim_pad_size_known_ = CORBA::B_TRUE;
      this->private_state_->tc_discrim_pad_size_ = discrim_size;
      return discrim_size;
    }
  else
    return 0;
}
// ************ The following are deprecated ****************

// say how many parameters this typecode has; normally a fixed number,
// some are variable length.
//
// NOTE: This refers to "real" parameters, not what shows up in the
// IFR spec !!  That is, "hidden" parameters are counted here, this
// doesn't strictly comply with what CORBA says "param_count"
// provides.

CORBA::ULong
CORBA_TypeCode::param_count (CORBA::Environment &env) const
{
  env.clear ();

  switch (this->kind_)
    {
    default:
      return 0;

    case CORBA::tk_string:
    case CORBA::tk_wstring:
      return 1;

    case CORBA::tk_objref:
    case CORBA::tk_sequence:
    case CORBA::tk_array:
      return 2;

    case CORBA::tk_alias:
      return 3;

    case CORBA::tk_except:
    case CORBA::tk_struct:
      {
	CORBA::ULong members;
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

	// skip rest of header (type ID and name) and collect the
	// number of struct members
	if (!stream.skip_string ()	    	    // ID
	    || !stream.skip_string ()  	    // struct name
	    || !stream.get_ulong (members))
	  {
	    env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	    return 0;
	  }

	return 3 + 2 * members;
      }
    case CORBA::tk_enum:
      {
	CORBA::ULong members;
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

	// skip rest of header (type ID and name) and collect the
	// number of struct members
	if (!stream.skip_string ()			// ID
	    || !stream.skip_string ()		// typedef name
	    || !stream.get_ulong (members))
	  {
	    env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	    return 0;
	  }

	return 3 + members;
      }
    case CORBA::tk_union:
      {
	CORBA::ULong members;
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

	// skip rest of header (type ID, name, etc...) and collect the
	// number of struct members
	if (!stream.skip_string ()			// ID
	    || !stream.skip_string ()		// struct name
	    || !skip_typecode (stream)		// discriminant TC
	    || !stream.get_ulong (members)	// default used
	    || !stream.get_ulong (members))	// real member count
	  {
	    env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	    return 0;
	  }

	return 5 + 3 * members;
      }
    }
}


// Internal hack, used until member_count () and length () are
// implemented.  Doesn't support all the types that those routines
// support.

CORBA::ULong
CORBA_TypeCode::ulong_param (CORBA::ULong n,
			     CORBA::Environment &env) const
{
  CORBA::ULong temp;

  temp = this->param_count (env);		// clears env
  if (env.exception ())
    return 0;

  if (temp < n)
    {
      env.exception (new CORBA::TypeCode::Bounds);
      return 0;
    }

  // Get parameters for non-empty typecodes; their parameter lists are
  // encapsulated CDR (for complex ones) or inlined (for simple ones).
  switch (kind_)
    {
    default:				// most have no long params
      break;

      // Array, sequence ... complex parameter lists
    case CORBA::tk_array:		// param 1 is an integer
    case CORBA::tk_sequence:		// ... identical content
      {
	if (n == 0)
	  break;

	// Build CDR stream for encapsulated params, and skip the
	// typecode up front.
	CDR stream;

	stream.setup_encapsulation (this->buffer_, (size_t) this->length_);
	if (!skip_typecode (stream))
	  {
	    env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
	    return 0;
	  }

	// Then comes the "bounds" parameter.
	if (!stream.get_ulong (temp))
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	return temp;
      }

    // string, wstring ... simple parameter lists, containing just the
    // string bounds (zero indicates unbounded).  Stored specially
    case CORBA::tk_string:
    case CORBA::tk_wstring:
      if (n != 0)
	break;
      return this->length_;
    }
  env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
  return 0;
}

// Internal hack, used until member_type (), discriminator_type (),
// and content_type () are implemented.
//
// NOTE special calling convention for stream.decode () when we're
// potentially deencapsulating an indirected typecode: the "data2"
// value indicates that this typecode is the parent.  See comments at
// stream.decode () for further details.

CORBA::TypeCode_ptr
CORBA_TypeCode::typecode_param (CORBA::ULong n,
				CORBA::Environment &env) const
{
  CORBA::ULong temp;

  temp = this->param_count (env);		// clears env
  if (env.exception ())
    return 0;

  if (temp < n)
    {
      env.exception (new CORBA::TypeCode::Bounds);
      return 0;
    }

  // Build the de-encapsulating CDR stream, bypassing the stringent
  // alignment tests (we're a bit looser in what we need here, and we
  // _know_ we're OK).  Then skip the byte order code.

  CDR stream;
  CORBA::TypeCode_ptr tc = 0;

  stream.setup_encapsulation (this->buffer_, (size_t) this->length_);

  switch (this->kind_)
    {
    default:				// most have no tc params
      break;

    case CORBA::tk_sequence:		// param 0 is a tc
    case CORBA::tk_array:
      if (n != 0)
	break;
      if (stream.decode (CORBA::_tc_TypeCode,
			 &tc,
			 this,
			 env) != CORBA::TypeCode::TRAVERSE_CONTINUE)
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      return tc;

    case CORBA::tk_alias:		// #1 is a tc
      if (n != 2)
	break;
      if (!stream.skip_string ()		// type ID, hidden
	  || !stream.skip_string ()	// typedef name
	  || stream.decode (CORBA::_tc_TypeCode, &tc, this,  env)
	  != CORBA::TypeCode::TRAVERSE_CONTINUE)
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      return tc;

    case CORBA::tk_except:
    case CORBA::tk_struct:		// #5 and up are tc, index from 0
      if (n < 4 || n & 0x1)
	{	// tc is at odd number of param list
	  env.exception (new CORBA::TypeCode::Bounds);
	  return 0;
	}

      if (!stream.skip_string ()		// type ID, hidden
	  || !stream.skip_string ()	// typedef name
	  || !stream.get_ulong (temp))
	{ 	// member count
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      else
	{
	  temp = (n - 3) / 2;

	  // skip member pairs to the one we want
	  for (CORBA::ULong i = 0; i < temp; i++)
	    {
	      // skip to the member being asked
	      if (!stream.skip_string ()	// member name
		  || !skip_typecode (stream))
		{
		  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
		  return 0;
		}
	    }

	  if (!stream.skip_string ()
	      || stream.decode (CORBA::_tc_TypeCode, &tc, this,
			       env)!= CORBA::TypeCode::TRAVERSE_CONTINUE)
	    {
	      env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	      return 0;
	    }
	  return tc;
	}

    case CORBA::tk_union:            // #6 and up are tc, index from 0
      if (n != 2 && (n < 7 || (n - 7) % 3))
	{
	  env.exception (new CORBA::TypeCode::Bounds);
	  return 0;
	}

      if (!stream.skip_string ()		// type ID, hidden
	  || !stream.skip_string ()	// typedef name
	  || stream.decode (CORBA::_tc_TypeCode,
                            &tc, this,
			    env) != CORBA::TypeCode::TRAVERSE_CONTINUE)  // TC
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      else if (!stream.get_ulong (temp)	// default used
		 || !stream.get_ulong (temp))	// member count
	{
	  tc->Release ();
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}

      if (n == 2)
	return tc;

      temp = (n - 7) / 3;

      // skip to the member requested

      CORBA::Long scratch;		// always big enough

      for (CORBA::ULong i = 0; i < temp; i++)
	{
	  if (stream.decode (tc, &scratch, this,  env) // member label
	      != CORBA::TypeCode::TRAVERSE_CONTINUE
	      || !stream.skip_string ()		// member name
	      || !skip_typecode (stream))
	    {	// member typecode
	      tc->Release ();
	      env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	      return 0;
	    }
	}

      // member label
      if (stream.decode (tc,
			&scratch, this,
			 env) != CORBA::TypeCode::TRAVERSE_CONTINUE
	  || !stream.skip_string ())		// member name
	{
	  tc->Release ();
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      tc->Release ();

      if (stream.decode (CORBA::_tc_TypeCode,
			&tc, this,
			 env) != CORBA::TypeCode::TRAVERSE_CONTINUE)
	{
	  env.exception (new CORBA::BAD_TYPECODE (CORBA::COMPLETED_NO));
	  return 0;
	}
      return tc;
    }

  env.exception (new CORBA::BAD_PARAM (CORBA::COMPLETED_NO));
  return 0;
}