ada_keystore_c8fa1d94/ada-util/src/base/beans/util-beans-objects.adb

   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
-----------------------------------------------------------------------
--  util-beans-objects -- Generic Typed Data Representation
--  Copyright (C) 2009, 2010, 2011, 2013, 2016, 2017, 2018, 2020, 2022 Stephane Carrez
--  Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
--  Licensed under the Apache License, Version 2.0 (the "License");
--  you may not use this file except in compliance with the License.
--  You may obtain a copy of the License at
--
--      http://www.apache.org/licenses/LICENSE-2.0
--
--  Unless required by applicable law or agreed to in writing, software
--  distributed under the License is distributed on an "AS IS" BASIS,
--  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
--  See the License for the specific language governing permissions and
--  limitations under the License.
-----------------------------------------------------------------------

with Ada.Characters.Conversions;
with Ada.Tags;
with Ada.Strings.UTF_Encoding.Wide_Wide_Strings;
with Util.Beans.Basic;
package body Util.Beans.Objects is

   use Util.Concurrent.Counters;
   use Ada.Characters.Conversions;

   function UTF8_Decode (S : in String) return Wide_Wide_String
      renames Ada.Strings.UTF_Encoding.Wide_Wide_Strings.Decode;

   --  Find the data type to be used for an arithmetic operation between two objects.
   function Get_Arithmetic_Type (Left, Right : Object) return Data_Type;

   --  Find the data type to be used for a composition operation between two objects.
   function Get_Compose_Type (Left, Right : Object) return Data_Type;

   --  Find the best type to be used to compare two operands.
   function Get_Compare_Type (Left, Right : Object) return Data_Type;

   Integer_Type  : aliased constant Int_Type         := Int_Type '(null record);
   Bool_Type     : aliased constant Boolean_Type     := Boolean_Type '(null record);
   Str_Type      : aliased constant String_Type      := String_Type '(null record);
   WString_Type  : aliased constant Wide_String_Type := Wide_String_Type '(null record);
   Flt_Type      : aliased constant Float_Type       := Float_Type '(null record);
   Duration_Type : aliased constant Duration_Type_Def := Duration_Type_Def '(null record);
   Bn_Type       : aliased constant Bean_Type        := Bean_Type '(null record);
   Ar_Type       : aliased constant Array_Type       := Array_Type '(null record);
   Blob_Def      : aliased constant Blob_Type        := Blob_Type '(null record);

   --  ------------------------------
   --  Convert the value into a wide string.
   --  ------------------------------
   overriding
   function To_Wide_Wide_String (Type_Def : in Basic_Type;
                                 Value    : in Object_Value) return Wide_Wide_String is
   begin
      return UTF8_Decode (Object_Type'Class (Type_Def).To_String (Value));
   end To_Wide_Wide_String;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Basic_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0.0;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Basic_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def, Value);
   begin
      return False;
   end To_Boolean;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in Basic_Type;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0.0;
   end To_Duration;

   --  ------------------------------
   --  Returns False
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Basic_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def, Value);
   begin
      return False;
   end Is_Empty;

   --  ------------------------------
   --  Null Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : Null_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Null";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : Null_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_NULL;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Null_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def, Value);
   begin
      return "null";
   end To_String;

   --  ------------------------------
   --  Returns True
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Null_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def, Value);
   begin
      return True;
   end Is_Empty;

   --  ------------------------------
   --  Integer Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : Int_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Integer";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : Int_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_INTEGER;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Int_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);

      S : constant String := Long_Long_Integer'Image (Value.Int_Value);
   begin
      if Value.Int_Value >= 0 then
         return S (S'First + 1 .. S'Last);
      else
         return S;
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Int_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Int_Value;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Int_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
   begin
      return Long_Long_Float (Value.Int_Value);
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Int_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Int_Value /= 0;
   end To_Boolean;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in Int_Type;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def);
   begin
      return Duration (Value.Int_Value);
   end To_Duration;

   --  ------------------------------
   --  Float Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Float_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Float";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Float_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_FLOAT;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Float_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      return Long_Long_Float'Image (Value.Float_Value);
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Float_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
   begin
      return Long_Long_Integer (Value.Float_Value);
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Float_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Float_Value;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Float_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Float_Value /= 0.0;
   end To_Boolean;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in Float_Type;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def);
   begin
      return Duration (Value.Float_Value);
   end To_Duration;

   --  ------------------------------
   --  String Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in String_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "String";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in String_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_STRING;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in String_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      if Proxy = null then
         return "null";
      else
         return Proxy.Value;
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in String_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      if Proxy = null then
         return 0;
      else
         return Long_Long_Integer'Value (Proxy.Value);
      end if;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in String_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      if Proxy = null then
         return 0.0;
      else
         return Long_Long_Float'Value (Proxy.Value);
      end if;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in String_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      return Proxy /= null
        and then (Proxy.Value = "true"
                  or else Proxy.Value = "TRUE"
                  or else Proxy.Value = "1");
   end To_Boolean;

   --  ------------------------------
   --  Returns True if the value is empty.
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in String_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      return Proxy = null or else Proxy.Value = "";
   end Is_Empty;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in String_Type;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def);
      Proxy : constant String_Proxy_Access := Value.String_Proxy;
   begin
      if Proxy = null then
         return 0.0;
      else
         return Duration'Value (Proxy.Value);
      end if;
   end To_Duration;

   --  ------------------------------
   --  Wide String Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Wide_String_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "WideString";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Wide_String_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_WIDE_STRING;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Wide_String_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      if Proxy = null then
         return "null";
      else
         return To_String (Proxy.Value);
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into a wide string.
   --  ------------------------------
   overriding
   function To_Wide_Wide_String (Type_Def : in Wide_String_Type;
                                 Value    : in Object_Value) return Wide_Wide_String is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      if Proxy = null then
         return "null";
      else
         return Proxy.Value;
      end if;
   end To_Wide_Wide_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Wide_String_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      if Proxy = null then
         return 0;
      else
         return Long_Long_Integer'Value (To_String (Proxy.Value));
      end if;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Wide_String_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      if Proxy = null then
         return 0.0;
      else
         return Long_Long_Float'Value (To_String (Proxy.Value));
      end if;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Wide_String_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      return Proxy /= null
        and then (Proxy.Value = "true"
                  or else Proxy.Value = "TRUE"
                  or else Proxy.Value = "1");
   end To_Boolean;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in Wide_String_Type;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      if Proxy = null then
         return 0.0;
      else
         return Duration'Value (To_String (Proxy.Value));
      end if;
   end To_Duration;

   --  ------------------------------
   --  Returns True if the value is empty.
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Wide_String_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Wide_String_Proxy_Access := Value.Wide_Proxy;
   begin
      return Proxy = null or else Proxy.Value = "";
   end Is_Empty;

   --  ------------------------------
   --  Boolean Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Boolean_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Boolean";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Boolean_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_BOOLEAN;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Boolean_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Bool_Value then
         return "TRUE";
      else
         return "FALSE";
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Boolean_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Bool_Value then
         return 1;
      else
         return 0;
      end if;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Boolean_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Bool_Value then
         return 1.0;
      else
         return 0.0;
      end if;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Boolean_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Bool_Value;
   end To_Boolean;

   --  ------------------------------
   --  Duration Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Duration_Type_Def) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Duration";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Duration_Type_Def) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_TIME;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Duration_Type_Def;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      return Duration'Image (Value.Time_Value);
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Duration_Type_Def;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def);
   begin
      return Long_Long_Integer (Value.Time_Value);
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Duration_Type_Def;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def);
   begin
      return Long_Long_Float (Value.Time_Value);
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Duration_Type_Def;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Time_Value > 0.0;
   end To_Boolean;

   --  ------------------------------
   --  Convert the value into a duration.
   --  ------------------------------
   overriding
   function To_Duration (Type_Def : in Duration_Type_Def;
                         Value    : in Object_Value) return Duration is
      pragma Unreferenced (Type_Def);
   begin
      return Value.Time_Value;
   end To_Duration;

   --  ------------------------------
   --  Bean Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Bean_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Bean";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Bean_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_BEAN;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Bean_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Proxy = null or else Value.Proxy.Bean = null then
         return "<null bean>";
      else
         return "<" & Ada.Tags.Expanded_Name (Value.Proxy.Bean'Tag) & ">";
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Bean_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Bean_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0.0;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Bean_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Bean_Proxy_Access := Value.Proxy;
   begin
      return Proxy /= null;
   end To_Boolean;

   --  ------------------------------
   --  Returns True if the value is empty.
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Bean_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Bean_Proxy_Access := Value.Proxy;
   begin
      if Proxy = null then
         return True;
      end if;
      if not (Proxy.all in Bean_Proxy'Class) then
         return False;
      end if;
      if not (Proxy.Bean.all in Util.Beans.Basic.List_Bean'Class) then
         return False;
      end if;
      declare
         L : constant Util.Beans.Basic.List_Bean_Access :=
           Beans.Basic.List_Bean'Class (Proxy.Bean.all)'Unchecked_Access;
      begin
         return L.Get_Count = 0;
      end;
   end Is_Empty;

   --  ------------------------------
   --  Blob Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Blob_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Blob";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Blob_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_BLOB;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Blob_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Blob_Proxy = null then
         return "<null array>";
      else
         return "<array>";
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Blob_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Blob_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0.0;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Blob_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Blob_Proxy_Access := Value.Blob_Proxy;
   begin
      return Proxy /= null;
   end To_Boolean;

   --  ------------------------------
   --  Returns True if the value is empty.
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Blob_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Blob_Proxy = null then
         return True;
      else
         return Value.Blob_Proxy.Blob.Is_Null;
      end if;
   end Is_Empty;

   --  ------------------------------
   --  Array Type
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   overriding
   function Get_Name (Type_Def : in Array_Type) return String is
      pragma Unreferenced (Type_Def);
   begin
      return "Array";
   end Get_Name;

   --  ------------------------------
   --  Get the base data type.
   --  ------------------------------
   overriding
   function Get_Data_Type (Type_Def : in Array_Type) return Data_Type is
      pragma Unreferenced (Type_Def);
   begin
      return TYPE_ARRAY;
   end Get_Data_Type;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_String (Type_Def : in Array_Type;
                       Value    : in Object_Value) return String is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Array_Proxy = null then
         return "<null array>";
      else
         return "<array>";
      end if;
   end To_String;

   --  ------------------------------
   --  Convert the value into an integer.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Array_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0;
   end To_Long_Long;

   --  ------------------------------
   --  Convert the value into a float.
   --  ------------------------------
   overriding
   function To_Long_Float (Type_Def : in Array_Type;
                           Value    : in Object_Value) return Long_Long_Float is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0.0;
   end To_Long_Float;

   --  ------------------------------
   --  Convert the value into a boolean.
   --  ------------------------------
   overriding
   function To_Boolean (Type_Def : in Array_Type;
                        Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
      Proxy : constant Array_Proxy_Access := Value.Array_Proxy;
   begin
      return Proxy /= null;
   end To_Boolean;

   --  ------------------------------
   --  Returns True if the value is empty.
   --  ------------------------------
   overriding
   function Is_Empty (Type_Def : in Array_Type;
                      Value    : in Object_Value) return Boolean is
      pragma Unreferenced (Type_Def);
   begin
      if Value.Array_Proxy = null then
         return True;
      else
         return Value.Array_Proxy.Len = 0;
      end if;
   end Is_Empty;

   --  ------------------------------
   --  Convert the value into a string.
   --  ------------------------------
   overriding
   function To_Long_Long (Type_Def : in Basic_Type;
                          Value    : in Object_Value) return Long_Long_Integer is
      pragma Unreferenced (Type_Def, Value);
   begin
      return 0;
   end To_Long_Long;

   --  ------------------------------
   --  Check whether the object contains a value.
   --  Returns true if the object does not contain a value.
   --  ------------------------------
   function Is_Null (Value : in Object) return Boolean is
   begin
      return Value.V.Of_Type = TYPE_NULL;
   end Is_Null;

   --  ------------------------------
   --  Check whether the object is empty.
   --  If the object is null, returns true.
   --  If the object is the empty string, returns true.
   --  If the object is a list bean whose Get_Count is 0, returns true.
   --  Otherwise returns false.
   --  ------------------------------
   function Is_Empty (Value : in Object) return Boolean is
   begin
      return Value.Type_Def.Is_Empty (Value.V);
   end Is_Empty;

   function Get_Array_Bean (Value : in Object) return access Util.Beans.Basic.Array_Bean'Class is
      Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Value);
   begin
      if Bean = null or else not (Bean.all in Util.Beans.Basic.Array_Bean'Class) then
         return null;
      else
         return Util.Beans.Basic.Array_Bean'Class (Bean.all)'Unchecked_Access;
      end if;
   end Get_Array_Bean;

   --  ------------------------------
   --  Returns True if the object is an array.
   --  ------------------------------
   function Is_Array (Value : in Object) return Boolean is
   begin
      if Value.V.Of_Type = TYPE_ARRAY then
         return True;
      elsif Value.V.Of_Type /= TYPE_BEAN then
         return False;
      else
         return Get_Array_Bean (Value) /= null;
      end if;
   end Is_Array;

   --  ------------------------------
   --  Generic Object holding a value
   --  ------------------------------

   --  ------------------------------
   --  Get the type name
   --  ------------------------------
   function Get_Type_Name (Value : in Object) return String is
   begin
      return Value.Type_Def.Get_Name;
   end Get_Type_Name;

   --  ------------------------------
   --  Get a type identification for the object value.
   --  ------------------------------
   function Get_Type (Value : in Object) return Data_Type is
   begin
      return Value.V.Of_Type;
   end Get_Type;

   --  ------------------------------
   --  Get the type definition of the object value.
   --  ------------------------------
   function Get_Type (Value : Object) return Object_Type_Access is
   begin
      return Value.Type_Def;
   end Get_Type;

   --  ------------------------------
   --  Get the value identified by the name in the bean object.
   --  If the value object is not a bean, returns the null object.
   --  ------------------------------
   function Get_Value (Value : in Object;
                       Name  : in String) return Object is
      Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Value);
   begin
      if Bean = null then
         return Null_Object;
      else
         return Bean.Get_Value (Name);
      end if;
   end Get_Value;

   --  ------------------------------
   --  Set into the target object a value identified by the name.
   --  The target object must be a <tt>Bean</tt> instance that implements the <tt>Set_Value</tt>
   --  procedure.  The operation does nothing if this is not the case.
   --  ------------------------------
   procedure Set_Value (Into  : in Object;
                        Name  : in String;
                        Value : in Object) is
      Bean : constant access Util.Beans.Basic.Readonly_Bean'Class := To_Bean (Into);
   begin
      if Bean /= null and then Bean.all in Util.Beans.Basic.Bean'Class then
         Util.Beans.Basic.Bean'Class (Bean.all).Set_Value (Name, Value);
      end if;
   end Set_Value;

   --  ------------------------------
   --  Get the number of elements in the array object.
   --  Returns 0 if the object is not an array.
   --  ------------------------------
   function Get_Count (From : in Object) return Natural is
      use type Util.Beans.Basic.Array_Bean_Access;
      Bean : Util.Beans.Basic.Array_Bean_Access;
   begin
      if From.V.Of_Type = TYPE_ARRAY then
         return From.V.Array_Proxy.Len;
      elsif From.V.Of_Type /= TYPE_BEAN or else From.V.Proxy = null then
         return 0;
      else
         Bean := Get_Array_Bean (From);
         if Bean = null then
            return 0;
         else
            return Bean.Get_Count;
         end if;
      end if;
   end Get_Count;

   --  ------------------------------
   --  Get the array element at the given position.
   --  ------------------------------
   function Get_Value (From     : in Object;
                       Position : in Positive) return Object is
      use type Util.Beans.Basic.Array_Bean_Access;
      Bean : Util.Beans.Basic.Array_Bean_Access;
   begin
      if From.V.Of_Type = TYPE_BEAN then
         Bean := Get_Array_Bean (From);
         if Bean /= null then
            return Bean.Get_Row (Position);
         else
            return Null_Object;
         end if;
      elsif From.V.Of_Type /= TYPE_ARRAY then
         return Null_Object;
      elsif From.V.Array_Proxy.Len < Position then
         return Null_Object;
      else
         return From.V.Array_Proxy.Values (Position);
      end if;
   end Get_Value;

   --  ------------------------------
   --  Convert the object to the corresponding type.
   --  ------------------------------
   function To_String (Value : Object) return String is
   begin
      return Value.Type_Def.To_String (Value.V);
   end To_String;

   --  ------------------------------
   --  Convert the object to a wide string.
   --  ------------------------------
   function To_Wide_Wide_String (Value : Object) return Wide_Wide_String is
   begin
      return Value.Type_Def.To_Wide_Wide_String (Value.V);
   end To_Wide_Wide_String;

   --  ------------------------------
   --  Convert the object to an unbounded string.
   --  ------------------------------
   function To_Unbounded_String (Value : Object) return Unbounded_String is
   begin
      case Value.V.Of_Type is
         when TYPE_STRING =>
            if Value.V.String_Proxy = null then
               return To_Unbounded_String ("null");
            end if;
            return To_Unbounded_String (Value.V.String_Proxy.Value);

         when others =>
            return To_Unbounded_String (To_String (Value));

      end case;
   end To_Unbounded_String;

   --  ------------------------------
   --  Convert the object to an unbounded wide string.
   --  ------------------------------
   function To_Unbounded_Wide_Wide_String (Value : Object) return Unbounded_Wide_Wide_String is
   begin
      case Value.V.Of_Type is
         when TYPE_WIDE_STRING =>
            if Value.V.Wide_Proxy = null then
               return To_Unbounded_Wide_Wide_String ("null");
            end if;
            return To_Unbounded_Wide_Wide_String (Value.V.Wide_Proxy.Value);

         when TYPE_STRING =>
            if Value.V.String_Proxy = null then
               return To_Unbounded_Wide_Wide_String ("null");
            end if;
            return To_Unbounded_Wide_Wide_String
              (UTF8_Decode (Value.V.String_Proxy.Value));

         when others =>
            return To_Unbounded_Wide_Wide_String (To_Wide_Wide_String (To_String (Value)));

      end case;
   end To_Unbounded_Wide_Wide_String;

   --  ------------------------------
   --  Convert the object to an integer.
   --  ------------------------------
   function To_Integer (Value : Object) return Integer is
   begin
      return Integer (Value.Type_Def.To_Long_Long (Value.V));
   end To_Integer;

   --  ------------------------------
   --  Convert the object to an integer.
   --  ------------------------------
   function To_Long_Integer (Value : Object) return Long_Integer is
   begin
      return Long_Integer (Value.Type_Def.To_Long_Long (Value.V));
   end To_Long_Integer;

   --  ------------------------------
   --  Convert the object to a long integer.
   --  ------------------------------
   function To_Long_Long_Integer (Value : Object) return Long_Long_Integer is
   begin
      return Value.Type_Def.To_Long_Long (Value.V);
   end To_Long_Long_Integer;

   --  ------------------------------
   --  Convert the object to a duration.
   --  ------------------------------
   function To_Duration (Value : in Object) return Duration is
   begin
      return Value.Type_Def.To_Duration (Value.V);
   end To_Duration;

   function To_Bean (Value : in Object) return access Util.Beans.Basic.Readonly_Bean'Class is
   begin
      if Value.V.Of_Type = TYPE_BEAN and then Value.V.Proxy /= null then
         return Value.V.Proxy.Bean;
      else
         return null;
      end if;
   end To_Bean;

   --  ------------------------------
   --  Convert the object to a boolean.
   --  ------------------------------
   function To_Boolean (Value : Object) return Boolean is
   begin
      return Value.Type_Def.To_Boolean (Value.V);
   end To_Boolean;

   --  ------------------------------
   --  Convert the object to a float.
   --  ------------------------------
   function To_Float (Value : Object) return Float is
   begin
      return Float (Value.Type_Def.To_Long_Float (Value.V));
   end To_Float;

   --  ------------------------------
   --  Convert the object to a long float.
   --  ------------------------------
   function To_Long_Float (Value : Object) return Long_Float is
   begin
      return Long_Float (Value.Type_Def.To_Long_Float (Value.V));
   end To_Long_Float;

   --  ------------------------------
   --  Convert the object to a long float.
   --  ------------------------------
   function To_Long_Long_Float (Value : Object) return Long_Long_Float is
   begin
      return Value.Type_Def.To_Long_Float (Value.V);
   end To_Long_Long_Float;

   --  ------------------------------
   --  Convert the object to a long float.
   --  ------------------------------
   function To_Blob (Value : Object) return Util.Blobs.Blob_Ref is
   begin
      if Value.V.Of_Type = TYPE_BLOB and then Value.V.Blob_Proxy /= null then
         return Value.V.Blob_Proxy.Blob;
      else
         return Util.Blobs.Null_Blob;
      end if;
   end To_Blob;

   --  ------------------------------
   --  Convert an integer into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Integer) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type   => TYPE_INTEGER,
                                          Int_Value => Long_Long_Integer (Value)),
                      Type_Def  => Integer_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert an integer into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Long_Integer) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type   => TYPE_INTEGER,
                                          Int_Value => Long_Long_Integer (Value)),
                      Type_Def  => Integer_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert an integer into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Long_Long_Integer) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type   => TYPE_INTEGER,
                                          Int_Value => Value),
                      Type_Def  => Integer_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a boolean into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Boolean) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type    => TYPE_BOOLEAN,
                                          Bool_Value => Value),
                      Type_Def   => Bool_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a float into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Float) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type     => TYPE_FLOAT,
                                          Float_Value => Long_Long_Float (Value)),
                      Type_Def    => Flt_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a long float into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Long_Float) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type     => TYPE_FLOAT,
                                          Float_Value => Long_Long_Float (Value)),
                      Type_Def    => Flt_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a long long float into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Long_Long_Float) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type     => TYPE_FLOAT,
                                          Float_Value => Value),
                      Type_Def    => Flt_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a duration into a generic typed object.
   --  ------------------------------
   function To_Object (Value : in Duration) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type    => TYPE_TIME,
                                          Time_Value => Value),
                      Type_Def    => Duration_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a string into a generic typed object.
   --  ------------------------------
   function To_Object (Value : String) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type => TYPE_STRING,
                                          String_Proxy  => new String_Proxy '(Ref_Counter  => ONE,
                                                                        Len  => Value'Length,
                                                                        Value => Value)),
                      Type_Def     => Str_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a wide string into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Wide_Wide_String) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type => TYPE_WIDE_STRING,
                                          Wide_Proxy => new Wide_String_Proxy
                                            '(Ref_Counter => ONE,
                                              Len => Value'Length,
                                              Value => Value)),
                      Type_Def          => WString_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert an unbounded string into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Unbounded_String) return Object is
      Len : constant Natural := Length (Value);
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type => TYPE_STRING,
                                          String_Proxy => new String_Proxy
                                            '(Ref_Counter  => ONE,
                                              Len          => Len,
                                              Value        => To_String (Value))),
                      Type_Def => Str_Type'Access);
   end To_Object;

   --  ------------------------------
   --  Convert a unbounded wide string into a generic typed object.
   --  ------------------------------
   function To_Object (Value : Unbounded_Wide_Wide_String) return Object is
      Len : constant Natural := Length (Value);
   begin
      return Object '(Controlled with
        V => Object_Value '(Of_Type => TYPE_WIDE_STRING,
                            Wide_Proxy   => new Wide_String_Proxy
                              '(Ref_Counter => ONE,
                                Len => Len,
                                Value => To_Wide_Wide_String (Value))),
        Type_Def          => WString_Type'Access);
   end To_Object;

   function To_Object (Value   : access Util.Beans.Basic.Readonly_Bean'Class;
                       Storage : in Storage_Type := DYNAMIC) return Object is
   begin
      if Value = null then
         return Object '(Controlled with
                         V => Object_Value '(Of_Type    => TYPE_BEAN,
                                             Proxy      => null),
                         Type_Def   => Bn_Type'Access);
      else
         return Object '(Controlled with
                         V => Object_Value '(Of_Type => TYPE_BEAN,
                                             Proxy   => new Bean_Proxy '(Ref_Counter => ONE,
                                                                         Bean    => Value,
                                                                         Storage => Storage)),
                         Type_Def   => Bn_Type'Access);
      end if;
   end To_Object;

   function To_Object (Value : in Object_Array) return Object is
   begin
      return Object '(Controlled with
                        V => Object_Value '(Of_Type => TYPE_ARRAY,
                                            Array_Proxy =>
                                               new Array_Proxy '(Ref_Counter => ONE,
                                                                 Len    => Value'Length,
                                                                 Count  => Value'Length,
                                                                 Values => Value)),
                      Type_Def => Ar_Type'Access);
   end To_Object;

   function To_Object (Value : in Util.Blobs.Blob_Ref) return Object is
   begin
      return Object '(Controlled with
                        V => Object_Value '(Of_Type => TYPE_BLOB,
                                            Blob_Proxy =>
                                               new Blob_Proxy '(Ref_Counter => ONE,
                                                                Blob => Value)),
                      Type_Def => Blob_Def'Access);
   end To_Object;

   --  ------------------------------
   --  Convert the object to an object of another time.
   --  Force the object to be an integer.
   --  ------------------------------
   function Cast_Integer (Value : Object) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type   => TYPE_INTEGER,
                                          Int_Value => Value.Type_Def.To_Long_Long (Value.V)),
                      Type_Def  => Integer_Type'Access);
   end Cast_Integer;

   --  ------------------------------
   --  Force the object to be a float.
   --  ------------------------------
   function Cast_Float (Value : Object) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type     => TYPE_FLOAT,
                                          Float_Value => Value.Type_Def.To_Long_Float (Value.V)),
                      Type_Def    => Flt_Type'Access);
   end Cast_Float;

   --  ------------------------------
   --  Convert the object to an object of another time.
   --  Force the object to be a duration.
   --  ------------------------------
   function Cast_Duration (Value : Object) return Object is
   begin
      return Object '(Controlled with
                      V => Object_Value '(Of_Type   => TYPE_TIME,
                                          Time_Value => Value.Type_Def.To_Duration (Value.V)),
                      Type_Def  => Duration_Type'Access);
   end Cast_Duration;

   --  ------------------------------
   --  Force the object to be a string.
   --  ------------------------------
   function Cast_String (Value : Object) return Object is
   begin
      if Value.V.Of_Type = TYPE_STRING or else Value.V.Of_Type = TYPE_WIDE_STRING then
         return Value;
      else
         return To_Object (To_Wide_Wide_String (Value));
      end if;
   end Cast_String;

   --  ------------------------------
   --  Find the best type to be used to compare two operands.
   --
   --  ------------------------------
   function Get_Compare_Type (Left, Right : Object) return Data_Type is
   begin
      --  Operands are of the same type.
      if Left.V.Of_Type = Right.V.Of_Type then
         return Left.V.Of_Type;
      end if;

      --  12 >= "23"
      --  if Left.Of_Type = TYPE_STRING or
      case Left.V.Of_Type is
         when TYPE_BOOLEAN =>
            case Right.V.Of_Type is
               when TYPE_INTEGER | TYPE_BOOLEAN | TYPE_TIME =>
                  return TYPE_INTEGER;

               when TYPE_FLOAT | TYPE_STRING | TYPE_WIDE_STRING =>
                  return Right.V.Of_Type;

               when others =>
                  null;
            end case;

         when TYPE_INTEGER =>
            case Right.V.Of_Type is
               when TYPE_BOOLEAN | TYPE_TIME =>
                  return TYPE_INTEGER;

               when TYPE_FLOAT =>
                  return TYPE_FLOAT;

               when others =>
                  null;
            end case;

         when TYPE_TIME =>
            case Right.V.Of_Type is
               when TYPE_INTEGER | TYPE_BOOLEAN | TYPE_FLOAT =>
                  return TYPE_INTEGER;

               when others =>
                  null;

            end case;

         when TYPE_FLOAT =>
            case Right.V.Of_Type is
               when TYPE_INTEGER | TYPE_BOOLEAN =>
                  return TYPE_FLOAT;

               when TYPE_TIME =>
                  return TYPE_INTEGER;

               when others =>
                  null;
            end case;

         when others =>
            null;
      end case;
      return TYPE_STRING;
   end Get_Compare_Type;

   --  ------------------------------
   --  Find the data type to be used for an arithmetic operation between two objects.
   --  ------------------------------
   function Get_Arithmetic_Type (Left, Right : Object) return Data_Type is
   begin
      if Left.V.Of_Type = TYPE_FLOAT or else Right.V.Of_Type = TYPE_FLOAT then
         return TYPE_FLOAT;
      end if;
      if Left.V.Of_Type = TYPE_INTEGER or else Right.V.Of_Type = TYPE_INTEGER then
         return TYPE_INTEGER;
      end if;
      if Left.V.Of_Type = TYPE_BOOLEAN and then Right.V.Of_Type = TYPE_BOOLEAN then
         return TYPE_BOOLEAN;
      end if;
      return TYPE_FLOAT;
   end Get_Arithmetic_Type;

   --  ------------------------------
   --  Find the data type to be used for a composition operation between two objects.
   --  ------------------------------
   function Get_Compose_Type (Left, Right : Object) return Data_Type is
   begin
      if Left.V.Of_Type = Right.V.Of_Type then
         return Left.V.Of_Type;
      end if;
      if Left.V.Of_Type = TYPE_FLOAT or else Right.V.Of_Type = TYPE_FLOAT then
         return TYPE_FLOAT;
      end if;
      if Left.V.Of_Type = TYPE_INTEGER or else Right.V.Of_Type = TYPE_INTEGER then
         return TYPE_INTEGER;
      end if;
      if Left.V.Of_Type = TYPE_TIME or else Right.V.Of_Type = TYPE_TIME then
         return TYPE_TIME;
      end if;
      if Left.V.Of_Type = TYPE_BOOLEAN and then Right.V.Of_Type = TYPE_BOOLEAN then
         return TYPE_BOOLEAN;
      end if;
      return TYPE_FLOAT;
   end Get_Compose_Type;

   --  ------------------------------
   --  Comparison of objects
   --  ------------------------------
   generic
      with function Int_Comparator (Left, Right : Long_Long_Integer) return Boolean;
      with function Time_Comparator (Left, Right : Duration) return Boolean;
      with function Boolean_Comparator (Left, Right : Boolean) return Boolean;
      with function Float_Comparator (Left, Right : Long_Long_Float) return Boolean;
      with function String_Comparator (Left, Right : String) return Boolean;
      with function Wide_String_Comparator (Left, Right : Wide_Wide_String)
                                    return Boolean;
   function Compare (Left, Right : Object) return Boolean;

   --  ------------------------------
   --  Comparison of objects
   --  ------------------------------
   function Compare (Left, Right : Object) return Boolean is
      T : constant Data_Type := Get_Compare_Type (Left, Right);
   begin
      case T is
         when TYPE_BOOLEAN =>
            return Boolean_Comparator (Left.Type_Def.To_Boolean (Left.V),
                                       Right.Type_Def.To_Boolean (Right.V));

         when TYPE_INTEGER =>
            return Int_Comparator (Left.Type_Def.To_Long_Long (Left.V),
                                   Right.Type_Def.To_Long_Long (Right.V));

         when TYPE_TIME =>
            return Time_Comparator (Left.Type_Def.To_Duration (Left.V),
                                    Right.Type_Def.To_Duration (Right.V));

         when TYPE_FLOAT =>
            return Float_Comparator (Left.Type_Def.To_Long_Float (Left.V),
                                     Right.Type_Def.To_Long_Float (Right.V));

         when TYPE_STRING =>
            return String_Comparator (To_String (Left), To_String (Right));

         when TYPE_WIDE_STRING =>
            return Wide_String_Comparator (To_Wide_Wide_String (Left),
                                           To_Wide_Wide_String (Right));

         when others =>
            return False;
      end case;
   end Compare;

   function ">" (Left, Right : Object) return Boolean is
      function Cmp is new Compare (Int_Comparator => ">",
                                   Time_Comparator => ">",
                                   Boolean_Comparator => ">",
                                   Float_Comparator => ">",
                                   String_Comparator => ">",
                                   Wide_String_Comparator => ">");
   begin
      return Cmp (Left, Right);
   end ">";

   function "<" (Left, Right : Object) return Boolean is
      function Cmp is new Compare (Int_Comparator => "<",
                                   Time_Comparator => "<",
                                   Boolean_Comparator => "<",
                                   Float_Comparator => "<",
                                   String_Comparator => "<",
                                   Wide_String_Comparator => "<");
   begin
      return Cmp (Left, Right);
   end "<";

   function "<=" (Left, Right : Object) return Boolean is
      function Cmp is new Compare (Int_Comparator => "<=",
                                   Time_Comparator => "<=",
                                   Boolean_Comparator => "<=",
                                   Float_Comparator => "<=",
                                   String_Comparator => "<=",
                                   Wide_String_Comparator => "<=");
   begin
      return Cmp (Left, Right);
   end "<=";

   function ">=" (Left, Right : Object) return Boolean is
      function Cmp is new Compare (Int_Comparator => ">=",
                                   Time_Comparator => ">=",
                                   Boolean_Comparator => ">=",
                                   Float_Comparator => ">=",
                                   String_Comparator => ">=",
                                   Wide_String_Comparator => ">=");
   begin
      return Cmp (Left, Right);
   end ">=";

   overriding
   function "=" (Left, Right : Object) return Boolean is
      function Cmp is new Compare (Int_Comparator => "=",
                                   Time_Comparator => "=",
                                   Boolean_Comparator => "=",
                                   Float_Comparator => "=",
                                   String_Comparator => "=",
                                   Wide_String_Comparator => "=");
   begin
      return Cmp (Left, Right);
   end "=";

   --  ------------------------------
   --  Arithmetic operations of objects
   --  ------------------------------
   generic
      with function Int_Operation (Left, Right : Long_Long_Integer)
                                    return Long_Long_Integer;
      with function Duration_Operation (Left, Right : Duration)
                                    return Duration;
      with function Float_Operation (Left, Right : Long_Long_Float)
                                    return Long_Long_Float;
   function Arith (Left, Right : Object) return Object;

   --  Comparison of objects
   function Arith (Left, Right : Object) return Object is
   begin
      --  If we have a time object, keep the time definition.
      if Left.V.Of_Type = TYPE_TIME then
         return Result : Object do
            Result.Type_Def := Left.Type_Def;
            Result.V := Object_Value
              '(Of_Type    => TYPE_TIME,
                Time_Value => Duration_Operation
                  (Left.Type_Def.To_Duration (Left.V),
                   Right.Type_Def.To_Duration (Right.V)));
         end return;
      end if;
      if Right.V.Of_Type = TYPE_TIME then
         return Result : Object do
            Result.Type_Def := Right.Type_Def;
            Result.V := Object_Value
              '(Of_Type    => TYPE_TIME,
                Time_Value => Duration_Operation (Left.Type_Def.To_Duration (Left.V),
                  Right.Type_Def.To_Duration (Right.V)));
         end return;
      end if;
      declare
         T : constant Data_Type := Get_Arithmetic_Type (Left, Right);
      begin
         case T is
         when TYPE_INTEGER =>
            return To_Object (Int_Operation (Left.Type_Def.To_Long_Long (Left.V),
              Right.Type_Def.To_Long_Long (Right.V)));

         when TYPE_FLOAT =>
            return To_Object (Float_Operation (Left.Type_Def.To_Long_Float (Left.V),
              Right.Type_Def.To_Long_Float (Right.V)));

         when others =>
            return Left;
         end case;
      end;
   end Arith;

   --  Arithmetic operations on objects
   function "+" (Left, Right : Object) return Object is
      function Operation is new Arith (Int_Operation => "+",
                                       Duration_Operation => "+",
                                       Float_Operation => "+");
   begin
      return Operation (Left, Right);
   end "+";

   function "-" (Left, Right : Object) return Object is
      function Operation is new Arith (Int_Operation => "-",
                                       Duration_Operation => "-",
                                       Float_Operation => "-");
   begin
      return Operation (Left, Right);
   end "-";

   function "-" (Left : Object) return Object is
   begin
      case Left.V.Of_Type is
         when TYPE_INTEGER =>
            return To_Object (-Left.Type_Def.To_Long_Long (Left.V));

         when TYPE_TIME =>
            return To_Object (-Left.Type_Def.To_Duration (Left.V));

         when TYPE_FLOAT =>
            return To_Object (-(Left.Type_Def.To_Long_Float (Left.V)));

         when others =>
            return Left;

      end case;
   end "-";

   function "*" (Left, Right : Object) return Object is
      function Operation is new Arith (Int_Operation => "*",
                                       Duration_Operation => "+",
                                       Float_Operation => "*");
   begin
      return Operation (Left, Right);
   end "*";

   function "/" (Left, Right : Object) return Object is
      function Operation is new Arith (Int_Operation => "/",
                                       Duration_Operation => "-",
                                       Float_Operation => "/");
   begin
      return Operation (Left, Right);
   end "/";

   function "mod" (Left, Right : Object) return Object is
      function "mod" (Left, Right : Long_Long_Float) return Long_Long_Float;

      function "mod" (Left, Right : Long_Long_Float) return Long_Long_Float is
         L : constant Long_Long_Integer := Long_Long_Integer (Left);
         R : constant Long_Long_Integer := Long_Long_Integer (Right);
      begin
         return Long_Long_Float (L mod R);
      end "mod";

      function Operation is new Arith (Int_Operation => "mod",
                                       Duration_Operation => "-",
                                       Float_Operation => "mod");
   begin
      return Operation (Left, Right);
   end "mod";

   function "&" (Left, Right : Object) return Object is
      T : constant Data_Type := Get_Compose_Type (Left, Right);
   begin
      case T is
         when TYPE_BOOLEAN =>
            return To_Object (To_Boolean (Left) and then To_Boolean (Right));

         when others =>
            return To_Object (To_String (Left) & To_String (Right));

      end case;
   end "&";

   overriding
   procedure Adjust (Obj : in out Object) is
   begin
      case Obj.V.Of_Type is
         when TYPE_BEAN =>
            if Obj.V.Proxy /= null then
               Util.Concurrent.Counters.Increment (Obj.V.Proxy.Ref_Counter);
            end if;

         when TYPE_ARRAY =>
            if Obj.V.Array_Proxy /= null then
               Util.Concurrent.Counters.Increment (Obj.V.Array_Proxy.Ref_Counter);
            end if;

         when TYPE_STRING =>
            if Obj.V.String_Proxy /= null then
               Util.Concurrent.Counters.Increment (Obj.V.String_Proxy.Ref_Counter);
            end if;

         when TYPE_WIDE_STRING =>
            if Obj.V.Wide_Proxy /= null then
               Util.Concurrent.Counters.Increment (Obj.V.Wide_Proxy.Ref_Counter);
            end if;

         when TYPE_BLOB =>
            if Obj.V.Blob_Proxy /= null then
               Util.Concurrent.Counters.Increment (Obj.V.Blob_Proxy.Ref_Counter);
            end if;

         when others =>
            null;

      end case;
   end Adjust;

   procedure Free is
     new Ada.Unchecked_Deallocation (Object => Basic.Readonly_Bean'Class,
                                     Name   => Basic.Readonly_Bean_Access);

   procedure Free is
     new Ada.Unchecked_Deallocation (Object => Array_Proxy,
                                     Name   => Array_Proxy_Access);

   procedure Free is
     new Ada.Unchecked_Deallocation (Object => String_Proxy,
                                     Name   => String_Proxy_Access);

   procedure Free is
     new Ada.Unchecked_Deallocation (Object => Wide_String_Proxy,
                                     Name   => Wide_String_Proxy_Access);

   procedure Free is
     new Ada.Unchecked_Deallocation (Object => Blob_Proxy,
                                     Name   => Blob_Proxy_Access);

   overriding
   procedure Finalize (Obj : in out Object) is
      Release : Boolean;
   begin
      case Obj.V.Of_Type is
         when TYPE_STRING =>
            if Obj.V.String_Proxy /= null then
               Util.Concurrent.Counters.Decrement (Obj.V.String_Proxy.Ref_Counter, Release);
               if Release then
                  Free (Obj.V.String_Proxy);
               else
                  Obj.V.String_Proxy := null;
               end if;
            end if;

         when TYPE_WIDE_STRING =>
            if Obj.V.Wide_Proxy /= null then
               Util.Concurrent.Counters.Decrement (Obj.V.Wide_Proxy.Ref_Counter, Release);
               if Release then
                  Free (Obj.V.Wide_Proxy);
               else
                  Obj.V.Wide_Proxy := null;
               end if;
            end if;

         when TYPE_BEAN =>
            if Obj.V.Proxy /= null then
               Util.Concurrent.Counters.Decrement (Obj.V.Proxy.Ref_Counter, Release);
               if Release then
                  Obj.V.Proxy.all.Release;
                  Free (Obj.V.Proxy);
               else
                  Obj.V.Proxy := null;
               end if;
            end if;

         when TYPE_ARRAY =>
            if Obj.V.Array_Proxy /= null then
               Util.Concurrent.Counters.Decrement (Obj.V.Array_Proxy.Ref_Counter, Release);
               if Release then
                  Free (Obj.V.Array_Proxy);
               else
                  Obj.V.Array_Proxy := null;
               end if;
            end if;

         when TYPE_BLOB =>
            if Obj.V.Blob_Proxy /= null then
               Util.Concurrent.Counters.Decrement (Obj.V.Blob_Proxy.Ref_Counter, Release);
               if Release then
                  Free (Obj.V.Blob_Proxy);
               else
                  Obj.V.Blob_Proxy := null;
               end if;
            end if;

         when others =>
            null;

      end case;
   end Finalize;

   --  ------------------------------
   --  Release the object pointed to by the proxy (if necessary).
   --  ------------------------------
   overriding
   procedure Release (P : in out Bean_Proxy) is
   begin
      if P.Storage = DYNAMIC and then P.Bean /= null then
         declare
            Bean : Basic.Readonly_Bean_Access := P.Bean.all'Access;
         begin
            P.Bean := null;
            Free (Bean);
         end;
      end if;
   end Release;

   overriding
   procedure Finalize (Proxy : in out Proxy_Iterator) is
      Release : Boolean;
   begin
      if Proxy.Proxy /= null then
         Util.Concurrent.Counters.Decrement (Proxy.Proxy.Ref_Counter, Release);
         if Release then
            Free (Proxy.Proxy);
         else
            Proxy.Proxy := null;
         end if;
      end if;
   end Finalize;

end Util.Beans.Objects;