Go to the first, previous, next, last section, table of contents.


G.1.3 Complex Input-Output

  1. The generic package Text_IO.Complex_IO defines procedures for the formatted input and output of complex values. The generic actual parameter in an instantiation of Text_IO.Complex_IO is an instance of Numerics.Generic_Complex_Types for some floating point subtype. Exceptional conditions are reported by raising the appropriate exception defined in Text_IO.

    Static Semantics

  2. The generic library package Text_IO.Complex_IO has the following declaration:
  3. with Ada.Numerics.Generic_Complex_Types;
    generic
       with package Complex_Types is new
         Ada.Numerics.Generic_Complex_Types (<>);
    package Ada.Text_IO.Complex_IO is
    
  4.    use Complex_Types;
    
  5.    Default_Fore : Field := 2;
       Default_Aft  : Field := Real'Digits - 1;
       Default_Exp  : Field := 3;
    
  6.    procedure Get (File  : in  File_Type;
                      Item  : out Complex;
                      Width : in  Field := 0);
       procedure Get (Item  : out Complex;
                      Width : in  Field := 0);
    
  7.    procedure Put (File : in File_Type;
                      Item : in Complex;
                      Fore : in Field := Default_Fore;
                      Aft  : in Field := Default_Aft;
                      Exp  : in Field := Default_Exp);
       procedure Put (Item : in Complex;
                      Fore : in Field := Default_Fore;
                      Aft  : in Field := Default_Aft;
                      Exp  : in Field := Default_Exp);
    
  8.    procedure Get (From : in  String;
                      Item : out Complex;
                      Last : out Positive);
       procedure Put (To   : out String;
                      Item : in  Complex;
                      Aft  : in  Field := Default_Aft;
                      Exp  : in  Field := Default_Exp);
    
  9. end Ada.Text_IO.Complex_IO;
    
  10. The semantics of the Get and Put procedures are as follows:
  11. procedure Get (File  : in  File_Type;
                   Item  : out Complex;
                   Width : in  Field := 0);
    
    procedure Get (Item  : out Complex;
                   Width : in  Field := 0);
    
    1. The input sequence is a pair of optionally signed real literals representing the real and imaginary components of a complex value; optionally, the pair of components may be separated by a comma and/or surrounded by a pair of parentheses. Blanks are freely allowed before each of the components and before the parentheses and comma, if either is used. If the value of the parameter Width is zero, then
      1. line and page terminators are also allowed in these places;
      2. the components shall be separated by at least one blank or line terminator if the comma is omitted; and
      3. reading stops when the right parenthesis has been read, if the input sequence includes a left parenthesis, or when the imaginary component has been read, otherwise.

      If a nonzero value of Width is supplied, then
      1. the components shall be separated by at least one blank if the comma is omitted; and
      2. exactly Width characters are read, or the characters (possibly none) up to a line terminator, whichever comes first (blanks are included in the count).

    1. Returns, in the parameter Item, the value of type Complex that corresponds to the input sequence.
    2. The exception Text_IO.Data_Error is raised if the input sequence does not have the required syntax or if the components of the complex value obtained are not of the base subtype of Complex_Types.Real.

  1. procedure Put (File : in File_Type;
                   Item : in Complex;
                   Fore : in Field := Default_Fore;
                   Aft  : in Field := Default_Aft;
                   Exp  : in Field := Default_Exp);
    
    procedure Put (Item : in Complex;
                   Fore : in Field := Default_Fore;
                   Aft  : in Field := Default_Aft;
                   Exp  : in Field := Default_Exp);
    
    1. Outputs the value of the parameter Item as a pair of decimal literals representing the real and imaginary components of the complex value, using the syntax of an aggregate. More specifically,
      1. outputs a left parenthesis;
      2. outputs the value of the real component of the parameter Item with the format defined by the corresponding Put procedure of an instance of Text_IO.Float_IO for the base subtype of Complex_Types.Real, using the given values of Fore, Aft, and Exp;
      3. outputs a comma;
      4. outputs the value of the imaginary component of the parameter Item with the format defined by the corresponding Put procedure of an instance of Text_IO.Float_IO for the base subtype of Complex_Types.Real, using the given values of Fore, Aft, and Exp;
      5. outputs a right parenthesis.

  1. procedure Get (From : in  String;
                   Item : out Complex;
                   Last : out Positive);
    
    1. Reads a complex value from the beginning of the given string, following the same rule as the Get procedure that reads a complex value from a file, but treating the end of the string as a line terminator. Returns, in the parameter Item, the value of type Complex that corresponds to the input sequence. Returns in Last the index value such that From(Last) is the last character read.
    2. The exception Text_IO.Data_Error is raised if the input sequence does not have the required syntax or if the components of the complex value obtained are not of the base subtype of Complex_Types.Real.

  1. procedure Put (To   : out String;
                   Item : in  Complex;
                   Aft  : in  Field := Default_Aft;
                   Exp  : in  Field := Default_Exp);
    
    1. Outputs the value of the parameter Item to the given string as a pair of decimal literals representing the real and imaginary components of the complex value, using the syntax of an aggregate. More specifically,
      1. a left parenthesis, the real component, and a comma are left justified in the given string, with the real component having the format defined by the Put procedure (for output to a file) of an instance of Text_IO.Float_IO for the base subtype of Complex_Types.Real, using a value of zero for Fore and the given values of Aft and Exp;
      2. the imaginary component and a right parenthesis are right justified in the given string, with the imaginary component having the format defined by the Put procedure (for output to a file) of an instance of Text_IO.Float_IO for the base subtype of Complex_Types.Real, using a value for Fore that completely fills the remainder of the string, together with the given values of Aft and Exp.

    1. The exception Text_IO.Layout_Error is raised if the given string is too short to hold the formatted output.

Implementation Permissions

  1. Other exceptions declared (by renaming) in Text_IO may be raised by the preceding procedures in the appropriate circumstances, as for the corresponding procedures of Text_IO.Float_IO.


Go to the first, previous, next, last section, table of contents.