David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 1 | //===-- llvm/Support/FormattedStream.cpp - Formatted streams ----*- C++ -*-===// |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 1f318e0 | 2009-07-14 23:14:10 +0000 | [diff] [blame] | 10 | // This file contains the implementation of formatted_raw_ostream. |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/Support/FormattedStream.h" |
David Greene | ed0e2ad | 2009-07-23 23:21:10 +0000 | [diff] [blame] | 15 | |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 16 | using namespace llvm; |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 17 | |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 18 | /// CountColumns - Examine the given char sequence and figure out which |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 19 | /// column we end up in after output. |
| 20 | /// |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 21 | static unsigned CountColumns(unsigned Column, const char *Ptr, size_t Size) { |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 22 | // Keep track of the current column by scanning the string for |
| 23 | // special characters |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 24 | |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 25 | for (const char *End = Ptr + Size; Ptr != End; ++Ptr) { |
| 26 | ++Column; |
| 27 | if (*Ptr == '\n' || *Ptr == '\r') |
| 28 | Column = 0; |
| 29 | else if (*Ptr == '\t') |
| 30 | // Assumes tab stop = 8 characters. |
| 31 | Column += (8 - (Column & 0x7)) & 0x7; |
David Greene | eb85728 | 2009-07-29 16:08:27 +0000 | [diff] [blame] | 32 | } |
| 33 | |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 34 | return Column; |
| 35 | } |
| 36 | |
| 37 | /// ComputeColumn - Examine the current output and figure out which |
| 38 | /// column we end up in after output. |
| 39 | void formatted_raw_ostream::ComputeColumn() { |
| 40 | // The buffer may have been allocated underneath us. |
| 41 | if (Scanned == 0) Scanned = begin(); |
| 42 | // Scan all characters added since our last scan to determine the new column. |
| 43 | ColumnScanned = CountColumns(ColumnScanned, Scanned, end() - Scanned); |
| 44 | // We're now current with everything in the buffer. |
| 45 | Scanned = end(); |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 46 | } |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 47 | |
| 48 | /// PadToColumn - Align the output to some column number. |
| 49 | /// |
| 50 | /// \param NewCol - The column to move to. |
| 51 | /// \param MinPad - The minimum space to give after the most recent |
| 52 | /// I/O, even if the current column + minpad > newcol. |
| 53 | /// |
Chris Lattner | 8f4b1ec | 2009-08-17 15:48:08 +0000 | [diff] [blame^] | 54 | void formatted_raw_ostream::PadToColumn(unsigned NewCol) { |
David Greene | eb85728 | 2009-07-29 16:08:27 +0000 | [diff] [blame] | 55 | // Figure out what's in the buffer and add it to the column count. |
| 56 | ComputeColumn(); |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 57 | |
| 58 | // Output spaces until we reach the desired column. |
David Greene | eb85728 | 2009-07-29 16:08:27 +0000 | [diff] [blame] | 59 | unsigned num = NewCol - ColumnScanned; |
Chris Lattner | 8f4b1ec | 2009-08-17 15:48:08 +0000 | [diff] [blame^] | 60 | if (NewCol < ColumnScanned || num < 1) |
| 61 | num = 1; |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 62 | |
David Greene | ed0e2ad | 2009-07-23 23:21:10 +0000 | [diff] [blame] | 63 | // Keep a buffer of spaces handy to speed up processing. |
David Greene | eb85728 | 2009-07-29 16:08:27 +0000 | [diff] [blame] | 64 | const char *Spaces = " " |
| 65 | " "; |
David Greene | ed0e2ad | 2009-07-23 23:21:10 +0000 | [diff] [blame] | 66 | |
| 67 | assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding"); |
David Greene | ed0e2ad | 2009-07-23 23:21:10 +0000 | [diff] [blame] | 68 | write(Spaces, num); |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Dan Gohman | a4a68c1 | 2009-08-15 02:01:04 +0000 | [diff] [blame] | 71 | void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) { |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 72 | // Figure out what's in the buffer and add it to the column count. |
Dan Gohman | a4a68c1 | 2009-08-15 02:01:04 +0000 | [diff] [blame] | 73 | ComputeColumn(); |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 74 | |
| 75 | // Write the data to the underlying stream (which is unbuffered, so |
| 76 | // the data will be immediately written out). |
Dan Gohman | a4a68c1 | 2009-08-15 02:01:04 +0000 | [diff] [blame] | 77 | TheStream->write(Ptr, Size); |
Dan Gohman | fbcb5b6 | 2009-08-15 02:02:59 +0000 | [diff] [blame] | 78 | |
| 79 | // If this FormattedStream is unbuffered, scan the string that |
| 80 | // was just written to determine the new column. |
| 81 | if (Ptr == begin()) { |
| 82 | // Buffered mode. The buffer is being flushed; reset the scanning |
| 83 | // position to the beginning of the buffer. |
| 84 | assert(Ptr + Size == end() && "Buffer is not being fully flushed!"); |
| 85 | Scanned = begin(); |
| 86 | } else { |
| 87 | // Unbuffered mode. Immediately scan the string that was just |
| 88 | // written to determine the new column. |
| 89 | ColumnScanned = CountColumns(ColumnScanned, Ptr, Size); |
| 90 | } |
Dan Gohman | a4a68c1 | 2009-08-15 02:01:04 +0000 | [diff] [blame] | 91 | } |
| 92 | |
David Greene | 7184781 | 2009-07-14 20:18:05 +0000 | [diff] [blame] | 93 | /// fouts() - This returns a reference to a formatted_raw_ostream for |
| 94 | /// standard output. Use it like: fouts() << "foo" << "bar"; |
| 95 | formatted_raw_ostream &llvm::fouts() { |
| 96 | static formatted_raw_ostream S(outs()); |
| 97 | return S; |
| 98 | } |
| 99 | |
| 100 | /// ferrs() - This returns a reference to a formatted_raw_ostream for |
| 101 | /// standard error. Use it like: ferrs() << "foo" << "bar"; |
| 102 | formatted_raw_ostream &llvm::ferrs() { |
| 103 | static formatted_raw_ostream S(errs()); |
| 104 | return S; |
| 105 | } |