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-ticoau.adb < prev    next >
Text File  |  1996-09-28  |  6KB  |  196 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --              A D A . T E X T _ I O . C O M P L E X _ A U X               --
  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.Generic_Aux; use Ada.Text_IO.Generic_Aux;
  27. with Ada.Text_IO.Float_Aux;
  28.  
  29. with System.Img_Real; use System.Img_Real;
  30.  
  31. package body Ada.Text_IO.Complex_Aux is
  32.  
  33.    package Aux renames Ada.Text_IO.Float_Aux;
  34.  
  35.    ---------
  36.    -- Get --
  37.    ---------
  38.  
  39.    procedure Get
  40.      (File  : in  File_Type;
  41.       ItemR : out Long_Long_Float;
  42.       ItemI : out Long_Long_Float;
  43.       Width : Field)
  44.    is
  45.       Buf   : String (1 .. Field'Last);
  46.       Stop  : Integer := 0;
  47.       Ptr   : aliased Integer;
  48.       Paren : Boolean := False;
  49.  
  50.    begin
  51.       --  General note for following code, exceptions from the calls to
  52.       --  Get for components of the complex value are propagated.
  53.  
  54.       if Width /= 0 then
  55.          Load_Width (File, Width, Buf, Stop);
  56.          Gets (Buf (1 .. Stop), ItemR, ItemI, Ptr);
  57.  
  58.          for J in Ptr + 1 .. Stop loop
  59.             if not Is_Blank (Buf (J)) then
  60.                raise Data_Error;
  61.             end if;
  62.          end loop;
  63.  
  64.       --  Case of width = 0
  65.  
  66.       else
  67.          Load_Skip (File);
  68.          Load (File, Buf, Ptr, '(', Paren);
  69.          Aux.Get (File, ItemR, 0);
  70.          Load_Skip (File);
  71.          Load (File, Buf, Ptr, ',');
  72.          Aux.Get (File, ItemI, 0);
  73.  
  74.          if Paren then
  75.             Load_Skip (File);
  76.             Load (File, Buf, Ptr, ')', Paren);
  77.  
  78.             if not Paren then
  79.                raise Data_Error;
  80.             end if;
  81.          end if;
  82.       end if;
  83.    end Get;
  84.  
  85.    ----------
  86.    -- Gets --
  87.    ----------
  88.  
  89.    procedure Gets
  90.      (From  : in  String;
  91.       ItemR : out Long_Long_Float;
  92.       ItemI : out Long_Long_Float;
  93.       Last  : out Positive)
  94.    is
  95.       Paren : Boolean;
  96.       Pos   : Integer;
  97.  
  98.    begin
  99.       String_Skip (From, Pos);
  100.  
  101.       if From (Pos) = '(' then
  102.          Pos := Pos + 1;
  103.          Paren := True;
  104.       else
  105.          Paren := False;
  106.       end if;
  107.  
  108.       Aux.Gets (From, ItemR, Pos);
  109.  
  110.       String_Skip (From (Pos + 1 .. From'Last), Pos);
  111.  
  112.       if From (Pos) = ',' then
  113.          Pos := Pos + 1;
  114.       end if;
  115.  
  116.       Aux.Gets (From (Pos + 1 .. From'Last), ItemI, Pos);
  117.  
  118.       if Paren then
  119.          String_Skip (From (Pos + 1 .. From'Last), Pos);
  120.  
  121.          if From (Pos) /= ')' then
  122.             raise Data_Error;
  123.          end if;
  124.       end if;
  125.  
  126.       Last := Pos;
  127.    end Gets;
  128.  
  129.    ---------
  130.    -- Put --
  131.    ---------
  132.  
  133.    procedure Put
  134.      (File  : File_Type;
  135.       ItemR : Long_Long_Float;
  136.       ItemI : Long_Long_Float;
  137.       Fore  : Field;
  138.       Aft   : Field;
  139.       Exp   : Field)
  140.    is
  141.    begin
  142.       Put (File, '(');
  143.       Aux.Put (File, ItemR, Fore, Aft, Exp);
  144.       Put (File, ',');
  145.       Aux.Put (File, ItemI, Fore, Aft, Exp);
  146.       Put (File, ')');
  147.    end Put;
  148.  
  149.    ----------
  150.    -- Puts --
  151.    ----------
  152.  
  153.    procedure Puts
  154.      (To    : out String;
  155.       ItemR : Long_Long_Float;
  156.       ItemI : Long_Long_Float;
  157.       Aft   : in  Field;
  158.       Exp   : in  Field)
  159.    is
  160.       I_String : String (1 .. 3 * Field'Last);
  161.       R_String : String (1 .. 3 * Field'Last);
  162.  
  163.       Iptr : Natural;
  164.       Rptr : Natural;
  165.  
  166.    begin
  167.       --  Both parts are initially converted with a Fore of 0
  168.  
  169.       Rptr := 0;
  170.       Set_Image_Real (ItemR, R_String, Rptr, 0, Aft, Exp);
  171.       Iptr := 0;
  172.       Set_Image_Real (ItemI, I_String, Iptr, 0, Aft, Exp);
  173.  
  174.       --  Check room for both parts plus parens plus comma (RM G.1.3(34))
  175.  
  176.       if Rptr + Iptr + 3 > To'Length then
  177.          raise Layout_Error;
  178.       end if;
  179.  
  180.       --  If there is room, layout result according to (RM G.1.3(31-33))
  181.  
  182.       To (To'First) := '(';
  183.       To (To'First + 1 .. To'First + Rptr) := R_String (1 .. Rptr);
  184.       To (To'First + Rptr + 1) := ',';
  185.  
  186.       To (To'Last) := ')';
  187.       To (To'Last - Iptr .. To'Last - 1) := I_String (1 .. Iptr);
  188.       
  189.       for J in To'First + Rptr + 2 .. To'Last - Iptr - 1 loop
  190.          To (J) := ' ';
  191.       end loop;
  192.  
  193.    end Puts;
  194.  
  195. end Ada.Text_IO.Complex_Aux;
  196.