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-tideio.adb < prev    next >
Text File  |  1996-09-28  |  5KB  |  147 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --               A D A . T E X T _ I O . D E C I M A L _ 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.Decimal_Aux;
  27.  
  28. package body Ada.Text_IO.Decimal_IO is
  29.  
  30.    package Aux renames Ada.Text_IO.Decimal_Aux;
  31.  
  32.    Scale : constant Integer := Num'Scale;
  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 > Integer'Size then
  45.          Item := Num (Aux.Get_LLD (File, Width, Scale));
  46.          --  Item := Num'Fixed_Value (Aux.Get_LLD (File, Width, Scale));
  47.          --  above is what we should write, but gets assert error ???
  48.  
  49.       else
  50.          Item := Num (Aux.Get_Dec (File, Width, Scale));
  51.          --  Item := Num'Fixed_Value (Aux.Get_Dec (File, Width, Scale));
  52.          --  above is what we should write, but gets assert error ???
  53.       end if;
  54.  
  55.    exception
  56.       when Constraint_Error => raise Data_Error;
  57.    end Get;
  58.  
  59.    procedure Get
  60.      (Item  : out Num;
  61.       Width : in Field := 0)
  62.    is
  63.    begin
  64.       Get (Current_In, Item, Width);
  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.          --  Item := Num'Fixed_Value
  75.          --  should write above, but gets assert error ???
  76.          Item := Num
  77.                    (Aux.Gets_LLD (From, Last'Unrestricted_Access, Scale));
  78.       else
  79.          --  Item := Num'Fixed_Value
  80.          --  should write above, but gets assert error ???
  81.          Item := Num
  82.                    (Aux.Gets_Dec (From, Last'Unrestricted_Access, Scale));
  83.       end if;
  84.  
  85.    exception
  86.       when Constraint_Error => raise Data_Error;
  87.    end Get;
  88.  
  89.    ---------
  90.    -- Put --
  91.    ---------
  92.  
  93.    procedure Put
  94.      (File : in File_Type;
  95.       Item : in Num;
  96.       Fore : in Field := Default_Fore;
  97.       Aft  : in Field := Default_Aft;
  98.       Exp  : in Field := Default_Exp)
  99.    is
  100.    begin
  101.       if Num'Size > Integer'Size then
  102.          Aux.Put_LLD
  103. --           (File, Long_Long_Integer'Integer_Value (Item),
  104. --  ???
  105.            (File, Long_Long_Integer (Item),
  106.             Fore, Aft, Exp, Scale);
  107.       else
  108.          Aux.Put_Dec
  109. --           (File, Integer'Integer_Value (Item), Fore, Aft, Exp, Scale);
  110. --  ???
  111.            (File, Integer (Item), Fore, Aft, Exp, Scale);
  112.  
  113.       end if;
  114.    end Put;
  115.  
  116.    procedure Put
  117.      (Item : in Num;
  118.       Fore : in Field := Default_Fore;
  119.       Aft  : in Field := Default_Aft;
  120.       Exp  : in Field := Default_Exp)
  121.    is
  122.    begin
  123.       Put (Current_Out, Item, Aft, Exp);
  124.    end Put;
  125.  
  126.    procedure Put
  127.      (To   : out String;
  128.       Item : in Num;
  129.       Aft  : in Field := Default_Aft;
  130.       Exp  : in Field := Default_Exp)
  131.    is
  132.    begin
  133.       if Num'Size > Integer'Size then
  134. --       Aux.Puts_LLD
  135. --         (To, Long_Long_Integer'Integer_Value (Item), Aft, Exp, Scale);
  136. --  ???
  137.          Aux.Puts_LLD
  138.            (To, Long_Long_Integer (Item), Aft, Exp, Scale);
  139.       else
  140. --       Aux.Puts_Dec (To, Integer'Integer_Value (Item), Aft, Exp, Scale);
  141. --  ???
  142.          Aux.Puts_Dec (To, Integer (Item), Aft, Exp, Scale);
  143.       end if;
  144.    end Put;
  145.  
  146. end Ada.Text_IO.Decimal_IO;
  147.