0736a85eec0c0da6110688b7ae35282bb47f5837
[oota-llvm.git] / lib / Support / raw_ostream.cpp
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"
15 #include "llvm/Support/Format.h"
16 #include "llvm/System/Program.h"
17 #include "llvm/System/Process.h"
18 #include "llvm/ADT/SmallVector.h"
19 #include "llvm/Config/config.h"
20 #include "llvm/Support/Compiler.h"
21 #include "llvm/Support/ErrorHandling.h"
22 #include "llvm/ADT/StringExtras.h"
23 #include <sys/stat.h>
24 #include <sys/types.h>
25
26 #if defined(HAVE_UNISTD_H)
27 # include <unistd.h>
28 #endif
29 #if defined(HAVE_FCNTL_H)
30 # include <fcntl.h>
31 #endif
32
33 #if defined(_MSC_VER)
34 #include <io.h>
35 #include <fcntl.h>
36 #ifndef STDIN_FILENO
37 # define STDIN_FILENO 0
38 #endif
39 #ifndef STDOUT_FILENO
40 # define STDOUT_FILENO 1
41 #endif
42 #ifndef STDERR_FILENO
43 # define STDERR_FILENO 2
44 #endif
45 #endif
46
47 using namespace llvm;
48
49 raw_ostream::~raw_ostream() {
50   // raw_ostream's subclasses should take care to flush the buffer
51   // in their destructors.
52   assert(OutBufCur == OutBufStart &&
53          "raw_ostream destructor called with non-empty buffer!");
54
55   if (BufferMode == InternalBuffer)
56     delete [] OutBufStart;
57
58   // If there are any pending errors, report them now. Clients wishing
59   // to avoid llvm_report_error calls should check for errors with
60   // has_error() and clear the error flag with clear_error() before
61   // destructing raw_ostream objects which may have errors.
62   if (Error)
63     llvm_report_error("IO failure on output stream.");
64 }
65
66 // An out of line virtual method to provide a home for the class vtable.
67 void raw_ostream::handle() {}
68
69 size_t raw_ostream::preferred_buffer_size() {
70   // BUFSIZ is intended to be a reasonable default.
71   return BUFSIZ;
72 }
73
74 void raw_ostream::SetBuffered() {
75   // Ask the subclass to determine an appropriate buffer size.
76   if (size_t Size = preferred_buffer_size())
77     SetBufferSize(Size);
78   else
79     // It may return 0, meaning this stream should be unbuffered.
80     SetUnbuffered();
81 }
82
83 void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size, 
84                                     BufferKind Mode) {
85   assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) || 
86           (Mode != Unbuffered && BufferStart && Size >= 64)) &&
87          "stream must be unbuffered, or have >= 64 bytes of buffer");
88   // Make sure the current buffer is free of content (we can't flush here; the
89   // child buffer management logic will be in write_impl).
90   assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
91
92   if (BufferMode == InternalBuffer)
93     delete [] OutBufStart;
94   OutBufStart = BufferStart;
95   OutBufEnd = OutBufStart+Size;
96   OutBufCur = OutBufStart;
97   BufferMode = Mode;
98
99   assert(OutBufStart <= OutBufEnd && "Invalid size!");
100 }
101
102 raw_ostream &raw_ostream::operator<<(unsigned long N) {
103   // Zero is a special case.
104   if (N == 0)
105     return *this << '0';
106   
107   char NumberBuffer[20];
108   char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
109   char *CurPtr = EndPtr;
110   
111   while (N) {
112     *--CurPtr = '0' + char(N % 10);
113     N /= 10;
114   }
115   return write(CurPtr, EndPtr-CurPtr);
116 }
117
118 raw_ostream &raw_ostream::operator<<(long N) {
119   if (N <  0) {
120     *this << '-';
121     N = -N;
122   }
123   
124   return this->operator<<(static_cast<unsigned long>(N));
125 }
126
127 raw_ostream &raw_ostream::operator<<(unsigned long long N) {
128   // Output using 32-bit div/mod when possible.
129   if (N == static_cast<unsigned long>(N))
130     return this->operator<<(static_cast<unsigned long>(N));
131
132   char NumberBuffer[20];
133   char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
134   char *CurPtr = EndPtr;
135   
136   while (N) {
137     *--CurPtr = '0' + char(N % 10);
138     N /= 10;
139   }
140   return write(CurPtr, EndPtr-CurPtr);
141 }
142
143 raw_ostream &raw_ostream::operator<<(long long N) {
144   if (N <  0) {
145     *this << '-';
146     N = -N;
147   }
148   
149   return this->operator<<(static_cast<unsigned long long>(N));
150 }
151
152 raw_ostream &raw_ostream::write_hex(unsigned long long N) {
153   // Zero is a special case.
154   if (N == 0)
155     return *this << '0';
156
157   char NumberBuffer[20];
158   char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
159   char *CurPtr = EndPtr;
160
161   while (N) {
162     uintptr_t x = N % 16;
163     *--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
164     N /= 16;
165   }
166
167   return write(CurPtr, EndPtr-CurPtr);
168 }
169
170 raw_ostream &raw_ostream::operator<<(const void *P) {
171   *this << '0' << 'x';
172
173   return write_hex((uintptr_t) P);
174 }
175
176 raw_ostream &raw_ostream::operator<<(double N) {
177   this->operator<<(ftostr(N));
178   return *this;
179 }
180
181
182
183 void raw_ostream::flush_nonempty() {
184   assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
185   size_t Length = OutBufCur - OutBufStart;
186   OutBufCur = OutBufStart;
187   write_impl(OutBufStart, Length);
188 }
189
190 raw_ostream &raw_ostream::write(unsigned char C) {
191   // Group exceptional cases into a single branch.
192   if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
193     if (BUILTIN_EXPECT(!OutBufStart, false)) {
194       if (BufferMode == Unbuffered) {
195         write_impl(reinterpret_cast<char*>(&C), 1);
196         return *this;
197       }
198       // Set up a buffer and start over.
199       SetBuffered();
200       return write(C);
201     }
202
203     flush_nonempty();
204   }
205
206   *OutBufCur++ = C;
207   return *this;
208 }
209
210 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
211   // Group exceptional cases into a single branch.
212   if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) {
213     if (BUILTIN_EXPECT(!OutBufStart, false)) {
214       if (BufferMode == Unbuffered) {
215         write_impl(Ptr, Size);
216         return *this;
217       }
218       // Set up a buffer and start over.
219       SetBuffered();
220       return write(Ptr, Size);
221     }
222
223     // Write out the data in buffer-sized blocks until the remainder
224     // fits within the buffer.
225     do {
226       size_t NumBytes = OutBufEnd - OutBufCur;
227       copy_to_buffer(Ptr, NumBytes);
228       flush_nonempty();
229       Ptr += NumBytes;
230       Size -= NumBytes;
231     } while (OutBufCur+Size > OutBufEnd);
232   }
233
234   copy_to_buffer(Ptr, Size);
235
236   return *this;
237 }
238
239 void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
240   assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
241
242   // Handle short strings specially, memcpy isn't very good at very short
243   // strings.
244   switch (Size) {
245   case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
246   case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
247   case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
248   case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
249   case 0: break;
250   default:
251     memcpy(OutBufCur, Ptr, Size);
252     break;
253   }
254
255   OutBufCur += Size;
256 }
257
258 // Formatted output.
259 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
260   // If we have more than a few bytes left in our output buffer, try
261   // formatting directly onto its end.
262   size_t NextBufferSize = 127;
263   size_t BufferBytesLeft = OutBufEnd - OutBufCur;
264   if (BufferBytesLeft > 3) {
265     size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
266     
267     // Common case is that we have plenty of space.
268     if (BytesUsed <= BufferBytesLeft) {
269       OutBufCur += BytesUsed;
270       return *this;
271     }
272     
273     // Otherwise, we overflowed and the return value tells us the size to try
274     // again with.
275     NextBufferSize = BytesUsed;
276   }
277   
278   // If we got here, we didn't have enough space in the output buffer for the
279   // string.  Try printing into a SmallVector that is resized to have enough
280   // space.  Iterate until we win.
281   SmallVector<char, 128> V;
282   
283   while (1) {
284     V.resize(NextBufferSize);
285     
286     // Try formatting into the SmallVector.
287     size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
288     
289     // If BytesUsed fit into the vector, we win.
290     if (BytesUsed <= NextBufferSize)
291       return write(V.data(), BytesUsed);
292     
293     // Otherwise, try again with a new size.
294     assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
295     NextBufferSize = BytesUsed;
296   }
297 }
298
299 /// indent - Insert 'NumSpaces' spaces.
300 raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
301   const char *Spaces = "                ";
302
303   // Usually the indentation is small, handle it with a fastpath.
304   if (NumSpaces <= 16)
305     return write(Spaces, NumSpaces);
306   
307   while (NumSpaces) {
308     unsigned NumToWrite = std::min(NumSpaces, 16U);
309     write(Spaces, NumToWrite);
310     NumSpaces -= NumToWrite;
311   }
312   return *this;
313 }
314
315
316 //===----------------------------------------------------------------------===//
317 //  Formatted Output
318 //===----------------------------------------------------------------------===//
319
320 // Out of line virtual method.
321 void format_object_base::home() {
322 }
323
324 //===----------------------------------------------------------------------===//
325 //  raw_fd_ostream
326 //===----------------------------------------------------------------------===//
327
328 /// raw_fd_ostream - Open the specified file for writing. If an error
329 /// occurs, information about the error is put into ErrorInfo, and the
330 /// stream should be immediately destroyed; the string will be empty
331 /// if no error occurred.
332 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
333                                unsigned Flags) : pos(0) {
334   // Verify that we don't have both "append" and "force".
335   assert((!(Flags & F_Force) || !(Flags & F_Append)) &&
336          "Cannot specify both 'force' and 'append' file creation flags!");
337   
338   ErrorInfo.clear();
339
340   // Handle "-" as stdout.
341   if (Filename[0] == '-' && Filename[1] == 0) {
342     FD = STDOUT_FILENO;
343     // If user requested binary then put stdout into binary mode if
344     // possible.
345     if (Flags & F_Binary)
346       sys::Program::ChangeStdoutToBinary();
347     ShouldClose = false;
348     return;
349   }
350   
351   int OpenFlags = O_WRONLY|O_CREAT;
352 #ifdef O_BINARY
353   if (Flags & F_Binary)
354     OpenFlags |= O_BINARY;
355 #endif
356   
357   if (Flags & F_Force)
358     OpenFlags |= O_TRUNC;
359   else if (Flags & F_Append)
360     OpenFlags |= O_APPEND;
361   else
362     OpenFlags |= O_EXCL;
363   
364   FD = open(Filename, OpenFlags, 0664);
365   if (FD < 0) {
366     ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
367     ShouldClose = false;
368   } else {
369     ShouldClose = true;
370   }
371 }
372
373 raw_fd_ostream::~raw_fd_ostream() {
374   if (FD < 0) return;
375   flush();
376   if (ShouldClose)
377     if (::close(FD) != 0)
378       error_detected();
379 }
380
381
382 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
383   assert (FD >= 0 && "File already closed.");
384   pos += Size;
385   if (::write(FD, Ptr, Size) != (ssize_t) Size)
386     error_detected();
387 }
388
389 void raw_fd_ostream::close() {
390   assert (ShouldClose);
391   ShouldClose = false;
392   flush();
393   if (::close(FD) != 0)
394     error_detected();
395   FD = -1;
396 }
397
398 uint64_t raw_fd_ostream::seek(uint64_t off) {
399   flush();
400   pos = ::lseek(FD, off, SEEK_SET);
401   if (pos != off)
402     error_detected();
403   return pos;  
404 }
405
406 size_t raw_fd_ostream::preferred_buffer_size() {
407 #if !defined(_MSC_VER) && !defined(__MINGW32__) // Windows has no st_blksize.
408   assert(FD >= 0 && "File not yet open!");
409   struct stat statbuf;
410   if (fstat(FD, &statbuf) == 0) {
411     // If this is a terminal, don't use buffering. Line buffering
412     // would be a more traditional thing to do, but it's not worth
413     // the complexity.
414     if (S_ISCHR(statbuf.st_mode) && isatty(FD))
415       return 0;
416     // Return the preferred block size.
417     return statbuf.st_blksize;
418   }
419   error_detected();
420 #endif
421   return raw_ostream::preferred_buffer_size();
422 }
423
424 raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
425                                          bool bg) {
426   if (sys::Process::ColorNeedsFlush())
427     flush();
428   const char *colorcode =
429     (colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
430     : sys::Process::OutputColor(colors, bold, bg);
431   if (colorcode) {
432     size_t len = strlen(colorcode);
433     write(colorcode, len);
434     // don't account colors towards output characters
435     pos -= len;
436   }
437   return *this;
438 }
439
440 raw_ostream &raw_fd_ostream::resetColor() {
441   if (sys::Process::ColorNeedsFlush())
442     flush();
443   const char *colorcode = sys::Process::ResetColor();
444   if (colorcode) {
445     size_t len = strlen(colorcode);
446     write(colorcode, len);
447     // don't account colors towards output characters
448     pos -= len;
449   }
450   return *this;
451 }
452
453 //===----------------------------------------------------------------------===//
454 //  raw_stdout/err_ostream
455 //===----------------------------------------------------------------------===//
456
457 // Set buffer settings to model stdout and stderr behavior.
458 // Set standard error to be unbuffered by default.
459 raw_stdout_ostream::raw_stdout_ostream():raw_fd_ostream(STDOUT_FILENO, false) {}
460 raw_stderr_ostream::raw_stderr_ostream():raw_fd_ostream(STDERR_FILENO, false,
461                                                         true) {}
462
463 // An out of line virtual method to provide a home for the class vtable.
464 void raw_stdout_ostream::handle() {}
465 void raw_stderr_ostream::handle() {}
466
467 /// outs() - This returns a reference to a raw_ostream for standard output.
468 /// Use it like: outs() << "foo" << "bar";
469 raw_ostream &llvm::outs() {
470   static raw_stdout_ostream S;
471   return S;
472 }
473
474 /// errs() - This returns a reference to a raw_ostream for standard error.
475 /// Use it like: errs() << "foo" << "bar";
476 raw_ostream &llvm::errs() {
477   static raw_stderr_ostream S;
478   return S;
479 }
480
481 /// nulls() - This returns a reference to a raw_ostream which discards output.
482 raw_ostream &llvm::nulls() {
483   static raw_null_ostream S;
484   return S;
485 }
486
487
488 //===----------------------------------------------------------------------===//
489 //  raw_string_ostream
490 //===----------------------------------------------------------------------===//
491
492 raw_string_ostream::~raw_string_ostream() {
493   flush();
494 }
495
496 void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
497   OS.append(Ptr, Size);
498 }
499
500 //===----------------------------------------------------------------------===//
501 //  raw_svector_ostream
502 //===----------------------------------------------------------------------===//
503
504 // The raw_svector_ostream implementation uses the SmallVector itself as the
505 // buffer for the raw_ostream. We guarantee that the raw_ostream buffer is
506 // always pointing past the end of the vector, but within the vector
507 // capacity. This allows raw_ostream to write directly into the correct place,
508 // and we only need to set the vector size when the data is flushed.
509
510 raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
511   // Set up the initial external buffer. We make sure that the buffer has at
512   // least 128 bytes free; raw_ostream itself only requires 64, but we want to
513   // make sure that we don't grow the buffer unnecessarily on destruction (when
514   // the data is flushed). See the FIXME below.
515   OS.reserve(OS.size() + 128);
516   SetBuffer(OS.end(), OS.capacity() - OS.size());
517 }
518
519 raw_svector_ostream::~raw_svector_ostream() {
520   // FIXME: Prevent resizing during this flush().
521   flush();
522 }
523
524 void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
525   assert(Ptr == OS.end() && OS.size() + Size <= OS.capacity() &&
526          "Invalid write_impl() call!");
527
528   // We don't need to copy the bytes, just commit the bytes to the
529   // SmallVector.
530   OS.set_size(OS.size() + Size);
531
532   // Grow the vector if necessary.
533   if (OS.capacity() - OS.size() < 64)
534     OS.reserve(OS.capacity() * 2);
535
536   // Update the buffer position.
537   SetBuffer(OS.end(), OS.capacity() - OS.size());
538 }
539
540 uint64_t raw_svector_ostream::current_pos() { return OS.size(); }
541
542 StringRef raw_svector_ostream::str() {
543   flush();
544   return StringRef(OS.begin(), OS.size());
545 }
546
547 //===----------------------------------------------------------------------===//
548 //  raw_null_ostream
549 //===----------------------------------------------------------------------===//
550
551 raw_null_ostream::~raw_null_ostream() {
552 #ifndef NDEBUG
553   // ~raw_ostream asserts that the buffer is empty. This isn't necessary
554   // with raw_null_ostream, but it's better to have raw_null_ostream follow
555   // the rules than to change the rules just for raw_null_ostream.
556   flush();
557 #endif
558 }
559
560 void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
561 }
562
563 uint64_t raw_null_ostream::current_pos() {
564   return 0;
565 }