blob: 4c947c705532c08582bab49bd298023e4125f59a [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}
Chris Lattner969a46a2008-08-22 15:45:00 +000060
Chris Lattner60d39622008-08-17 01:35:29 +000061// An out of line virtual method to provide a home for the class vtable.
62void raw_ostream::handle() {}
63
Chris Lattnercd0129f2009-12-19 01:38:42 +000064size_t raw_ostream::preferred_buffer_size() const {
Dan Gohman208ec0f2009-08-13 17:27:29 +000065 // BUFSIZ is intended to be a reasonable default.
66 return BUFSIZ;
67}
68
69void raw_ostream::SetBuffered() {
70 // Ask the subclass to determine an appropriate buffer size.
Dan Gohmand7be6632009-08-15 02:05:19 +000071 if (size_t Size = preferred_buffer_size())
72 SetBufferSize(Size);
73 else
74 // It may return 0, meaning this stream should be unbuffered.
75 SetUnbuffered();
Dan Gohman208ec0f2009-08-13 17:27:29 +000076}
77
Dan Gohman16e02092010-03-24 19:38:02 +000078void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
Daniel Dunbar906d5b42009-08-18 23:42:36 +000079 BufferKind Mode) {
Dan Gohman16e02092010-03-24 19:38:02 +000080 assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) ||
Daniel Dunbarc8213b72009-09-15 20:31:46 +000081 (Mode != Unbuffered && BufferStart && Size)) &&
82 "stream must be unbuffered or have at least one byte");
Daniel Dunbar906d5b42009-08-18 23:42:36 +000083 // Make sure the current buffer is free of content (we can't flush here; the
84 // child buffer management logic will be in write_impl).
85 assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
Dan Gohman524dea42009-08-13 15:58:55 +000086
Daniel Dunbar906d5b42009-08-18 23:42:36 +000087 if (BufferMode == InternalBuffer)
88 delete [] OutBufStart;
89 OutBufStart = BufferStart;
Dan Gohman524dea42009-08-13 15:58:55 +000090 OutBufEnd = OutBufStart+Size;
91 OutBufCur = OutBufStart;
Daniel Dunbar906d5b42009-08-18 23:42:36 +000092 BufferMode = Mode;
Daniel Dunbar425d08c2009-08-19 17:54:29 +000093
94 assert(OutBufStart <= OutBufEnd && "Invalid size!");
Dan Gohman524dea42009-08-13 15:58:55 +000095}
96
Owen Anderson66b17ba2008-08-21 20:58:52 +000097raw_ostream &raw_ostream::operator<<(unsigned long N) {
98 // Zero is a special case.
99 if (N == 0)
100 return *this << '0';
Dan Gohman16e02092010-03-24 19:38:02 +0000101
Owen Anderson66b17ba2008-08-21 20:58:52 +0000102 char NumberBuffer[20];
103 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
104 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000105
Owen Anderson66b17ba2008-08-21 20:58:52 +0000106 while (N) {
107 *--CurPtr = '0' + char(N % 10);
108 N /= 10;
109 }
110 return write(CurPtr, EndPtr-CurPtr);
111}
112
113raw_ostream &raw_ostream::operator<<(long N) {
114 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000115 *this << '-';
Owen Anderson66b17ba2008-08-21 20:58:52 +0000116 N = -N;
117 }
Dan Gohman16e02092010-03-24 19:38:02 +0000118
Owen Anderson66b17ba2008-08-21 20:58:52 +0000119 return this->operator<<(static_cast<unsigned long>(N));
120}
121
122raw_ostream &raw_ostream::operator<<(unsigned long long N) {
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000123 // Output using 32-bit div/mod when possible.
Daniel Dunbar78a3dd82009-07-29 06:45:14 +0000124 if (N == static_cast<unsigned long>(N))
125 return this->operator<<(static_cast<unsigned long>(N));
126
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000127 char NumberBuffer[20];
128 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
129 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000130
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000131 while (N) {
132 *--CurPtr = '0' + char(N % 10);
133 N /= 10;
134 }
135 return write(CurPtr, EndPtr-CurPtr);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000136}
137
138raw_ostream &raw_ostream::operator<<(long long N) {
Chris Lattnere211cd82010-08-03 16:41:24 +0000139 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000140 *this << '-';
Chris Lattnere211cd82010-08-03 16:41:24 +0000141 // Avoid undefined behavior on INT64_MIN with a cast.
142 N = -(unsigned long long)N;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000143 }
Dan Gohman16e02092010-03-24 19:38:02 +0000144
Owen Anderson66b17ba2008-08-21 20:58:52 +0000145 return this->operator<<(static_cast<unsigned long long>(N));
146}
147
Daniel Dunbar48018e02009-07-30 18:21:23 +0000148raw_ostream &raw_ostream::write_hex(unsigned long long N) {
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000149 // Zero is a special case.
150 if (N == 0)
151 return *this << '0';
152
153 char NumberBuffer[20];
154 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
155 char *CurPtr = EndPtr;
156
157 while (N) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000158 uintptr_t x = N % 16;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000159 *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
160 N /= 16;
161 }
162
163 return write(CurPtr, EndPtr-CurPtr);
Chris Lattner944fac72008-08-23 22:23:09 +0000164}
165
Daniel Dunbar522b1132009-10-17 20:43:08 +0000166raw_ostream &raw_ostream::write_escaped(StringRef Str) {
167 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
168 unsigned char c = Str[i];
169
170 switch (c) {
171 case '\\':
172 *this << '\\' << '\\';
173 break;
174 case '\t':
175 *this << '\\' << 't';
176 break;
177 case '\n':
178 *this << '\\' << 'n';
179 break;
180 case '"':
181 *this << '\\' << '"';
182 break;
183 default:
184 if (std::isprint(c)) {
185 *this << c;
186 break;
187 }
188
189 // Always expand to a 3-character octal escape.
190 *this << '\\';
191 *this << char('0' + ((c >> 6) & 7));
192 *this << char('0' + ((c >> 3) & 7));
193 *this << char('0' + ((c >> 0) & 7));
194 }
195 }
196
197 return *this;
198}
199
Daniel Dunbar48018e02009-07-30 18:21:23 +0000200raw_ostream &raw_ostream::operator<<(const void *P) {
201 *this << '0' << 'x';
202
203 return write_hex((uintptr_t) P);
204}
205
Chris Lattner23132b12009-08-24 03:52:50 +0000206raw_ostream &raw_ostream::operator<<(double N) {
Benjamin Kramerf304ff62010-01-29 14:40:33 +0000207 return this->operator<<(format("%e", N));
Chris Lattner23132b12009-08-24 03:52:50 +0000208}
209
210
211
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000212void raw_ostream::flush_nonempty() {
213 assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000214 size_t Length = OutBufCur - OutBufStart;
215 OutBufCur = OutBufStart;
216 write_impl(OutBufStart, Length);
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000217}
218
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000219raw_ostream &raw_ostream::write(unsigned char C) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000220 // Group exceptional cases into a single branch.
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000221 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
222 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000223 if (BufferMode == Unbuffered) {
Dan Gohman37316042009-08-18 20:09:59 +0000224 write_impl(reinterpret_cast<char*>(&C), 1);
225 return *this;
226 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000227 // Set up a buffer and start over.
228 SetBuffered();
229 return write(C);
Dan Gohman37316042009-08-18 20:09:59 +0000230 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000231
232 flush_nonempty();
Daniel Dunbard17d74b2009-03-17 01:13:35 +0000233 }
234
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000235 *OutBufCur++ = C;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000236 return *this;
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000237}
Chris Lattner944fac72008-08-23 22:23:09 +0000238
Dan Gohmanad60f662009-07-16 15:24:40 +0000239raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000240 // Group exceptional cases into a single branch.
Daniel Dunbarb372c112009-03-17 21:15:18 +0000241 if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000242 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000243 if (BufferMode == Unbuffered) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000244 write_impl(Ptr, Size);
245 return *this;
246 }
247 // Set up a buffer and start over.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000248 SetBuffered();
Dan Gohman33e49ef2009-08-13 15:44:52 +0000249 return write(Ptr, Size);
250 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000251
Dan Gohman33e49ef2009-08-13 15:44:52 +0000252 // Write out the data in buffer-sized blocks until the remainder
253 // fits within the buffer.
254 do {
255 size_t NumBytes = OutBufEnd - OutBufCur;
256 copy_to_buffer(Ptr, NumBytes);
Daniel Dunbar262541b2009-03-17 01:36:56 +0000257 flush_nonempty();
Dan Gohman33e49ef2009-08-13 15:44:52 +0000258 Ptr += NumBytes;
259 Size -= NumBytes;
260 } while (OutBufCur+Size > OutBufEnd);
Daniel Dunbar262541b2009-03-17 01:36:56 +0000261 }
Dan Gohman33e49ef2009-08-13 15:44:52 +0000262
263 copy_to_buffer(Ptr, Size);
264
265 return *this;
266}
267
268void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
Dan Gohmanc6126e82009-08-13 20:32:03 +0000269 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
Dan Gohman4e8e6422009-08-13 18:38:15 +0000270
Owen Anderson66b17ba2008-08-21 20:58:52 +0000271 // Handle short strings specially, memcpy isn't very good at very short
272 // strings.
273 switch (Size) {
274 case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
275 case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
276 case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
277 case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
278 case 0: break;
279 default:
Dan Gohman33e49ef2009-08-13 15:44:52 +0000280 memcpy(OutBufCur, Ptr, Size);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000281 break;
282 }
Daniel Dunbare77e4342009-03-10 16:21:55 +0000283
Dan Gohman33e49ef2009-08-13 15:44:52 +0000284 OutBufCur += Size;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000285}
286
Chris Lattner097af7f2008-08-23 19:23:10 +0000287// Formatted output.
288raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000289 // If we have more than a few bytes left in our output buffer, try
290 // formatting directly onto its end.
Dan Gohmanad60f662009-07-16 15:24:40 +0000291 size_t NextBufferSize = 127;
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000292 size_t BufferBytesLeft = OutBufEnd - OutBufCur;
293 if (BufferBytesLeft > 3) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000294 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
Dan Gohman16e02092010-03-24 19:38:02 +0000295
Chris Lattner097af7f2008-08-23 19:23:10 +0000296 // Common case is that we have plenty of space.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000297 if (BytesUsed <= BufferBytesLeft) {
Chris Lattner097af7f2008-08-23 19:23:10 +0000298 OutBufCur += BytesUsed;
299 return *this;
300 }
Dan Gohman16e02092010-03-24 19:38:02 +0000301
Chris Lattner097af7f2008-08-23 19:23:10 +0000302 // Otherwise, we overflowed and the return value tells us the size to try
303 // again with.
304 NextBufferSize = BytesUsed;
305 }
Dan Gohman16e02092010-03-24 19:38:02 +0000306
Chris Lattner097af7f2008-08-23 19:23:10 +0000307 // If we got here, we didn't have enough space in the output buffer for the
308 // string. Try printing into a SmallVector that is resized to have enough
309 // space. Iterate until we win.
310 SmallVector<char, 128> V;
Dan Gohman16e02092010-03-24 19:38:02 +0000311
Chris Lattner097af7f2008-08-23 19:23:10 +0000312 while (1) {
313 V.resize(NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000314
Chris Lattner097af7f2008-08-23 19:23:10 +0000315 // Try formatting into the SmallVector.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000316 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000317
Chris Lattner097af7f2008-08-23 19:23:10 +0000318 // If BytesUsed fit into the vector, we win.
Chris Lattnerf61ca1e2008-10-26 19:20:47 +0000319 if (BytesUsed <= NextBufferSize)
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000320 return write(V.data(), BytesUsed);
Dan Gohman16e02092010-03-24 19:38:02 +0000321
Chris Lattner097af7f2008-08-23 19:23:10 +0000322 // Otherwise, try again with a new size.
323 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
324 NextBufferSize = BytesUsed;
325 }
326}
327
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000328/// indent - Insert 'NumSpaces' spaces.
329raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
Dan Gohman61ee1002009-08-24 04:13:01 +0000330 static const char Spaces[] = " "
331 " "
332 " ";
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000333
334 // Usually the indentation is small, handle it with a fastpath.
Dan Gohmancb1308b2009-08-24 04:43:38 +0000335 if (NumSpaces < array_lengthof(Spaces))
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000336 return write(Spaces, NumSpaces);
Dan Gohman16e02092010-03-24 19:38:02 +0000337
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000338 while (NumSpaces) {
Dan Gohmancb1308b2009-08-24 04:43:38 +0000339 unsigned NumToWrite = std::min(NumSpaces,
340 (unsigned)array_lengthof(Spaces)-1);
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000341 write(Spaces, NumToWrite);
342 NumSpaces -= NumToWrite;
343 }
344 return *this;
345}
346
347
Chris Lattner097af7f2008-08-23 19:23:10 +0000348//===----------------------------------------------------------------------===//
349// Formatted Output
350//===----------------------------------------------------------------------===//
351
352// Out of line virtual method.
353void format_object_base::home() {
354}
355
Chris Lattner60d39622008-08-17 01:35:29 +0000356//===----------------------------------------------------------------------===//
357// raw_fd_ostream
358//===----------------------------------------------------------------------===//
359
Daniel Dunbar48534b32008-10-21 19:53:10 +0000360/// raw_fd_ostream - Open the specified file for writing. If an error
361/// occurs, information about the error is put into ErrorInfo, and the
362/// stream should be immediately destroyed; the string will be empty
363/// if no error occurred.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000364raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
Dan Gohman8df0e012010-08-20 16:34:20 +0000365 unsigned Flags) : Error(false), pos(0) {
Chris Lattnerf071d4e2010-03-05 00:49:08 +0000366 assert(Filename != 0 && "Filename is null");
Dan Gohmanbaa26392009-08-25 15:34:52 +0000367 // Verify that we don't have both "append" and "excl".
368 assert((!(Flags & F_Excl) || !(Flags & F_Append)) &&
369 "Cannot specify both 'excl' and 'append' file creation flags!");
Dan Gohman16e02092010-03-24 19:38:02 +0000370
Daniel Dunbar48534b32008-10-21 19:53:10 +0000371 ErrorInfo.clear();
372
Dan Gohman24999902010-08-18 22:26:19 +0000373 // Handle "-" as stdout. Note that when we do this, we consider ourself
374 // the owner of stdout. This means that we can do things like close the
375 // file descriptor when we're done and set the "binary" flag globally.
Chris Lattnerc52b1282008-08-17 03:53:23 +0000376 if (Filename[0] == '-' && Filename[1] == 0) {
377 FD = STDOUT_FILENO;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000378 // If user requested binary then put stdout into binary mode if
379 // possible.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000380 if (Flags & F_Binary)
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000381 sys::Program::ChangeStdoutToBinary();
Dan Gohman24999902010-08-18 22:26:19 +0000382 // Close stdout when we're done, to detect any output errors.
383 ShouldClose = true;
Chris Lattnerc52b1282008-08-17 03:53:23 +0000384 return;
385 }
Dan Gohman16e02092010-03-24 19:38:02 +0000386
Chris Lattner17e9edc2009-08-23 02:51:22 +0000387 int OpenFlags = O_WRONLY|O_CREAT;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000388#ifdef O_BINARY
Benjamin Kramerae603242009-08-23 08:57:52 +0000389 if (Flags & F_Binary)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000390 OpenFlags |= O_BINARY;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000391#endif
Dan Gohman16e02092010-03-24 19:38:02 +0000392
Dan Gohmanbaa26392009-08-25 15:34:52 +0000393 if (Flags & F_Append)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000394 OpenFlags |= O_APPEND;
395 else
Dan Gohmanbaa26392009-08-25 15:34:52 +0000396 OpenFlags |= O_TRUNC;
397 if (Flags & F_Excl)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000398 OpenFlags |= O_EXCL;
Dan Gohman16e02092010-03-24 19:38:02 +0000399
Dan Gohman06572792010-05-06 02:06:20 +0000400 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
401 if (errno != EINTR) {
402 ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
403 ShouldClose = false;
404 return;
405 }
Chris Lattner60d39622008-08-17 01:35:29 +0000406 }
Dan Gohman06572792010-05-06 02:06:20 +0000407
408 // Ok, we successfully opened the file, so it'll need to be closed.
409 ShouldClose = true;
Chris Lattner60d39622008-08-17 01:35:29 +0000410}
411
412raw_fd_ostream::~raw_fd_ostream() {
Dan Gohman8df0e012010-08-20 16:34:20 +0000413 if (FD >= 0) {
414 flush();
415 if (ShouldClose)
416 while (::close(FD) != 0)
417 if (errno != EINTR) {
418 error_detected();
419 break;
420 }
421 }
422
423 // If there are any pending errors, report them now. Clients wishing
424 // to avoid report_fatal_error calls should check for errors with
425 // has_error() and clear the error flag with clear_error() before
426 // destructing raw_ostream objects which may have errors.
427 if (has_error())
428 report_fatal_error("IO failure on output stream.");
Chris Lattner93d81b62010-08-17 23:11:56 +0000429}
Chris Lattner17e9edc2009-08-23 02:51:22 +0000430
Dan Gohmand2da3272010-08-18 01:34:52 +0000431
Dan Gohmanad60f662009-07-16 15:24:40 +0000432void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohman16e02092010-03-24 19:38:02 +0000433 assert(FD >= 0 && "File already closed.");
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000434 pos += Size;
Dan Gohman5fe89d02010-05-06 01:27:36 +0000435
Benjamin Kramer66760be2010-05-05 15:17:47 +0000436 do {
Dan Gohman52c23952010-05-28 16:50:23 +0000437 ssize_t ret = ::write(FD, Ptr, Size);
Dan Gohman5fe89d02010-05-06 01:27:36 +0000438
439 if (ret < 0) {
440 // If it's a recoverable error, swallow it and retry the write.
Dan Gohman68e947a2010-05-18 15:25:14 +0000441 //
442 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
443 // raw_ostream isn't designed to do non-blocking I/O. However, some
444 // programs, such as old versions of bjam, have mistakenly used
445 // O_NONBLOCK. For compatibility, emulate blocking semantics by
446 // spinning until the write succeeds. If you don't want spinning,
447 // don't use O_NONBLOCK file descriptors with raw_ostream.
Dan Gohman06572792010-05-06 02:06:20 +0000448 if (errno == EINTR || errno == EAGAIN
449#ifdef EWOULDBLOCK
450 || errno == EWOULDBLOCK
451#endif
452 )
Dan Gohman5fe89d02010-05-06 01:27:36 +0000453 continue;
454
455 // Otherwise it's a non-recoverable error. Note it and quit.
456 error_detected();
457 break;
458 }
459
460 // The write may have written some or all of the data. Update the
461 // size and buffer pointer to reflect the remainder that needs
462 // to be written. If there are no bytes left, we're done.
463 Ptr += ret;
464 Size -= ret;
465 } while (Size > 0);
Chris Lattner60d39622008-08-17 01:35:29 +0000466}
467
Dan Gohmand2da3272010-08-18 01:34:52 +0000468void raw_fd_ostream::close() {
469 assert(ShouldClose);
470 ShouldClose = false;
471 flush();
472 while (::close(FD) != 0)
473 if (errno != EINTR) {
474 error_detected();
475 break;
476 }
477 FD = -1;
478}
479
Ted Kremenek9c278862009-01-26 21:42:04 +0000480uint64_t raw_fd_ostream::seek(uint64_t off) {
481 flush();
Daniel Dunbar579fb872009-07-15 08:11:46 +0000482 pos = ::lseek(FD, off, SEEK_SET);
Dan Gohmand3a974f2009-07-15 16:43:01 +0000483 if (pos != off)
Dan Gohmane87b2ab2009-07-15 23:25:33 +0000484 error_detected();
Dan Gohman16e02092010-03-24 19:38:02 +0000485 return pos;
Ted Kremenek9c278862009-01-26 21:42:04 +0000486}
487
Chris Lattnercd0129f2009-12-19 01:38:42 +0000488size_t raw_fd_ostream::preferred_buffer_size() const {
Chris Lattner29269d02010-07-07 15:52:27 +0000489#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
Chris Lattner21aa3472010-04-09 20:45:04 +0000490 // Windows and Minix have no st_blksize.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000491 assert(FD >= 0 && "File not yet open!");
492 struct stat statbuf;
Chris Lattnercd0129f2009-12-19 01:38:42 +0000493 if (fstat(FD, &statbuf) != 0)
494 return 0;
Dan Gohman16e02092010-03-24 19:38:02 +0000495
Chris Lattnercd0129f2009-12-19 01:38:42 +0000496 // If this is a terminal, don't use buffering. Line buffering
497 // would be a more traditional thing to do, but it's not worth
498 // the complexity.
499 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
500 return 0;
501 // Return the preferred block size.
502 return statbuf.st_blksize;
Dan Gohman9ba7f652010-05-28 16:50:01 +0000503#else
Dan Gohman208ec0f2009-08-13 17:27:29 +0000504 return raw_ostream::preferred_buffer_size();
Dan Gohman9ba7f652010-05-28 16:50:01 +0000505#endif
Dan Gohman208ec0f2009-08-13 17:27:29 +0000506}
507
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000508raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
509 bool bg) {
510 if (sys::Process::ColorNeedsFlush())
511 flush();
512 const char *colorcode =
513 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
514 : sys::Process::OutputColor(colors, bold, bg);
515 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000516 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000517 write(colorcode, len);
518 // don't account colors towards output characters
519 pos -= len;
520 }
521 return *this;
522}
523
524raw_ostream &raw_fd_ostream::resetColor() {
525 if (sys::Process::ColorNeedsFlush())
526 flush();
527 const char *colorcode = sys::Process::ResetColor();
528 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000529 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000530 write(colorcode, len);
531 // don't account colors towards output characters
532 pos -= len;
533 }
534 return *this;
535}
536
Dan Gohmanec080462009-09-11 20:46:33 +0000537bool raw_fd_ostream::is_displayed() const {
538 return sys::Process::FileDescriptorIsDisplayed(FD);
539}
540
Chris Lattner07f51f72008-08-17 04:13:37 +0000541//===----------------------------------------------------------------------===//
Dan Gohman5d56d9d2010-08-20 16:44:56 +0000542// outs(), errs(), nulls()
Chris Lattner07f51f72008-08-17 04:13:37 +0000543//===----------------------------------------------------------------------===//
Chris Lattner60d39622008-08-17 01:35:29 +0000544
Chris Lattner07f51f72008-08-17 04:13:37 +0000545/// outs() - This returns a reference to a raw_ostream for standard output.
546/// Use it like: outs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000547raw_ostream &llvm::outs() {
Dan Gohmana1f89de2010-08-20 16:39:41 +0000548 // Set buffer settings to model stdout behavior.
Dan Gohman5d56d9d2010-08-20 16:44:56 +0000549 // Delete the file descriptor when the program exists, forcing error
550 // detection. If you don't want this behavior, don't use outs().
551 static raw_fd_ostream S(STDOUT_FILENO, true);
Chris Lattner07f51f72008-08-17 04:13:37 +0000552 return S;
553}
554
555/// errs() - This returns a reference to a raw_ostream for standard error.
556/// Use it like: errs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000557raw_ostream &llvm::errs() {
Dan Gohmana1f89de2010-08-20 16:39:41 +0000558 // Set standard error to be unbuffered by default.
559 static raw_fd_ostream S(STDERR_FILENO, false, true);
Chris Lattner07f51f72008-08-17 04:13:37 +0000560 return S;
561}
562
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000563/// nulls() - This returns a reference to a raw_ostream which discards output.
564raw_ostream &llvm::nulls() {
565 static raw_null_ostream S;
566 return S;
567}
568
Douglas Gregor8f7be472009-04-20 07:34:17 +0000569
Chris Lattner78a28122008-08-23 22:43:04 +0000570//===----------------------------------------------------------------------===//
571// raw_string_ostream
572//===----------------------------------------------------------------------===//
573
Daniel Dunbar35979c02009-08-18 20:07:36 +0000574raw_string_ostream::~raw_string_ostream() {
575 flush();
576}
577
Dan Gohmanad60f662009-07-16 15:24:40 +0000578void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000579 OS.append(Ptr, Size);
Chris Lattner78a28122008-08-23 22:43:04 +0000580}
581
582//===----------------------------------------------------------------------===//
583// raw_svector_ostream
584//===----------------------------------------------------------------------===//
585
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000586// The raw_svector_ostream implementation uses the SmallVector itself as the
587// buffer for the raw_ostream. We guarantee that the raw_ostream buffer is
588// always pointing past the end of the vector, but within the vector
589// capacity. This allows raw_ostream to write directly into the correct place,
590// and we only need to set the vector size when the data is flushed.
591
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000592raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
Daniel Dunbard14787e2009-08-19 18:40:58 +0000593 // Set up the initial external buffer. We make sure that the buffer has at
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000594 // least 128 bytes free; raw_ostream itself only requires 64, but we want to
595 // make sure that we don't grow the buffer unnecessarily on destruction (when
596 // the data is flushed). See the FIXME below.
Daniel Dunbard14787e2009-08-19 18:40:58 +0000597 OS.reserve(OS.size() + 128);
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000598 SetBuffer(OS.end(), OS.capacity() - OS.size());
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000599}
600
Daniel Dunbar35979c02009-08-18 20:07:36 +0000601raw_svector_ostream::~raw_svector_ostream() {
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000602 // FIXME: Prevent resizing during this flush().
Daniel Dunbar35979c02009-08-18 20:07:36 +0000603 flush();
604}
605
Chris Lattner14ca1772010-01-22 21:16:10 +0000606/// resync - This is called when the SmallVector we're appending to is changed
607/// outside of the raw_svector_ostream's control. It is only safe to do this
608/// if the raw_svector_ostream has previously been flushed.
609void raw_svector_ostream::resync() {
610 assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector");
611
612 if (OS.capacity() - OS.size() < 64)
613 OS.reserve(OS.capacity() * 2);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000614 SetBuffer(OS.end(), OS.capacity() - OS.size());
615}
616
Dan Gohmanad60f662009-07-16 15:24:40 +0000617void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
Chris Lattner17f26b42010-02-15 02:18:26 +0000618 // If we're writing bytes from the end of the buffer into the smallvector, we
619 // don't need to copy the bytes, just commit the bytes because they are
620 // already in the right place.
621 if (Ptr == OS.end()) {
622 assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
623 OS.set_size(OS.size() + Size);
624 } else {
625 assert(GetNumBytesInBuffer() == 0 &&
626 "Should be writing from buffer if some bytes in it");
627 // Otherwise, do copy the bytes.
628 OS.append(Ptr, Ptr+Size);
629 }
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000630
631 // Grow the vector if necessary.
632 if (OS.capacity() - OS.size() < 64)
633 OS.reserve(OS.capacity() * 2);
634
635 // Update the buffer position.
636 SetBuffer(OS.end(), OS.capacity() - OS.size());
Chris Lattner78a28122008-08-23 22:43:04 +0000637}
638
Chris Lattnercd0129f2009-12-19 01:38:42 +0000639uint64_t raw_svector_ostream::current_pos() const {
640 return OS.size();
641}
Douglas Gregor8f7be472009-04-20 07:34:17 +0000642
Daniel Dunbard14787e2009-08-19 18:40:58 +0000643StringRef raw_svector_ostream::str() {
644 flush();
645 return StringRef(OS.begin(), OS.size());
646}
647
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000648//===----------------------------------------------------------------------===//
649// raw_null_ostream
650//===----------------------------------------------------------------------===//
651
Dan Gohmanf78c8352009-07-27 21:46:02 +0000652raw_null_ostream::~raw_null_ostream() {
653#ifndef NDEBUG
654 // ~raw_ostream asserts that the buffer is empty. This isn't necessary
655 // with raw_null_ostream, but it's better to have raw_null_ostream follow
656 // the rules than to change the rules just for raw_null_ostream.
657 flush();
658#endif
659}
660
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000661void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
662}
663
Chris Lattnercd0129f2009-12-19 01:38:42 +0000664uint64_t raw_null_ostream::current_pos() const {
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000665 return 0;
666}