-- 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-unbounded.adb,v $ -- $Revision: 1.10.2.4 $ -- $Date: 2002/12/29 16:41:51 $ -- $Author: simon $ with BC.Support.Exceptions; with System.Address_To_Access_Conversions; package body BC.Containers.Sets.Unbounded is package BSE renames BC.Support.Exceptions; procedure Assert is new BSE.Assert ("BC.Containers.Sets.Unbounded"); procedure Clear (S : in out Unconstrained_Set) is begin Tables.Clear (S.Rep); end Clear; procedure Add (S : in out Unconstrained_Set; I : Item; Added : out Boolean) is begin if Tables.Is_Bound (S.Rep, I) then Added := False; else Tables.Bind (S.Rep, I, True); Added := True; end if; end Add; procedure Add (S : in out Unconstrained_Set; I : Item) is begin if not Tables.Is_Bound (S.Rep, I) then Tables.Bind (S.Rep, I, True); end if; end Add; procedure Remove (S : in out Unconstrained_Set; I : Item) is begin Assert (Tables.Is_Bound (S.Rep, I), BC.Not_Found'Identity, "Remove", BSE.Missing); Tables.Unbind (S.Rep, I); end Remove; function Extent (S : Unconstrained_Set) return Natural is begin return Tables.Extent (S.Rep); end Extent; function Is_Empty (S : Unconstrained_Set) return Boolean is begin return Tables.Extent (S.Rep) = 0; end Is_Empty; function Is_Member (S : Unconstrained_Set; I : Item) return Boolean is begin return Tables.Is_Bound (S.Rep, I); end Is_Member; package Address_Conversions is new System.Address_To_Access_Conversions (Unconstrained_Set); function New_Iterator (For_The_Set : Unconstrained_Set) return Iterator'Class is Result : Unbounded_Set_Iterator; begin Result.For_The_Container := Address_Conversions.To_Pointer (For_The_Set'Address).all'Access; Reset (Result); return Result; end New_Iterator; -- Null containers Empty_Container : Set; pragma Warnings (Off, Empty_Container); function Null_Container return Unconstrained_Set is begin return Empty_Container; end Null_Container; -- Iterators procedure Reset (It : in out Unbounded_Set_Iterator) is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin Tables.Reset (S.Rep, It.Bucket_Index, It.Index); end Reset; procedure Next (It : in out Unbounded_Set_Iterator) is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin Tables.Next (S.Rep, It.Bucket_Index, It.Index); end Next; function Is_Done (It : Unbounded_Set_Iterator) return Boolean is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin return Tables.Is_Done (S.Rep, It.Bucket_Index, It.Index); end Is_Done; function Current_Item (It : Unbounded_Set_Iterator) return Item is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin return Tables.Current_Item_Ptr (S.Rep, It.Bucket_Index, It.Index).all; end Current_Item; function Current_Item_Ptr (It : Unbounded_Set_Iterator) return Item_Ptr is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin return Tables.Current_Item_Ptr (S.Rep, It.Bucket_Index, It.Index); end Current_Item_Ptr; procedure Delete_Item_At (It : in out Unbounded_Set_Iterator) is S : Unconstrained_Set'Class renames Unconstrained_Set'Class (It.For_The_Container.all); begin Tables.Delete_Item_At (S.Rep, It.Bucket_Index, It.Index); end Delete_Item_At; end BC.Containers.Sets.Unbounded;