home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-timoio.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  130 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --               A D A . T E X T _ I O . M O D U L A R _ I O                --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --        Copyright (c) 1992,1993,1994, 1995 NYU, All Rights Reserved       --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Ada.Text_IO.Modular_Aux;
  27.  
  28. with System.Unsigned_Types; use System.Unsigned_Types;
  29.  
  30. package body Ada.Text_IO.Modular_IO is
  31.  
  32.    package Aux renames Ada.Text_IO.Modular_Aux;
  33.  
  34.    ---------
  35.    -- Get --
  36.    ---------
  37.  
  38.    procedure Get
  39.      (File  : in File_Type;
  40.       Item  : out Num;
  41.       Width : in Field := 0)
  42.    is
  43.    begin
  44.       if Num'Size > Unsigned'Size then
  45.          Aux.Get_LLU (File, Long_Long_Unsigned (Item), Width);
  46.       else
  47.          Aux.Get_Uns (File, Unsigned (Item), Width);
  48.       end if;
  49.  
  50.    exception
  51.       when Constraint_Error => raise Data_Error;
  52.    end Get;
  53.  
  54.    procedure Get
  55.      (Item  : out Num;
  56.       Width : in Field := 0)
  57.    is
  58.    begin
  59.       if Num'Size > Unsigned'Size then
  60.          Aux.Get_LLU (Current_In, Long_Long_Unsigned (Item), Width);
  61.       else
  62.          Aux.Get_Uns (Current_In, Unsigned (Item), Width);
  63.       end if;
  64.  
  65.    exception
  66.       when Constraint_Error => raise Data_Error;
  67.    end Get;
  68.  
  69.    procedure Get
  70.      (From : in String;
  71.       Item : out Num;
  72.       Last : out Positive)
  73.    is
  74.    begin
  75.       if Num'Size > Unsigned'Size then
  76.          Aux.Gets_LLU (From, Long_Long_Unsigned (Item), Last);
  77.       else
  78.          Aux.Gets_Uns (From, Unsigned (Item), Last);
  79.       end if;
  80.  
  81.    exception
  82.       when Constraint_Error => raise Data_Error;
  83.    end Get;
  84.  
  85.    ---------
  86.    -- Put --
  87.    ---------
  88.  
  89.    procedure Put
  90.      (File  : in File_Type;
  91.       Item  : in Num;
  92.       Width : in Field := Default_Width;
  93.       Base  : in Number_Base := Default_Base)
  94.    is
  95.    begin
  96.       if Num'Size > Unsigned'Size then
  97.          Aux.Put_LLU (File, Long_Long_Unsigned (Item), Width, Base);
  98.       else
  99.          Aux.Put_Uns (File, Unsigned (Item), Width, Base);
  100.       end if;
  101.    end Put;
  102.  
  103.    procedure Put
  104.      (Item  : in Num;
  105.       Width : in Field := Default_Width;
  106.       Base  : in Number_Base := Default_Base)
  107.    is
  108.    begin
  109.       if Num'Size > Unsigned'Size then
  110.          Aux.Put_LLU (Current_Out, Long_Long_Unsigned (Item), Width, Base);
  111.       else
  112.          Aux.Put_Uns (Current_Out, Unsigned (Item), Width, Base);
  113.       end if;
  114.    end Put;
  115.  
  116.    procedure Put
  117.      (To   : out String;
  118.       Item : in Num;
  119.       Base : in Number_Base := Default_Base)
  120.    is
  121.    begin
  122.       if Num'Size > Unsigned'Size then
  123.          Aux.Puts_LLU (To, Long_Long_Unsigned (Item), Base);
  124.       else
  125.          Aux.Puts_Uns (To, Unsigned (Item), Base);
  126.       end if;
  127.    end Put;
  128.  
  129. end Ada.Text_IO.Modular_IO;
  130.