2008-10-21 19:53:10 +00:00
|
|
|
//===--- raw_ostream.h - Raw output stream ----------------------*- C++ -*-===//
|
2008-08-17 01:35:29 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the raw_ostream class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_RAW_OSTREAM_H
|
|
|
|
#define LLVM_SUPPORT_RAW_OSTREAM_H
|
|
|
|
|
2008-08-21 00:14:44 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
2009-07-22 17:13:20 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2008-08-17 06:40:16 +00:00
|
|
|
#include <cassert>
|
|
|
|
#include <cstring>
|
2008-08-17 01:35:29 +00:00
|
|
|
#include <string>
|
2008-08-17 04:13:37 +00:00
|
|
|
#include <iosfwd>
|
2008-08-17 01:35:29 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2008-08-23 19:23:10 +00:00
|
|
|
class format_object_base;
|
2008-08-23 22:43:04 +00:00
|
|
|
template <typename T>
|
|
|
|
class SmallVectorImpl;
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
/// raw_ostream - This class implements an extremely fast bulk output stream
|
|
|
|
/// that can *only* output to a stream. It does not support seeking, reopening,
|
|
|
|
/// rewinding, line buffered disciplines etc. It is a simple buffer that outputs
|
|
|
|
/// a chunk at a time.
|
|
|
|
class raw_ostream {
|
2009-03-16 23:29:31 +00:00
|
|
|
private:
|
2009-03-17 01:13:35 +00:00
|
|
|
/// The buffer is handled in such a way that the buffer is
|
|
|
|
/// uninitialized, unbuffered, or out of space when OutBufCur >=
|
|
|
|
/// OutBufEnd. Thus a single comparison suffices to determine if we
|
|
|
|
/// need to take the slow path to write a single character.
|
|
|
|
///
|
|
|
|
/// The buffer is in one of three states:
|
|
|
|
/// 1. Unbuffered (Unbuffered == true)
|
|
|
|
/// 1. Uninitialized (Unbuffered == false && OutBufStart == 0).
|
|
|
|
/// 2. Buffered (Unbuffered == false && OutBufStart != 0 &&
|
|
|
|
/// OutBufEnd - OutBufStart >= 64).
|
2008-08-17 01:35:29 +00:00
|
|
|
char *OutBufStart, *OutBufEnd, *OutBufCur;
|
2009-03-10 16:21:55 +00:00
|
|
|
bool Unbuffered;
|
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
/// Error This flag is true if an error of any kind has been detected.
|
|
|
|
///
|
|
|
|
bool Error;
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
public:
|
2009-06-04 07:09:50 +00:00
|
|
|
// color order matches ANSI escape sequence, don't change
|
|
|
|
enum Colors {
|
|
|
|
BLACK=0,
|
|
|
|
RED,
|
|
|
|
GREEN,
|
|
|
|
YELLOW,
|
|
|
|
BLUE,
|
|
|
|
MAGENTA,
|
|
|
|
CYAN,
|
|
|
|
WHITE,
|
|
|
|
SAVEDCOLOR
|
|
|
|
};
|
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
explicit raw_ostream(bool unbuffered=false)
|
|
|
|
: Unbuffered(unbuffered), Error(false) {
|
2008-08-17 01:35:29 +00:00
|
|
|
// Start out ready to flush.
|
|
|
|
OutBufStart = OutBufEnd = OutBufCur = 0;
|
|
|
|
}
|
2008-09-02 12:06:08 +00:00
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
virtual ~raw_ostream();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-04-20 07:34:17 +00:00
|
|
|
/// tell - Return the current offset with the file.
|
|
|
|
uint64_t tell() { return current_pos() + GetNumBytesInBuffer(); }
|
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
/// has_error - Return the value of the flag in this raw_ostream indicating
|
|
|
|
/// whether an output error has been encountered.
|
|
|
|
bool has_error() const {
|
|
|
|
return Error;
|
2009-07-25 16:00:54 +00:00
|
|
|
}
|
2009-07-15 23:25:33 +00:00
|
|
|
|
|
|
|
/// clear_error - Set the flag read by has_error() to false. If the error
|
|
|
|
/// flag is set at the time when this raw_ostream's destructor is called,
|
|
|
|
/// llvm_report_error is called to report the error. Use clear_error()
|
|
|
|
/// after handling the error to avoid this behavior.
|
|
|
|
void clear_error() {
|
|
|
|
Error = false;
|
2009-07-25 16:00:54 +00:00
|
|
|
}
|
2009-07-15 23:25:33 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Configuration Interface
|
|
|
|
//===--------------------------------------------------------------------===//
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
/// SetBufferSize - Set the internal buffer size to the specified amount
|
|
|
|
/// instead of the default.
|
2009-07-16 15:24:40 +00:00
|
|
|
void SetBufferSize(size_t Size=4096) {
|
2008-08-17 01:35:29 +00:00
|
|
|
assert(Size >= 64 &&
|
|
|
|
"Buffer size must be somewhat large for invariants to hold");
|
|
|
|
flush();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
delete [] OutBufStart;
|
|
|
|
OutBufStart = new char[Size];
|
|
|
|
OutBufEnd = OutBufStart+Size;
|
|
|
|
OutBufCur = OutBufStart;
|
2009-03-17 01:13:35 +00:00
|
|
|
Unbuffered = false;
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-03-10 16:21:55 +00:00
|
|
|
/// SetUnbuffered - Set the streams buffering status. When
|
|
|
|
/// unbuffered the stream will flush after every write. This routine
|
|
|
|
/// will also flush the buffer immediately when the stream is being
|
|
|
|
/// set to unbuffered.
|
2009-03-17 01:13:35 +00:00
|
|
|
void SetUnbuffered() {
|
|
|
|
flush();
|
|
|
|
|
|
|
|
delete [] OutBufStart;
|
|
|
|
OutBufStart = OutBufEnd = OutBufCur = 0;
|
|
|
|
Unbuffered = true;
|
2009-03-10 16:21:55 +00:00
|
|
|
}
|
|
|
|
|
2009-07-16 15:24:40 +00:00
|
|
|
size_t GetNumBytesInBuffer() const {
|
2009-03-16 23:29:31 +00:00
|
|
|
return OutBufCur - OutBufStart;
|
|
|
|
}
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Data Output Interface
|
|
|
|
//===--------------------------------------------------------------------===//
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
void flush() {
|
|
|
|
if (OutBufCur != OutBufStart)
|
2009-03-16 22:55:06 +00:00
|
|
|
flush_nonempty();
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-22 08:44:47 +00:00
|
|
|
raw_ostream &operator<<(char C) {
|
|
|
|
if (OutBufCur >= OutBufEnd)
|
2009-03-16 22:00:17 +00:00
|
|
|
return write(C);
|
2008-08-22 08:44:47 +00:00
|
|
|
*OutBufCur++ = C;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-22 07:42:25 +00:00
|
|
|
raw_ostream &operator<<(unsigned char C) {
|
|
|
|
if (OutBufCur >= OutBufEnd)
|
2009-03-16 22:00:17 +00:00
|
|
|
return write(C);
|
2008-08-22 07:42:25 +00:00
|
|
|
*OutBufCur++ = C;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-22 07:42:25 +00:00
|
|
|
raw_ostream &operator<<(signed char C) {
|
2008-08-17 01:35:29 +00:00
|
|
|
if (OutBufCur >= OutBufEnd)
|
2009-03-16 22:00:17 +00:00
|
|
|
return write(C);
|
2008-08-17 01:35:29 +00:00
|
|
|
*OutBufCur++ = C;
|
|
|
|
return *this;
|
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-22 17:13:20 +00:00
|
|
|
raw_ostream &operator<<(const StringRef &Str) {
|
|
|
|
// Inline fast path, particularly for strings with a known length.
|
|
|
|
size_t Size = Str.size();
|
2009-04-03 18:43:17 +00:00
|
|
|
|
|
|
|
// Make sure we can use the fast path.
|
|
|
|
if (OutBufCur+Size > OutBufEnd)
|
2009-07-22 17:13:20 +00:00
|
|
|
return write(Str.data(), Size);
|
2009-04-03 18:43:17 +00:00
|
|
|
|
2009-07-22 17:13:20 +00:00
|
|
|
memcpy(OutBufCur, Str.data(), Size);
|
2009-04-03 18:43:17 +00:00
|
|
|
OutBufCur += Size;
|
2009-03-17 01:53:36 +00:00
|
|
|
return *this;
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-22 17:13:20 +00:00
|
|
|
raw_ostream &operator<<(const char *Str) {
|
|
|
|
// Inline fast path, particulary for constant strings where a sufficiently
|
|
|
|
// smart compiler will simplify strlen.
|
|
|
|
|
|
|
|
this->operator<<(StringRef(Str));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2008-08-21 00:14:44 +00:00
|
|
|
raw_ostream &operator<<(const std::string& Str) {
|
2009-03-17 01:53:36 +00:00
|
|
|
write(Str.data(), Str.length());
|
|
|
|
return *this;
|
2008-08-21 00:14:44 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
raw_ostream &operator<<(unsigned long N);
|
|
|
|
raw_ostream &operator<<(long N);
|
|
|
|
raw_ostream &operator<<(unsigned long long N);
|
|
|
|
raw_ostream &operator<<(long long N);
|
2008-08-23 22:23:09 +00:00
|
|
|
raw_ostream &operator<<(const void *P);
|
2008-08-21 06:20:47 +00:00
|
|
|
raw_ostream &operator<<(unsigned int N) {
|
2009-03-17 01:53:36 +00:00
|
|
|
this->operator<<(static_cast<unsigned long>(N));
|
|
|
|
return *this;
|
2008-08-21 00:14:44 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-21 06:20:47 +00:00
|
|
|
raw_ostream &operator<<(int N) {
|
2009-03-17 01:53:36 +00:00
|
|
|
this->operator<<(static_cast<long>(N));
|
|
|
|
return *this;
|
2008-08-21 00:14:44 +00:00
|
|
|
}
|
2008-08-21 04:28:31 +00:00
|
|
|
|
2008-08-21 00:14:44 +00:00
|
|
|
raw_ostream &operator<<(double N) {
|
2009-03-17 01:53:36 +00:00
|
|
|
this->operator<<(ftostr(N));
|
|
|
|
return *this;
|
2008-08-21 00:14:44 +00:00
|
|
|
}
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-30 18:21:23 +00:00
|
|
|
/// write_hex - Output \arg N in hexadecimal, without any prefix or padding.
|
|
|
|
raw_ostream &write_hex(unsigned long long N);
|
|
|
|
|
2009-03-16 22:00:17 +00:00
|
|
|
raw_ostream &write(unsigned char C);
|
2009-07-16 15:24:40 +00:00
|
|
|
raw_ostream &write(const char *Ptr, size_t Size);
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-23 19:48:00 +00:00
|
|
|
// Formatted output, see the format() function in Support/Format.h.
|
2008-08-23 19:23:10 +00:00
|
|
|
raw_ostream &operator<<(const format_object_base &Fmt);
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-06-04 07:09:50 +00:00
|
|
|
/// Changes the foreground color of text that will be output from this point
|
|
|
|
/// forward.
|
|
|
|
/// @param colors ANSI color to use, the special SAVEDCOLOR can be used to
|
|
|
|
/// change only the bold attribute, and keep colors untouched
|
|
|
|
/// @param bold bold/brighter text, default false
|
|
|
|
/// @param bg if true change the background, default: change foreground
|
|
|
|
/// @returns itself so it can be used within << invocations
|
|
|
|
virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,
|
|
|
|
bool bg=false) { return *this; }
|
|
|
|
|
|
|
|
/// Resets the colors to terminal defaults. Call this when you are done
|
|
|
|
/// outputting colored text, or before program exit.
|
|
|
|
virtual raw_ostream &resetColor() { return *this; }
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Subclass Interface
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2009-03-16 22:55:06 +00:00
|
|
|
private:
|
2009-03-16 23:29:31 +00:00
|
|
|
/// write_impl - The is the piece of the class that is implemented
|
|
|
|
/// by subclasses. This writes the \args Size bytes starting at
|
|
|
|
/// \arg Ptr to the underlying stream.
|
|
|
|
///
|
|
|
|
/// \invariant { Size > 0 }
|
2009-07-16 15:24:40 +00:00
|
|
|
virtual void write_impl(const char *Ptr, size_t Size) = 0;
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
// An out of line virtual method to provide a home for the class vtable.
|
|
|
|
virtual void handle();
|
2009-03-16 22:55:06 +00:00
|
|
|
|
2009-04-20 07:34:17 +00:00
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos() = 0;
|
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
protected:
|
|
|
|
/// error_detected - Set the flag indicating that an output error has
|
|
|
|
/// been encountered.
|
|
|
|
void error_detected() { Error = true; }
|
|
|
|
|
2009-07-28 23:24:58 +00:00
|
|
|
typedef char * iterator;
|
|
|
|
iterator begin(void) { return OutBufStart; }
|
|
|
|
iterator end(void) { return OutBufCur; }
|
|
|
|
|
2009-03-16 22:55:06 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Private Interface
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
private:
|
|
|
|
/// flush_nonempty - Flush the current buffer, which is known to be
|
|
|
|
/// non-empty. This outputs the currently buffered data and resets
|
|
|
|
/// the buffer to empty.
|
|
|
|
void flush_nonempty();
|
2008-08-17 01:35:29 +00:00
|
|
|
};
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// File Output Streams
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
/// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
|
|
|
|
///
|
|
|
|
class raw_fd_ostream : public raw_ostream {
|
|
|
|
int FD;
|
|
|
|
bool ShouldClose;
|
2008-12-04 22:51:11 +00:00
|
|
|
uint64_t pos;
|
2009-03-16 23:29:31 +00:00
|
|
|
|
|
|
|
/// write_impl - See raw_ostream::write_impl.
|
2009-07-16 15:24:40 +00:00
|
|
|
virtual void write_impl(const char *Ptr, size_t Size);
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos() { return pos; }
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
public:
|
2008-10-21 19:53:10 +00:00
|
|
|
/// raw_fd_ostream - Open the specified file for writing. If an
|
|
|
|
/// error occurs, information about the error is put into ErrorInfo,
|
|
|
|
/// and the stream should be immediately destroyed; the string will
|
|
|
|
/// be empty if no error occurred.
|
2008-11-13 05:01:07 +00:00
|
|
|
///
|
|
|
|
/// \param Filename - The file to open. If this is "-" then the
|
|
|
|
/// stream will use stdout instead.
|
|
|
|
/// \param Binary - The file should be opened in binary mode on
|
|
|
|
/// platforms that support this distinction.
|
2009-07-15 17:29:42 +00:00
|
|
|
/// \param Force - Don't consider the case where the file already
|
|
|
|
/// exists to be an error.
|
|
|
|
raw_fd_ostream(const char *Filename, bool Binary, bool Force,
|
|
|
|
std::string &ErrorInfo);
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
/// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
|
2009-03-10 16:21:55 +00:00
|
|
|
/// ShouldClose is true, this closes the file when the stream is destroyed.
|
|
|
|
raw_fd_ostream(int fd, bool shouldClose,
|
|
|
|
bool unbuffered=false) : raw_ostream(unbuffered), FD(fd),
|
|
|
|
ShouldClose(shouldClose) {}
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
~raw_fd_ostream();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-10-23 23:49:09 +00:00
|
|
|
/// close - Manually flush the stream and close the file.
|
2008-11-26 03:33:13 +00:00
|
|
|
void close();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-11-26 03:33:13 +00:00
|
|
|
/// tell - Return the current offset with the file.
|
2009-03-16 23:29:31 +00:00
|
|
|
uint64_t tell() { return pos + GetNumBytesInBuffer(); }
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-01-26 21:42:04 +00:00
|
|
|
/// seek - Flushes the stream and repositions the underlying file descriptor
|
|
|
|
/// positition to the offset specified from the beginning of the file.
|
|
|
|
uint64_t seek(uint64_t off);
|
2009-06-04 07:09:50 +00:00
|
|
|
|
|
|
|
virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,
|
|
|
|
bool bg=false);
|
|
|
|
virtual raw_ostream &resetColor();
|
2008-08-17 01:35:29 +00:00
|
|
|
};
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
/// raw_stdout_ostream - This is a stream that always prints to stdout.
|
|
|
|
///
|
2008-08-17 01:35:29 +00:00
|
|
|
class raw_stdout_ostream : public raw_fd_ostream {
|
|
|
|
// An out of line virtual method to provide a home for the class vtable.
|
|
|
|
virtual void handle();
|
|
|
|
public:
|
|
|
|
raw_stdout_ostream();
|
|
|
|
};
|
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
/// raw_stderr_ostream - This is a stream that always prints to stderr.
|
|
|
|
///
|
2008-08-17 01:35:29 +00:00
|
|
|
class raw_stderr_ostream : public raw_fd_ostream {
|
|
|
|
// An out of line virtual method to provide a home for the class vtable.
|
|
|
|
virtual void handle();
|
|
|
|
public:
|
|
|
|
raw_stderr_ostream();
|
|
|
|
};
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
/// outs() - This returns a reference to a raw_ostream for standard output.
|
|
|
|
/// Use it like: outs() << "foo" << "bar";
|
|
|
|
raw_ostream &outs();
|
|
|
|
|
|
|
|
/// errs() - This returns a reference to a raw_ostream for standard error.
|
|
|
|
/// Use it like: errs() << "foo" << "bar";
|
|
|
|
raw_ostream &errs();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-16 21:17:53 +00:00
|
|
|
/// nulls() - This returns a reference to a raw_ostream which simply discards
|
|
|
|
/// output.
|
|
|
|
raw_ostream &nulls();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-08-23 22:43:04 +00:00
|
|
|
// Output Stream Adaptors
|
2008-08-23 19:23:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
/// raw_os_ostream - A raw_ostream that writes to an std::ostream. This is a
|
2009-07-15 23:25:33 +00:00
|
|
|
/// simple adaptor class. It does not check for output errors; clients should
|
|
|
|
/// use the underlying stream to detect errors.
|
2008-08-17 04:13:37 +00:00
|
|
|
class raw_os_ostream : public raw_ostream {
|
|
|
|
std::ostream &OS;
|
2009-03-16 23:29:31 +00:00
|
|
|
|
|
|
|
/// write_impl - See raw_ostream::write_impl.
|
2009-07-16 15:24:40 +00:00
|
|
|
virtual void write_impl(const char *Ptr, size_t Size);
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos();
|
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
public:
|
|
|
|
raw_os_ostream(std::ostream &O) : OS(O) {}
|
2008-08-23 22:23:09 +00:00
|
|
|
~raw_os_ostream();
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// tell - Return the current offset with the stream.
|
|
|
|
uint64_t tell();
|
2008-08-17 04:13:37 +00:00
|
|
|
};
|
2008-08-23 22:43:04 +00:00
|
|
|
|
|
|
|
/// raw_string_ostream - A raw_ostream that writes to an std::string. This is a
|
2009-07-15 23:25:33 +00:00
|
|
|
/// simple adaptor class. This class does not encounter output errors.
|
2008-08-23 22:43:04 +00:00
|
|
|
class raw_string_ostream : public raw_ostream {
|
|
|
|
std::string &OS;
|
2009-03-16 23:29:31 +00:00
|
|
|
|
|
|
|
/// write_impl - See raw_ostream::write_impl.
|
2009-07-16 15:24:40 +00:00
|
|
|
virtual void write_impl(const char *Ptr, size_t Size);
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos() { return OS.size(); }
|
2008-08-23 22:43:04 +00:00
|
|
|
public:
|
2009-07-16 15:33:04 +00:00
|
|
|
explicit raw_string_ostream(std::string &O) : OS(O) {}
|
2008-08-23 22:43:04 +00:00
|
|
|
~raw_string_ostream();
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-04-20 07:34:17 +00:00
|
|
|
/// tell - Return the current offset with the stream.
|
|
|
|
uint64_t tell() { return OS.size() + GetNumBytesInBuffer(); }
|
|
|
|
|
2008-08-26 16:34:01 +00:00
|
|
|
/// str - Flushes the stream contents to the target string and returns
|
2008-08-26 16:41:15 +00:00
|
|
|
/// the string's reference.
|
2008-08-26 16:34:01 +00:00
|
|
|
std::string& str() {
|
|
|
|
flush();
|
|
|
|
return OS;
|
|
|
|
}
|
2008-08-23 22:43:04 +00:00
|
|
|
};
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2008-08-23 22:43:04 +00:00
|
|
|
/// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
|
2009-07-15 23:25:33 +00:00
|
|
|
/// SmallString. This is a simple adaptor class. This class does not
|
|
|
|
/// encounter output errors.
|
2008-08-23 22:43:04 +00:00
|
|
|
class raw_svector_ostream : public raw_ostream {
|
|
|
|
SmallVectorImpl<char> &OS;
|
2009-03-16 23:29:31 +00:00
|
|
|
|
|
|
|
/// write_impl - See raw_ostream::write_impl.
|
2009-07-16 15:24:40 +00:00
|
|
|
virtual void write_impl(const char *Ptr, size_t Size);
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos();
|
2008-08-23 22:43:04 +00:00
|
|
|
public:
|
2009-07-16 15:33:04 +00:00
|
|
|
explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
|
2008-08-23 22:43:04 +00:00
|
|
|
~raw_svector_ostream();
|
2009-04-20 07:34:17 +00:00
|
|
|
|
|
|
|
/// tell - Return the current offset with the stream.
|
|
|
|
uint64_t tell();
|
2008-08-23 22:43:04 +00:00
|
|
|
};
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-16 21:17:53 +00:00
|
|
|
/// raw_null_ostream - A raw_ostream that discards all output.
|
|
|
|
class raw_null_ostream : public raw_ostream {
|
|
|
|
/// write_impl - See raw_ostream::write_impl.
|
|
|
|
virtual void write_impl(const char *Ptr, size_t size);
|
|
|
|
|
|
|
|
/// current_pos - Return the current position within the stream, not
|
|
|
|
/// counting the bytes currently in the buffer.
|
|
|
|
virtual uint64_t current_pos();
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit raw_null_ostream() {}
|
2009-07-27 21:46:02 +00:00
|
|
|
~raw_null_ostream();
|
2009-07-16 21:17:53 +00:00
|
|
|
};
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
} // end llvm namespace
|
|
|
|
|
|
|
|
#endif
|