OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [ca/] [ca110041.a] - Diff between revs 294 and 384

Only display areas with differences | Details | Blame | View Log

Rev 294 Rev 384
-- CA110041.A
-- CA110041.A
--
--
--                             Grant of Unlimited Rights
--                             Grant of Unlimited Rights
--
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
--     unlimited rights in the software and documentation contained herein.
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making
--     this public release, the Government intends to confer upon all
--     this public release, the Government intends to confer upon all
--     recipients unlimited rights  equal to those held by the Government.
--     recipients unlimited rights  equal to those held by the Government.
--     These rights include rights to use, duplicate, release or disclose the
--     These rights include rights to use, duplicate, release or disclose the
--     released technical data and computer software in whole or in part, in
--     released technical data and computer software in whole or in part, in
--     any manner and for any purpose whatsoever, and to have or permit others
--     any manner and for any purpose whatsoever, and to have or permit others
--     to do so.
--     to do so.
--
--
--                                    DISCLAIMER
--                                    DISCLAIMER
--
--
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     DISCLOSED ARE AS IS.  THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--     PARTICULAR PURPOSE OF SAID MATERIAL.
--*
--*
--
--
-- OBJECTIVE:
-- OBJECTIVE:
--      See CA110042.AM
--      See CA110042.AM
--
--
-- TEST DESCRIPTION:
-- TEST DESCRIPTION:
--      See CA110042.AM
--      See CA110042.AM
--
--
-- TEST FILES:
-- TEST FILES:
--      The following files comprise this test:
--      The following files comprise this test:
--
--
--         CA110040.A
--         CA110040.A
--      => CA110041.A
--      => CA110041.A
--         CA110042.AM
--         CA110042.AM
--
--
-- CHANGE HISTORY:
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      06 Dec 94   SAIC    ACVC 2.0
--      26 Apr 96   SAIC    ACVC 2.1: Modified prologue.
--      26 Apr 96   SAIC    ACVC 2.1: Modified prologue.
--
--
--!
--!
package CA110040.CA110041 is         -- Child Package Computer_System.Manager
package CA110040.CA110041 is         -- Child Package Computer_System.Manager
   type User_Account is new Account with private;
   type User_Account is new Account with private;
   procedure Initialize_User_Account (Acct : out User_Account);
   procedure Initialize_User_Account (Acct : out User_Account);
private
private
-- The private portion of this spec demonstrates that components contained
-- The private portion of this spec demonstrates that components contained
-- in the visible part of the parent are directly visible in the private
-- in the visible part of the parent are directly visible in the private
-- part of a public child.
-- part of a public child.
   type Account_Access_Type is (None, Guest, User, System);
   type Account_Access_Type is (None, Guest, User, System);
   type User_Account is new Account with                   -- Parent type.
   type User_Account is new Account with                   -- Parent type.
      record
      record
         Privilege : Account_Access_Type := None;
         Privilege : Account_Access_Type := None;
      end record;
      end record;
   System_Account : User_Account :=
   System_Account : User_Account :=
     (User_ID   => Administrator_Account.User_ID,          -- Parent constant.
     (User_ID   => Administrator_Account.User_ID,          -- Parent constant.
      Privilege => System);                                -- User_ID has been
      Privilege => System);                                -- User_ID has been
                                                           -- set to 1.
                                                           -- set to 1.
   Auditor_Account : User_Account :=
   Auditor_Account : User_Account :=
     (User_ID   => Next_Available_ID,                      -- Parent function.
     (User_ID   => Next_Available_ID,                      -- Parent function.
      Privilege => System);                                -- User_ID has been
      Privilege => System);                                -- User_ID has been
                                                           -- set to 2.
                                                           -- set to 2.
   Total_Authorized_Accounts : System_Account_Capacity
   Total_Authorized_Accounts : System_Account_Capacity
     renames Total_Accounts;                               -- Parent object.
     renames Total_Accounts;                               -- Parent object.
   Unauthorized_Account : exception
   Unauthorized_Account : exception
     renames Illegal_Account;                              -- Parent exception
     renames Illegal_Account;                              -- Parent exception
end CA110040.CA110041;             -- Child Package Computer_System.Manager
end CA110040.CA110041;             -- Child Package Computer_System.Manager
     --=================================================================--
     --=================================================================--
                                 -- Child Package body Computer_System.Manager
                                 -- Child Package body Computer_System.Manager
package body CA110040.CA110041 is
package body CA110040.CA110041 is
   function  Account_Limit_Reached  return Boolean is
   function  Account_Limit_Reached  return Boolean is
   begin
   begin
      if Total_Authorized_Accounts = Maximum_System_Accounts then
      if Total_Authorized_Accounts = Maximum_System_Accounts then
         return (True);
         return (True);
      else
      else
         return (False);
         return (False);
      end if;
      end if;
   end Account_Limit_Reached;
   end Account_Limit_Reached;
   ---------------------------------------------------------------
   ---------------------------------------------------------------
   function Valid_Account (Acct : User_Account) return Boolean is
   function Valid_Account (Acct : User_Account) return Boolean is
      Result : Boolean := False;
      Result : Boolean := False;
   begin
   begin
      if (Acct.User_ID /= System_Account.User_ID) and
      if (Acct.User_ID /= System_Account.User_ID) and
         (Acct.User_ID /= Auditor_Account.User_ID)
         (Acct.User_ID /= Auditor_Account.User_ID)
      then
      then
         Result := True;
         Result := True;
      end if;
      end if;
      return (Result);
      return (Result);
   end Valid_Account;
   end Valid_Account;
   ---------------------------------------------------------------
   ---------------------------------------------------------------
   procedure Initialize_User_Account (Acct : out User_Account) is
   procedure Initialize_User_Account (Acct : out User_Account) is
   begin
   begin
      if Account_Limit_Reached then
      if Account_Limit_Reached then
         raise Account_Limit_Exceeded;
         raise Account_Limit_Exceeded;
      else
      else
         Acct.User_ID := Next_Available_ID;
         Acct.User_ID := Next_Available_ID;
         Acct.Privilege := User;
         Acct.Privilege := User;
      end if;
      end if;
      if not Valid_Account (Acct) then
      if not Valid_Account (Acct) then
         raise Unauthorized_Account;
         raise Unauthorized_Account;
      end if;
      end if;
   end Initialize_User_Account;
   end Initialize_User_Account;
end CA110040.CA110041;          -- Child Package body Computer_System.Manager
end CA110040.CA110041;          -- Child Package body Computer_System.Manager
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.