blob: 0db21f651a7e4062ace49af81ae9ee6aec6db11d [file] [log] [blame]
David Greene191cf282009-07-13 16:49:27 +00001//===-- llvm/Support/FormattedStream.cpp - Formatted streams ----*- C++ -*-===//
David Greene62fe47a2009-07-10 21:14:44 +00002//
3// The LLVM Compiler Infrastructure
4//
David Greene191cf282009-07-13 16:49:27 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
David Greene62fe47a2009-07-10 21:14:44 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner1f318e02009-07-14 23:14:10 +000010// This file contains the implementation of formatted_raw_ostream.
David Greene62fe47a2009-07-10 21:14:44 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/FormattedStream.h"
David Greeneed0e2ad2009-07-23 23:21:10 +000015
David Greene191cf282009-07-13 16:49:27 +000016using namespace llvm;
David Greene62fe47a2009-07-10 21:14:44 +000017
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000018/// CountColumns - Examine the given char sequence and figure out which
David Greene191cf282009-07-13 16:49:27 +000019/// column we end up in after output.
20///
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000021static unsigned CountColumns(unsigned Column, const char *Ptr, size_t Size) {
David Greene191cf282009-07-13 16:49:27 +000022 // Keep track of the current column by scanning the string for
23 // special characters
David Greene62fe47a2009-07-10 21:14:44 +000024
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000025 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 Greeneeb857282009-07-29 16:08:27 +000032 }
33
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000034 return Column;
35}
36
37/// ComputeColumn - Examine the current output and figure out which
38/// column we end up in after output.
39void 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 Greene62fe47a2009-07-10 21:14:44 +000046}
David Greene191cf282009-07-13 16:49:27 +000047
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///
David Greeneeb857282009-07-29 16:08:27 +000054void formatted_raw_ostream::PadToColumn(unsigned NewCol, unsigned MinPad) {
55 // Figure out what's in the buffer and add it to the column count.
56 ComputeColumn();
David Greene191cf282009-07-13 16:49:27 +000057
58 // Output spaces until we reach the desired column.
David Greeneeb857282009-07-29 16:08:27 +000059 unsigned num = NewCol - ColumnScanned;
60 if (NewCol < ColumnScanned || num < MinPad)
David Greene191cf282009-07-13 16:49:27 +000061 num = MinPad;
David Greene191cf282009-07-13 16:49:27 +000062
David Greeneed0e2ad2009-07-23 23:21:10 +000063 // Keep a buffer of spaces handy to speed up processing.
David Greeneeb857282009-07-29 16:08:27 +000064 const char *Spaces = " "
65 " ";
David Greeneed0e2ad2009-07-23 23:21:10 +000066
67 assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding");
68
69 write(Spaces, num);
David Greene191cf282009-07-13 16:49:27 +000070}
71
Dan Gohmana4a68c12009-08-15 02:01:04 +000072void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000073 // Figure out what's in the buffer and add it to the column count.
Dan Gohmana4a68c12009-08-15 02:01:04 +000074 ComputeColumn();
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000075
76 // Write the data to the underlying stream (which is unbuffered, so
77 // the data will be immediately written out).
Dan Gohmana4a68c12009-08-15 02:01:04 +000078 TheStream->write(Ptr, Size);
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000079
80 // If this FormattedStream is unbuffered, scan the string that
81 // was just written to determine the new column.
82 if (Ptr == begin()) {
83 // Buffered mode. The buffer is being flushed; reset the scanning
84 // position to the beginning of the buffer.
85 assert(Ptr + Size == end() && "Buffer is not being fully flushed!");
86 Scanned = begin();
87 } else {
88 // Unbuffered mode. Immediately scan the string that was just
89 // written to determine the new column.
90 ColumnScanned = CountColumns(ColumnScanned, Ptr, Size);
91 }
Dan Gohmana4a68c12009-08-15 02:01:04 +000092}
93
David Greene71847812009-07-14 20:18:05 +000094/// fouts() - This returns a reference to a formatted_raw_ostream for
95/// standard output. Use it like: fouts() << "foo" << "bar";
96formatted_raw_ostream &llvm::fouts() {
97 static formatted_raw_ostream S(outs());
98 return S;
99}
100
101/// ferrs() - This returns a reference to a formatted_raw_ostream for
102/// standard error. Use it like: ferrs() << "foo" << "bar";
103formatted_raw_ostream &llvm::ferrs() {
104 static formatted_raw_ostream S(errs());
105 return S;
106}