File : bc-containers-collections.adb
-- Copyright (C) 1994-2000 Grady Booch and Simon Wright.
-- All Rights Reserved.
--
-- This program is free software; you can redistribute it
-- and/or modify it under the terms of the Ada Community
-- License which comes with this Library.
--
-- This program 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 Ada Community License for more details.
-- You should have received a copy of the Ada Community
-- License with this library, in the file named "Ada Community
-- License" or "ACL". If not, contact the author of this library
-- for a copy.
--
-- $Id: bc-containers-collections.adb,v 1.1.2.4 2000/01/03 17:08:15 simon Exp $
with System;
package body BC.Containers.Collections is
function Are_Equal (Left, Right : Collection'Class) return Boolean is
begin
if System."=" (Left'Address, Right'Address) then
return True;
end if;
if Cardinality (Left) /= Cardinality (Right) then
return False;
end if;
declare
Left_Iter : Iterator := New_Iterator (Left);
Right_Iter : Iterator := New_Iterator (Right);
begin
while not Is_Done (Left_Iter) and then
not Is_Done (Right_Iter) loop
if Current_Item (Left_Iter) /= Current_Item (Right_Iter) then
return False;
end if;
Next (Left_Iter);
Next (Right_Iter);
end loop;
return True;
end;
end Are_Equal;
procedure Copy (From : Collection'Class; To : in out Collection'Class) is
Iter : Iterator := New_Iterator (From);
begin
if System."/=" (From'Address, To'Address) then
Purge (To);
Reset (Iter);
while not Is_Done (Iter) loop
Add (To, Current_Item (Iter));
Next (Iter);
end loop;
end if;
end Copy;
procedure Add (C : in out Collection; Elem : Item) is
begin
raise Should_Have_Been_Overridden;
end Add;
procedure Lock (C : in out Collection) is
begin
null;
end Lock;
procedure Unlock (C : in out Collection) is
begin
null;
end Unlock;
procedure Initialize (It : in out Collection_Iterator) is
begin
Reset (It);
end Initialize;
procedure Reset (It : in out Collection_Iterator) is
begin
if Cardinality (It.C.all) = 0 then
It.Index := 0;
else
It.Index := 1;
end if;
end Reset;
function Is_Done (It : Collection_Iterator) return Boolean is
begin
return It.Index = 0 or else It.Index > Cardinality (It.C.all);
end Is_Done;
procedure Next (It : in out Collection_Iterator) is
begin
It.Index := It.Index + 1;
end Next;
function Current_Item (It : Collection_Iterator) return Item is
begin
if Is_Done (It) then
raise BC.Not_Found;
end if;
return Item_At (It.C.all, It.Index).all;
end Current_Item;
function Current_Item (It : Collection_Iterator) return Item_Ptr is
begin
if Is_Done (It) then
raise BC.Not_Found;
end if;
return Item_At (It.C.all, It.Index);
end Current_Item;
procedure Delete_Item_At (It : Collection_Iterator) is
begin
if Is_Done (It) then
raise BC.Not_Found;
end if;
Remove (It.C.all, It.Index);
end Delete_Item_At;
end BC.Containers.Collections;