Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 1 | //===--- 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 Lattner | 42f77ab | 2008-08-23 20:34:06 +0000 | [diff] [blame] | 15 | #include "llvm/Support/Format.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 16 | #include "llvm/Support/Program.h" |
| 17 | #include "llvm/Support/Process.h" |
Daniel Dunbar | 10a049e | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringExtras.h" |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallVector.h" |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 20 | #include "llvm/Config/config.h" |
Daniel Dunbar | b372c11 | 2009-03-17 21:15:18 +0000 | [diff] [blame] | 21 | #include "llvm/Support/Compiler.h" |
Daniel Dunbar | 579fb87 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorHandling.h" |
Dan Gohman | 61ee100 | 2009-08-24 04:13:01 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/STLExtras.h" |
Benjamin Kramer | 4f17eb8 | 2010-01-29 15:19:06 +0000 | [diff] [blame] | 24 | #include <cctype> |
Benjamin Kramer | 66760be | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 25 | #include <cerrno> |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 26 | #include <sys/stat.h> |
| 27 | #include <sys/types.h> |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 28 | |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 29 | #if defined(HAVE_UNISTD_H) |
| 30 | # include <unistd.h> |
| 31 | #endif |
| 32 | #if defined(HAVE_FCNTL_H) |
| 33 | # include <fcntl.h> |
| 34 | #endif |
Daniel Dunbar | b0cfa6c | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 35 | #if defined(HAVE_SYS_UIO_H) && defined(HAVE_WRITEV) |
| 36 | # include <sys/uio.h> |
| 37 | #endif |
Argyrios Kyrtzidis | b68dc36 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 38 | |
NAKAMURA Takumi | 1b5de0e | 2010-10-19 01:21:55 +0000 | [diff] [blame] | 39 | #if defined(__CYGWIN__) |
| 40 | #include <io.h> |
| 41 | #endif |
| 42 | |
Argyrios Kyrtzidis | b68dc36 | 2008-08-17 09:25:21 +0000 | [diff] [blame] | 43 | #if defined(_MSC_VER) |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 44 | #include <io.h> |
Cedric Venet | a3f343f | 2008-08-24 11:56:40 +0000 | [diff] [blame] | 45 | #include <fcntl.h> |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 46 | #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 Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 55 | #endif |
| 56 | |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 57 | using namespace llvm; |
| 58 | |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 59 | raw_ostream::~raw_ostream() { |
Dan Gohman | 9a31254 | 2009-07-27 20:49:44 +0000 | [diff] [blame] | 60 | // 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 Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 65 | if (BufferMode == InternalBuffer) |
| 66 | delete [] OutBufStart; |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 67 | } |
Chris Lattner | 969a46a | 2008-08-22 15:45:00 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 69 | // An out of line virtual method to provide a home for the class vtable. |
| 70 | void raw_ostream::handle() {} |
| 71 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 72 | size_t raw_ostream::preferred_buffer_size() const { |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 73 | // BUFSIZ is intended to be a reasonable default. |
| 74 | return BUFSIZ; |
| 75 | } |
| 76 | |
| 77 | void raw_ostream::SetBuffered() { |
| 78 | // Ask the subclass to determine an appropriate buffer size. |
Dan Gohman | d7be663 | 2009-08-15 02:05:19 +0000 | [diff] [blame] | 79 | 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 Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 86 | void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, |
Nick Lewycky | b1b051e | 2011-08-28 03:30:02 +0000 | [diff] [blame] | 87 | BufferKind Mode) { |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 88 | assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) || |
Daniel Dunbar | c8213b7 | 2009-09-15 20:31:46 +0000 | [diff] [blame] | 89 | (Mode != Unbuffered && BufferStart && Size)) && |
| 90 | "stream must be unbuffered or have at least one byte"); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 91 | // 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 Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 94 | |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 95 | if (BufferMode == InternalBuffer) |
| 96 | delete [] OutBufStart; |
| 97 | OutBufStart = BufferStart; |
Dan Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 98 | OutBufEnd = OutBufStart+Size; |
| 99 | OutBufCur = OutBufStart; |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 100 | BufferMode = Mode; |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 101 | |
| 102 | assert(OutBufStart <= OutBufEnd && "Invalid size!"); |
Dan Gohman | 524dea4 | 2009-08-13 15:58:55 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 105 | raw_ostream &raw_ostream::operator<<(unsigned long N) { |
| 106 | // Zero is a special case. |
| 107 | if (N == 0) |
| 108 | return *this << '0'; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 109 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 110 | char NumberBuffer[20]; |
| 111 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 112 | char *CurPtr = EndPtr; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 113 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 114 | while (N) { |
| 115 | *--CurPtr = '0' + char(N % 10); |
| 116 | N /= 10; |
| 117 | } |
| 118 | return write(CurPtr, EndPtr-CurPtr); |
| 119 | } |
| 120 | |
| 121 | raw_ostream &raw_ostream::operator<<(long N) { |
| 122 | if (N < 0) { |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 123 | *this << '-'; |
Eli Friedman | 90406e1 | 2011-10-13 22:49:56 +0000 | [diff] [blame] | 124 | // Avoid undefined behavior on LONG_MIN with a cast. |
| 125 | N = -(unsigned long)N; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 126 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 127 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 128 | return this->operator<<(static_cast<unsigned long>(N)); |
| 129 | } |
| 130 | |
| 131 | raw_ostream &raw_ostream::operator<<(unsigned long long N) { |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 132 | // Output using 32-bit div/mod when possible. |
Daniel Dunbar | 78a3dd8 | 2009-07-29 06:45:14 +0000 | [diff] [blame] | 133 | if (N == static_cast<unsigned long>(N)) |
| 134 | return this->operator<<(static_cast<unsigned long>(N)); |
| 135 | |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 136 | char NumberBuffer[20]; |
| 137 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 138 | char *CurPtr = EndPtr; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 139 | |
Daniel Dunbar | ecbd0bc | 2009-08-19 16:25:25 +0000 | [diff] [blame] | 140 | while (N) { |
| 141 | *--CurPtr = '0' + char(N % 10); |
| 142 | N /= 10; |
| 143 | } |
| 144 | return write(CurPtr, EndPtr-CurPtr); |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | raw_ostream &raw_ostream::operator<<(long long N) { |
Chris Lattner | e211cd8 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 148 | if (N < 0) { |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 149 | *this << '-'; |
Chris Lattner | e211cd8 | 2010-08-03 16:41:24 +0000 | [diff] [blame] | 150 | // Avoid undefined behavior on INT64_MIN with a cast. |
| 151 | N = -(unsigned long long)N; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 152 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 153 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 154 | return this->operator<<(static_cast<unsigned long long>(N)); |
| 155 | } |
| 156 | |
Daniel Dunbar | 48018e0 | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 157 | raw_ostream &raw_ostream::write_hex(unsigned long long N) { |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 158 | // Zero is a special case. |
| 159 | if (N == 0) |
| 160 | return *this << '0'; |
| 161 | |
| 162 | char NumberBuffer[20]; |
| 163 | char *EndPtr = NumberBuffer+sizeof(NumberBuffer); |
| 164 | char *CurPtr = EndPtr; |
| 165 | |
| 166 | while (N) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 167 | uintptr_t x = N % 16; |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 168 | *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10); |
| 169 | N /= 16; |
| 170 | } |
| 171 | |
| 172 | return write(CurPtr, EndPtr-CurPtr); |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Daniel Dunbar | 10a049e | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 175 | raw_ostream &raw_ostream::write_escaped(StringRef Str, |
| 176 | bool UseHexEscapes) { |
Daniel Dunbar | 522b113 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 177 | for (unsigned i = 0, e = Str.size(); i != e; ++i) { |
| 178 | unsigned char c = Str[i]; |
| 179 | |
| 180 | switch (c) { |
| 181 | case '\\': |
| 182 | *this << '\\' << '\\'; |
| 183 | break; |
| 184 | case '\t': |
| 185 | *this << '\\' << 't'; |
| 186 | break; |
| 187 | case '\n': |
| 188 | *this << '\\' << 'n'; |
| 189 | break; |
| 190 | case '"': |
| 191 | *this << '\\' << '"'; |
| 192 | break; |
| 193 | default: |
| 194 | if (std::isprint(c)) { |
| 195 | *this << c; |
| 196 | break; |
| 197 | } |
| 198 | |
Daniel Dunbar | 10a049e | 2010-11-27 07:59:50 +0000 | [diff] [blame] | 199 | // Write out the escaped representation. |
| 200 | if (UseHexEscapes) { |
| 201 | *this << '\\' << 'x'; |
| 202 | *this << hexdigit((c >> 4 & 0xF)); |
| 203 | *this << hexdigit((c >> 0) & 0xF); |
| 204 | } else { |
| 205 | // Always use a full 3-character octal escape. |
| 206 | *this << '\\'; |
| 207 | *this << char('0' + ((c >> 6) & 7)); |
| 208 | *this << char('0' + ((c >> 3) & 7)); |
| 209 | *this << char('0' + ((c >> 0) & 7)); |
| 210 | } |
Daniel Dunbar | 522b113 | 2009-10-17 20:43:08 +0000 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | |
| 214 | return *this; |
| 215 | } |
| 216 | |
Daniel Dunbar | 48018e0 | 2009-07-30 18:21:23 +0000 | [diff] [blame] | 217 | raw_ostream &raw_ostream::operator<<(const void *P) { |
| 218 | *this << '0' << 'x'; |
| 219 | |
| 220 | return write_hex((uintptr_t) P); |
| 221 | } |
| 222 | |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 223 | raw_ostream &raw_ostream::operator<<(double N) { |
NAKAMURA Takumi | d4f4e6e | 2011-03-18 09:30:10 +0000 | [diff] [blame] | 224 | #ifdef _WIN32 |
| 225 | // On MSVCRT and compatible, output of %e is incompatible to Posix |
| 226 | // by default. Number of exponent digits should be at least 2. "%+03d" |
| 227 | // FIXME: Implement our formatter to here or Support/Format.h! |
| 228 | int fpcl = _fpclass(N); |
| 229 | |
| 230 | // negative zero |
| 231 | if (fpcl == _FPCLASS_NZ) |
| 232 | return *this << "-0.000000e+00"; |
| 233 | |
| 234 | char buf[16]; |
| 235 | unsigned len; |
| 236 | len = snprintf(buf, sizeof(buf), "%e", N); |
| 237 | if (len <= sizeof(buf) - 2) { |
| 238 | if (len >= 5 && buf[len - 5] == 'e' && buf[len - 3] == '0') { |
| 239 | int cs = buf[len - 4]; |
| 240 | if (cs == '+' || cs == '-') { |
| 241 | int c1 = buf[len - 2]; |
| 242 | int c0 = buf[len - 1]; |
| 243 | if (isdigit(c1) && isdigit(c0)) { |
| 244 | // Trim leading '0': "...e+012" -> "...e+12\0" |
| 245 | buf[len - 3] = c1; |
| 246 | buf[len - 2] = c0; |
| 247 | buf[--len] = 0; |
| 248 | } |
| 249 | } |
| 250 | } |
| 251 | return this->operator<<(buf); |
| 252 | } |
| 253 | #endif |
Benjamin Kramer | f304ff6 | 2010-01-29 14:40:33 +0000 | [diff] [blame] | 254 | return this->operator<<(format("%e", N)); |
Chris Lattner | 23132b1 | 2009-08-24 03:52:50 +0000 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | |
| 258 | |
Daniel Dunbar | cf2a2c6 | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 259 | void raw_ostream::flush_nonempty() { |
| 260 | assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty."); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 261 | size_t Length = OutBufCur - OutBufStart; |
| 262 | OutBufCur = OutBufStart; |
| 263 | write_impl(OutBufStart, Length); |
Daniel Dunbar | cf2a2c6 | 2009-03-16 22:55:06 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 266 | raw_ostream &raw_ostream::write(unsigned char C) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 267 | // Group exceptional cases into a single branch. |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 268 | if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) { |
| 269 | if (BUILTIN_EXPECT(!OutBufStart, false)) { |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 270 | if (BufferMode == Unbuffered) { |
Dan Gohman | 3731604 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 271 | write_impl(reinterpret_cast<char*>(&C), 1); |
| 272 | return *this; |
| 273 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 274 | // Set up a buffer and start over. |
| 275 | SetBuffered(); |
| 276 | return write(C); |
Dan Gohman | 3731604 | 2009-08-18 20:09:59 +0000 | [diff] [blame] | 277 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 278 | |
| 279 | flush_nonempty(); |
Daniel Dunbar | d17d74b | 2009-03-17 01:13:35 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 282 | *OutBufCur++ = C; |
Daniel Dunbar | b451a0c | 2009-03-16 22:08:44 +0000 | [diff] [blame] | 283 | return *this; |
Daniel Dunbar | de75d7f | 2009-03-16 22:00:17 +0000 | [diff] [blame] | 284 | } |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 285 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 286 | raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 287 | // Group exceptional cases into a single branch. |
Nick Lewycky | b1b051e | 2011-08-28 03:30:02 +0000 | [diff] [blame] | 288 | if (BUILTIN_EXPECT(size_t(OutBufEnd - OutBufCur) < Size, false)) { |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 289 | if (BUILTIN_EXPECT(!OutBufStart, false)) { |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 290 | if (BufferMode == Unbuffered) { |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 291 | write_impl(Ptr, Size); |
| 292 | return *this; |
| 293 | } |
| 294 | // Set up a buffer and start over. |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 295 | SetBuffered(); |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 296 | return write(Ptr, Size); |
| 297 | } |
Daniel Dunbar | ecc67e2 | 2009-08-19 00:23:39 +0000 | [diff] [blame] | 298 | |
Benjamin Kramer | ca97144 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 299 | size_t NumBytes = OutBufEnd - OutBufCur; |
| 300 | |
Benjamin Kramer | e90756d | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 301 | // If the buffer is empty at this point we have a string that is larger |
Benjamin Kramer | ca97144 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 302 | // than the buffer. Directly write the chunk that is a multiple of the |
| 303 | // preferred buffer size and put the remainder in the buffer. |
Benjamin Kramer | e90756d | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 304 | if (BUILTIN_EXPECT(OutBufCur == OutBufStart, false)) { |
Benjamin Kramer | ca97144 | 2011-03-04 19:49:30 +0000 | [diff] [blame] | 305 | size_t BytesToWrite = Size - (Size % NumBytes); |
| 306 | write_impl(Ptr, BytesToWrite); |
| 307 | copy_to_buffer(Ptr + BytesToWrite, Size - BytesToWrite); |
Benjamin Kramer | e90756d | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 308 | return *this; |
| 309 | } |
| 310 | |
| 311 | // We don't have enough space in the buffer to fit the string in. Insert as |
| 312 | // much as possible, flush and start over with the remainder. |
Benjamin Kramer | e90756d | 2011-03-04 18:18:16 +0000 | [diff] [blame] | 313 | copy_to_buffer(Ptr, NumBytes); |
| 314 | flush_nonempty(); |
| 315 | return write(Ptr + NumBytes, Size - NumBytes); |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 316 | } |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 317 | |
| 318 | copy_to_buffer(Ptr, Size); |
| 319 | |
| 320 | return *this; |
| 321 | } |
| 322 | |
| 323 | void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) { |
Dan Gohman | c6126e8 | 2009-08-13 20:32:03 +0000 | [diff] [blame] | 324 | assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!"); |
Dan Gohman | 4e8e642 | 2009-08-13 18:38:15 +0000 | [diff] [blame] | 325 | |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 326 | // Handle short strings specially, memcpy isn't very good at very short |
| 327 | // strings. |
| 328 | switch (Size) { |
| 329 | case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH |
| 330 | case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH |
| 331 | case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH |
| 332 | case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH |
| 333 | case 0: break; |
| 334 | default: |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 335 | memcpy(OutBufCur, Ptr, Size); |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 336 | break; |
| 337 | } |
Daniel Dunbar | e77e434 | 2009-03-10 16:21:55 +0000 | [diff] [blame] | 338 | |
Dan Gohman | 33e49ef | 2009-08-13 15:44:52 +0000 | [diff] [blame] | 339 | OutBufCur += Size; |
Owen Anderson | 66b17ba | 2008-08-21 20:58:52 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 342 | // Formatted output. |
| 343 | raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { |
Daniel Dunbar | 262541b | 2009-03-17 01:36:56 +0000 | [diff] [blame] | 344 | // If we have more than a few bytes left in our output buffer, try |
| 345 | // formatting directly onto its end. |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 346 | size_t NextBufferSize = 127; |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 347 | size_t BufferBytesLeft = OutBufEnd - OutBufCur; |
| 348 | if (BufferBytesLeft > 3) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 349 | size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 350 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 351 | // Common case is that we have plenty of space. |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 352 | if (BytesUsed <= BufferBytesLeft) { |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 353 | OutBufCur += BytesUsed; |
| 354 | return *this; |
| 355 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 356 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 357 | // Otherwise, we overflowed and the return value tells us the size to try |
| 358 | // again with. |
| 359 | NextBufferSize = BytesUsed; |
| 360 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 361 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 362 | // If we got here, we didn't have enough space in the output buffer for the |
| 363 | // string. Try printing into a SmallVector that is resized to have enough |
| 364 | // space. Iterate until we win. |
| 365 | SmallVector<char, 128> V; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 367 | while (1) { |
| 368 | V.resize(NextBufferSize); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 369 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 370 | // Try formatting into the SmallVector. |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 371 | size_t BytesUsed = Fmt.print(V.data(), NextBufferSize); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 373 | // If BytesUsed fit into the vector, we win. |
Chris Lattner | f61ca1e | 2008-10-26 19:20:47 +0000 | [diff] [blame] | 374 | if (BytesUsed <= NextBufferSize) |
Daniel Dunbar | 9441cfe | 2009-08-23 20:31:39 +0000 | [diff] [blame] | 375 | return write(V.data(), BytesUsed); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 376 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 377 | // Otherwise, try again with a new size. |
| 378 | assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?"); |
| 379 | NextBufferSize = BytesUsed; |
| 380 | } |
| 381 | } |
| 382 | |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 383 | /// indent - Insert 'NumSpaces' spaces. |
| 384 | raw_ostream &raw_ostream::indent(unsigned NumSpaces) { |
Dan Gohman | 61ee100 | 2009-08-24 04:13:01 +0000 | [diff] [blame] | 385 | static const char Spaces[] = " " |
| 386 | " " |
| 387 | " "; |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 388 | |
| 389 | // Usually the indentation is small, handle it with a fastpath. |
Dan Gohman | cb1308b | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 390 | if (NumSpaces < array_lengthof(Spaces)) |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 391 | return write(Spaces, NumSpaces); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 392 | |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 393 | while (NumSpaces) { |
Dan Gohman | cb1308b | 2009-08-24 04:43:38 +0000 | [diff] [blame] | 394 | unsigned NumToWrite = std::min(NumSpaces, |
| 395 | (unsigned)array_lengthof(Spaces)-1); |
Chris Lattner | c5a227d | 2009-08-22 23:10:29 +0000 | [diff] [blame] | 396 | write(Spaces, NumToWrite); |
| 397 | NumSpaces -= NumToWrite; |
| 398 | } |
| 399 | return *this; |
| 400 | } |
| 401 | |
| 402 | |
Chris Lattner | 097af7f | 2008-08-23 19:23:10 +0000 | [diff] [blame] | 403 | //===----------------------------------------------------------------------===// |
| 404 | // Formatted Output |
| 405 | //===----------------------------------------------------------------------===// |
| 406 | |
| 407 | // Out of line virtual method. |
| 408 | void format_object_base::home() { |
| 409 | } |
| 410 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 411 | //===----------------------------------------------------------------------===// |
| 412 | // raw_fd_ostream |
| 413 | //===----------------------------------------------------------------------===// |
| 414 | |
Daniel Dunbar | 48534b3 | 2008-10-21 19:53:10 +0000 | [diff] [blame] | 415 | /// raw_fd_ostream - Open the specified file for writing. If an error |
| 416 | /// occurs, information about the error is put into ErrorInfo, and the |
| 417 | /// stream should be immediately destroyed; the string will be empty |
| 418 | /// if no error occurred. |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 419 | raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, |
Daniel Dunbar | b0cfa6c | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 420 | unsigned Flags) |
| 421 | : Error(false), UseAtomicWrites(false), pos(0) |
| 422 | { |
Chris Lattner | f071d4e | 2010-03-05 00:49:08 +0000 | [diff] [blame] | 423 | assert(Filename != 0 && "Filename is null"); |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 424 | // Verify that we don't have both "append" and "excl". |
| 425 | assert((!(Flags & F_Excl) || !(Flags & F_Append)) && |
| 426 | "Cannot specify both 'excl' and 'append' file creation flags!"); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 427 | |
Daniel Dunbar | 48534b3 | 2008-10-21 19:53:10 +0000 | [diff] [blame] | 428 | ErrorInfo.clear(); |
| 429 | |
Dan Gohman | 2499990 | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 430 | // Handle "-" as stdout. Note that when we do this, we consider ourself |
| 431 | // the owner of stdout. This means that we can do things like close the |
| 432 | // file descriptor when we're done and set the "binary" flag globally. |
Chris Lattner | c52b128 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 433 | if (Filename[0] == '-' && Filename[1] == 0) { |
| 434 | FD = STDOUT_FILENO; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 435 | // If user requested binary then put stdout into binary mode if |
| 436 | // possible. |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 437 | if (Flags & F_Binary) |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 438 | sys::Program::ChangeStdoutToBinary(); |
Dan Gohman | 2499990 | 2010-08-18 22:26:19 +0000 | [diff] [blame] | 439 | // Close stdout when we're done, to detect any output errors. |
| 440 | ShouldClose = true; |
Chris Lattner | c52b128 | 2008-08-17 03:53:23 +0000 | [diff] [blame] | 441 | return; |
| 442 | } |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 443 | |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 444 | int OpenFlags = O_WRONLY|O_CREAT; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 445 | #ifdef O_BINARY |
Benjamin Kramer | ae60324 | 2009-08-23 08:57:52 +0000 | [diff] [blame] | 446 | if (Flags & F_Binary) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 447 | OpenFlags |= O_BINARY; |
Daniel Dunbar | 0d9eb9b | 2008-11-13 05:01:07 +0000 | [diff] [blame] | 448 | #endif |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 449 | |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 450 | if (Flags & F_Append) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 451 | OpenFlags |= O_APPEND; |
| 452 | else |
Dan Gohman | baa2639 | 2009-08-25 15:34:52 +0000 | [diff] [blame] | 453 | OpenFlags |= O_TRUNC; |
| 454 | if (Flags & F_Excl) |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 455 | OpenFlags |= O_EXCL; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 456 | |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 457 | while ((FD = open(Filename, OpenFlags, 0664)) < 0) { |
| 458 | if (errno != EINTR) { |
| 459 | ErrorInfo = "Error opening output file '" + std::string(Filename) + "'"; |
| 460 | ShouldClose = false; |
| 461 | return; |
| 462 | } |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 463 | } |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 464 | |
| 465 | // Ok, we successfully opened the file, so it'll need to be closed. |
| 466 | ShouldClose = true; |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Francois Pichet | a872a0f | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 469 | /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If |
| 470 | /// ShouldClose is true, this closes the file when the stream is destroyed. |
| 471 | raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) |
| 472 | : raw_ostream(unbuffered), FD(fd), |
Daniel Dunbar | b0cfa6c | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 473 | ShouldClose(shouldClose), Error(false), UseAtomicWrites(false) { |
Francois Pichet | a872a0f | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 474 | #ifdef O_BINARY |
| 475 | // Setting STDOUT and STDERR to binary mode is necessary in Win32 |
| 476 | // to avoid undesirable linefeed conversion. |
| 477 | if (fd == STDOUT_FILENO || fd == STDERR_FILENO) |
| 478 | setmode(fd, O_BINARY); |
| 479 | #endif |
Michael J. Spencer | 2634a54 | 2011-01-17 15:53:12 +0000 | [diff] [blame] | 480 | |
| 481 | // Get the starting position. |
| 482 | off_t loc = ::lseek(FD, 0, SEEK_CUR); |
| 483 | if (loc == (off_t)-1) |
| 484 | pos = 0; |
| 485 | else |
| 486 | pos = static_cast<uint64_t>(loc); |
Francois Pichet | a872a0f | 2010-10-14 20:30:58 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 489 | raw_fd_ostream::~raw_fd_ostream() { |
Dan Gohman | 8df0e01 | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 490 | if (FD >= 0) { |
| 491 | flush(); |
| 492 | if (ShouldClose) |
| 493 | while (::close(FD) != 0) |
| 494 | if (errno != EINTR) { |
| 495 | error_detected(); |
| 496 | break; |
| 497 | } |
| 498 | } |
| 499 | |
NAKAMURA Takumi | 7a7215b | 2011-03-16 02:53:39 +0000 | [diff] [blame] | 500 | #ifdef __MINGW32__ |
| 501 | // On mingw, global dtors should not call exit(). |
| 502 | // report_fatal_error() invokes exit(). We know report_fatal_error() |
| 503 | // might not write messages to stderr when any errors were detected |
| 504 | // on FD == 2. |
| 505 | if (FD == 2) return; |
| 506 | #endif |
| 507 | |
Dan Gohman | 8df0e01 | 2010-08-20 16:34:20 +0000 | [diff] [blame] | 508 | // If there are any pending errors, report them now. Clients wishing |
| 509 | // to avoid report_fatal_error calls should check for errors with |
| 510 | // has_error() and clear the error flag with clear_error() before |
| 511 | // destructing raw_ostream objects which may have errors. |
| 512 | if (has_error()) |
| 513 | report_fatal_error("IO failure on output stream."); |
Chris Lattner | 93d81b6 | 2010-08-17 23:11:56 +0000 | [diff] [blame] | 514 | } |
Chris Lattner | 17e9edc | 2009-08-23 02:51:22 +0000 | [diff] [blame] | 515 | |
Dan Gohman | d2da327 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 516 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 517 | void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) { |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 518 | assert(FD >= 0 && "File already closed."); |
Daniel Dunbar | 89a66a9 | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 519 | pos += Size; |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 520 | |
Benjamin Kramer | 66760be | 2010-05-05 15:17:47 +0000 | [diff] [blame] | 521 | do { |
Daniel Dunbar | b0cfa6c | 2011-02-03 03:32:32 +0000 | [diff] [blame] | 522 | ssize_t ret; |
| 523 | |
| 524 | // Check whether we should attempt to use atomic writes. |
| 525 | if (BUILTIN_EXPECT(!UseAtomicWrites, true)) { |
| 526 | ret = ::write(FD, Ptr, Size); |
| 527 | } else { |
| 528 | // Use ::writev() where available. |
| 529 | #if defined(HAVE_WRITEV) |
| 530 | struct iovec IOV = { (void*) Ptr, Size }; |
| 531 | ret = ::writev(FD, &IOV, 1); |
| 532 | #else |
| 533 | ret = ::write(FD, Ptr, Size); |
| 534 | #endif |
| 535 | } |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 536 | |
| 537 | if (ret < 0) { |
| 538 | // If it's a recoverable error, swallow it and retry the write. |
Dan Gohman | 68e947a | 2010-05-18 15:25:14 +0000 | [diff] [blame] | 539 | // |
| 540 | // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since |
| 541 | // raw_ostream isn't designed to do non-blocking I/O. However, some |
| 542 | // programs, such as old versions of bjam, have mistakenly used |
| 543 | // O_NONBLOCK. For compatibility, emulate blocking semantics by |
| 544 | // spinning until the write succeeds. If you don't want spinning, |
| 545 | // don't use O_NONBLOCK file descriptors with raw_ostream. |
Dan Gohman | 0657279 | 2010-05-06 02:06:20 +0000 | [diff] [blame] | 546 | if (errno == EINTR || errno == EAGAIN |
| 547 | #ifdef EWOULDBLOCK |
| 548 | || errno == EWOULDBLOCK |
| 549 | #endif |
| 550 | ) |
Dan Gohman | 5fe89d0 | 2010-05-06 01:27:36 +0000 | [diff] [blame] | 551 | continue; |
| 552 | |
| 553 | // Otherwise it's a non-recoverable error. Note it and quit. |
| 554 | error_detected(); |
| 555 | break; |
| 556 | } |
| 557 | |
| 558 | // The write may have written some or all of the data. Update the |
| 559 | // size and buffer pointer to reflect the remainder that needs |
| 560 | // to be written. If there are no bytes left, we're done. |
| 561 | Ptr += ret; |
| 562 | Size -= ret; |
| 563 | } while (Size > 0); |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 564 | } |
| 565 | |
Dan Gohman | d2da327 | 2010-08-18 01:34:52 +0000 | [diff] [blame] | 566 | void raw_fd_ostream::close() { |
| 567 | assert(ShouldClose); |
| 568 | ShouldClose = false; |
| 569 | flush(); |
| 570 | while (::close(FD) != 0) |
| 571 | if (errno != EINTR) { |
| 572 | error_detected(); |
| 573 | break; |
| 574 | } |
| 575 | FD = -1; |
| 576 | } |
| 577 | |
Ted Kremenek | 9c27886 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 578 | uint64_t raw_fd_ostream::seek(uint64_t off) { |
| 579 | flush(); |
Daniel Dunbar | 579fb87 | 2009-07-15 08:11:46 +0000 | [diff] [blame] | 580 | pos = ::lseek(FD, off, SEEK_SET); |
Dan Gohman | d3a974f | 2009-07-15 16:43:01 +0000 | [diff] [blame] | 581 | if (pos != off) |
Dan Gohman | e87b2ab | 2009-07-15 23:25:33 +0000 | [diff] [blame] | 582 | error_detected(); |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 583 | return pos; |
Ted Kremenek | 9c27886 | 2009-01-26 21:42:04 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 586 | size_t raw_fd_ostream::preferred_buffer_size() const { |
Chris Lattner | 29269d0 | 2010-07-07 15:52:27 +0000 | [diff] [blame] | 587 | #if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix) |
Chris Lattner | 21aa347 | 2010-04-09 20:45:04 +0000 | [diff] [blame] | 588 | // Windows and Minix have no st_blksize. |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 589 | assert(FD >= 0 && "File not yet open!"); |
| 590 | struct stat statbuf; |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 591 | if (fstat(FD, &statbuf) != 0) |
| 592 | return 0; |
Dan Gohman | 16e0209 | 2010-03-24 19:38:02 +0000 | [diff] [blame] | 593 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 594 | // If this is a terminal, don't use buffering. Line buffering |
| 595 | // would be a more traditional thing to do, but it's not worth |
| 596 | // the complexity. |
| 597 | if (S_ISCHR(statbuf.st_mode) && isatty(FD)) |
| 598 | return 0; |
| 599 | // Return the preferred block size. |
| 600 | return statbuf.st_blksize; |
Dan Gohman | 9ba7f65 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 601 | #else |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 602 | return raw_ostream::preferred_buffer_size(); |
Dan Gohman | 9ba7f65 | 2010-05-28 16:50:01 +0000 | [diff] [blame] | 603 | #endif |
Dan Gohman | 208ec0f | 2009-08-13 17:27:29 +0000 | [diff] [blame] | 604 | } |
| 605 | |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 606 | raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold, |
| 607 | bool bg) { |
| 608 | if (sys::Process::ColorNeedsFlush()) |
| 609 | flush(); |
| 610 | const char *colorcode = |
| 611 | (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg) |
| 612 | : sys::Process::OutputColor(colors, bold, bg); |
| 613 | if (colorcode) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 614 | size_t len = strlen(colorcode); |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 615 | write(colorcode, len); |
| 616 | // don't account colors towards output characters |
| 617 | pos -= len; |
| 618 | } |
| 619 | return *this; |
| 620 | } |
| 621 | |
| 622 | raw_ostream &raw_fd_ostream::resetColor() { |
| 623 | if (sys::Process::ColorNeedsFlush()) |
| 624 | flush(); |
| 625 | const char *colorcode = sys::Process::ResetColor(); |
| 626 | if (colorcode) { |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 627 | size_t len = strlen(colorcode); |
Torok Edwin | e8ebb0f | 2009-06-04 07:09:50 +0000 | [diff] [blame] | 628 | write(colorcode, len); |
| 629 | // don't account colors towards output characters |
| 630 | pos -= len; |
| 631 | } |
| 632 | return *this; |
| 633 | } |
| 634 | |
Dan Gohman | ec08046 | 2009-09-11 20:46:33 +0000 | [diff] [blame] | 635 | bool raw_fd_ostream::is_displayed() const { |
| 636 | return sys::Process::FileDescriptorIsDisplayed(FD); |
| 637 | } |
| 638 | |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 639 | //===----------------------------------------------------------------------===// |
Dan Gohman | 5d56d9d | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 640 | // outs(), errs(), nulls() |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 641 | //===----------------------------------------------------------------------===// |
Chris Lattner | 60d3962 | 2008-08-17 01:35:29 +0000 | [diff] [blame] | 642 | |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 643 | /// outs() - This returns a reference to a raw_ostream for standard output. |
| 644 | /// Use it like: outs() << "foo" << "bar"; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 645 | raw_ostream &llvm::outs() { |
Dan Gohman | a1f89de | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 646 | // Set buffer settings to model stdout behavior. |
Dan Gohman | 5d56d9d | 2010-08-20 16:44:56 +0000 | [diff] [blame] | 647 | // Delete the file descriptor when the program exists, forcing error |
| 648 | // detection. If you don't want this behavior, don't use outs(). |
| 649 | static raw_fd_ostream S(STDOUT_FILENO, true); |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 650 | return S; |
| 651 | } |
| 652 | |
| 653 | /// errs() - This returns a reference to a raw_ostream for standard error. |
| 654 | /// Use it like: errs() << "foo" << "bar"; |
Owen Anderson | cb37188 | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 655 | raw_ostream &llvm::errs() { |
Dan Gohman | a1f89de | 2010-08-20 16:39:41 +0000 | [diff] [blame] | 656 | // Set standard error to be unbuffered by default. |
| 657 | static raw_fd_ostream S(STDERR_FILENO, false, true); |
Chris Lattner | 07f51f7 | 2008-08-17 04:13:37 +0000 | [diff] [blame] | 658 | return S; |
| 659 | } |
| 660 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 661 | /// nulls() - This returns a reference to a raw_ostream which discards output. |
| 662 | raw_ostream &llvm::nulls() { |
| 663 | static raw_null_ostream S; |
| 664 | return S; |
| 665 | } |
| 666 | |
Douglas Gregor | 8f7be47 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 667 | |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 668 | //===----------------------------------------------------------------------===// |
| 669 | // raw_string_ostream |
| 670 | //===----------------------------------------------------------------------===// |
| 671 | |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 672 | raw_string_ostream::~raw_string_ostream() { |
| 673 | flush(); |
| 674 | } |
| 675 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 676 | void raw_string_ostream::write_impl(const char *Ptr, size_t Size) { |
Daniel Dunbar | 89a66a9 | 2009-03-16 23:29:31 +0000 | [diff] [blame] | 677 | OS.append(Ptr, Size); |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | //===----------------------------------------------------------------------===// |
| 681 | // raw_svector_ostream |
| 682 | //===----------------------------------------------------------------------===// |
| 683 | |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 684 | // The raw_svector_ostream implementation uses the SmallVector itself as the |
| 685 | // buffer for the raw_ostream. We guarantee that the raw_ostream buffer is |
| 686 | // always pointing past the end of the vector, but within the vector |
| 687 | // capacity. This allows raw_ostream to write directly into the correct place, |
| 688 | // and we only need to set the vector size when the data is flushed. |
| 689 | |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 690 | raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) { |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 691 | // Set up the initial external buffer. We make sure that the buffer has at |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 692 | // least 128 bytes free; raw_ostream itself only requires 64, but we want to |
| 693 | // make sure that we don't grow the buffer unnecessarily on destruction (when |
| 694 | // the data is flushed). See the FIXME below. |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 695 | OS.reserve(OS.size() + 128); |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 696 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Daniel Dunbar | 906d5b4 | 2009-08-18 23:42:36 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 699 | raw_svector_ostream::~raw_svector_ostream() { |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 700 | // FIXME: Prevent resizing during this flush(). |
Daniel Dunbar | 35979c0 | 2009-08-18 20:07:36 +0000 | [diff] [blame] | 701 | flush(); |
| 702 | } |
| 703 | |
Chris Lattner | 14ca177 | 2010-01-22 21:16:10 +0000 | [diff] [blame] | 704 | /// resync - This is called when the SmallVector we're appending to is changed |
| 705 | /// outside of the raw_svector_ostream's control. It is only safe to do this |
| 706 | /// if the raw_svector_ostream has previously been flushed. |
| 707 | void raw_svector_ostream::resync() { |
| 708 | assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector"); |
| 709 | |
| 710 | if (OS.capacity() - OS.size() < 64) |
| 711 | OS.reserve(OS.capacity() * 2); |
Chris Lattner | d79d9dc | 2010-01-22 19:17:48 +0000 | [diff] [blame] | 712 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
| 713 | } |
| 714 | |
Dan Gohman | ad60f66 | 2009-07-16 15:24:40 +0000 | [diff] [blame] | 715 | void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) { |
Chris Lattner | 17f26b4 | 2010-02-15 02:18:26 +0000 | [diff] [blame] | 716 | // If we're writing bytes from the end of the buffer into the smallvector, we |
| 717 | // don't need to copy the bytes, just commit the bytes because they are |
| 718 | // already in the right place. |
| 719 | if (Ptr == OS.end()) { |
| 720 | assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!"); |
| 721 | OS.set_size(OS.size() + Size); |
| 722 | } else { |
| 723 | assert(GetNumBytesInBuffer() == 0 && |
| 724 | "Should be writing from buffer if some bytes in it"); |
| 725 | // Otherwise, do copy the bytes. |
| 726 | OS.append(Ptr, Ptr+Size); |
| 727 | } |
Daniel Dunbar | 425d08c | 2009-08-19 17:54:29 +0000 | [diff] [blame] | 728 | |
| 729 | // Grow the vector if necessary. |
| 730 | if (OS.capacity() - OS.size() < 64) |
| 731 | OS.reserve(OS.capacity() * 2); |
| 732 | |
| 733 | // Update the buffer position. |
| 734 | SetBuffer(OS.end(), OS.capacity() - OS.size()); |
Chris Lattner | 78a2812 | 2008-08-23 22:43:04 +0000 | [diff] [blame] | 735 | } |
| 736 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 737 | uint64_t raw_svector_ostream::current_pos() const { |
| 738 | return OS.size(); |
| 739 | } |
Douglas Gregor | 8f7be47 | 2009-04-20 07:34:17 +0000 | [diff] [blame] | 740 | |
Daniel Dunbar | d14787e | 2009-08-19 18:40:58 +0000 | [diff] [blame] | 741 | StringRef raw_svector_ostream::str() { |
| 742 | flush(); |
| 743 | return StringRef(OS.begin(), OS.size()); |
| 744 | } |
| 745 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 746 | //===----------------------------------------------------------------------===// |
| 747 | // raw_null_ostream |
| 748 | //===----------------------------------------------------------------------===// |
| 749 | |
Dan Gohman | f78c835 | 2009-07-27 21:46:02 +0000 | [diff] [blame] | 750 | raw_null_ostream::~raw_null_ostream() { |
| 751 | #ifndef NDEBUG |
| 752 | // ~raw_ostream asserts that the buffer is empty. This isn't necessary |
| 753 | // with raw_null_ostream, but it's better to have raw_null_ostream follow |
| 754 | // the rules than to change the rules just for raw_null_ostream. |
| 755 | flush(); |
| 756 | #endif |
| 757 | } |
| 758 | |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 759 | void raw_null_ostream::write_impl(const char *Ptr, size_t Size) { |
| 760 | } |
| 761 | |
Chris Lattner | cd0129f | 2009-12-19 01:38:42 +0000 | [diff] [blame] | 762 | uint64_t raw_null_ostream::current_pos() const { |
Daniel Dunbar | 34ccf03 | 2009-07-16 21:17:53 +0000 | [diff] [blame] | 763 | return 0; |
| 764 | } |