-- Copyright 1994 Grady Booch -- Copyright 1998-2002 Simon Wright -- This package is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 2, or -- (at your option) any later version. This package 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 distributed with this package; see file COPYING. If not, -- write to the Free Software Foundation, 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. -- $RCSfile: bc-containers-sets-dynamic.ads,v $ -- $Revision: 1.12.2.4 $ -- $Date: 2002/12/29 16:41:50 $ -- $Author: simon $ with BC.Support.Dynamic; with BC.Support.Hash_Tables; with System.Storage_Pools; generic with function Hash (V : Item) return Natural is <>; Buckets : Positive; Storage : in out System.Storage_Pools.Root_Storage_Pool'Class; Initial_Size : Positive := 10; package BC.Containers.Sets.Dynamic is pragma Elaborate_Body; -- A set denotes a collection of items, drawn from some -- well-defined universe. A set may not contain duplicate items. -- The hash function (the generic parameter Hash) determines the -- allocation of items to hash buckets. The value returned must -- not change during the lifetime of a given Item. The range of -- hash values need not be constrained to the number of buckets in -- the set. -- The hash function must satisfy the condition that, for objects -- A and B, if A = B, then Hash (A) must equal Hash (B). The hash -- function should attempt to spread the set of possible items -- uniformly across the number of buckets. The quality of the hash -- function has a significant impact upon performance. type Set is new Abstract_Set with private; function Null_Container return Set; function Create (Size : Positive) return Set; -- Creates a new Dynamic Set each of whose buckets is preallocated -- for 'Size' elements procedure Clear (S : in out Set); -- Empty the set of all items. procedure Add (S : in out Set; I : Item; Added : out Boolean); -- Add the item to the set. If the item is not already a distinct -- member of the set, copy the item and add it to the set and set -- Added to True. If the item already exists, then set Added to -- False. procedure Add (S : in out Set; I : Item); -- Add the item to the set. If the item is not already a distinct -- member of the set, copy the item and add it to the set. procedure Remove (S : in out Set; I : Item); -- If the item is not a member of the set, raise -- BC.Not_Found. Otherwise, remove the item from the set. function Extent (S : Set) return Natural; -- Return the number of items in the set. function Is_Empty (S : Set) return Boolean; -- Return True if and only if there are no items in the set. function Is_Member (S : Set; I : Item) return Boolean; -- Return True if and only if the item exists in the set. procedure Preallocate (S : in out Set; Size : Positive); -- Allocates 'Size' additional storage elements for each bucket of -- the Set. procedure Set_Chunk_Size (S : in out Set; Size : Positive); -- Establishes the Size each bucket of the Set will grow if the -- Set exhausts its current size. function Chunk_Size (S : Set) return Positive; -- Returns the Chunk_Size. function New_Iterator (For_The_Set : Set) return Iterator'Class; -- Return a reset Iterator bound to the specific Set. private package IC is new BC.Support.Dynamic (Item => Item, Item_Ptr => Item_Ptr, Storage => Storage, Initial_Size => Initial_Size); use IC; package Items is new BC.Support.Hash_Tables.Item_Signature (Item => Item, Item_Ptr => Item_Ptr, Item_Container => IC.Dyn_Node); -- We need a dummy type for the Value component of the hash table. type Boolean_Ptr is access all Boolean; package VC is new BC.Support.Dynamic (Item => Boolean, Item_Ptr => Boolean_Ptr, Storage => Storage, Initial_Size => Initial_Size); use VC; package Values is new BC.Support.Hash_Tables.Value_Signature (Value => Boolean, Value_Ptr => Boolean_Ptr, Value_Container => VC.Dyn_Node); package Tables is new BC.Support.Hash_Tables.Tables (Items => Items, Values => Values); type Set is new Abstract_Set with record Rep : Tables.Table (Number_Of_Buckets => Buckets); end record; -- Iterators type Dynamic_Set_Iterator is new Set_Iterator with null record; procedure Reset (It : in out Dynamic_Set_Iterator); procedure Next (It : in out Dynamic_Set_Iterator); function Is_Done (It : Dynamic_Set_Iterator) return Boolean; function Current_Item (It : Dynamic_Set_Iterator) return Item; function Current_Item_Ptr (It : Dynamic_Set_Iterator) return Item_Ptr; procedure Delete_Item_At (It : in out Dynamic_Set_Iterator); end BC.Containers.Sets.Dynamic;