blob: b8839e2943b7d541294ad3b947ad5a0a0c943c3a [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"
Michael J. Spencer1f6efa32010-11-29 18:16:10 +000016#include "llvm/Support/Program.h"
17#include "llvm/Support/Process.h"
Daniel Dunbar10a049e2010-11-27 07:59:50 +000018#include "llvm/ADT/StringExtras.h"
Chris Lattner097af7f2008-08-23 19:23:10 +000019#include "llvm/ADT/SmallVector.h"
Chris Lattner969a46a2008-08-22 15:45:00 +000020#include "llvm/Config/config.h"
Daniel Dunbarb372c112009-03-17 21:15:18 +000021#include "llvm/Support/Compiler.h"
Daniel Dunbar579fb872009-07-15 08:11:46 +000022#include "llvm/Support/ErrorHandling.h"
Dan Gohman61ee1002009-08-24 04:13:01 +000023#include "llvm/ADT/STLExtras.h"
Benjamin Kramer4f17eb82010-01-29 15:19:06 +000024#include <cctype>
Benjamin Kramer66760be2010-05-05 15:17:47 +000025#include <cerrno>
Dan Gohman208ec0f2009-08-13 17:27:29 +000026#include <sys/stat.h>
27#include <sys/types.h>
Chris Lattner60d39622008-08-17 01:35:29 +000028
Chris Lattner969a46a2008-08-22 15:45:00 +000029#if defined(HAVE_UNISTD_H)
30# include <unistd.h>
31#endif
32#if defined(HAVE_FCNTL_H)
33# include <fcntl.h>
34#endif
Daniel Dunbarb0cfa6c2011-02-03 03:32:32 +000035#if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV)
36# include <sys/uio.h>
37#endif
Argyrios Kyrtzidisb68dc362008-08-17 09:25:21 +000038
NAKAMURA Takumi1b5de0e2010-10-19 01:21:55 +000039#if defined(__CYGWIN__)
40#include <io.h>
41#endif
42
Argyrios Kyrtzidisb68dc362008-08-17 09:25:21 +000043#if defined(_MSC_VER)
Chris Lattner60d39622008-08-17 01:35:29 +000044#include <io.h>
Cedric Veneta3f343f2008-08-24 11:56:40 +000045#include <fcntl.h>
Owen Andersoncb371882008-08-21 00:14:44 +000046#ifndef STDIN_FILENO
47# define STDIN_FILENO 0
48#endif
49#ifndef STDOUT_FILENO
50# define STDOUT_FILENO 1
51#endif
52#ifndef STDERR_FILENO
53# define STDERR_FILENO 2
54#endif
Chris Lattner60d39622008-08-17 01:35:29 +000055#endif
56
Chris Lattner969a46a2008-08-22 15:45:00 +000057using namespace llvm;
58
Dan Gohmane87b2ab2009-07-15 23:25:33 +000059raw_ostream::~raw_ostream() {
Dan Gohman9a312542009-07-27 20:49:44 +000060 // raw_ostream's subclasses should take care to flush the buffer
61 // in their destructors.
62 assert(OutBufCur == OutBufStart &&
63 "raw_ostream destructor called with non-empty buffer!");
64
Daniel Dunbar906d5b42009-08-18 23:42:36 +000065 if (BufferMode == InternalBuffer)
66 delete [] OutBufStart;
Dan Gohmane87b2ab2009-07-15 23:25:33 +000067}
Chris Lattner969a46a2008-08-22 15:45:00 +000068
Chris Lattner60d39622008-08-17 01:35:29 +000069// An out of line virtual method to provide a home for the class vtable.
70void raw_ostream::handle() {}
71
Chris Lattnercd0129f2009-12-19 01:38:42 +000072size_t raw_ostream::preferred_buffer_size() const {
Dan Gohman208ec0f2009-08-13 17:27:29 +000073 // BUFSIZ is intended to be a reasonable default.
74 return BUFSIZ;
75}
76
77void raw_ostream::SetBuffered() {
78 // Ask the subclass to determine an appropriate buffer size.
Dan Gohmand7be6632009-08-15 02:05:19 +000079 if (size_t Size = preferred_buffer_size())
80 SetBufferSize(Size);
81 else
82 // It may return 0, meaning this stream should be unbuffered.
83 SetUnbuffered();
Dan Gohman208ec0f2009-08-13 17:27:29 +000084}
85
Dan Gohman16e02092010-03-24 19:38:02 +000086void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
Daniel Dunbar906d5b42009-08-18 23:42:36 +000087 BufferKind Mode) {
Dan Gohman16e02092010-03-24 19:38:02 +000088 assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) ||
Daniel Dunbarc8213b72009-09-15 20:31:46 +000089 (Mode != Unbuffered && BufferStart && Size)) &&
90 "stream must be unbuffered or have at least one byte");
Daniel Dunbar906d5b42009-08-18 23:42:36 +000091 // Make sure the current buffer is free of content (we can't flush here; the
92 // child buffer management logic will be in write_impl).
93 assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
Dan Gohman524dea42009-08-13 15:58:55 +000094
Daniel Dunbar906d5b42009-08-18 23:42:36 +000095 if (BufferMode == InternalBuffer)
96 delete [] OutBufStart;
97 OutBufStart = BufferStart;
Dan Gohman524dea42009-08-13 15:58:55 +000098 OutBufEnd = OutBufStart+Size;
99 OutBufCur = OutBufStart;
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000100 BufferMode = Mode;
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000101
102 assert(OutBufStart <= OutBufEnd && "Invalid size!");
Dan Gohman524dea42009-08-13 15:58:55 +0000103}
104
Owen Anderson66b17ba2008-08-21 20:58:52 +0000105raw_ostream &raw_ostream::operator<<(unsigned long N) {
106 // Zero is a special case.
107 if (N == 0)
108 return *this << '0';
Dan Gohman16e02092010-03-24 19:38:02 +0000109
Owen Anderson66b17ba2008-08-21 20:58:52 +0000110 char NumberBuffer[20];
111 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
112 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000113
Owen Anderson66b17ba2008-08-21 20:58:52 +0000114 while (N) {
115 *--CurPtr = '0' + char(N % 10);
116 N /= 10;
117 }
118 return write(CurPtr, EndPtr-CurPtr);
119}
120
121raw_ostream &raw_ostream::operator<<(long N) {
122 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000123 *this << '-';
Owen Anderson66b17ba2008-08-21 20:58:52 +0000124 N = -N;
125 }
Dan Gohman16e02092010-03-24 19:38:02 +0000126
Owen Anderson66b17ba2008-08-21 20:58:52 +0000127 return this->operator<<(static_cast<unsigned long>(N));
128}
129
130raw_ostream &raw_ostream::operator<<(unsigned long long N) {
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000131 // Output using 32-bit div/mod when possible.
Daniel Dunbar78a3dd82009-07-29 06:45:14 +0000132 if (N == static_cast<unsigned long>(N))
133 return this->operator<<(static_cast<unsigned long>(N));
134
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000135 char NumberBuffer[20];
136 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
137 char *CurPtr = EndPtr;
Dan Gohman16e02092010-03-24 19:38:02 +0000138
Daniel Dunbarecbd0bc2009-08-19 16:25:25 +0000139 while (N) {
140 *--CurPtr = '0' + char(N % 10);
141 N /= 10;
142 }
143 return write(CurPtr, EndPtr-CurPtr);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000144}
145
146raw_ostream &raw_ostream::operator<<(long long N) {
Chris Lattnere211cd82010-08-03 16:41:24 +0000147 if (N < 0) {
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000148 *this << '-';
Chris Lattnere211cd82010-08-03 16:41:24 +0000149 // Avoid undefined behavior on INT64_MIN with a cast.
150 N = -(unsigned long long)N;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000151 }
Dan Gohman16e02092010-03-24 19:38:02 +0000152
Owen Anderson66b17ba2008-08-21 20:58:52 +0000153 return this->operator<<(static_cast<unsigned long long>(N));
154}
155
Daniel Dunbar48018e02009-07-30 18:21:23 +0000156raw_ostream &raw_ostream::write_hex(unsigned long long N) {
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000157 // Zero is a special case.
158 if (N == 0)
159 return *this << '0';
160
161 char NumberBuffer[20];
162 char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
163 char *CurPtr = EndPtr;
164
165 while (N) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000166 uintptr_t x = N % 16;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000167 *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
168 N /= 16;
169 }
170
171 return write(CurPtr, EndPtr-CurPtr);
Chris Lattner944fac72008-08-23 22:23:09 +0000172}
173
Daniel Dunbar10a049e2010-11-27 07:59:50 +0000174raw_ostream &raw_ostream::write_escaped(StringRef Str,
175 bool UseHexEscapes) {
Daniel Dunbar522b1132009-10-17 20:43:08 +0000176 for (unsigned i = 0, e = Str.size(); i != e; ++i) {
177 unsigned char c = Str[i];
178
179 switch (c) {
180 case '\\':
181 *this << '\\' << '\\';
182 break;
183 case '\t':
184 *this << '\\' << 't';
185 break;
186 case '\n':
187 *this << '\\' << 'n';
188 break;
189 case '"':
190 *this << '\\' << '"';
191 break;
192 default:
193 if (std::isprint(c)) {
194 *this << c;
195 break;
196 }
197
Daniel Dunbar10a049e2010-11-27 07:59:50 +0000198 // Write out the escaped representation.
199 if (UseHexEscapes) {
200 *this << '\\' << 'x';
201 *this << hexdigit((c >> 4 & 0xF));
202 *this << hexdigit((c >> 0) & 0xF);
203 } else {
204 // Always use a full 3-character octal escape.
205 *this << '\\';
206 *this << char('0' + ((c >> 6) & 7));
207 *this << char('0' + ((c >> 3) & 7));
208 *this << char('0' + ((c >> 0) & 7));
209 }
Daniel Dunbar522b1132009-10-17 20:43:08 +0000210 }
211 }
212
213 return *this;
214}
215
Daniel Dunbar48018e02009-07-30 18:21:23 +0000216raw_ostream &raw_ostream::operator<<(const void *P) {
217 *this << '0' << 'x';
218
219 return write_hex((uintptr_t) P);
220}
221
Chris Lattner23132b12009-08-24 03:52:50 +0000222raw_ostream &raw_ostream::operator<<(double N) {
Benjamin Kramerf304ff62010-01-29 14:40:33 +0000223 return this->operator<<(format("%e", N));
Chris Lattner23132b12009-08-24 03:52:50 +0000224}
225
226
227
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000228void raw_ostream::flush_nonempty() {
229 assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000230 size_t Length = OutBufCur - OutBufStart;
231 OutBufCur = OutBufStart;
232 write_impl(OutBufStart, Length);
Daniel Dunbarcf2a2c62009-03-16 22:55:06 +0000233}
234
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000235raw_ostream &raw_ostream::write(unsigned char C) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000236 // Group exceptional cases into a single branch.
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000237 if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
238 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000239 if (BufferMode == Unbuffered) {
Dan Gohman37316042009-08-18 20:09:59 +0000240 write_impl(reinterpret_cast<char*>(&C), 1);
241 return *this;
242 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000243 // Set up a buffer and start over.
244 SetBuffered();
245 return write(C);
Dan Gohman37316042009-08-18 20:09:59 +0000246 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000247
248 flush_nonempty();
Daniel Dunbard17d74b2009-03-17 01:13:35 +0000249 }
250
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000251 *OutBufCur++ = C;
Daniel Dunbarb451a0c2009-03-16 22:08:44 +0000252 return *this;
Daniel Dunbarde75d7f2009-03-16 22:00:17 +0000253}
Chris Lattner944fac72008-08-23 22:23:09 +0000254
Dan Gohmanad60f662009-07-16 15:24:40 +0000255raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000256 // Group exceptional cases into a single branch.
Daniel Dunbarb372c112009-03-17 21:15:18 +0000257 if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000258 if (BUILTIN_EXPECT(!OutBufStart, false)) {
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000259 if (BufferMode == Unbuffered) {
Dan Gohman33e49ef2009-08-13 15:44:52 +0000260 write_impl(Ptr, Size);
261 return *this;
262 }
263 // Set up a buffer and start over.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000264 SetBuffered();
Dan Gohman33e49ef2009-08-13 15:44:52 +0000265 return write(Ptr, Size);
266 }
Daniel Dunbarecc67e22009-08-19 00:23:39 +0000267
Benjamin Kramere90756d2011-03-04 18:18:16 +0000268 // If the buffer is empty at this point we have a string that is larger
269 // than the buffer. It's better to write it unbuffered in this case.
270 if (BUILTIN_EXPECT(OutBufCur == OutBufStart, false)) {
271 write_impl(Ptr, Size);
272 return *this;
273 }
274
275 // We don't have enough space in the buffer to fit the string in. Insert as
276 // much as possible, flush and start over with the remainder.
277 size_t NumBytes = OutBufEnd - OutBufCur;
278 copy_to_buffer(Ptr, NumBytes);
279 flush_nonempty();
280 return write(Ptr + NumBytes, Size - NumBytes);
Daniel Dunbar262541b2009-03-17 01:36:56 +0000281 }
Dan Gohman33e49ef2009-08-13 15:44:52 +0000282
283 copy_to_buffer(Ptr, Size);
284
285 return *this;
286}
287
288void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
Dan Gohmanc6126e82009-08-13 20:32:03 +0000289 assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
Dan Gohman4e8e6422009-08-13 18:38:15 +0000290
Owen Anderson66b17ba2008-08-21 20:58:52 +0000291 // Handle short strings specially, memcpy isn't very good at very short
292 // strings.
293 switch (Size) {
294 case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
295 case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
296 case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
297 case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
298 case 0: break;
299 default:
Dan Gohman33e49ef2009-08-13 15:44:52 +0000300 memcpy(OutBufCur, Ptr, Size);
Owen Anderson66b17ba2008-08-21 20:58:52 +0000301 break;
302 }
Daniel Dunbare77e4342009-03-10 16:21:55 +0000303
Dan Gohman33e49ef2009-08-13 15:44:52 +0000304 OutBufCur += Size;
Owen Anderson66b17ba2008-08-21 20:58:52 +0000305}
306
Chris Lattner097af7f2008-08-23 19:23:10 +0000307// Formatted output.
308raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
Daniel Dunbar262541b2009-03-17 01:36:56 +0000309 // If we have more than a few bytes left in our output buffer, try
310 // formatting directly onto its end.
Dan Gohmanad60f662009-07-16 15:24:40 +0000311 size_t NextBufferSize = 127;
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000312 size_t BufferBytesLeft = OutBufEnd - OutBufCur;
313 if (BufferBytesLeft > 3) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000314 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
Dan Gohman16e02092010-03-24 19:38:02 +0000315
Chris Lattner097af7f2008-08-23 19:23:10 +0000316 // Common case is that we have plenty of space.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000317 if (BytesUsed <= BufferBytesLeft) {
Chris Lattner097af7f2008-08-23 19:23:10 +0000318 OutBufCur += BytesUsed;
319 return *this;
320 }
Dan Gohman16e02092010-03-24 19:38:02 +0000321
Chris Lattner097af7f2008-08-23 19:23:10 +0000322 // Otherwise, we overflowed and the return value tells us the size to try
323 // again with.
324 NextBufferSize = BytesUsed;
325 }
Dan Gohman16e02092010-03-24 19:38:02 +0000326
Chris Lattner097af7f2008-08-23 19:23:10 +0000327 // If we got here, we didn't have enough space in the output buffer for the
328 // string. Try printing into a SmallVector that is resized to have enough
329 // space. Iterate until we win.
330 SmallVector<char, 128> V;
Dan Gohman16e02092010-03-24 19:38:02 +0000331
Chris Lattner097af7f2008-08-23 19:23:10 +0000332 while (1) {
333 V.resize(NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000334
Chris Lattner097af7f2008-08-23 19:23:10 +0000335 // Try formatting into the SmallVector.
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000336 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
Dan Gohman16e02092010-03-24 19:38:02 +0000337
Chris Lattner097af7f2008-08-23 19:23:10 +0000338 // If BytesUsed fit into the vector, we win.
Chris Lattnerf61ca1e2008-10-26 19:20:47 +0000339 if (BytesUsed <= NextBufferSize)
Daniel Dunbar9441cfe2009-08-23 20:31:39 +0000340 return write(V.data(), BytesUsed);
Dan Gohman16e02092010-03-24 19:38:02 +0000341
Chris Lattner097af7f2008-08-23 19:23:10 +0000342 // Otherwise, try again with a new size.
343 assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
344 NextBufferSize = BytesUsed;
345 }
346}
347
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000348/// indent - Insert 'NumSpaces' spaces.
349raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
Dan Gohman61ee1002009-08-24 04:13:01 +0000350 static const char Spaces[] = " "
351 " "
352 " ";
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000353
354 // Usually the indentation is small, handle it with a fastpath.
Dan Gohmancb1308b2009-08-24 04:43:38 +0000355 if (NumSpaces < array_lengthof(Spaces))
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000356 return write(Spaces, NumSpaces);
Dan Gohman16e02092010-03-24 19:38:02 +0000357
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000358 while (NumSpaces) {
Dan Gohmancb1308b2009-08-24 04:43:38 +0000359 unsigned NumToWrite = std::min(NumSpaces,
360 (unsigned)array_lengthof(Spaces)-1);
Chris Lattnerc5a227d2009-08-22 23:10:29 +0000361 write(Spaces, NumToWrite);
362 NumSpaces -= NumToWrite;
363 }
364 return *this;
365}
366
367
Chris Lattner097af7f2008-08-23 19:23:10 +0000368//===----------------------------------------------------------------------===//
369// Formatted Output
370//===----------------------------------------------------------------------===//
371
372// Out of line virtual method.
373void format_object_base::home() {
374}
375
Chris Lattner60d39622008-08-17 01:35:29 +0000376//===----------------------------------------------------------------------===//
377// raw_fd_ostream
378//===----------------------------------------------------------------------===//
379
Daniel Dunbar48534b32008-10-21 19:53:10 +0000380/// raw_fd_ostream - Open the specified file for writing. If an error
381/// occurs, information about the error is put into ErrorInfo, and the
382/// stream should be immediately destroyed; the string will be empty
383/// if no error occurred.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000384raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
Daniel Dunbarb0cfa6c2011-02-03 03:32:32 +0000385 unsigned Flags)
386 : Error(false), UseAtomicWrites(false), pos(0)
387{
Chris Lattnerf071d4e2010-03-05 00:49:08 +0000388 assert(Filename != 0 && "Filename is null");
Dan Gohmanbaa26392009-08-25 15:34:52 +0000389 // Verify that we don't have both "append" and "excl".
390 assert((!(Flags & F_Excl) || !(Flags & F_Append)) &&
391 "Cannot specify both 'excl' and 'append' file creation flags!");
Dan Gohman16e02092010-03-24 19:38:02 +0000392
Daniel Dunbar48534b32008-10-21 19:53:10 +0000393 ErrorInfo.clear();
394
Dan Gohman24999902010-08-18 22:26:19 +0000395 // Handle "-" as stdout. Note that when we do this, we consider ourself
396 // the owner of stdout. This means that we can do things like close the
397 // file descriptor when we're done and set the "binary" flag globally.
Chris Lattnerc52b1282008-08-17 03:53:23 +0000398 if (Filename[0] == '-' && Filename[1] == 0) {
399 FD = STDOUT_FILENO;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000400 // If user requested binary then put stdout into binary mode if
401 // possible.
Chris Lattner17e9edc2009-08-23 02:51:22 +0000402 if (Flags & F_Binary)
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000403 sys::Program::ChangeStdoutToBinary();
Dan Gohman24999902010-08-18 22:26:19 +0000404 // Close stdout when we're done, to detect any output errors.
405 ShouldClose = true;
Chris Lattnerc52b1282008-08-17 03:53:23 +0000406 return;
407 }
Dan Gohman16e02092010-03-24 19:38:02 +0000408
Chris Lattner17e9edc2009-08-23 02:51:22 +0000409 int OpenFlags = O_WRONLY|O_CREAT;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000410#ifdef O_BINARY
Benjamin Kramerae603242009-08-23 08:57:52 +0000411 if (Flags & F_Binary)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000412 OpenFlags |= O_BINARY;
Daniel Dunbar0d9eb9b2008-11-13 05:01:07 +0000413#endif
Dan Gohman16e02092010-03-24 19:38:02 +0000414
Dan Gohmanbaa26392009-08-25 15:34:52 +0000415 if (Flags & F_Append)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000416 OpenFlags |= O_APPEND;
417 else
Dan Gohmanbaa26392009-08-25 15:34:52 +0000418 OpenFlags |= O_TRUNC;
419 if (Flags & F_Excl)
Chris Lattner17e9edc2009-08-23 02:51:22 +0000420 OpenFlags |= O_EXCL;
Dan Gohman16e02092010-03-24 19:38:02 +0000421
Dan Gohman06572792010-05-06 02:06:20 +0000422 while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
423 if (errno != EINTR) {
424 ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
425 ShouldClose = false;
426 return;
427 }
Chris Lattner60d39622008-08-17 01:35:29 +0000428 }
Dan Gohman06572792010-05-06 02:06:20 +0000429
430 // Ok, we successfully opened the file, so it'll need to be closed.
431 ShouldClose = true;
Chris Lattner60d39622008-08-17 01:35:29 +0000432}
433
Francois Picheta872a0f2010-10-14 20:30:58 +0000434/// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
435/// ShouldClose is true, this closes the file when the stream is destroyed.
436raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
437 : raw_ostream(unbuffered), FD(fd),
Daniel Dunbarb0cfa6c2011-02-03 03:32:32 +0000438 ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) {
Francois Picheta872a0f2010-10-14 20:30:58 +0000439#ifdef O_BINARY
440 // Setting STDOUT and STDERR to binary mode is necessary in Win32
441 // to avoid undesirable linefeed conversion.
442 if (fd == STDOUT_FILENO || fd == STDERR_FILENO)
443 setmode(fd, O_BINARY);
444#endif
Michael J. Spencer2634a542011-01-17 15:53:12 +0000445
446 // Get the starting position.
447 off_t loc = ::lseek(FD, 0, SEEK_CUR);
448 if (loc == (off_t)-1)
449 pos = 0;
450 else
451 pos = static_cast<uint64_t>(loc);
Francois Picheta872a0f2010-10-14 20:30:58 +0000452}
453
Chris Lattner60d39622008-08-17 01:35:29 +0000454raw_fd_ostream::~raw_fd_ostream() {
Dan Gohman8df0e012010-08-20 16:34:20 +0000455 if (FD >= 0) {
456 flush();
457 if (ShouldClose)
458 while (::close(FD) != 0)
459 if (errno != EINTR) {
460 error_detected();
461 break;
462 }
463 }
464
465 // If there are any pending errors, report them now. Clients wishing
466 // to avoid report_fatal_error calls should check for errors with
467 // has_error() and clear the error flag with clear_error() before
468 // destructing raw_ostream objects which may have errors.
469 if (has_error())
470 report_fatal_error("IO failure on output stream.");
Chris Lattner93d81b62010-08-17 23:11:56 +0000471}
Chris Lattner17e9edc2009-08-23 02:51:22 +0000472
Dan Gohmand2da3272010-08-18 01:34:52 +0000473
Dan Gohmanad60f662009-07-16 15:24:40 +0000474void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohman16e02092010-03-24 19:38:02 +0000475 assert(FD >= 0 && "File already closed.");
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000476 pos += Size;
Dan Gohman5fe89d02010-05-06 01:27:36 +0000477
Benjamin Kramer66760be2010-05-05 15:17:47 +0000478 do {
Daniel Dunbarb0cfa6c2011-02-03 03:32:32 +0000479 ssize_t ret;
480
481 // Check whether we should attempt to use atomic writes.
482 if (BUILTIN_EXPECT(!UseAtomicWrites, true)) {
483 ret = ::write(FD, Ptr, Size);
484 } else {
485 // Use ::writev() where available.
486#if defined(HAVE_WRITEV)
487 struct iovec IOV = { (void*) Ptr, Size };
488 ret = ::writev(FD, &IOV, 1);
489#else
490 ret = ::write(FD, Ptr, Size);
491#endif
492 }
Dan Gohman5fe89d02010-05-06 01:27:36 +0000493
494 if (ret < 0) {
495 // If it's a recoverable error, swallow it and retry the write.
Dan Gohman68e947a2010-05-18 15:25:14 +0000496 //
497 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
498 // raw_ostream isn't designed to do non-blocking I/O. However, some
499 // programs, such as old versions of bjam, have mistakenly used
500 // O_NONBLOCK. For compatibility, emulate blocking semantics by
501 // spinning until the write succeeds. If you don't want spinning,
502 // don't use O_NONBLOCK file descriptors with raw_ostream.
Dan Gohman06572792010-05-06 02:06:20 +0000503 if (errno == EINTR || errno == EAGAIN
504#ifdef EWOULDBLOCK
505 || errno == EWOULDBLOCK
506#endif
507 )
Dan Gohman5fe89d02010-05-06 01:27:36 +0000508 continue;
509
510 // Otherwise it's a non-recoverable error. Note it and quit.
511 error_detected();
512 break;
513 }
514
515 // The write may have written some or all of the data. Update the
516 // size and buffer pointer to reflect the remainder that needs
517 // to be written. If there are no bytes left, we're done.
518 Ptr += ret;
519 Size -= ret;
520 } while (Size > 0);
Chris Lattner60d39622008-08-17 01:35:29 +0000521}
522
Dan Gohmand2da3272010-08-18 01:34:52 +0000523void raw_fd_ostream::close() {
524 assert(ShouldClose);
525 ShouldClose = false;
526 flush();
527 while (::close(FD) != 0)
528 if (errno != EINTR) {
529 error_detected();
530 break;
531 }
532 FD = -1;
533}
534
Ted Kremenek9c278862009-01-26 21:42:04 +0000535uint64_t raw_fd_ostream::seek(uint64_t off) {
536 flush();
Daniel Dunbar579fb872009-07-15 08:11:46 +0000537 pos = ::lseek(FD, off, SEEK_SET);
Dan Gohmand3a974f2009-07-15 16:43:01 +0000538 if (pos != off)
Dan Gohmane87b2ab2009-07-15 23:25:33 +0000539 error_detected();
Dan Gohman16e02092010-03-24 19:38:02 +0000540 return pos;
Ted Kremenek9c278862009-01-26 21:42:04 +0000541}
542
Chris Lattnercd0129f2009-12-19 01:38:42 +0000543size_t raw_fd_ostream::preferred_buffer_size() const {
Chris Lattner29269d02010-07-07 15:52:27 +0000544#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
Chris Lattner21aa3472010-04-09 20:45:04 +0000545 // Windows and Minix have no st_blksize.
Dan Gohman208ec0f2009-08-13 17:27:29 +0000546 assert(FD >= 0 && "File not yet open!");
547 struct stat statbuf;
Chris Lattnercd0129f2009-12-19 01:38:42 +0000548 if (fstat(FD, &statbuf) != 0)
549 return 0;
Dan Gohman16e02092010-03-24 19:38:02 +0000550
Chris Lattnercd0129f2009-12-19 01:38:42 +0000551 // If this is a terminal, don't use buffering. Line buffering
552 // would be a more traditional thing to do, but it's not worth
553 // the complexity.
554 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
555 return 0;
556 // Return the preferred block size.
557 return statbuf.st_blksize;
Dan Gohman9ba7f652010-05-28 16:50:01 +0000558#else
Dan Gohman208ec0f2009-08-13 17:27:29 +0000559 return raw_ostream::preferred_buffer_size();
Dan Gohman9ba7f652010-05-28 16:50:01 +0000560#endif
Dan Gohman208ec0f2009-08-13 17:27:29 +0000561}
562
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000563raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
564 bool bg) {
565 if (sys::Process::ColorNeedsFlush())
566 flush();
567 const char *colorcode =
568 (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
569 : sys::Process::OutputColor(colors, bold, bg);
570 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000571 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000572 write(colorcode, len);
573 // don't account colors towards output characters
574 pos -= len;
575 }
576 return *this;
577}
578
579raw_ostream &raw_fd_ostream::resetColor() {
580 if (sys::Process::ColorNeedsFlush())
581 flush();
582 const char *colorcode = sys::Process::ResetColor();
583 if (colorcode) {
Dan Gohmanad60f662009-07-16 15:24:40 +0000584 size_t len = strlen(colorcode);
Torok Edwine8ebb0f2009-06-04 07:09:50 +0000585 write(colorcode, len);
586 // don't account colors towards output characters
587 pos -= len;
588 }
589 return *this;
590}
591
Dan Gohmanec080462009-09-11 20:46:33 +0000592bool raw_fd_ostream::is_displayed() const {
593 return sys::Process::FileDescriptorIsDisplayed(FD);
594}
595
Chris Lattner07f51f72008-08-17 04:13:37 +0000596//===----------------------------------------------------------------------===//
Dan Gohman5d56d9d2010-08-20 16:44:56 +0000597// outs(), errs(), nulls()
Chris Lattner07f51f72008-08-17 04:13:37 +0000598//===----------------------------------------------------------------------===//
Chris Lattner60d39622008-08-17 01:35:29 +0000599
Chris Lattner07f51f72008-08-17 04:13:37 +0000600/// outs() - This returns a reference to a raw_ostream for standard output.
601/// Use it like: outs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000602raw_ostream &llvm::outs() {
Dan Gohmana1f89de2010-08-20 16:39:41 +0000603 // Set buffer settings to model stdout behavior.
Dan Gohman5d56d9d2010-08-20 16:44:56 +0000604 // Delete the file descriptor when the program exists, forcing error
605 // detection. If you don't want this behavior, don't use outs().
606 static raw_fd_ostream S(STDOUT_FILENO, true);
Chris Lattner07f51f72008-08-17 04:13:37 +0000607 return S;
608}
609
610/// errs() - This returns a reference to a raw_ostream for standard error.
611/// Use it like: errs() << "foo" << "bar";
Owen Andersoncb371882008-08-21 00:14:44 +0000612raw_ostream &llvm::errs() {
Dan Gohmana1f89de2010-08-20 16:39:41 +0000613 // Set standard error to be unbuffered by default.
614 static raw_fd_ostream S(STDERR_FILENO, false, true);
Chris Lattner07f51f72008-08-17 04:13:37 +0000615 return S;
616}
617
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000618/// nulls() - This returns a reference to a raw_ostream which discards output.
619raw_ostream &llvm::nulls() {
620 static raw_null_ostream S;
621 return S;
622}
623
Douglas Gregor8f7be472009-04-20 07:34:17 +0000624
Chris Lattner78a28122008-08-23 22:43:04 +0000625//===----------------------------------------------------------------------===//
626// raw_string_ostream
627//===----------------------------------------------------------------------===//
628
Daniel Dunbar35979c02009-08-18 20:07:36 +0000629raw_string_ostream::~raw_string_ostream() {
630 flush();
631}
632
Dan Gohmanad60f662009-07-16 15:24:40 +0000633void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
Daniel Dunbar89a66a92009-03-16 23:29:31 +0000634 OS.append(Ptr, Size);
Chris Lattner78a28122008-08-23 22:43:04 +0000635}
636
637//===----------------------------------------------------------------------===//
638// raw_svector_ostream
639//===----------------------------------------------------------------------===//
640
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000641// The raw_svector_ostream implementation uses the SmallVector itself as the
642// buffer for the raw_ostream. We guarantee that the raw_ostream buffer is
643// always pointing past the end of the vector, but within the vector
644// capacity. This allows raw_ostream to write directly into the correct place,
645// and we only need to set the vector size when the data is flushed.
646
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000647raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
Daniel Dunbard14787e2009-08-19 18:40:58 +0000648 // Set up the initial external buffer. We make sure that the buffer has at
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000649 // least 128 bytes free; raw_ostream itself only requires 64, but we want to
650 // make sure that we don't grow the buffer unnecessarily on destruction (when
651 // the data is flushed). See the FIXME below.
Daniel Dunbard14787e2009-08-19 18:40:58 +0000652 OS.reserve(OS.size() + 128);
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000653 SetBuffer(OS.end(), OS.capacity() - OS.size());
Daniel Dunbar906d5b42009-08-18 23:42:36 +0000654}
655
Daniel Dunbar35979c02009-08-18 20:07:36 +0000656raw_svector_ostream::~raw_svector_ostream() {
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000657 // FIXME: Prevent resizing during this flush().
Daniel Dunbar35979c02009-08-18 20:07:36 +0000658 flush();
659}
660
Chris Lattner14ca1772010-01-22 21:16:10 +0000661/// resync - This is called when the SmallVector we're appending to is changed
662/// outside of the raw_svector_ostream's control. It is only safe to do this
663/// if the raw_svector_ostream has previously been flushed.
664void raw_svector_ostream::resync() {
665 assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector");
666
667 if (OS.capacity() - OS.size() < 64)
668 OS.reserve(OS.capacity() * 2);
Chris Lattnerd79d9dc2010-01-22 19:17:48 +0000669 SetBuffer(OS.end(), OS.capacity() - OS.size());
670}
671
Dan Gohmanad60f662009-07-16 15:24:40 +0000672void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
Chris Lattner17f26b42010-02-15 02:18:26 +0000673 // If we're writing bytes from the end of the buffer into the smallvector, we
674 // don't need to copy the bytes, just commit the bytes because they are
675 // already in the right place.
676 if (Ptr == OS.end()) {
677 assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
678 OS.set_size(OS.size() + Size);
679 } else {
680 assert(GetNumBytesInBuffer() == 0 &&
681 "Should be writing from buffer if some bytes in it");
682 // Otherwise, do copy the bytes.
683 OS.append(Ptr, Ptr+Size);
684 }
Daniel Dunbar425d08c2009-08-19 17:54:29 +0000685
686 // Grow the vector if necessary.
687 if (OS.capacity() - OS.size() < 64)
688 OS.reserve(OS.capacity() * 2);
689
690 // Update the buffer position.
691 SetBuffer(OS.end(), OS.capacity() - OS.size());
Chris Lattner78a28122008-08-23 22:43:04 +0000692}
693
Chris Lattnercd0129f2009-12-19 01:38:42 +0000694uint64_t raw_svector_ostream::current_pos() const {
695 return OS.size();
696}
Douglas Gregor8f7be472009-04-20 07:34:17 +0000697
Daniel Dunbard14787e2009-08-19 18:40:58 +0000698StringRef raw_svector_ostream::str() {
699 flush();
700 return StringRef(OS.begin(), OS.size());
701}
702
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000703//===----------------------------------------------------------------------===//
704// raw_null_ostream
705//===----------------------------------------------------------------------===//
706
Dan Gohmanf78c8352009-07-27 21:46:02 +0000707raw_null_ostream::~raw_null_ostream() {
708#ifndef NDEBUG
709 // ~raw_ostream asserts that the buffer is empty. This isn't necessary
710 // with raw_null_ostream, but it's better to have raw_null_ostream follow
711 // the rules than to change the rules just for raw_null_ostream.
712 flush();
713#endif
714}
715
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000716void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
717}
718
Chris Lattnercd0129f2009-12-19 01:38:42 +0000719uint64_t raw_null_ostream::current_pos() const {
Daniel Dunbar34ccf032009-07-16 21:17:53 +0000720 return 0;
721}