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-tiinio.adb < prev    next >
Text File  |  1996-09-28  |  4KB  |  128 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --               A D A . T E X T _ I O . I N T E G E R _ I O                --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  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.Integer_Aux;
  27.  
  28. package body Ada.Text_IO.Integer_IO is
  29.  
  30.    package Aux renames Ada.Text_IO.Integer_Aux;
  31.  
  32.    ---------
  33.    -- Get --
  34.    ---------
  35.  
  36.    procedure Get
  37.      (File  : in File_Type;
  38.       Item  : out Num;
  39.       Width : in Field := 0)
  40.    is
  41.    begin
  42.       if Num'Size > Integer'Size then
  43.          Aux.Get_LLI (File, Long_Long_Integer (Item), Width);
  44.       else
  45.          Aux.Get_Int (File, Integer (Item), Width);
  46.       end if;
  47.  
  48.    exception
  49.       when Constraint_Error => raise Data_Error;
  50.    end Get;
  51.  
  52.    procedure Get
  53.      (Item  : out Num;
  54.       Width : in Field := 0)
  55.    is
  56.    begin
  57.       if Num'Size > Integer'Size then
  58.          Aux.Get_LLI (Current_In, Long_Long_Integer (Item), Width);
  59.       else
  60.          Aux.Get_Int (Current_In, Integer (Item), Width);
  61.       end if;
  62.  
  63.    exception
  64.       when Constraint_Error => raise Data_Error;
  65.    end Get;
  66.  
  67.    procedure Get
  68.      (From : in String;
  69.       Item : out Num;
  70.       Last : out Positive)
  71.    is
  72.    begin
  73.       if Num'Size > Integer'Size then
  74.          Aux.Gets_LLI (From, Long_Long_Integer (Item), Last);
  75.       else
  76.          Aux.Gets_Int (From, Integer (Item), Last);
  77.       end if;
  78.  
  79.    exception
  80.       when Constraint_Error => raise Data_Error;
  81.    end Get;
  82.  
  83.    ---------
  84.    -- Put --
  85.    ---------
  86.  
  87.    procedure Put
  88.      (File  : in File_Type;
  89.       Item  : in Num;
  90.       Width : in Field := Default_Width;
  91.       Base  : in Number_Base := Default_Base)
  92.    is
  93.    begin
  94.       if Num'Size > Integer'Size then
  95.          Aux.Put_LLI (File, Long_Long_Integer (Item), Width, Base);
  96.       else
  97.          Aux.Put_Int (File, Integer (Item), Width, Base);
  98.       end if;
  99.    end Put;
  100.  
  101.    procedure Put
  102.      (Item  : in Num;
  103.       Width : in Field := Default_Width;
  104.       Base  : in Number_Base := Default_Base)
  105.    is
  106.    begin
  107.       if Num'Size > Integer'Size then
  108.          Aux.Put_LLI (Current_Out, Long_Long_Integer (Item), Width, Base);
  109.       else
  110.          Aux.Put_Int (Current_Out, Integer (Item), Width, Base);
  111.       end if;
  112.    end Put;
  113.  
  114.    procedure Put
  115.      (To   : out String;
  116.       Item : in Num;
  117.       Base : in Number_Base := Default_Base)
  118.    is
  119.    begin
  120.       if Num'Size > Integer'Size then
  121.          Aux.Puts_LLI (To, Long_Long_Integer (Item), Base);
  122.       else
  123.          Aux.Puts_Int (To, Integer (Item), Base);
  124.       end if;
  125.    end Put;
  126.  
  127. end Ada.Text_IO.Integer_IO;
  128.