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 | #include <algorithm> |
| 16 | |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 17 | using namespace llvm; |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 18 | |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 19 | /// ComputeColumn - Examine the current output and figure out which |
| 20 | /// column we end up in after output. |
| 21 | /// |
David Greene | 7aaad71 | 2009-07-28 23:26:34 +0000 | [diff] [blame] | 22 | void formatted_raw_ostream::ComputeColumn(unsigned &Column) { |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 23 | // Keep track of the current column by scanning the string for |
| 24 | // special characters |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 25 | |
David Greene | 7aaad71 | 2009-07-28 23:26:34 +0000 | [diff] [blame] | 26 | for (const char *Ptr = begin(); Ptr != end(); ++Ptr) { |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 27 | ++Column; |
| 28 | if (*Ptr == '\n' || *Ptr == '\r') |
| 29 | Column = 0; |
| 30 | else if (*Ptr == '\t') |
| 31 | Column += (8 - (Column & 0x7)) & 0x7; |
David Greene | 62fe47a | 2009-07-10 21:14:44 +0000 | [diff] [blame] | 32 | } |
| 33 | } |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 34 | |
| 35 | /// PadToColumn - Align the output to some column number. |
| 36 | /// |
| 37 | /// \param NewCol - The column to move to. |
| 38 | /// \param MinPad - The minimum space to give after the most recent |
| 39 | /// I/O, even if the current column + minpad > newcol. |
| 40 | /// |
David Greene | 7aaad71 | 2009-07-28 23:26:34 +0000 | [diff] [blame] | 41 | void formatted_raw_ostream::PadToColumn(unsigned NewCol, unsigned MinPad) { |
| 42 | // Start out from the last flush position. |
| 43 | unsigned Column = ColumnFlushed; |
| 44 | |
| 45 | // Now figure out what's in the buffer and add it to the column |
| 46 | // count. |
| 47 | ComputeColumn(Column); |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 48 | |
| 49 | // Output spaces until we reach the desired column. |
| 50 | unsigned num = NewCol - Column; |
Chris Lattner | 1f318e0 | 2009-07-14 23:14:10 +0000 | [diff] [blame] | 51 | if (NewCol < Column || num < MinPad) |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 52 | num = MinPad; |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 53 | |
David Greene | ed0e2ad | 2009-07-23 23:21:10 +0000 | [diff] [blame] | 54 | // Keep a buffer of spaces handy to speed up processing. |
| 55 | static char Spaces[MAX_COLUMN_PAD]; |
| 56 | static bool Initialized = false; |
| 57 | if (!Initialized) { |
| 58 | std::fill_n(Spaces, MAX_COLUMN_PAD, ' '), |
| 59 | Initialized = true; |
| 60 | } |
| 61 | |
| 62 | assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding"); |
| 63 | |
| 64 | write(Spaces, num); |
David Greene | 191cf28 | 2009-07-13 16:49:27 +0000 | [diff] [blame] | 65 | } |
| 66 | |
David Greene | 7184781 | 2009-07-14 20:18:05 +0000 | [diff] [blame] | 67 | /// fouts() - This returns a reference to a formatted_raw_ostream for |
| 68 | /// standard output. Use it like: fouts() << "foo" << "bar"; |
| 69 | formatted_raw_ostream &llvm::fouts() { |
| 70 | static formatted_raw_ostream S(outs()); |
| 71 | return S; |
| 72 | } |
| 73 | |
| 74 | /// ferrs() - This returns a reference to a formatted_raw_ostream for |
| 75 | /// standard error. Use it like: ferrs() << "foo" << "bar"; |
| 76 | formatted_raw_ostream &llvm::ferrs() { |
| 77 | static formatted_raw_ostream S(errs()); |
| 78 | return S; |
| 79 | } |