blob: 4e624275300eec0e7186cb48964fa6ec04b2eb80 [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.
Daniel Dunbarab810272009-08-18 23:36:04 +000039void formatted_raw_ostream::ComputeColumn(const char *Ptr, size_t Size) {
40 // If our previous scan pointer is inside the buffer, assume we already
41 // scanned those bytes. This depends on raw_ostream to not change our buffer
42 // in unexpected ways.
43 if (Ptr <= Scanned && Scanned <= Ptr + Size) {
44 // Scan all characters added since our last scan to determine the new
45 // column.
46 ColumnScanned = CountColumns(ColumnScanned, Scanned,
47 Size - (Scanned - Ptr));
48 } else
49 ColumnScanned = CountColumns(ColumnScanned, Ptr, Size);
50
51 // Update the scanning pointer.
52 Scanned = Ptr + Size;
David Greene62fe47a2009-07-10 21:14:44 +000053}
David Greene191cf282009-07-13 16:49:27 +000054
55/// PadToColumn - Align the output to some column number.
56///
57/// \param NewCol - The column to move to.
58/// \param MinPad - The minimum space to give after the most recent
59/// I/O, even if the current column + minpad > newcol.
60///
Chris Lattner8f4b1ec2009-08-17 15:48:08 +000061void formatted_raw_ostream::PadToColumn(unsigned NewCol) {
David Greeneeb857282009-07-29 16:08:27 +000062 // Figure out what's in the buffer and add it to the column count.
Daniel Dunbarab810272009-08-18 23:36:04 +000063 ComputeColumn(getBufferStart(), GetNumBytesInBuffer());
David Greene191cf282009-07-13 16:49:27 +000064
65 // Output spaces until we reach the desired column.
David Greeneeb857282009-07-29 16:08:27 +000066 unsigned num = NewCol - ColumnScanned;
Chris Lattner8f4b1ec2009-08-17 15:48:08 +000067 if (NewCol < ColumnScanned || num < 1)
68 num = 1;
David Greene191cf282009-07-13 16:49:27 +000069
David Greeneed0e2ad2009-07-23 23:21:10 +000070 // Keep a buffer of spaces handy to speed up processing.
David Greeneeb857282009-07-29 16:08:27 +000071 const char *Spaces = " "
72 " ";
David Greeneed0e2ad2009-07-23 23:21:10 +000073
74 assert(num < MAX_COLUMN_PAD && "Unexpectedly large column padding");
David Greeneed0e2ad2009-07-23 23:21:10 +000075 write(Spaces, num);
David Greene191cf282009-07-13 16:49:27 +000076}
77
Dan Gohmana4a68c12009-08-15 02:01:04 +000078void formatted_raw_ostream::write_impl(const char *Ptr, size_t Size) {
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000079 // Figure out what's in the buffer and add it to the column count.
Daniel Dunbarab810272009-08-18 23:36:04 +000080 ComputeColumn(Ptr, Size);
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000081
82 // Write the data to the underlying stream (which is unbuffered, so
83 // the data will be immediately written out).
Dan Gohmana4a68c12009-08-15 02:01:04 +000084 TheStream->write(Ptr, Size);
Dan Gohmanfbcb5b62009-08-15 02:02:59 +000085
Daniel Dunbarab810272009-08-18 23:36:04 +000086 // Reset the scanning pointer.
87 Scanned = 0;
Dan Gohmana4a68c12009-08-15 02:01:04 +000088}
89
David Greene71847812009-07-14 20:18:05 +000090/// fouts() - This returns a reference to a formatted_raw_ostream for
91/// standard output. Use it like: fouts() << "foo" << "bar";
92formatted_raw_ostream &llvm::fouts() {
93 static formatted_raw_ostream S(outs());
94 return S;
95}
96
97/// ferrs() - This returns a reference to a formatted_raw_ostream for
98/// standard error. Use it like: ferrs() << "foo" << "bar";
99formatted_raw_ostream &llvm::ferrs() {
100 static formatted_raw_ostream S(errs());
101 return S;
102}