blob: ac118a91a3f6b19660d9002693dca3919a979d7c [file] [log] [blame]
Chris Lattner60d39622008-08-17 01:35:29 +00001//===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements support for bulk buffered stream output.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/raw_ostream.h"
Chris Lattner42f77ab2008-08-23 20:34:06 +000015#include "llvm/Support/Format.h"
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +000016#include "llvm/System/Program.h"
Torok Edwine8ebb0f2009-06-04 07:09:50 +000017#include "llvm/System/Process.h"
Chris Lattner097af7f2008-08-23 19:23:10 +000018#include "llvm/ADT/SmallVector.h"
Chris Lattner969a46a2008-08-22 15:45:00 +000019#include "llvm/Config/config.h"
Daniel Dunbarb372c112009-03-17 21:15:18 +000020#include "llvm/Support/Compiler.h"
Daniel Dunbar579fb872009-07-15 08:11:46 +000021#include "llvm/Support/ErrorHandling.h"
Dan Gohman61ee1002009-08-24 04:13:01 +000022#include "llvm/ADT/STLExtras.h"
Benjamin Kramer4f17eb82010-01-29 15:19:06 +000023#include <cctype>
Benjamin Kramer66760be2010-05-05 15:17:47 +000024#include <cerrno>
Dan Gohman208ec0f2009-08-13 17:27:29 +000025#include <sys/stat.h>
26#include <sys/types.h>
Chris Lattner60d39622008-08-17 01:35:29 +000027
Chris Lattner969a46a2008-08-22 15:45:00 +000028#if defined(HAVE_UNISTD_H)
29# include <unistd.h>
30#endif
31#if defined(HAVE_FCNTL_H)
32# include <fcntl.h>
33#endif
Argyrios Kyrtzidisb68dc362008-08-17 09:25:21 +000034
35#if defined(_MSC_VER)
Chris Lattner60d39622008-08-17 01:35:29 +000036#include <io.h>
Cedric Veneta3f343f2008-08-24 11:56:40 +000037#include <fcntl.h>
Owen Andersoncb371882008-08-21 00:14:44 +000038#ifndef STDIN_FILENO
39# define STDIN_FILENO 0
40#endif
41#ifndef STDOUT_FILENO
42# define STDOUT_FILENO 1
43#endif
44#ifndef STDERR_FILENO
45# define STDERR_FILENO 2
46#endif
Chris Lattner60d39622008-08-17 01:35:29 +000047#endif
48
Chris Lattner969a46a2008-08-22 15:45:00 +000049using namespace llvm;
50
Dan Gohmane87b2ab2009-07-15 23:25:33 +000051raw_ostream::~raw_ostream() {
Dan Gohman9a312542009-07-27 20:49:44 +000052 // raw_ostream's subclasses should take care to flush the buffer
53 // in their destructors.
54 assert(OutBufCur == OutBufStart &&
55 "raw_ostream destructor called with non-empty buffer!");
56
Daniel Dunbar906d5b42009-08-18 23:42:36 +000057 if (BufferMode == InternalBuffer)
58 delete [] OutBufStart;
Dan Gohmane87b2ab2009-07-15 23:25:33 +000059
60 // If there are any pending errors, report them now. Clients wishing
Chris Lattner75361b62010-04-07 22:58:41 +000061 // to avoid report_fatal_error calls should check for errors with
Dan Gohmane87b2ab2009-07-15 23:25:33 +000062 // has_error() and clear the error flag with clear_error() before
63 // destructing raw_ostream objects which may have errors.
64 if (Error)
Chris Lattner75361b62010-04-07 22:58:41 +000065 report_fatal_error("IO failure on output stream.");
Dan Gohmane87b2ab2009-07-15 23:25:33 +000066}
Chris Lattner969a46a2008-08-22 15:45:00 +000067
Chris Lattner60d39622008-08-17 01:35:29 +000068// An out of line virtual method to provide a home for the class vtable.
69void raw_ostream::handle() {}
70
Chris Lattnercd0129f2009-12-19 01:38:42 +000071size_t raw_ostream::preferred_buffer_size() const {
Dan Gohman208ec0f2009-08-13 17:27:29 +000072 // BUFSIZ is intended to be a reasonable default.
73 return BUFSIZ;
74}
75
76void raw_ostream::SetBuffered() {
77 // Ask the subclass to determine an appropriate buffer size.
Dan Gohmand7be6632009-08-15 02:05:19 +000078 if (size_t Size = preferred_buffer_size())
79 SetBufferSize(Size);
80 else
81 // It may return 0, meaning this stream should be unbuffered.
82 SetUnbuffered();
Dan Gohman208ec0f2009-08-13 17:27:29 +000083}
84
Dan Gohman16e02092010-03-24 19:38:02 +000085void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
Daniel Dunbar906d5b42009-08-18 23:42:36 +000086 BufferKind Mode) {
Dan Gohman16e02092010-03-24 19:38:02 +000087 assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) ||
Daniel Dunbarc8213b72009-09-15 20:31:46 +000088 (Mode != Unbuffered && BufferStart && Size)) &&
89 "stream must be unbuffered or have at least one byte");
Daniel Dunbar906d5b42009-08-18 23:42:36 +000090 // Make sure the current buffer is free of content (we can't flush here; the
91 // child buffer management logic will be in write_impl).
92 assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
Dan Gohman524dea42009-08-13 15:58:55 +000093
Daniel Dunbar906d5b42009-08-18 23:42:36 +000094 if (BufferMode == InternalBuffer)
95 delete [] OutBufStart;
96 OutBufStart = BufferStart;
Dan Gohman524dea42009-08-13 15:58:55 +000097 OutBufEnd = OutBufStart+Size;
98 OutBufCur = OutBufStart;
Daniel Dunbar906d5b42009-08-18 23:42:36 +000099 BufferMode = Mode;
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000100
101 assert(OutBufStart <= OutBufEnd && "Invalid size!");
Dan Gohman524dea42009-08-13 15:58:55 +0000102}
103
Owen Anderson66b17ba2008-08-21 20:58:52 +0000104raw_ostream &raw_ostream::operator<<(unsigned long N) {
105 // Zero is a special case.
106 if (N == 0)
107 return *this << '0';
Dan Gohman16e02092010-03-24 19:38:02 +0000108
Owen Anderson66b17ba2008-08-21 20:58:52 +0000109 char NumberBuffer[20];
110 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
111 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000112
Owen Anderson66b17ba2008-08-21 20:58:52 +0000113 while (N) {
114 *--CurPtr = '0' + char(N % 10);
115 N /= 10;
116 }
117 return write(CurPtr, EndPtr-CurPtr);
118}
119
120raw_ostream &raw_ostream::operator<<(long N) {
121 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000122 *this << '-';
Owen Anderson66b17ba2008-08-21 20:58:52 +0000123 N = -N;
124 }
Dan Gohman16e02092010-03-24 19:38:02 +0000125
Owen Anderson66b17ba2008-08-21 20:58:52 +0000126 return this->operator<<(static_cast<unsigned long>(N));
127}
128
129raw_ostream &raw_ostream::operator<<(unsigned long long N) {
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000130 // Output using 32-bit div/mod when possible.
Daniel Dunbar78a3dd82009-07-29 06:45:14 +0000131 if (N == static_cast<unsigned long>(N))
132 return this->operator<<(static_cast<unsigned long>(N));
133
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000134 char NumberBuffer[20];
135 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
136 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000137
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000138 while (N) {
139 *--CurPtr = '0' + char(N % 10);
140 N /= 10;
141 }
142 return write(CurPtr, EndPtr-CurPtr);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000143}
144
145raw_ostream &raw_ostream::operator<<(long long N) {
Chris Lattnere211cd82010-08-03 16:41:24 +0000146 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000147 *this << '-';
Chris Lattnere211cd82010-08-03 16:41:24 +0000148 // Avoid undefined behavior on INT64_MIN with a cast.
149 N = -(unsigned long long)N;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000150 }
Dan Gohman16e02092010-03-24 19:38:02 +0000151
Owen Anderson66b17ba2008-08-21 20:58:52 +0000152 return this->operator<<(static_cast<unsigned long long>(N));
153}
154
Daniel Dunbar48018e02009-07-30 18:21:23 +0000155raw_ostream &raw_ostream::write_hex(unsigned long long N) {
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000156 // Zero is a special case.
157 if (N == 0)
158 return *this << '0';
159
160 char NumberBuffer[20];
161 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
162 char *CurPtr = EndPtr;
163
164 while (N) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000165 uintptr_t x = N % 16;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000166 *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
167 N /= 16;
168 }
169
170 return write(CurPtr, EndPtr-CurPtr);
Chris Lattner944fac72008-08-23 22:23:09 +0000171}
172
Daniel Dunbar522b1132009-10-17 20:43:08 +0000173raw_ostream &raw_ostream::write_escaped(StringRef Str) {
174 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
175 unsigned char c = Str[i];
176
177 switch (c) {
178 case '\\':
179 *this << '\\' << '\\';
180 break;
181 case '\t':
182 *this << '\\' << 't';
183 break;
184 case '\n':
185 *this << '\\' << 'n';
186 break;
187 case '"':
188 *this << '\\' << '"';
189 break;
190 default:
191 if (std::isprint(c)) {
192 *this << c;
193 break;
194 }
195
196 // Always expand to a 3-character octal escape.
197 *this << '\\';
198 *this << char('0' + ((c >> 6) & 7));
199 *this << char('0' + ((c >> 3) & 7));
200 *this << char('0' + ((c >> 0) & 7));
201 }
202 }
203
204 return *this;
205}
206
Daniel Dunbar48018e02009-07-30 18:21:23 +0000207raw_ostream &raw_ostream::operator<<(const void *P) {
208 *this << '0' << 'x';
209
210 return write_hex((uintptr_t) P);
211}
212
Chris Lattner23132b12009-08-24 03:52:50 +0000213raw_ostream &raw_ostream::operator<<(double N) {
Benjamin Kramerf304ff62010-01-29 14:40:33 +0000214 return this->operator<<(format("%e", N));
Chris Lattner23132b12009-08-24 03:52:50 +0000215}
216
217
218
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000219void raw_ostream::flush_nonempty() {
220 assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000221 size_t Length = OutBufCur - OutBufStart;
222 OutBufCur = OutBufStart;
223 write_impl(OutBufStart, Length);
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000224}
225
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000226raw_ostream &raw_ostream::write(unsigned char C) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000227 // Group exceptional cases into a single branch.
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000228 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
229 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000230 if (BufferMode == Unbuffered) {
Dan Gohman37316042009-08-18 20:09:59 +0000231 write_impl(reinterpret_cast<char*>(&C), 1);
232 return *this;
233 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000234 // Set up a buffer and start over.
235 SetBuffered();
236 return write(C);
Dan Gohman37316042009-08-18 20:09:59 +0000237 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000238
239 flush_nonempty();
Daniel Dunbard17d74b2009-03-17 01:13:35 +0000240 }
241
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000242 *OutBufCur++ = C;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000243 return *this;
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000244}
Chris Lattner944fac72008-08-23 22:23:09 +0000245
Dan Gohmanad60f662009-07-16 15:24:40 +0000246raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000247 // Group exceptional cases into a single branch.
Daniel Dunbarb372c112009-03-17 21:15:18 +0000248 if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000249 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000250 if (BufferMode == Unbuffered) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000251 write_impl(Ptr, Size);
252 return *this;
253 }
254 // Set up a buffer and start over.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000255 SetBuffered();
Dan Gohman33e49ef2009-08-13 15:44:52 +0000256 return write(Ptr, Size);
257 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000258
Dan Gohman33e49ef2009-08-13 15:44:52 +0000259 // Write out the data in buffer-sized blocks until the remainder
260 // fits within the buffer.
261 do {
262 size_t NumBytes = OutBufEnd - OutBufCur;
263 copy_to_buffer(Ptr, NumBytes);
Daniel Dunbar262541b2009-03-17 01:36:56 +0000264 flush_nonempty();
Dan Gohman33e49ef2009-08-13 15:44:52 +0000265 Ptr += NumBytes;
266 Size -= NumBytes;
267 } while (OutBufCur+Size > OutBufEnd);
Daniel Dunbar262541b2009-03-17 01:36:56 +0000268 }
Dan Gohman33e49ef2009-08-13 15:44:52 +0000269
270 copy_to_buffer(Ptr, Size);
271
272 return *this;
273}
274
275void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
Dan Gohmanc6126e82009-08-13 20:32:03 +0000276 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
Dan Gohman4e8e6422009-08-13 18:38:15 +0000277
Owen Anderson66b17ba2008-08-21 20:58:52 +0000278 // Handle short strings specially, memcpy isn't very good at very short
279 // strings.
280 switch (Size) {
281 case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
282 case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
283 case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
284 case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
285 case 0: break;
286 default:
Dan Gohman33e49ef2009-08-13 15:44:52 +0000287 memcpy(OutBufCur, Ptr, Size);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000288 break;
289 }
Daniel Dunbare77e4342009-03-10 16:21:55 +0000290
Dan Gohman33e49ef2009-08-13 15:44:52 +0000291 OutBufCur += Size;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000292}
293
Chris Lattner097af7f2008-08-23 19:23:10 +0000294// Formatted output.
295raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000296 // If we have more than a few bytes left in our output buffer, try
297 // formatting directly onto its end.
Dan Gohmanad60f662009-07-16 15:24:40 +0000298 size_t NextBufferSize = 127;
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000299 size_t BufferBytesLeft = OutBufEnd - OutBufCur;
300 if (BufferBytesLeft > 3) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000301 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
Dan Gohman16e02092010-03-24 19:38:02 +0000302
Chris Lattner097af7f2008-08-23 19:23:10 +0000303 // Common case is that we have plenty of space.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000304 if (BytesUsed <= BufferBytesLeft) {
Chris Lattner097af7f2008-08-23 19:23:10 +0000305 OutBufCur += BytesUsed;
306 return *this;
307 }
Dan Gohman16e02092010-03-24 19:38:02 +0000308
Chris Lattner097af7f2008-08-23 19:23:10 +0000309 // Otherwise, we overflowed and the return value tells us the size to try
310 // again with.
311 NextBufferSize = BytesUsed;
312 }
Dan Gohman16e02092010-03-24 19:38:02 +0000313
Chris Lattner097af7f2008-08-23 19:23:10 +0000314 // If we got here, we didn't have enough space in the output buffer for the
315 // string. Try printing into a SmallVector that is resized to have enough
316 // space. Iterate until we win.
317 SmallVector<char, 128> V;
Dan Gohman16e02092010-03-24 19:38:02 +0000318
Chris Lattner097af7f2008-08-23 19:23:10 +0000319 while (1) {
320 V.resize(NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000321
Chris Lattner097af7f2008-08-23 19:23:10 +0000322 // Try formatting into the SmallVector.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000323 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000324
Chris Lattner097af7f2008-08-23 19:23:10 +0000325 // If BytesUsed fit into the vector, we win.
Chris Lattnerf61ca1e2008-10-26 19:20:47 +0000326 if (BytesUsed <= NextBufferSize)
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000327 return write(V.data(), BytesUsed);
Dan Gohman16e02092010-03-24 19:38:02 +0000328
Chris Lattner097af7f2008-08-23 19:23:10 +0000329 // Otherwise, try again with a new size.
330 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
331 NextBufferSize = BytesUsed;
332 }
333}
334
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000335/// indent - Insert 'NumSpaces' spaces.
336raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
Dan Gohman61ee1002009-08-24 04:13:01 +0000337 static const char Spaces[] = " "
338 " "
339 " ";
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000340
341 // Usually the indentation is small, handle it with a fastpath.
Dan Gohmancb1308b2009-08-24 04:43:38 +0000342 if (NumSpaces < array_lengthof(Spaces))
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000343 return write(Spaces, NumSpaces);
Dan Gohman16e02092010-03-24 19:38:02 +0000344
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000345 while (NumSpaces) {
Dan Gohmancb1308b2009-08-24 04:43:38 +0000346 unsigned NumToWrite = std::min(NumSpaces,
347 (unsigned)array_lengthof(Spaces)-1);
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000348 write(Spaces, NumToWrite);
349 NumSpaces -= NumToWrite;
350 }
351 return *this;
352}
353
354
Chris Lattner097af7f2008-08-23 19:23:10 +0000355//===----------------------------------------------------------------------===//
356// Formatted Output
357//===----------------------------------------------------------------------===//
358
359// Out of line virtual method.
360void format_object_base::home() {
361}
362
Chris Lattner60d39622008-08-17 01:35:29 +0000363//===----------------------------------------------------------------------===//
364// raw_fd_ostream
365//===----------------------------------------------------------------------===//
366
Daniel Dunbar48534b32008-10-21 19:53:10 +0000367/// raw_fd_ostream - Open the specified file for writing. If an error
368/// occurs, information about the error is put into ErrorInfo, and the
369/// stream should be immediately destroyed; the string will be empty
370/// if no error occurred.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000371raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
372 unsigned Flags) : pos(0) {
Chris Lattnerf071d4e2010-03-05 00:49:08 +0000373 assert(Filename != 0 && "Filename is null");
Dan Gohmanbaa26392009-08-25 15:34:52 +0000374 // Verify that we don't have both "append" and "excl".
375 assert((!(Flags & F_Excl) || !(Flags & F_Append)) &&
376 "Cannot specify both 'excl' and 'append' file creation flags!");
Dan Gohman16e02092010-03-24 19:38:02 +0000377
Daniel Dunbar48534b32008-10-21 19:53:10 +0000378 ErrorInfo.clear();
379
Chris Lattnerc52b1282008-08-17 03:53:23 +0000380 // Handle "-" as stdout.
381 if (Filename[0] == '-' && Filename[1] == 0) {
382 FD = STDOUT_FILENO;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000383 // If user requested binary then put stdout into binary mode if
384 // possible.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000385 if (Flags & F_Binary)
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000386 sys::Program::ChangeStdoutToBinary();
Chris Lattnerc52b1282008-08-17 03:53:23 +0000387 ShouldClose = false;
388 return;
389 }
Dan Gohman16e02092010-03-24 19:38:02 +0000390
Chris Lattner17e9edc2009-08-23 02:51:22 +0000391 int OpenFlags = O_WRONLY|O_CREAT;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000392#ifdef O_BINARY
Benjamin Kramerae603242009-08-23 08:57:52 +0000393 if (Flags & F_Binary)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000394 OpenFlags |= O_BINARY;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000395#endif
Dan Gohman16e02092010-03-24 19:38:02 +0000396
Dan Gohmanbaa26392009-08-25 15:34:52 +0000397 if (Flags & F_Append)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000398 OpenFlags |= O_APPEND;
399 else
Dan Gohmanbaa26392009-08-25 15:34:52 +0000400 OpenFlags |= O_TRUNC;
401 if (Flags & F_Excl)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000402 OpenFlags |= O_EXCL;
Dan Gohman16e02092010-03-24 19:38:02 +0000403
Dan Gohman06572792010-05-06 02:06:20 +0000404 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
405 if (errno != EINTR) {
406 ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
407 ShouldClose = false;
408 return;
409 }
Chris Lattner60d39622008-08-17 01:35:29 +0000410 }
Dan Gohman06572792010-05-06 02:06:20 +0000411
412 // Ok, we successfully opened the file, so it'll need to be closed.
413 ShouldClose = true;
Chris Lattner60d39622008-08-17 01:35:29 +0000414}
415
416raw_fd_ostream::~raw_fd_ostream() {
Chris Lattner17e9edc2009-08-23 02:51:22 +0000417 if (FD < 0) return;
418 flush();
419 if (ShouldClose)
Dan Gohman06572792010-05-06 02:06:20 +0000420 while (::close(FD) != 0)
421 if (errno != EINTR) {
422 error_detected();
423 break;
424 }
Chris Lattner60d39622008-08-17 01:35:29 +0000425}
426
Chris Lattner17e9edc2009-08-23 02:51:22 +0000427
Dan Gohmanad60f662009-07-16 15:24:40 +0000428void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohman16e02092010-03-24 19:38:02 +0000429 assert(FD >= 0 && "File already closed.");
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000430 pos += Size;
Dan Gohman5fe89d02010-05-06 01:27:36 +0000431
Benjamin Kramer66760be2010-05-05 15:17:47 +0000432 do {
Dan Gohman52c23952010-05-28 16:50:23 +0000433 ssize_t ret = ::write(FD, Ptr, Size);
Dan Gohman5fe89d02010-05-06 01:27:36 +0000434
435 if (ret < 0) {
436 // If it's a recoverable error, swallow it and retry the write.
Dan Gohman68e947a2010-05-18 15:25:14 +0000437 //
438 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
439 // raw_ostream isn't designed to do non-blocking I/O. However, some
440 // programs, such as old versions of bjam, have mistakenly used
441 // O_NONBLOCK. For compatibility, emulate blocking semantics by
442 // spinning until the write succeeds. If you don't want spinning,
443 // don't use O_NONBLOCK file descriptors with raw_ostream.
Dan Gohman06572792010-05-06 02:06:20 +0000444 if (errno == EINTR || errno == EAGAIN
445#ifdef EWOULDBLOCK
446 || errno == EWOULDBLOCK
447#endif
448 )
Dan Gohman5fe89d02010-05-06 01:27:36 +0000449 continue;
450
451 // Otherwise it's a non-recoverable error. Note it and quit.
452 error_detected();
453 break;
454 }
455
456 // The write may have written some or all of the data. Update the
457 // size and buffer pointer to reflect the remainder that needs
458 // to be written. If there are no bytes left, we're done.
459 Ptr += ret;
460 Size -= ret;
461 } while (Size > 0);
Chris Lattner60d39622008-08-17 01:35:29 +0000462}
463
Ted Kremenek43d1f022008-10-23 23:49:09 +0000464void raw_fd_ostream::close() {
Dan Gohman16e02092010-03-24 19:38:02 +0000465 assert(ShouldClose);
Ted Kremenek43d1f022008-10-23 23:49:09 +0000466 ShouldClose = false;
467 flush();
Dan Gohman06572792010-05-06 02:06:20 +0000468 while (::close(FD) != 0)
469 if (errno != EINTR) {
470 error_detected();
471 break;
472 }
Ted Kremenek43d1f022008-10-23 23:49:09 +0000473 FD = -1;
474}
475
Ted Kremenek9c278862009-01-26 21:42:04 +0000476uint64_t raw_fd_ostream::seek(uint64_t off) {
477 flush();
Daniel Dunbar579fb872009-07-15 08:11:46 +0000478 pos = ::lseek(FD, off, SEEK_SET);
Dan Gohmand3a974f2009-07-15 16:43:01 +0000479 if (pos != off)
Dan Gohmane87b2ab2009-07-15 23:25:33 +0000480 error_detected();
Dan Gohman16e02092010-03-24 19:38:02 +0000481 return pos;
Ted Kremenek9c278862009-01-26 21:42:04 +0000482}
483
Chris Lattnercd0129f2009-12-19 01:38:42 +0000484size_t raw_fd_ostream::preferred_buffer_size() const {
Chris Lattner29269d02010-07-07 15:52:27 +0000485#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
Chris Lattner21aa3472010-04-09 20:45:04 +0000486 // Windows and Minix have no st_blksize.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000487 assert(FD >= 0 && "File not yet open!");
488 struct stat statbuf;
Chris Lattnercd0129f2009-12-19 01:38:42 +0000489 if (fstat(FD, &statbuf) != 0)
490 return 0;
Dan Gohman16e02092010-03-24 19:38:02 +0000491
Chris Lattnercd0129f2009-12-19 01:38:42 +0000492 // If this is a terminal, don't use buffering. Line buffering
493 // would be a more traditional thing to do, but it's not worth
494 // the complexity.
495 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
496 return 0;
497 // Return the preferred block size.
498 return statbuf.st_blksize;
Dan Gohman9ba7f652010-05-28 16:50:01 +0000499#else
Dan Gohman208ec0f2009-08-13 17:27:29 +0000500 return raw_ostream::preferred_buffer_size();
Dan Gohman9ba7f652010-05-28 16:50:01 +0000501#endif
Dan Gohman208ec0f2009-08-13 17:27:29 +0000502}
503
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000504raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
505 bool bg) {
506 if (sys::Process::ColorNeedsFlush())
507 flush();
508 const char *colorcode =
509 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
510 : sys::Process::OutputColor(colors, bold, bg);
511 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000512 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000513 write(colorcode, len);
514 // don't account colors towards output characters
515 pos -= len;
516 }
517 return *this;
518}
519
520raw_ostream &raw_fd_ostream::resetColor() {
521 if (sys::Process::ColorNeedsFlush())
522 flush();
523 const char *colorcode = sys::Process::ResetColor();
524 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000525 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000526 write(colorcode, len);
527 // don't account colors towards output characters
528 pos -= len;
529 }
530 return *this;
531}
532
Dan Gohmanec080462009-09-11 20:46:33 +0000533bool raw_fd_ostream::is_displayed() const {
534 return sys::Process::FileDescriptorIsDisplayed(FD);
535}
536
Chris Lattner07f51f72008-08-17 04:13:37 +0000537//===----------------------------------------------------------------------===//
538// raw_stdout/err_ostream
539//===----------------------------------------------------------------------===//
Chris Lattner60d39622008-08-17 01:35:29 +0000540
Dan Gohmanec9b2612009-08-13 23:18:56 +0000541// Set buffer settings to model stdout and stderr behavior.
Dan Gohmand7be6632009-08-15 02:05:19 +0000542// Set standard error to be unbuffered by default.
543raw_stdout_ostream::raw_stdout_ostream():raw_fd_ostream(STDOUT_FILENO, false) {}
544raw_stderr_ostream::raw_stderr_ostream():raw_fd_ostream(STDERR_FILENO, false,
Daniel Dunbare77e4342009-03-10 16:21:55 +0000545 true) {}
Chris Lattner60d39622008-08-17 01:35:29 +0000546
547// An out of line virtual method to provide a home for the class vtable.
548void raw_stdout_ostream::handle() {}
549void raw_stderr_ostream::handle() {}
Chris Lattner07f51f72008-08-17 04:13:37 +0000550
551/// outs() - This returns a reference to a raw_ostream for standard output.
552/// Use it like: outs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000553raw_ostream &llvm::outs() {
Chris Lattner07f51f72008-08-17 04:13:37 +0000554 static raw_stdout_ostream S;
555 return S;
556}
557
558/// errs() - This returns a reference to a raw_ostream for standard error.
559/// Use it like: errs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000560raw_ostream &llvm::errs() {
Chris Lattner07f51f72008-08-17 04:13:37 +0000561 static raw_stderr_ostream S;
562 return S;
563}
564
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000565/// nulls() - This returns a reference to a raw_ostream which discards output.
566raw_ostream &llvm::nulls() {
567 static raw_null_ostream S;
568 return S;
569}
570
Douglas Gregor8f7be472009-04-20 07:34:17 +0000571
Chris Lattner78a28122008-08-23 22:43:04 +0000572//===----------------------------------------------------------------------===//
573// raw_string_ostream
574//===----------------------------------------------------------------------===//
575
Daniel Dunbar35979c02009-08-18 20:07:36 +0000576raw_string_ostream::~raw_string_ostream() {
577 flush();
578}
579
Dan Gohmanad60f662009-07-16 15:24:40 +0000580void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000581 OS.append(Ptr, Size);
Chris Lattner78a28122008-08-23 22:43:04 +0000582}
583
584//===----------------------------------------------------------------------===//
585// raw_svector_ostream
586//===----------------------------------------------------------------------===//
587
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000588// The raw_svector_ostream implementation uses the SmallVector itself as the
589// buffer for the raw_ostream. We guarantee that the raw_ostream buffer is
590// always pointing past the end of the vector, but within the vector
591// capacity. This allows raw_ostream to write directly into the correct place,
592// and we only need to set the vector size when the data is flushed.
593
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000594raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
Daniel Dunbard14787e2009-08-19 18:40:58 +0000595 // Set up the initial external buffer. We make sure that the buffer has at
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000596 // least 128 bytes free; raw_ostream itself only requires 64, but we want to
597 // make sure that we don't grow the buffer unnecessarily on destruction (when
598 // the data is flushed). See the FIXME below.
Daniel Dunbard14787e2009-08-19 18:40:58 +0000599 OS.reserve(OS.size() + 128);
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000600 SetBuffer(OS.end(), OS.capacity() - OS.size());
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000601}
602
Daniel Dunbar35979c02009-08-18 20:07:36 +0000603raw_svector_ostream::~raw_svector_ostream() {
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000604 // FIXME: Prevent resizing during this flush().
Daniel Dunbar35979c02009-08-18 20:07:36 +0000605 flush();
606}
607
Chris Lattner14ca1772010-01-22 21:16:10 +0000608/// resync - This is called when the SmallVector we're appending to is changed
609/// outside of the raw_svector_ostream's control. It is only safe to do this
610/// if the raw_svector_ostream has previously been flushed.
611void raw_svector_ostream::resync() {
612 assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector");
613
614 if (OS.capacity() - OS.size() < 64)
615 OS.reserve(OS.capacity() * 2);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000616 SetBuffer(OS.end(), OS.capacity() - OS.size());
617}
618
Dan Gohmanad60f662009-07-16 15:24:40 +0000619void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
Chris Lattner17f26b42010-02-15 02:18:26 +0000620 // If we're writing bytes from the end of the buffer into the smallvector, we
621 // don't need to copy the bytes, just commit the bytes because they are
622 // already in the right place.
623 if (Ptr == OS.end()) {
624 assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
625 OS.set_size(OS.size() + Size);
626 } else {
627 assert(GetNumBytesInBuffer() == 0 &&
628 "Should be writing from buffer if some bytes in it");
629 // Otherwise, do copy the bytes.
630 OS.append(Ptr, Ptr+Size);
631 }
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000632
633 // Grow the vector if necessary.
634 if (OS.capacity() - OS.size() < 64)
635 OS.reserve(OS.capacity() * 2);
636
637 // Update the buffer position.
638 SetBuffer(OS.end(), OS.capacity() - OS.size());
Chris Lattner78a28122008-08-23 22:43:04 +0000639}
640
Chris Lattnercd0129f2009-12-19 01:38:42 +0000641uint64_t raw_svector_ostream::current_pos() const {
642 return OS.size();
643}
Douglas Gregor8f7be472009-04-20 07:34:17 +0000644
Daniel Dunbard14787e2009-08-19 18:40:58 +0000645StringRef raw_svector_ostream::str() {
646 flush();
647 return StringRef(OS.begin(), OS.size());
648}
649
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000650//===----------------------------------------------------------------------===//
651// raw_null_ostream
652//===----------------------------------------------------------------------===//
653
Dan Gohmanf78c8352009-07-27 21:46:02 +0000654raw_null_ostream::~raw_null_ostream() {
655#ifndef NDEBUG
656 // ~raw_ostream asserts that the buffer is empty. This isn't necessary
657 // with raw_null_ostream, but it's better to have raw_null_ostream follow
658 // the rules than to change the rules just for raw_null_ostream.
659 flush();
660#endif
661}
662
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000663void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
664}
665
Chris Lattnercd0129f2009-12-19 01:38:42 +0000666uint64_t raw_null_ostream::current_pos() const {
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000667 return 0;
668}