1 -----------------------------------------------------------------------------
3 -- GNAT RUNTIME COMPONENTS --
5 -- A D A . T E X T _ I O . G E N E R I C _ A U X --
11 -- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
13 -- GNAT is free software; you can redistribute it and/or modify it under --
14 -- terms of the GNU General Public License as published by the Free Soft- --
15 -- ware Foundation; either version 2, or (at your option) any later ver- --
16 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
17 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
18 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
19 -- for more details. You should have received a copy of the GNU General --
20 -- Public License distributed with GNAT; see file COPYING. If not, write --
21 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
22 -- MA 02111-1307, USA. --
24 -- As a special exception, if other files instantiate generics from this --
25 -- unit, or you link this unit with other files to produce an executable, --
26 -- this unit does not by itself cause the resulting executable to be --
27 -- covered by the GNU General Public License. This exception does not --
28 -- however invalidate any other reasons why the executable file might be --
29 -- covered by the GNU Public License. --
31 -- GNAT was originally developed by the GNAT team at New York University. --
32 -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
34 ------------------------------------------------------------------------------
36 -- This package contains a set of auxiliary routines used by the Text_IO
37 -- generic children, including for reading and writing numeric strings.
39 private package Ada
.Text_IO
.Generic_Aux
is
41 -- Note: for all the Load routines, File indicates the file to be read,
42 -- Buf is the string into which data is stored, Ptr is the index of the
43 -- last character stored so far, and is updated if additional characters
44 -- are stored. Data_Error is raised if the input overflows Buf. The only
45 -- Load routines that do a file status check are Load_Skip and Load_Width
46 -- so one of these two routines must be called first.
48 procedure Check_End_Of_Field
54 -- This routine is used after doing a get operations on a numeric value.
55 -- Buf is the string being scanned, and Stop is the last character of
56 -- the field being scanned. Ptr is as set by the call to the scan routine
57 -- that scanned out the numeric value, i.e. it points one past the last
58 -- character scanned, and Width is the width parameter from the Get call.
60 -- There are two cases, if Width is non-zero, then a check is made that
61 -- the remainder of the field is all blanks. If Width is zero, then it
62 -- means that the scan routine scanned out only part of the field. We
63 -- have already scanned out the field that the ACVC tests seem to expect
64 -- us to read (even if it does not follow the syntax of the type being
65 -- scanned, e.g. allowing negative exponents in integers, and underscores
66 -- at the end of the string), so we just raise Data_Error.
68 procedure Check_On_One_Line
(File
: File_Type
; Length
: Integer);
69 -- Check to see if item of length Integer characters can fit on
70 -- current line. Call New_Line if not, first checking that the
71 -- line length can accommodate Length characters, raise Layout_Error
72 -- if item is too large for a single line.
74 function Getc
(File
: File_Type
) return Integer;
75 -- Gets next character from file, which has already been checked for
76 -- being in read status, and returns the character read if no error
77 -- occurs. The result is EOF if the end of file was read. Note that
78 -- the Col value is not bumped, so it is the caller's responsibility
79 -- to bump it if necessary.
81 function Is_Blank
(C
: Character) return Boolean;
82 -- Determines if C is a blank (space or tab)
88 Ptr
: in out Integer);
89 -- Loads exactly Width characters, unless a line mark is encountered first
91 procedure Load_Skip
(File
: File_Type
);
92 -- Skips leading blanks and line and page marks, if the end of file is
93 -- read without finding a non-blank character, then End_Error is raised.
94 -- Note: a blank is defined as a space or horizontal tab (RM A.10.6(5)).
101 Loaded
: out Boolean);
102 -- If next character is Char, loads it, otherwise no characters are loaded
103 -- Loaded is set to indicate whether or not the character was found.
108 Ptr
: in out Integer;
110 -- Same as above, but no indication if character is loaded
115 Ptr
: in out Integer;
118 Loaded
: out Boolean);
119 -- If next character is Char1 or Char2, loads it, otherwise no characters
120 -- are loaded. Loaded is set to indicate whether or not one of the two
121 -- characters was found.
126 Ptr
: in out Integer;
129 -- Same as above, but no indication if character is loaded
131 procedure Load_Digits
134 Ptr
: in out Integer;
135 Loaded
: out Boolean);
136 -- Loads a sequence of zero or more decimal digits. Loaded is set if
137 -- at least one digit is loaded.
139 procedure Load_Digits
142 Ptr
: in out Integer);
143 -- Same as above, but no indication if character is loaded
145 procedure Load_Extended_Digits
148 Ptr
: in out Integer;
149 Loaded
: out Boolean);
150 -- Like Load_Digits, but also allows extended digits a-f and A-F
152 procedure Load_Extended_Digits
155 Ptr
: in out Integer);
156 -- Same as above, but no indication if character is loaded
158 function Nextc
(File
: File_Type
) return Integer;
159 -- Like Getc, but includes a call to Ungetc, so that the file
160 -- pointer is not moved by the call.
162 procedure Put_Item
(File
: File_Type
; Str
: String);
163 -- This routine is like Text_IO.Put, except that it checks for overflow
164 -- of bounded lines, as described in (RM A.10.6(8)). It is used for
165 -- all output of numeric values and of enumeration values.
171 Ptr
: in out Integer);
172 -- Store a single character in buffer, checking for overflow and
173 -- adjusting the column number in the file to reflect the fact
174 -- that a character has been acquired from the input stream.
176 procedure String_Skip
(Str
: String; Ptr
: out Integer);
177 -- Used in the Get from string procedures to skip leading blanks in the
178 -- string. Ptr is set to the index of the first non-blank. If the string
179 -- is all blanks, then the excption End_Error is raised, Note that blank
180 -- is defined as a space or horizontal tab (RM A.10.6(5)).
182 procedure Ungetc
(ch
: Integer; File
: File_Type
);
183 -- Pushes back character into stream, using ungetc. The caller has
184 -- checked that the file is in read status. Device_Error is raised
185 -- if the character cannot be pushed back. An attempt to push back
186 -- an end of file (EOF) is ignored.
189 pragma Inline
(Is_Blank
);
191 end Ada
.Text_IO
.Generic_Aux
;