gnoga_2.1.2_5f127c56/deps/simple_components/persistent-data_bank-index.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
--                                                                    --
--  package                         Copyright (c)  Dmitry A. Kazakov  --
--     Persistent.Data_Bank.Index                  Luebeck            --
--  Implementation                                 Autumn, 2004       --
--                                                                    --
--                                Last revision :  22:45 07 Apr 2016  --
--                                                                    --
--  This  library  is  free software; you can redistribute it and/or  --
--  modify it under the terms of the GNU General Public  License  as  --
--  published by the Free Software Foundation; either version  2  of  --
--  the License, or (at your option) any later version. This library  --
--  is distributed in the hope that it will be useful,  but  WITHOUT  --
--  ANY   WARRANTY;   without   even   the   implied   warranty   of  --
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU  --
--  General  Public  License  for  more  details.  You  should  have  --
--  received  a  copy  of  the GNU General Public License along with  --
--  this library; if not, write to  the  Free  Software  Foundation,  --
--  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.    --
--                                                                    --
--  As a special exception, if other files instantiate generics from  --
--  this unit, or you link this unit with other files to produce  an  --
--  executable, this unit does not by  itself  cause  the  resulting  --
--  executable to be covered by the GNU General Public License. This  --
--  exception  does not however invalidate any other reasons why the  --
--  executable file might be covered by the GNU Public License.       --
--____________________________________________________________________--

with Ada.IO_Exceptions;    use Ada.IO_Exceptions;
with Ada.Tags;             use Ada.Tags;
with Strings_Edit.Quoted;  use Strings_Edit.Quoted;
with Object;               use Object;

package body Persistent.Data_Bank.Index is
   use Ptr_Map;
   use Key_Map;
   use Name_Map;
--
-- Create -- New catalogue record
--
--    List     - The catalogue
--    Object   - The object
--    External - The object's key
--    Name     - The object's name
--    Parent   - The object's parent
--
   procedure Create
             (  List      : in out Catalogue;
                Object    : Deposit_Ptr;
                External  : Key;
                Name      : String;
                Parent    : Catalogue_Record_Ptr
             );
--
-- Delete -- A catalogue record
--
--    List - The catalogue
--    Item - The record to be deleted (a pointer to)
--
   procedure Delete
             (  List : in out Catalogue;
                Item : Catalogue_Record_Ptr
             );
--
-- Notify_Deletion_By_Key -- Notify objects holding backward links
--
--    List   - The catalogue
--    Object - The key of the object being deleted
--
   procedure Notify_Deletion_By_Key
             (  List   : in out Catalogue;
                Object : Key
             );

   function "<" (Left, Right : By_Name_Ptr) return Boolean is
   begin
      if Equal (Right, null) then
         return False;
      elsif Equal (Left, null) then
         return True;
      elsif Left.Parent = Right.Parent then
         return Left.Name < Right.Name;
      else
         return By_Key_Ptr (Left.Parent) < By_Key_Ptr (Right.Parent);
      end if;
   end "<";

   function "<" (Left, Right : By_Entity_Ptr) return Boolean is
   begin
      if Equal (Right, null) then
         return False;
      elsif Equal (Left, null) then
         return True;
      else
         if Left.all in Catalogue_Record'Class then
            if Right.all in Catalogue_Record'Class then
               return
                  Less
                  (  This (Catalogue_Record'Class (Left.all )).all,
                     This (Catalogue_Record'Class (Right.all)).all
                  );
            else
               return
                  Less
                  (  This (Catalogue_Record'Class (Left.all)).all,
                     Right.all
                  );
            end if;
         else
            if Right.all in Catalogue_Record'Class then
               return
                  Less
                  (  Left.all,
                     This (Catalogue_Record'Class (Right.all)).all
                  );
            else
               return Less (Left.all, Right.all);
            end if;
         end if;
      end if;
   end "<";

   function "<" (Left, Right : By_Key_Ptr) return Boolean is
   begin
      if Equal (Right, null) then
         return False;
      elsif Equal (Left, null) then
         return True;
      else
         return Left.External < Right.External;
      end if;
   end "<";

   function "=" (Left, Right : By_Name_Ptr) return Boolean is
   begin
      if Equal (Left, null) then
         return Equal (Right, null);
      elsif Equal (Right, null) then
         return False;
      else
         return
         (  Left.Parent = Right.Parent
         and then
            Left.Name = Right.Name
         );
      end if;
   end "=";

   function "=" (Left, Right : By_Entity_Ptr) return Boolean is
   begin
      if Equal (Left, null) then
         return Equal (Right, null);
      elsif Equal (Right, null) then
         return False;
      else
         if Left.all in Catalogue_Record'Class then
            if Right.all in Catalogue_Record'Class then
               return
                  Equal
                  (  This (Catalogue_Record'Class (Left.all )).all,
                     This (Catalogue_Record'Class (Right.all)).all
                  );
            else
               return
                  Equal
                  (  This (Catalogue_Record'Class (Left.all)).all,
                     Right.all
                  );
            end if;
         else
            if Right.all in Catalogue_Record'Class then
               return
                  Object.Equal
                  (  Left.all,
                     This (Catalogue_Record'Class (Right.all)).all
                  );
            else
               return Object.Equal (Left.all, Right.all);
            end if;
         end if;
      end if;
   end "=";

   function "=" (Left, Right : By_Key_Ptr) return Boolean is
   begin
      if Equal (Left, null) then
         return Equal (Right, null);
      elsif Equal (Right, null) then
         return False;
      else
         return Left.External = Right.External;
      end if;
   end "=";

   procedure Add
             (  List      : in out Catalogue;
                Object    : Deposit_Ptr;
                External  : Key;
                Name      : String;
                Parent    : Key
             )  is
   begin
      if Name'Length = 0 then
         Raise_Exception
         (  Name_Error'Identity,
            "No empty names allowed"
         );
      end if;
      if Parent = Null_Key then
         Create (List, Object, External, Name, null);
      else
         declare
            Index : constant Integer := Find (List, Parent);
         begin
            if Index < 0 then
               Raise_Exception
               (  Constraint_Error'Identity,
                  (  "Parent "
                  &  Image (List.Storage.all, Parent)
                  &  " of "
                  &  Image (List.Storage.all, External)
                  &  " does not persist"
               )  );
            end if;
            declare
               Parent_Ptr : constant Catalogue_Record_Ptr :=
                   Catalogue_Record_Ptr (Get (List.By_Key, Index));
            begin
               if Parent_Ptr.Name_Length = 0 then
                  Raise_Exception
                  (  Name_Error'Identity,
                     (  "Parent "
                     &  Image (List.Storage.all, Parent)
                     &  " of "
                     &  Image (List.Storage.all, External)
                     &  " is anonymous"
                  )  );
               end if;
               Create (List, Object, External, Name, Parent_Ptr);
            end;
         end;
      end if;
   end Add;

   procedure Add
             (  List     : in out Catalogue;
                Object   : Deposit_Ptr;
                External : Key
             )  is
   begin
      Create (List, Object, External, "", null);
   end Add;

   procedure Create
             (  List      : in out Catalogue;
                Object    : Deposit_Ptr;
                External  : Key;
                Name      : String;
                Parent    : Catalogue_Record_Ptr
             )  is
      Index : Integer;
   begin
      Index := Find (List.By_Ptr, By_Entity_Ptr (Object));
      if Index > 0 then
         --
         -- The object already bound. We check if it has the  properties
         -- requested.
         --
         declare
            Item : Catalogue_Record renames
                      Catalogue_Record (Get (List.By_Ptr, Index).all);
         begin
            if Name /= Item.Name then
               Raise_Exception
               (  Name_Error'Identity,
                  (  "Object "
                  &  Image (List.Storage.all, External)
                  &  " is already bound as "
                  &  Quote (Item.Name)
               )  );
            elsif Parent /= Item.Parent then
               Raise_Exception
               (  Name_Error'Identity,
                  (  "Object "
                  &  Image (List.Storage.all, External)
                  &  ", child of "
                  &  Image (List.Storage.all, Item.Parent.External)
                  &  " is already child of "
                  &  Image (List.Storage.all, Parent.External)
               )  );
            elsif External /= Item.External then
               Raise_Exception
               (  Name_Error'Identity,
                  (  "Object "
                  &  Image (List.Storage.all, External)
                  &  " is bound under other key "
                  &  Image (List.Storage.all, Item.External)
               )  );
            end if;
         end;
      else
         --
         -- The object is not bound, so we create a record for it
         --
         declare
            Link : constant Backward_Link_Ptr :=
                      new Catalogue_Record (Name'Length);
            Item : Catalogue_Record renames Catalogue_Record (Link.all);
         begin
            Increment_Count (Item);
            Attach (Link, Object);
            Item.List     := List'Unchecked_Access;
            Item.External := External;
            Item.Name     := Name;
            if Parent /= null then
               Item.Parent := Parent;
               Increment_Count (This (Parent.all).all);
            end if;
            Add (List.By_Ptr, Item'Unchecked_Access);
            Add (List.By_Key, Item'Unchecked_Access);
            if Name'Length /= 0 then
               Add (List.By_Name, Item'Unchecked_Access);
            end if;
         exception
            when others =>
               Delete (List, Item'Unchecked_Access);
               raise;
         end;
      end if;
   end Create;

   procedure Delete
             (  List : in out Catalogue;
                Item : Catalogue_Record_Ptr
             )  is
   begin
      if Item /= null then
         Remove (List.By_Ptr,  By_Entity_Ptr (Item));
         Remove (List.By_Key,  By_Key_Ptr    (Item));
         Remove (List.By_Name, By_Name_Ptr   (Item));
         if Item.Parent /= null then
            declare
               Ptr : Object.Entity_Ptr :=
                  Object.Entity_Ptr (This (Item.Parent.all));
            begin
               Item.Parent := null;
               Object.Release (Ptr);
            end;
         end if;
         Detach (Item.all);
         declare
            Ptr : Object.Entity_Ptr := Object.Entity_Ptr (Item);
         begin
            Object.Release (Ptr);
         end;
      end if;
   end Delete;

   procedure Delete (List : in out Catalogue; ID : Deposit_Ptr) is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         Delete
         (  List,
            Catalogue_Record
            (  Get (List.By_Ptr, Index).all
            ) 'Unchecked_Access
         );
      end if;
   end Delete;

   procedure Delete (List : in out Catalogue; ID : Key) is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         Delete
         (  List,
            Catalogue_Record_Ptr (Get (List.By_Key, Index))
         );
      end if;
   end Delete;

   procedure Delete
             (  List   : in out Catalogue;
                Name   : String;
                Parent : Deposit_Ptr
             )  is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         Delete
         (  List,
            Catalogue_Record_Ptr (Get (List.By_Name, Index))
         );
      end if;
   end Delete;

   procedure Delete
             (  List   : in out Catalogue;
                Name   : String;
                Parent : Key
             )  is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         Delete
         (  List,
            Catalogue_Record_Ptr (Get (List.By_Name, Index))
         );
      end if;
   end Delete;

   procedure Deleted
             (  Item  : in out Catalogue_Record;
                Temps : in out Deposit_Container'Class
             )  is
   begin
      null;
   end Deleted;

   procedure Destroyed (Item : in out Catalogue_Record) is
      Object : Deposit'Class renames This (Item).all;
   begin
      if Item.Name_Length = 0 then
         --
         -- The  object  is  anonymous. It is a candidate for collection
         -- when no other object uses it.
         --
         case Get_Access_Mode (Item.List.Storage.all) is
            when Read_Only =>
               Raise_Exception
               (  Use_Error'Identity,
                  "Nested transaction requires access upgrade"
               );
            when Read_Write =>
               if Has_Dependants
                  (  Item.List.Storage,
                     Item.External,
                     True
                  )
               then
                  if Is_Modified (Object) then
                     Put (Item.List.Storage.all, Item.External, Object);
                     Reset_Modified (Object);
                  end if;
               else
                  Delete (Item.List.Storage.all, Item.External);
               end if;
            when Fully =>
               declare
                  Mutex : Write_Mutex (Item.List.Storage);
               begin
                  if Has_Dependants
                     (  Item.List.Storage,
                        Item.External,
                        True
                     )
                  then
                     if Is_Modified (Object) then
                        Put
                        (  Item.List.Storage.all,
                           Item.External,
                           Object
                        );
                        Reset_Modified (Object);
                     end if;
                  else
                     Delete (Item.List.Storage.all, Item.External);
                  end if;
                  Commit (Mutex);
               end;
         end case;
      elsif Is_Modified (Object) then
         case Get_Access_Mode (Item.List.Storage.all) is
            when Read_Only =>
               Raise_Exception
               (  Use_Error'Identity,
                  "Nested transaction requires access upgrade"
               );
            when Read_Write =>
               Put (Item.List.Storage.all, Item.External, Object);
            when Fully =>
               declare
                  Mutex : Write_Mutex (Item.List.Storage);
               begin
                  Put (Item.List.Storage.all, Item.External, Object);
                  Commit (Mutex);
               end;
         end case;
         Reset_Modified (Object);
      end if;
      Delete (Item.List.all, Item'Unchecked_Access);
   exception
      when Use_Error =>
         --
         -- Nested transaction, this is an idicator that the  object  is
         -- being  destroyed  upon error recovery which will be followed
         -- by  the  pending transaction roll-back. So the database will
         -- not be changed anyway. The object is silently  removed  from
         -- the index an that is.
         --
         Delete (Item.List.all, Item'Unchecked_Access);
      when Error : others =>
         Delete (Item.List.all, Item'Unchecked_Access);
         On_Error
         (  Item.List.Storage.all,
            "Destroying " & Expanded_Name (Object'Tag),
            Error
         );
   end Destroyed;

   procedure Erase (List : in out Catalogue) is
   begin
      while not Is_Empty (List.By_Key) loop
         Delete
         (  List,
            Catalogue_Record_Ptr (Get (List.By_Key, 1))
         );
      end loop;
   end Erase;

   procedure Finalize (List : in out Catalogue) is
   begin
      Erase (List);
   exception
      when Error : others =>
         On_Error
         (  List.Storage.all,
            "Finalizing catalogue",
            Error
         );
   end Finalize;

   function Find
            (  List   : Catalogue;
               ID     : String;
               Parent : Catalogue_Record_Ptr
            )  return Integer is
      Item : aliased Catalogue_Record (ID'Length);
   begin
      Item.Name   := ID;
      Item.Parent := Parent;
      return Find (List.By_Name, Item'Unchecked_Access);
   end Find;

   function Find (List : Catalogue; ID : Deposit_Ptr) return Integer is
   begin
      return Find (List.By_Ptr, ID.all'Unchecked_Access);
   end Find;

   function Find (List : Catalogue; ID : Key) return Integer is
      Item : aliased Catalogue_Record (0);
   begin
      Item.External := ID;
      return Find (List.By_Key, Item'Unchecked_Access);
   end Find;

   function Get (List : Catalogue; Name : String; Parent : Deposit_Ptr)
      return Key is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         return Get (List.By_Name, Index).External;
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; Name : String; Parent : Key)
      return Key is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         return Get (List.By_Name, Index).External;
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; Name : String; Parent : Deposit_Ptr)
      return Deposit_Ptr is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         return This (Get (List.By_Name, Index).all);
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; Name : String; Parent : Key)
      return Deposit_Ptr is
      Index : constant Integer :=
                 Find (List, Name, Get_As (List, Parent, As_Old));
   begin
      if Index > 0 then
         return This (Get (List.By_Name, Index).all);
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; ID : Deposit_Ptr) return Key is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         return
            Catalogue_Record
            (  Get (List.By_Ptr, Index).all
            ) .External;
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; ID : Deposit_Ptr) return String is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         declare
            Item : Catalogue_Record renames
                      Catalogue_Record (Get (List.By_Ptr, Index).all);
         begin
            if Item.Name'Length > 0 then
               return Item.Name;
            end if;
         end;
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; ID : Key) return String is
      Index : constant Integer := Find (List, ID);
   begin
      if (  Index > 0
         and then
            Get (List.By_Key, Index).Name'Length > 0
         )
      then
         return Get (List.By_Key, Index).Name;
      end if;
      raise End_Error;
   end Get;

   function Get (List : Catalogue; ID : Key) return Deposit_Ptr is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         return This (Get (List.By_Key, Index).all);
      end if;
      raise End_Error;
   end Get;

   function Get_As
            (  List : Catalogue;
               ID   : Deposit_Ptr;
               As   : Query_Mode
            )  return Catalogue_Record_Ptr is
   begin
      if ID = null then
         return null;
      end if;
      declare
         Index : constant Integer := Find (List, ID);
      begin
         if Index < 0 then
            case As is
               when As_New =>
                  Raise_Exception
                  (  Constraint_Error'Identity,
                     "Parent does not persist"
                  );
               when As_Old =>
                  Raise_Exception
                  (  Data_Error'Identity,
                     "Parent does not persist"
                  );
            end case;
         end if;
         declare
            Result : constant Catalogue_Record_Ptr :=
                     Catalogue_Record_Ptr (Get (List.By_Ptr, Index));
         begin
            if Result.Name_Length = 0 then
               case As is
                  when As_New =>
                     Raise_Exception
                     (  Name_Error'Identity,
                        "Parent is anonymous"
                     );
                  when As_Old =>
                     Raise_Exception
                     (  Data_Error'Identity,
                        "Parent is anonymous"
                     );
               end case;
            end if;
            return Result;
         end;
      end;
   end Get_As;

   function Get_As
            (  List : Catalogue;
               ID   : Key;
               As   : Query_Mode
            )  return Catalogue_Record_Ptr is
   begin
      if ID = Null_Key then
         return null;
      end if;
      declare
         Index : constant Integer := Find (List, ID);
      begin
         if Index < 0 then
            case As is
               when As_New =>
                  Raise_Exception
                  (  Constraint_Error'Identity,
                     "Parent does not persist"
                  );
               when As_Old =>
                  Raise_Exception
                  (  Data_Error'Identity,
                     "Parent does not persist"
                  );
            end case;
         end if;
         declare
            Result : constant Catalogue_Record_Ptr :=
                     Catalogue_Record_Ptr (Get (List.By_Key, Index));
         begin
            if Result.Name_Length = 0 then
               case As is
                  when As_New =>
                     Raise_Exception
                     (  Name_Error'Identity,
                        "Parent is anonymous"
                     );
                  when As_Old =>
                     Raise_Exception
                     (  Data_Error'Identity,
                        "Parent is anonymous"
                     );
               end case;
            end if;
            return Result;
         end;
      end;
   end Get_As;

   procedure Get_Descendants
             (  List   : Catalogue;
                Item   : Catalogue_Record_Ptr;
                Result : in out Ptr_Map.Set
             )  is
      Child : aliased Catalogue_Record (0);
      Index : Integer;
   begin
      Child.Parent := Item;
      Index := Find (List.By_Name, Child'Unchecked_Access);
      if Index < 0 then
         Index := -Index;
      end if;
      for Position in Index..Get_Size (List.By_Name) loop
         exit when Get (List.By_Name, Position).Parent /= Item;
         Add (Result, By_Entity_Ptr (Get (List.By_Name, Position)));
      end loop;
   end Get_Descendants;

   function Get_New_Parent_Key
            (  List   : Catalogue;
               Parent : Deposit_Ptr
            )  return Key is
   begin
      if Parent = null then
         return Null_Key;
      else
         return Get_As (List, Parent, As_New).External;
      end if;
   end Get_New_Parent_Key;

   function Get_Key (List : Catalogue; ID : Deposit_Ptr) return Key is
   begin
      if ID = null then
         return Null_Key;
      else
         return Get_As (List, ID, As_Old).External;
      end if;
   end Get_Key;

   function Get_Parent (List : Catalogue; ID : Deposit_Ptr)
      return Deposit_Ptr is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         declare
            Item : Catalogue_Record renames
                   Catalogue_Record (Get (List.By_Ptr, Index).all);
         begin
            if Item.Parent = null then
               return null;
            else
               return This (Item.Parent.all);
            end if;
         end;
      end if;
      raise End_Error;
   end Get_Parent;

   function Get_Parent (List : Catalogue; ID : Deposit_Ptr)
      return Key is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         declare
            Item : Catalogue_Record renames
                   Catalogue_Record (Get (List.By_Ptr, Index).all);
         begin
            if Item.Parent = null then
               return Null_Key;
            else
               return Item.Parent.External;
            end if;
         end;
      end if;
      raise End_Error;
   end Get_Parent;

   function Get_Parent (List : Catalogue; ID : Key)
      return Deposit_Ptr is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         declare
            Item : Catalogue_Record'Class renames
                   Catalogue_Record'Class
                   (  Get (List.By_Key, Index).all
                   );
         begin
            if Item.Parent = null then
               return null;
            else
               return This (Item.Parent.all);
            end if;
         end;
      end if;
      raise End_Error;
   end Get_Parent;

   function Get_Parent (List : Catalogue; ID : Key) return Key is
      Index : constant Integer := Find (List, ID);
   begin
      if Index > 0 then
         declare
            Item : Catalogue_Record'Class renames
                   Catalogue_Record'Class
                   (  Get (List.By_Key, Index).all
                   );
         begin
            if Item.Parent = null then
               return Null_Key;
            else
               return Item.Parent.External;
            end if;
         end;
      end if;
      raise End_Error;
   end Get_Parent;

   function Is_Descendant
            (  List   : Catalogue;
               Object : Deposit_Ptr;
               Parent : Deposit_Ptr
            )  return Boolean is
   begin
      if Object = Parent then
         return False;
      elsif Parent = null then
         return Is_In (List, Object);
      elsif Object = null then
         return False;
      end if;
      declare
         Object_Index : Integer;
         Parent_Index : Integer;
         That         : Catalogue_Record_Ptr;
         This         : Catalogue_Record_Ptr;
      begin
         Object_Index := Find (List, Object);
         if Object_Index < 0 then
            return False;
         end if;
         Parent_Index := Find (List, Parent);
         if Object_Index < 0 then
            return False;
         end if;
         That :=
            Catalogue_Record
            (  Get (List.By_Ptr, Object_Index).all
            ) 'Unchecked_Access;
         This :=
            Catalogue_Record
            (  Get (List.By_Ptr, Parent_Index).all
            ) 'Unchecked_Access.Parent;
         while This /= null loop
            if This = That then
               return True;
            end if;
            This := This.Parent;
         end loop;
         return False;
      end;
   end Is_Descendant;

   function Is_Descendant_Or_Same
            (  List   : Catalogue;
               Object : Catalogue_Record_Ptr;
               Parent : Catalogue_Record_Ptr
            )  return Boolean is
   begin
      if Parent = null or else Object = Parent then
         return True;
      end if;
      if Object = null then
         return False;
      end if;
      declare
         This : Catalogue_Record_Ptr := Object.Parent;
      begin
         while This /= null loop
            if This = Parent then
               return True;
            end if;
            This := This.Parent;
         end loop;
         return False;
      end;
   end Is_Descendant_Or_Same;

   function Is_In (List : Catalogue; ID : Key)
      return Boolean is
   begin
      return Find (List, ID) > 0;
   end Is_In;

   function Is_In (List : Catalogue; ID : Deposit_Ptr)
      return Boolean is
   begin
      return Find (List, ID) > 0;
   end Is_In;

   function Is_In (List : Catalogue; ID : String; Parent : Deposit_Ptr)
      return Boolean is
   begin
      return Find (List, ID, Get_As (List, Parent, As_Old)) > 0;
   end Is_In;

   function Is_In (List : Catalogue; ID : String; Parent : Key)
      return Boolean is
   begin
      return Find (List, ID, Get_As (List, Parent, As_Old)) > 0;
   end Is_In;

   procedure Notify_Deletion_By_Key
             (  List   : in out Catalogue;
                Object : Key
             )  is
      Dependants : Deposit_List;
      This       : Deposit_Handle;
   begin
      for Index in 1..Positive'Last loop
         -- For each backward link to the object
         declare
            Link_Key : constant Persistent_Key'Class :=
                       Get_Dependant (List.Storage, Object, Index);
         begin
            if not Is_Valid (This) then
               -- The object is not resident
               This := Get (List.Storage, Object);
            end if;
            Add (Dependants, Get (List.Storage, Key (Link_Key)));
         end;
      end loop;
   exception
      when End_Error =>
         if Is_Valid (This) then
            --
            -- No  more  backward  links.  Now List contains all objects
            -- dependant on this one. Next we notify them about possible
            -- further deletion of the Object.
            --
            Delete (Ptr (This).all);
            Invalidate (This);
         end if;
      when Error : others =>
         On_Error
         (  List.Storage.all,
            "Notifying deletion by key",
            Error
         );
   end Notify_Deletion_By_Key;

   procedure Rename
             (  Store      : in out Data_Bank'Class;
                List       : in out Catalogue;
                Old        : Catalogue_Record_Ptr;
                New_Name   : String;
                New_Parent : Catalogue_Record_Ptr
             )  is
      procedure Rename_Unchecked
                (  Old    : Catalogue_Record_Ptr;
                   Name   : String;
                   Parent : Catalogue_Record_Ptr
                )  is
         Link : constant Backward_Link_Ptr :=
                new Catalogue_Record (Name'Length);
         Item : Catalogue_Record renames Catalogue_Record (Link.all);
      begin
         Increment_Count (Item);
         Item.List     := Old.List;
         Item.External := Old.External;
         Item.Name     := Name;
         if Parent /= null then
            Item.Parent := Parent;
            Increment_Count (This (Parent.all).all);
         end if;
         Attach (Link, This (Old.all));
         Delete (List, Old);
         Add (List.By_Ptr, Item'Unchecked_Access);
         Add (List.By_Key, Item'Unchecked_Access);
         if Name'Length = 0 then
            declare
               Reference : Deposit_Handle;
            begin
               Deposit_Handles.Set (Reference, This (Link.all));
               Delete (Ptr (Reference).all);
            end;
         else
            Add (List.By_Name, Item'Unchecked_Access);
         end if;
      exception
         when others =>
            Delete (List, Item'Unchecked_Access);
            raise;
      end Rename_Unchecked;
   begin
      if Old.Parent = New_Parent and then Old.Name = New_Name then
         return;
      end if;
      if New_Name'Length > 0 then
         --
         -- Renaming
         --
         if Find (List, New_Name, New_Parent) > 0 then
            Raise_Exception
            (  Name_Error'Identity,
               (  "Object "
               &  Quote (New_Name)
               &  " already exists"
            )  );
         end if;
         if Is_Descendant_Or_Same (List, New_Parent, Old) then
            Raise_Exception
            (  Name_Error'Identity,
               (  "Object "
               &  Quote (New_Name)
               &  " is renamed to a self-descendant"
            )  );
         end if;
         if New_Parent = null then
            -- Renamed to root-level
            Rename
            (  Store,
               Old.External,
               New_Name,
               Persistent.Data_Bank.Index.Null_Key
            );
         else
            -- Renamed to have a parent
            Rename (Store, Old.External, New_Name, New_Parent.External);
         end if;
      else
         --
         -- Recursively unnaming all indexed descendants
         --
         declare
            Descendants : Ptr_Map.Set;
         begin
            Get_Descendants (List, Old, Descendants);
            for Index in 1..Get_Size (Descendants) loop
               Rename_Unchecked
               (  Catalogue_Record_Ptr (Get (Descendants, Index)),
                  "",
                  null
               );
            end loop;
         end;
         Unname_By_Key (Store, List, Old.External);
      end if;
      --
      -- Renaming / unnaming in the index
      --
      Rename_Unchecked (Old, New_Name, New_Parent);
   end Rename;

   procedure Rename
             (  Store      : in out Data_Bank'Class;
                List       : in out Catalogue;
                Old_Name   : String;
                Old_Parent : Deposit_Ptr;
                New_Name   : String;
                New_Parent : Deposit_Ptr
             )  is
      Where : constant Catalogue_Record_Ptr :=
              Get_As (List, Old_Parent, As_Old);
      Index : constant Integer := Find (List, Old_Name, Where);
   begin
      if Index > 0 then
         -- The object being renamed is in the index
         Rename
         (  Store,
            List,
            Catalogue_Record_Ptr (Get (List.By_Name, Index)),
            New_Name,
            Get_As (List, New_Parent, As_New)
         );
      elsif Where = null then
         -- The object is not in the index and it is a root-level one
         declare
            Object_Key : constant Key :=
                         Key
                         (  Find
                            (  Store'Unchecked_Access,
                               Old_Name,
                               Persistent.Data_Bank.Index.Null_Key
                         )  );
         begin
            if Null_Key = Object_Key then
               Raise_Exception
               (  End_Error'Identity,
                  "Object " & Old_Name & " does not exist"
               );
            else
               Rename
               (  Store,
                  Object_Key,
                  New_Name,
                  Get_New_Parent_Key (List, New_Parent)
               );
            end if;
         end;
      else
         -- The object is not in the index
         declare
            Object_Key : constant Key :=
                         Key
                         (  Find
                            (  Store'Unchecked_Access,
                               Old_Name,
                               Where.External
                         )  );
         begin
            if Null_Key = Object_Key then
               Raise_Exception
               (  End_Error'Identity,
                  "Object " & Old_Name & " does not exist"
               );
            else
               Rename
               (  Store,
                  Object_Key,
                  New_Name,
                  Get_New_Parent_Key (List, New_Parent)
               );
            end if;
         end;
      end if;
   end Rename;

   procedure Rename
             (  Store      : in out Data_Bank'Class;
                List       : in out Catalogue;
                Object     : Deposit_Ptr;
                New_Name   : String;
                New_Parent : Deposit_Ptr
             )  is
      Index : constant Integer := Find (List, Object);
   begin
      if Index <= 0 then
         raise Constraint_Error;
      end if;
      Rename
      (  Store,
         List,
         Catalogue_Record_Ptr (Get (List.By_Ptr, Index)),
         New_Name,
         Get_As (List, New_Parent, As_New)
      );
   end Rename;

   procedure Unname
             (  Store  : in out Data_Bank'Class;
                List   : in out Catalogue;
                Name   : String;
                Parent : Deposit_Ptr
             )  is
      Where : constant Catalogue_Record_Ptr :=
              Get_As (List, Parent, As_Old);
      Index : constant Integer := Find (List, Name, Where);
   begin
      if Index > 0 then
         -- The object is in the index
         declare
            Item : constant Catalogue_Record_Ptr :=
                      Catalogue_Record_Ptr (Get (List.By_Name, Index));
            Object : Deposit_Handle := Ref (This (Item.all));
         begin
            --
            -- Ensure that the object will not be deleted in the  course
            -- of the notification operation
            --
            Notify_Deletion_By_Key (List, Item.External);
            Rename (Store, List, Item, "", null);
         end;
      else
         -- The object is not in the index
         declare
            function Parent_Key return Key is
            begin
               if Where = null then
                  return Persistent.Data_Bank.Index.Null_Key;
               else
                  return Where.External;
               end if;
            end Parent_Key;
         begin
            declare
               Object_Key : constant Key :=
                            Key (Find (Store'Access, Name, Parent_Key));
            begin
               if Null_Key /= Object_Key then
                  Notify_Deletion_By_Key (List, Object_Key);
                  Unname_By_Key (Store, List, Object_Key);
               end if;
            end;
         exception
            when End_Error =>
               null;
         end;
      end if;
   end Unname;

   procedure Unname
             (  Store  : in out Data_Bank'Class;
                List   : in out Catalogue;
                Object : Deposit_Ptr
             )  is
      Index : constant Integer := Find (List, Object);
   begin
      if Index > 0 then
         Rename
         (  Store,
            List,
            Catalogue_Record_Ptr (Get (List.By_Ptr, Index)),
            "",
            null
         );
      end if;
   end Unname;

   procedure Unname_By_Key
             (  Store : in out Data_Bank'Class;
                List  : in out Catalogue;
                ID    : Key
             )  is
      function Is_Named (This : Key) return Boolean is
         Parent : aliased Key;
      begin
         declare
            Name : String :=
                      Get_Name (Store'Access, This, Parent'Access);
         begin
            return True;
         end;
      exception
         when Name_Error | End_Error =>
            return False;
      end Is_Named;
      Unnamed : Key_Array;
      Removed : Key_Array;
      This    : Key     := ID;
      From    : Integer := Integer'First;
      To      : Integer := Integer'First;
   begin
      loop
         Get_Children (Store, This, Unnamed, To);
         --
         -- Because  the  parent  object is not in the index none of its
         -- successors can be there. For this reason there is no need to
         -- check if  a  child  is  in  the  index  and  handle  it  any
         -- different.
         --
         if Has_Dependants (Store'Access, This, False) then
            --
            -- There are other objects using this one
            --
            Unname (Store, This);
         else
            --
            -- The  object  is  collected. All the objects it refers are
            -- checked for collection
            --
            declare
               From : Integer := Integer'First;
               To   : Integer := Integer'First;
            begin
               Get_References (Store, This, Removed, To);
               Notify_Deletion_By_Key (List, This);
               Delete (Store, This);
               while From < To loop
                  This := Key (Get (Removed, From));
                  From := From + 1;
                  --
                  -- Only the object outside the index should be checked
                  -- for collection.  Memory-resident  objects  will  be
                  -- collected later on destruction.
                  --
                  if not
                     (  Is_In (List, This)
                     or else
                        Is_Named (This)
                     or else
                        Has_Dependants
                        (  Store'Unchecked_Access,
                           This,
                           False
                     )  )
                  then
                     Get_References (Store, This, Removed, To);
                     Notify_Deletion_By_Key (List, This);
                     Delete (Store, This);
                  end if;
               end loop;
            end;
         end if;
         exit when From = To;
         This := Key (Get (Unnamed, From));
         From := From + 1;
      end loop;
   end Unname_By_Key;

end Persistent.Data_Bank.Index;