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

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                 A D A . T E X T _ I O . F I X E D _ 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.Float_Aux;
  27.  
  28. package body Ada.Text_IO.Fixed_IO is
  29.  
  30.    --  Note: we use the floating-point I/O routines for input/output of
  31.    --  ordinary fixed-point. This works fine for fixed-point declarations
  32.    --  whose mantissa is no longer than the mantissa of Long_Long_Float,
  33.    --  and we simply consider that we have only partial support for fixed-
  34.    --  point types with larger mantissas (this situation will not arise on
  35.    --  the x86, but it will rise on machines only supporting IEEE long).
  36.  
  37.    package Aux renames Ada.Text_IO.Float_Aux;
  38.  
  39.    ---------
  40.    -- Get --
  41.    ---------
  42.  
  43.    procedure Get
  44.      (File  : in File_Type;
  45.       Item  : out Num;
  46.       Width : in Field := 0)
  47.    is
  48.    begin
  49.       Aux.Get (File, Long_Long_Float (Item), Width);
  50.  
  51.    exception
  52.       when Constraint_Error => raise Data_Error;
  53.    end Get;
  54.  
  55.    procedure Get
  56.      (Item  : out Num;
  57.       Width : in Field := 0)
  58.    is
  59.    begin
  60.       Aux.Get (Current_In, Long_Long_Float (Item), Width);
  61.  
  62.    exception
  63.       when Constraint_Error => raise Data_Error;
  64.    end Get;
  65.  
  66.    procedure Get
  67.      (From : in String;
  68.       Item : out Num;
  69.       Last : out Positive)
  70.    is
  71.    begin
  72.       Aux.Gets (From, Long_Long_Float (Item), Last);
  73.  
  74.    exception
  75.       when Constraint_Error => raise Data_Error;
  76.    end Get;
  77.  
  78.    ---------
  79.    -- Put --
  80.    ---------
  81.  
  82.    procedure Put
  83.      (File : in File_Type;
  84.       Item : in Num;
  85.       Fore : in Field := Default_Fore;
  86.       Aft  : in Field := Default_Aft;
  87.       Exp  : in Field := Default_Exp)
  88.    is
  89.    begin
  90.       Aux.Put (File, Long_Long_Float (Item), Fore, Aft, Exp);
  91.    end Put;
  92.  
  93.    procedure Put
  94.      (Item : in Num;
  95.       Fore : in Field := Default_Fore;
  96.       Aft  : in Field := Default_Aft;
  97.       Exp  : in Field := Default_Exp)
  98.    is
  99.    begin
  100.       Aux.Put (Current_Out, Long_Long_Float (Item), Fore, Aft, Exp);
  101.    end Put;
  102.  
  103.    procedure Put
  104.      (To   : out String;
  105.       Item : in Num;
  106.       Aft  : in Field := Default_Aft;
  107.       Exp  : in Field := Default_Exp)
  108.    is
  109.    begin
  110.       Aux.Puts (To, Long_Long_Float (Item), Aft, Exp);
  111.    end Put;
  112.  
  113. end Ada.Text_IO.Fixed_IO;
  114.