2015-09-28 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / ada / a-tienau.adb
blob6ee9bbadc60e74d44df22c1f9dc784200f75a8da
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . T E X T _ I O . E N U M E R A T I O N _ A U X --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2013, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 with Ada.Text_IO.Generic_Aux; use Ada.Text_IO.Generic_Aux;
33 with Ada.Characters.Handling; use Ada.Characters.Handling;
35 -- Note: this package does not yet deal properly with wide characters ???
37 package body Ada.Text_IO.Enumeration_Aux is
39 ------------------
40 -- Get_Enum_Lit --
41 ------------------
43 procedure Get_Enum_Lit
44 (File : File_Type;
45 Buf : out String;
46 Buflen : out Natural)
48 ch : Integer;
49 C : Character;
51 begin
52 Buflen := 0;
53 Load_Skip (File);
54 ch := Getc (File);
55 C := Character'Val (ch);
57 -- Character literal case. If the initial character is a quote, then
58 -- we read as far as we can without backup (see ACVC test CE3905L)
60 if C = ''' then
61 Store_Char (File, ch, Buf, Buflen);
63 ch := Getc (File);
65 if ch in 16#20# .. 16#7E# or else ch >= 16#80# then
66 Store_Char (File, ch, Buf, Buflen);
68 ch := Getc (File);
70 if ch = Character'Pos (''') then
71 Store_Char (File, ch, Buf, Buflen);
72 else
73 Ungetc (ch, File);
74 end if;
76 else
77 Ungetc (ch, File);
78 end if;
80 -- Similarly for identifiers, read as far as we can, in particular,
81 -- do read a trailing underscore (again see ACVC test CE3905L to
82 -- understand why we do this, although it seems somewhat peculiar).
84 else
85 -- Identifier must start with a letter
87 if not Is_Letter (C) then
88 Ungetc (ch, File);
89 return;
90 end if;
92 -- If we do have a letter, loop through the characters quitting on
93 -- the first non-identifier character (note that this includes the
94 -- cases of hitting a line mark or page mark).
96 loop
97 C := Character'Val (ch);
98 Store_Char (File, Character'Pos (To_Upper (C)), Buf, Buflen);
100 ch := Getc (File);
101 exit when ch = EOF_Char;
102 C := Character'Val (ch);
104 exit when not Is_Letter (C)
105 and then not Is_Digit (C)
106 and then C /= '_';
108 exit when C = '_'
109 and then Buf (Buflen) = '_';
110 end loop;
112 Ungetc (ch, File);
113 end if;
114 end Get_Enum_Lit;
116 ---------
117 -- Put --
118 ---------
120 procedure Put
121 (File : File_Type;
122 Item : String;
123 Width : Field;
124 Set : Type_Set)
126 Actual_Width : constant Count := Count'Max (Count (Width), Item'Length);
128 begin
129 -- Deal with limited line length of output file
131 if Line_Length (File) /= 0 then
133 -- If actual width exceeds line length, raise Layout_Error
135 if Actual_Width > Line_Length (File) then
136 raise Layout_Error;
137 end if;
139 -- If full width cannot fit on current line move to new line
141 if Actual_Width + (Col (File) - 1) > Line_Length (File) then
142 New_Line (File);
143 end if;
144 end if;
146 -- Output in lower case if necessary
148 if Set = Lower_Case and then Item (Item'First) /= ''' then
149 declare
150 Iteml : String (Item'First .. Item'Last);
152 begin
153 for J in Item'Range loop
154 Iteml (J) := To_Lower (Item (J));
155 end loop;
157 Put_Item (File, Iteml);
158 end;
160 -- Otherwise output in upper case
162 else
163 Put_Item (File, Item);
164 end if;
166 -- Fill out item with spaces to width
168 for J in 1 .. Actual_Width - Item'Length loop
169 Put (File, ' ');
170 end loop;
171 end Put;
173 ----------
174 -- Puts --
175 ----------
177 procedure Puts
178 (To : out String;
179 Item : String;
180 Set : Type_Set)
182 Ptr : Natural;
184 begin
185 if Item'Length > To'Length then
186 raise Layout_Error;
188 else
189 Ptr := To'First;
190 for J in Item'Range loop
191 if Set = Lower_Case and then Item (Item'First) /= ''' then
192 To (Ptr) := To_Lower (Item (J));
193 else
194 To (Ptr) := Item (J);
195 end if;
197 Ptr := Ptr + 1;
198 end loop;
200 while Ptr <= To'Last loop
201 To (Ptr) := ' ';
202 Ptr := Ptr + 1;
203 end loop;
204 end if;
205 end Puts;
207 -------------------
208 -- Scan_Enum_Lit --
209 -------------------
211 procedure Scan_Enum_Lit
212 (From : String;
213 Start : out Natural;
214 Stop : out Natural)
216 C : Character;
218 -- Processing for Scan_Enum_Lit
220 begin
221 String_Skip (From, Start);
223 -- Character literal case. If the initial character is a quote, then
224 -- we read as far as we can without backup (see ACVC test CE3905L
225 -- which is for the analogous case for reading from a file).
227 if From (Start) = ''' then
228 Stop := Start;
230 if Stop = From'Last then
231 raise Data_Error;
232 else
233 Stop := Stop + 1;
234 end if;
236 if From (Stop) in ' ' .. '~'
237 or else From (Stop) >= Character'Val (16#80#)
238 then
239 if Stop = From'Last then
240 raise Data_Error;
241 else
242 Stop := Stop + 1;
244 if From (Stop) = ''' then
245 return;
246 end if;
247 end if;
248 end if;
250 raise Data_Error;
252 -- Similarly for identifiers, read as far as we can, in particular,
253 -- do read a trailing underscore (again see ACVC test CE3905L to
254 -- understand why we do this, although it seems somewhat peculiar).
256 else
257 -- Identifier must start with a letter
259 if not Is_Letter (From (Start)) then
260 raise Data_Error;
261 end if;
263 -- If we do have a letter, loop through the characters quitting on
264 -- the first non-identifier character (note that this includes the
265 -- cases of hitting a line mark or page mark).
267 Stop := Start;
268 while Stop < From'Last loop
269 C := From (Stop + 1);
271 exit when not Is_Letter (C)
272 and then not Is_Digit (C)
273 and then C /= '_';
275 exit when C = '_'
276 and then From (Stop) = '_';
278 Stop := Stop + 1;
279 end loop;
280 end if;
281 end Scan_Enum_Lit;
283 end Ada.Text_IO.Enumeration_Aux;