2005-01-22 Thomas Koenig <Thomas.Koenig@online.de>
[official-gcc.git] / gcc / ada / output.adb
blobea52af636bf0274be003229d47575e1b67c110a6
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- O U T P U T --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1992-2003, 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 2, 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. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
21 -- --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
28 -- --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
31 -- --
32 ------------------------------------------------------------------------------
34 with GNAT.OS_Lib; use GNAT.OS_Lib;
36 package body Output is
38 Current_FD : File_Descriptor := Standout;
39 -- File descriptor for current output
41 Special_Output_Proc : Output_Proc := null;
42 -- Record argument to last call to Set_Special_Output. If this is
43 -- non-null, then we are in special output mode.
45 -------------------------
46 -- Line Buffer Control --
47 -------------------------
49 -- Note: the following buffer and column position are maintained by
50 -- the subprograms defined in this package, and are not normally
51 -- directly modified or accessed by a client. However, a client is
52 -- permitted to modify these values, using the knowledge that only
53 -- Write_Eol actually generates any output.
55 Buffer_Max : constant := 8192;
56 Buffer : String (1 .. Buffer_Max + 1);
57 -- Buffer used to build output line. We do line buffering because it
58 -- is needed for the support of the debug-generated-code option (-gnatD).
59 -- Historically it was first added because on VMS, line buffering is
60 -- needed with certain file formats. So in any case line buffering must
61 -- be retained for this purpose, even if other reasons disappear. Note
62 -- any attempt to write more output to a line than can fit in the buffer
63 -- will be silently ignored.
65 Next_Column : Pos range 1 .. Buffer'Length + 1 := 1;
66 -- Column about to be written.
68 -----------------------
69 -- Local_Subprograms --
70 -----------------------
72 procedure Flush_Buffer;
73 -- Flush buffer if non-empty and reset column counter
75 ---------------------------
76 -- Cancel_Special_Output --
77 ---------------------------
79 procedure Cancel_Special_Output is
80 begin
81 Special_Output_Proc := null;
82 end Cancel_Special_Output;
84 ------------------
85 -- Flush_Buffer --
86 ------------------
88 procedure Flush_Buffer is
89 Len : constant Natural := Natural (Next_Column - 1);
91 begin
92 if Len /= 0 then
94 -- If Special_Output_Proc has been set, then use it
96 if Special_Output_Proc /= null then
97 Special_Output_Proc.all (Buffer (1 .. Len));
99 -- If output is not set, then output to either standard output
100 -- or standard error.
102 elsif Len /= Write (Current_FD, Buffer'Address, Len) then
104 -- If there are errors with standard error, just quit
106 if Current_FD = Standerr then
107 OS_Exit (2);
109 -- Otherwise, set the output to standard error before
110 -- reporting a failure and quitting.
112 else
113 Current_FD := Standerr;
114 Next_Column := 1;
115 Write_Line ("fatal error: disk full");
116 OS_Exit (2);
117 end if;
118 end if;
120 -- Buffer is now empty
122 Next_Column := 1;
123 end if;
124 end Flush_Buffer;
126 ------------
127 -- Column --
128 ------------
130 function Column return Nat is
131 begin
132 return Next_Column;
133 end Column;
135 ------------------------
136 -- Set_Special_Output --
137 ------------------------
139 procedure Set_Special_Output (P : Output_Proc) is
140 begin
141 Special_Output_Proc := P;
142 end Set_Special_Output;
144 ------------------------
145 -- Set_Standard_Error --
146 ------------------------
148 procedure Set_Standard_Error is
149 begin
150 if Special_Output_Proc = null then
151 Flush_Buffer;
152 Next_Column := 1;
153 end if;
155 Current_FD := Standerr;
156 end Set_Standard_Error;
158 -------------------------
159 -- Set_Standard_Output --
160 -------------------------
162 procedure Set_Standard_Output is
163 begin
164 if Special_Output_Proc = null then
165 Flush_Buffer;
166 Next_Column := 1;
167 end if;
169 Current_FD := Standout;
170 end Set_Standard_Output;
172 -------
173 -- w --
174 -------
176 procedure w (C : Character) is
177 begin
178 Write_Char (''');
179 Write_Char (C);
180 Write_Char (''');
181 Write_Eol;
182 end w;
184 procedure w (S : String) is
185 begin
186 Write_Str (S);
187 Write_Eol;
188 end w;
190 procedure w (V : Int) is
191 begin
192 Write_Int (V);
193 Write_Eol;
194 end w;
196 procedure w (B : Boolean) is
197 begin
198 if B then
199 w ("True");
200 else
201 w ("False");
202 end if;
203 end w;
205 procedure w (L : String; C : Character) is
206 begin
207 Write_Str (L);
208 Write_Char (' ');
209 w (C);
210 end w;
212 procedure w (L : String; S : String) is
213 begin
214 Write_Str (L);
215 Write_Char (' ');
216 w (S);
217 end w;
219 procedure w (L : String; V : Int) is
220 begin
221 Write_Str (L);
222 Write_Char (' ');
223 w (V);
224 end w;
226 procedure w (L : String; B : Boolean) is
227 begin
228 Write_Str (L);
229 Write_Char (' ');
230 w (B);
231 end w;
233 ----------------
234 -- Write_Char --
235 ----------------
237 procedure Write_Char (C : Character) is
238 begin
239 if Next_Column = Buffer'Length then
240 Write_Eol;
241 end if;
243 Buffer (Natural (Next_Column)) := C;
244 Next_Column := Next_Column + 1;
245 end Write_Char;
247 ---------------
248 -- Write_Eol --
249 ---------------
251 procedure Write_Eol is
252 begin
253 Buffer (Natural (Next_Column)) := ASCII.LF;
254 Next_Column := Next_Column + 1;
255 Flush_Buffer;
256 end Write_Eol;
258 ---------------
259 -- Write_Int --
260 ---------------
262 procedure Write_Int (Val : Int) is
263 begin
264 if Val < 0 then
265 Write_Char ('-');
266 Write_Int (-Val);
268 else
269 if Val > 9 then
270 Write_Int (Val / 10);
271 end if;
273 Write_Char (Character'Val ((Val mod 10) + Character'Pos ('0')));
274 end if;
275 end Write_Int;
277 ----------------
278 -- Write_Line --
279 ----------------
281 procedure Write_Line (S : String) is
282 begin
283 Write_Str (S);
284 Write_Eol;
285 end Write_Line;
287 ---------------
288 -- Write_Str --
289 ---------------
291 procedure Write_Str (S : String) is
292 begin
293 for J in S'Range loop
294 Write_Char (S (J));
295 end loop;
296 end Write_Str;
298 end Output;