2008-08-17 01:35:29 +00:00
|
|
|
//===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This implements support for bulk buffered stream output.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-08-23 20:34:06 +00:00
|
|
|
#include "llvm/Support/Format.h"
|
2008-11-13 05:01:07 +00:00
|
|
|
#include "llvm/System/Program.h"
|
2009-06-04 07:09:50 +00:00
|
|
|
#include "llvm/System/Process.h"
|
2008-08-23 19:23:10 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2008-08-22 15:45:00 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2009-03-17 21:15:18 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2009-07-15 08:11:46 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2010-08-20 00:48:10 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2009-08-24 04:13:01 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2010-01-29 15:19:06 +00:00
|
|
|
#include <cctype>
|
2010-05-05 15:17:47 +00:00
|
|
|
#include <cerrno>
|
2009-08-13 17:27:29 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2008-08-17 01:35:29 +00:00
|
|
|
|
2008-08-22 15:45:00 +00:00
|
|
|
#if defined(HAVE_UNISTD_H)
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#if defined(HAVE_FCNTL_H)
|
|
|
|
# include <fcntl.h>
|
|
|
|
#endif
|
2008-08-17 09:25:21 +00:00
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
2008-08-17 01:35:29 +00:00
|
|
|
#include <io.h>
|
2008-08-24 11:56:40 +00:00
|
|
|
#include <fcntl.h>
|
2008-08-21 00:14:44 +00:00
|
|
|
#ifndef STDIN_FILENO
|
|
|
|
# define STDIN_FILENO 0
|
|
|
|
#endif
|
|
|
|
#ifndef STDOUT_FILENO
|
|
|
|
# define STDOUT_FILENO 1
|
|
|
|
#endif
|
|
|
|
#ifndef STDERR_FILENO
|
|
|
|
# define STDERR_FILENO 2
|
|
|
|
#endif
|
2008-08-17 01:35:29 +00:00
|
|
|
#endif
|
|
|
|
|
2008-08-22 15:45:00 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-15 23:25:33 +00:00
|
|
|
raw_ostream::~raw_ostream() {
|
2009-07-27 20:49:44 +00:00
|
|
|
// raw_ostream's subclasses should take care to flush the buffer
|
|
|
|
// in their destructors.
|
|
|
|
assert(OutBufCur == OutBufStart &&
|
|
|
|
"raw_ostream destructor called with non-empty buffer!");
|
|
|
|
|
2009-08-18 23:42:36 +00:00
|
|
|
if (BufferMode == InternalBuffer)
|
|
|
|
delete [] OutBufStart;
|
2009-07-15 23:25:33 +00:00
|
|
|
}
|
2008-08-22 15:45:00 +00:00
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
// An out of line virtual method to provide a home for the class vtable.
|
|
|
|
void raw_ostream::handle() {}
|
|
|
|
|
2009-12-19 01:38:42 +00:00
|
|
|
size_t raw_ostream::preferred_buffer_size() const {
|
2009-08-13 17:27:29 +00:00
|
|
|
// BUFSIZ is intended to be a reasonable default.
|
|
|
|
return BUFSIZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void raw_ostream::SetBuffered() {
|
|
|
|
// Ask the subclass to determine an appropriate buffer size.
|
2009-08-15 02:05:19 +00:00
|
|
|
if (size_t Size = preferred_buffer_size())
|
|
|
|
SetBufferSize(Size);
|
|
|
|
else
|
|
|
|
// It may return 0, meaning this stream should be unbuffered.
|
|
|
|
SetUnbuffered();
|
2009-08-13 17:27:29 +00:00
|
|
|
}
|
|
|
|
|
2010-03-24 19:38:02 +00:00
|
|
|
void raw_ostream::SetBufferAndMode(char *BufferStart, size_t Size,
|
2009-08-18 23:42:36 +00:00
|
|
|
BufferKind Mode) {
|
2010-03-24 19:38:02 +00:00
|
|
|
assert(((Mode == Unbuffered && BufferStart == 0 && Size == 0) ||
|
2009-09-15 20:31:46 +00:00
|
|
|
(Mode != Unbuffered && BufferStart && Size)) &&
|
|
|
|
"stream must be unbuffered or have at least one byte");
|
2009-08-18 23:42:36 +00:00
|
|
|
// Make sure the current buffer is free of content (we can't flush here; the
|
|
|
|
// child buffer management logic will be in write_impl).
|
|
|
|
assert(GetNumBytesInBuffer() == 0 && "Current buffer is non-empty!");
|
2009-08-13 15:58:55 +00:00
|
|
|
|
2009-08-18 23:42:36 +00:00
|
|
|
if (BufferMode == InternalBuffer)
|
|
|
|
delete [] OutBufStart;
|
|
|
|
OutBufStart = BufferStart;
|
2009-08-13 15:58:55 +00:00
|
|
|
OutBufEnd = OutBufStart+Size;
|
|
|
|
OutBufCur = OutBufStart;
|
2009-08-18 23:42:36 +00:00
|
|
|
BufferMode = Mode;
|
2009-08-19 17:54:29 +00:00
|
|
|
|
|
|
|
assert(OutBufStart <= OutBufEnd && "Invalid size!");
|
2009-08-13 15:58:55 +00:00
|
|
|
}
|
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
raw_ostream &raw_ostream::operator<<(unsigned long N) {
|
|
|
|
// Zero is a special case.
|
|
|
|
if (N == 0)
|
|
|
|
return *this << '0';
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
char NumberBuffer[20];
|
|
|
|
char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
|
|
|
|
char *CurPtr = EndPtr;
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
while (N) {
|
|
|
|
*--CurPtr = '0' + char(N % 10);
|
|
|
|
N /= 10;
|
|
|
|
}
|
|
|
|
return write(CurPtr, EndPtr-CurPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &raw_ostream::operator<<(long N) {
|
|
|
|
if (N < 0) {
|
2009-03-16 22:00:17 +00:00
|
|
|
*this << '-';
|
2008-08-21 20:58:52 +00:00
|
|
|
N = -N;
|
|
|
|
}
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
return this->operator<<(static_cast<unsigned long>(N));
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &raw_ostream::operator<<(unsigned long long N) {
|
2009-08-19 16:25:25 +00:00
|
|
|
// Output using 32-bit div/mod when possible.
|
2009-07-29 06:45:14 +00:00
|
|
|
if (N == static_cast<unsigned long>(N))
|
|
|
|
return this->operator<<(static_cast<unsigned long>(N));
|
|
|
|
|
2009-08-19 16:25:25 +00:00
|
|
|
char NumberBuffer[20];
|
|
|
|
char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
|
|
|
|
char *CurPtr = EndPtr;
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2009-08-19 16:25:25 +00:00
|
|
|
while (N) {
|
|
|
|
*--CurPtr = '0' + char(N % 10);
|
|
|
|
N /= 10;
|
|
|
|
}
|
|
|
|
return write(CurPtr, EndPtr-CurPtr);
|
2008-08-21 20:58:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &raw_ostream::operator<<(long long N) {
|
2010-08-03 16:41:24 +00:00
|
|
|
if (N < 0) {
|
2009-03-16 22:00:17 +00:00
|
|
|
*this << '-';
|
2010-08-03 16:41:24 +00:00
|
|
|
// Avoid undefined behavior on INT64_MIN with a cast.
|
|
|
|
N = -(unsigned long long)N;
|
2008-08-21 20:58:52 +00:00
|
|
|
}
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
return this->operator<<(static_cast<unsigned long long>(N));
|
|
|
|
}
|
|
|
|
|
2009-07-30 18:21:23 +00:00
|
|
|
raw_ostream &raw_ostream::write_hex(unsigned long long N) {
|
2009-03-16 22:08:44 +00:00
|
|
|
// Zero is a special case.
|
|
|
|
if (N == 0)
|
|
|
|
return *this << '0';
|
|
|
|
|
|
|
|
char NumberBuffer[20];
|
|
|
|
char *EndPtr = NumberBuffer+sizeof(NumberBuffer);
|
|
|
|
char *CurPtr = EndPtr;
|
|
|
|
|
|
|
|
while (N) {
|
2009-07-16 15:24:40 +00:00
|
|
|
uintptr_t x = N % 16;
|
2009-03-16 22:08:44 +00:00
|
|
|
*--CurPtr = (x < 10 ? '0' + x : 'a' + x - 10);
|
|
|
|
N /= 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
return write(CurPtr, EndPtr-CurPtr);
|
2008-08-23 22:23:09 +00:00
|
|
|
}
|
|
|
|
|
2009-10-17 20:43:08 +00:00
|
|
|
raw_ostream &raw_ostream::write_escaped(StringRef Str) {
|
|
|
|
for (unsigned i = 0, e = Str.size(); i != e; ++i) {
|
|
|
|
unsigned char c = Str[i];
|
|
|
|
|
|
|
|
switch (c) {
|
|
|
|
case '\\':
|
|
|
|
*this << '\\' << '\\';
|
|
|
|
break;
|
|
|
|
case '\t':
|
|
|
|
*this << '\\' << 't';
|
|
|
|
break;
|
|
|
|
case '\n':
|
|
|
|
*this << '\\' << 'n';
|
|
|
|
break;
|
|
|
|
case '"':
|
|
|
|
*this << '\\' << '"';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (std::isprint(c)) {
|
|
|
|
*this << c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always expand to a 3-character octal escape.
|
|
|
|
*this << '\\';
|
|
|
|
*this << char('0' + ((c >> 6) & 7));
|
|
|
|
*this << char('0' + ((c >> 3) & 7));
|
|
|
|
*this << char('0' + ((c >> 0) & 7));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2009-07-30 18:21:23 +00:00
|
|
|
raw_ostream &raw_ostream::operator<<(const void *P) {
|
|
|
|
*this << '0' << 'x';
|
|
|
|
|
|
|
|
return write_hex((uintptr_t) P);
|
|
|
|
}
|
|
|
|
|
2009-08-24 03:52:50 +00:00
|
|
|
raw_ostream &raw_ostream::operator<<(double N) {
|
2010-01-29 14:40:33 +00:00
|
|
|
return this->operator<<(format("%e", N));
|
2009-08-24 03:52:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-03-16 22:55:06 +00:00
|
|
|
void raw_ostream::flush_nonempty() {
|
|
|
|
assert(OutBufCur > OutBufStart && "Invalid call to flush_nonempty.");
|
2009-08-18 23:42:36 +00:00
|
|
|
size_t Length = OutBufCur - OutBufStart;
|
|
|
|
OutBufCur = OutBufStart;
|
|
|
|
write_impl(OutBufStart, Length);
|
2009-03-16 22:55:06 +00:00
|
|
|
}
|
|
|
|
|
2009-03-16 22:00:17 +00:00
|
|
|
raw_ostream &raw_ostream::write(unsigned char C) {
|
2009-03-17 01:36:56 +00:00
|
|
|
// Group exceptional cases into a single branch.
|
2009-08-19 00:23:39 +00:00
|
|
|
if (BUILTIN_EXPECT(OutBufCur >= OutBufEnd, false)) {
|
|
|
|
if (BUILTIN_EXPECT(!OutBufStart, false)) {
|
2009-08-18 23:42:36 +00:00
|
|
|
if (BufferMode == Unbuffered) {
|
2009-08-18 20:09:59 +00:00
|
|
|
write_impl(reinterpret_cast<char*>(&C), 1);
|
|
|
|
return *this;
|
|
|
|
}
|
2009-08-19 00:23:39 +00:00
|
|
|
// Set up a buffer and start over.
|
|
|
|
SetBuffered();
|
|
|
|
return write(C);
|
2009-08-18 20:09:59 +00:00
|
|
|
}
|
2009-08-19 00:23:39 +00:00
|
|
|
|
|
|
|
flush_nonempty();
|
2009-03-17 01:13:35 +00:00
|
|
|
}
|
|
|
|
|
2009-03-16 22:00:17 +00:00
|
|
|
*OutBufCur++ = C;
|
2009-03-16 22:08:44 +00:00
|
|
|
return *this;
|
2009-03-16 22:00:17 +00:00
|
|
|
}
|
2008-08-23 22:23:09 +00:00
|
|
|
|
2009-07-16 15:24:40 +00:00
|
|
|
raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) {
|
2009-03-17 01:36:56 +00:00
|
|
|
// Group exceptional cases into a single branch.
|
2009-03-17 21:15:18 +00:00
|
|
|
if (BUILTIN_EXPECT(OutBufCur+Size > OutBufEnd, false)) {
|
2009-08-13 15:44:52 +00:00
|
|
|
if (BUILTIN_EXPECT(!OutBufStart, false)) {
|
2009-08-18 23:42:36 +00:00
|
|
|
if (BufferMode == Unbuffered) {
|
2009-08-13 15:44:52 +00:00
|
|
|
write_impl(Ptr, Size);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// Set up a buffer and start over.
|
2009-08-13 17:27:29 +00:00
|
|
|
SetBuffered();
|
2009-08-13 15:44:52 +00:00
|
|
|
return write(Ptr, Size);
|
|
|
|
}
|
2009-08-19 00:23:39 +00:00
|
|
|
|
2009-08-13 15:44:52 +00:00
|
|
|
// Write out the data in buffer-sized blocks until the remainder
|
|
|
|
// fits within the buffer.
|
|
|
|
do {
|
|
|
|
size_t NumBytes = OutBufEnd - OutBufCur;
|
|
|
|
copy_to_buffer(Ptr, NumBytes);
|
2009-03-17 01:36:56 +00:00
|
|
|
flush_nonempty();
|
2009-08-13 15:44:52 +00:00
|
|
|
Ptr += NumBytes;
|
|
|
|
Size -= NumBytes;
|
|
|
|
} while (OutBufCur+Size > OutBufEnd);
|
2009-03-17 01:36:56 +00:00
|
|
|
}
|
2009-08-13 15:44:52 +00:00
|
|
|
|
|
|
|
copy_to_buffer(Ptr, Size);
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void raw_ostream::copy_to_buffer(const char *Ptr, size_t Size) {
|
2009-08-13 20:32:03 +00:00
|
|
|
assert(Size <= size_t(OutBufEnd - OutBufCur) && "Buffer overrun!");
|
2009-08-13 18:38:15 +00:00
|
|
|
|
2008-08-21 20:58:52 +00:00
|
|
|
// Handle short strings specially, memcpy isn't very good at very short
|
|
|
|
// strings.
|
|
|
|
switch (Size) {
|
|
|
|
case 4: OutBufCur[3] = Ptr[3]; // FALL THROUGH
|
|
|
|
case 3: OutBufCur[2] = Ptr[2]; // FALL THROUGH
|
|
|
|
case 2: OutBufCur[1] = Ptr[1]; // FALL THROUGH
|
|
|
|
case 1: OutBufCur[0] = Ptr[0]; // FALL THROUGH
|
|
|
|
case 0: break;
|
|
|
|
default:
|
2009-08-13 15:44:52 +00:00
|
|
|
memcpy(OutBufCur, Ptr, Size);
|
2008-08-21 20:58:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-03-10 16:21:55 +00:00
|
|
|
|
2009-08-13 15:44:52 +00:00
|
|
|
OutBufCur += Size;
|
2008-08-21 20:58:52 +00:00
|
|
|
}
|
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// Formatted output.
|
|
|
|
raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) {
|
2009-03-17 01:36:56 +00:00
|
|
|
// If we have more than a few bytes left in our output buffer, try
|
|
|
|
// formatting directly onto its end.
|
2009-07-16 15:24:40 +00:00
|
|
|
size_t NextBufferSize = 127;
|
2009-08-23 20:31:39 +00:00
|
|
|
size_t BufferBytesLeft = OutBufEnd - OutBufCur;
|
|
|
|
if (BufferBytesLeft > 3) {
|
2009-07-16 15:24:40 +00:00
|
|
|
size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// Common case is that we have plenty of space.
|
2009-08-23 20:31:39 +00:00
|
|
|
if (BytesUsed <= BufferBytesLeft) {
|
2008-08-23 19:23:10 +00:00
|
|
|
OutBufCur += BytesUsed;
|
|
|
|
return *this;
|
|
|
|
}
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// Otherwise, we overflowed and the return value tells us the size to try
|
|
|
|
// again with.
|
|
|
|
NextBufferSize = BytesUsed;
|
|
|
|
}
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// If we got here, we didn't have enough space in the output buffer for the
|
|
|
|
// string. Try printing into a SmallVector that is resized to have enough
|
|
|
|
// space. Iterate until we win.
|
|
|
|
SmallVector<char, 128> V;
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
while (1) {
|
|
|
|
V.resize(NextBufferSize);
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// Try formatting into the SmallVector.
|
2009-08-23 20:31:39 +00:00
|
|
|
size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// If BytesUsed fit into the vector, we win.
|
2008-10-26 19:20:47 +00:00
|
|
|
if (BytesUsed <= NextBufferSize)
|
2009-08-23 20:31:39 +00:00
|
|
|
return write(V.data(), BytesUsed);
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
// Otherwise, try again with a new size.
|
|
|
|
assert(BytesUsed > NextBufferSize && "Didn't grow buffer!?");
|
|
|
|
NextBufferSize = BytesUsed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-22 23:10:29 +00:00
|
|
|
/// indent - Insert 'NumSpaces' spaces.
|
|
|
|
raw_ostream &raw_ostream::indent(unsigned NumSpaces) {
|
2009-08-24 04:13:01 +00:00
|
|
|
static const char Spaces[] = " "
|
|
|
|
" "
|
|
|
|
" ";
|
2009-08-22 23:10:29 +00:00
|
|
|
|
|
|
|
// Usually the indentation is small, handle it with a fastpath.
|
2009-08-24 04:43:38 +00:00
|
|
|
if (NumSpaces < array_lengthof(Spaces))
|
2009-08-22 23:10:29 +00:00
|
|
|
return write(Spaces, NumSpaces);
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2009-08-22 23:10:29 +00:00
|
|
|
while (NumSpaces) {
|
2009-08-24 04:43:38 +00:00
|
|
|
unsigned NumToWrite = std::min(NumSpaces,
|
|
|
|
(unsigned)array_lengthof(Spaces)-1);
|
2009-08-22 23:10:29 +00:00
|
|
|
write(Spaces, NumToWrite);
|
|
|
|
NumSpaces -= NumToWrite;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-23 19:23:10 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Formatted Output
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Out of line virtual method.
|
|
|
|
void format_object_base::home() {
|
|
|
|
}
|
|
|
|
|
2008-08-17 01:35:29 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// raw_fd_ostream
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
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.
|
2009-08-23 02:51:22 +00:00
|
|
|
raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
|
2010-08-20 16:34:20 +00:00
|
|
|
unsigned Flags) : Error(false), pos(0) {
|
2010-03-05 00:49:08 +00:00
|
|
|
assert(Filename != 0 && "Filename is null");
|
2009-08-25 15:34:52 +00:00
|
|
|
// Verify that we don't have both "append" and "excl".
|
|
|
|
assert((!(Flags & F_Excl) || !(Flags & F_Append)) &&
|
|
|
|
"Cannot specify both 'excl' and 'append' file creation flags!");
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2008-10-21 19:53:10 +00:00
|
|
|
ErrorInfo.clear();
|
|
|
|
|
2010-08-18 22:26:19 +00:00
|
|
|
// Handle "-" as stdout. Note that when we do this, we consider ourself
|
|
|
|
// the owner of stdout. This means that we can do things like close the
|
|
|
|
// file descriptor when we're done and set the "binary" flag globally.
|
2008-08-17 03:53:23 +00:00
|
|
|
if (Filename[0] == '-' && Filename[1] == 0) {
|
|
|
|
FD = STDOUT_FILENO;
|
2008-11-13 05:01:07 +00:00
|
|
|
// If user requested binary then put stdout into binary mode if
|
|
|
|
// possible.
|
2009-08-23 02:51:22 +00:00
|
|
|
if (Flags & F_Binary)
|
2008-11-13 05:01:07 +00:00
|
|
|
sys::Program::ChangeStdoutToBinary();
|
2010-08-18 22:26:19 +00:00
|
|
|
// Close stdout when we're done, to detect any output errors.
|
|
|
|
ShouldClose = true;
|
2008-08-17 03:53:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2009-08-23 02:51:22 +00:00
|
|
|
int OpenFlags = O_WRONLY|O_CREAT;
|
2008-11-13 05:01:07 +00:00
|
|
|
#ifdef O_BINARY
|
2009-08-23 08:57:52 +00:00
|
|
|
if (Flags & F_Binary)
|
2009-08-23 02:51:22 +00:00
|
|
|
OpenFlags |= O_BINARY;
|
2008-11-13 05:01:07 +00:00
|
|
|
#endif
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2009-08-25 15:34:52 +00:00
|
|
|
if (Flags & F_Append)
|
2009-08-23 02:51:22 +00:00
|
|
|
OpenFlags |= O_APPEND;
|
|
|
|
else
|
2009-08-25 15:34:52 +00:00
|
|
|
OpenFlags |= O_TRUNC;
|
|
|
|
if (Flags & F_Excl)
|
2009-08-23 02:51:22 +00:00
|
|
|
OpenFlags |= O_EXCL;
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2010-05-06 02:06:20 +00:00
|
|
|
while ((FD = open(Filename, OpenFlags, 0664)) < 0) {
|
|
|
|
if (errno != EINTR) {
|
|
|
|
ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
|
|
|
|
ShouldClose = false;
|
|
|
|
return;
|
|
|
|
}
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
2010-05-06 02:06:20 +00:00
|
|
|
|
|
|
|
// Ok, we successfully opened the file, so it'll need to be closed.
|
|
|
|
ShouldClose = true;
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
raw_fd_ostream::~raw_fd_ostream() {
|
2010-08-20 16:34:20 +00:00
|
|
|
if (FD >= 0) {
|
|
|
|
flush();
|
|
|
|
if (ShouldClose)
|
|
|
|
while (::close(FD) != 0)
|
|
|
|
if (errno != EINTR) {
|
|
|
|
error_detected();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are any pending errors, report them now. Clients wishing
|
|
|
|
// to avoid report_fatal_error calls should check for errors with
|
|
|
|
// has_error() and clear the error flag with clear_error() before
|
|
|
|
// destructing raw_ostream objects which may have errors.
|
|
|
|
if (has_error())
|
|
|
|
report_fatal_error("IO failure on output stream.");
|
2010-08-17 23:11:56 +00:00
|
|
|
}
|
2009-08-23 02:51:22 +00:00
|
|
|
|
2010-08-18 01:34:52 +00:00
|
|
|
|
2009-07-16 15:24:40 +00:00
|
|
|
void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
|
2010-03-24 19:38:02 +00:00
|
|
|
assert(FD >= 0 && "File already closed.");
|
2009-03-16 23:29:31 +00:00
|
|
|
pos += Size;
|
2010-05-06 01:27:36 +00:00
|
|
|
|
2010-05-05 15:17:47 +00:00
|
|
|
do {
|
2010-05-28 16:50:23 +00:00
|
|
|
ssize_t ret = ::write(FD, Ptr, Size);
|
2010-05-06 01:27:36 +00:00
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
// If it's a recoverable error, swallow it and retry the write.
|
2010-05-18 15:25:14 +00:00
|
|
|
//
|
|
|
|
// Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
|
|
|
|
// raw_ostream isn't designed to do non-blocking I/O. However, some
|
|
|
|
// programs, such as old versions of bjam, have mistakenly used
|
|
|
|
// O_NONBLOCK. For compatibility, emulate blocking semantics by
|
|
|
|
// spinning until the write succeeds. If you don't want spinning,
|
|
|
|
// don't use O_NONBLOCK file descriptors with raw_ostream.
|
2010-05-06 02:06:20 +00:00
|
|
|
if (errno == EINTR || errno == EAGAIN
|
|
|
|
#ifdef EWOULDBLOCK
|
|
|
|
|| errno == EWOULDBLOCK
|
|
|
|
#endif
|
|
|
|
)
|
2010-05-06 01:27:36 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Otherwise it's a non-recoverable error. Note it and quit.
|
|
|
|
error_detected();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The write may have written some or all of the data. Update the
|
|
|
|
// size and buffer pointer to reflect the remainder that needs
|
|
|
|
// to be written. If there are no bytes left, we're done.
|
|
|
|
Ptr += ret;
|
|
|
|
Size -= ret;
|
|
|
|
} while (Size > 0);
|
2008-08-17 01:35:29 +00:00
|
|
|
}
|
|
|
|
|
2010-08-18 01:34:52 +00:00
|
|
|
void raw_fd_ostream::close() {
|
|
|
|
assert(ShouldClose);
|
|
|
|
ShouldClose = false;
|
|
|
|
flush();
|
|
|
|
while (::close(FD) != 0)
|
|
|
|
if (errno != EINTR) {
|
|
|
|
error_detected();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
FD = -1;
|
|
|
|
}
|
|
|
|
|
2009-01-26 21:42:04 +00:00
|
|
|
uint64_t raw_fd_ostream::seek(uint64_t off) {
|
|
|
|
flush();
|
2009-07-15 08:11:46 +00:00
|
|
|
pos = ::lseek(FD, off, SEEK_SET);
|
2009-07-15 16:43:01 +00:00
|
|
|
if (pos != off)
|
2009-07-15 23:25:33 +00:00
|
|
|
error_detected();
|
2010-03-24 19:38:02 +00:00
|
|
|
return pos;
|
2009-01-26 21:42:04 +00:00
|
|
|
}
|
|
|
|
|
2009-12-19 01:38:42 +00:00
|
|
|
size_t raw_fd_ostream::preferred_buffer_size() const {
|
2010-07-07 15:52:27 +00:00
|
|
|
#if !defined(_MSC_VER) && !defined(__MINGW32__) && !defined(__minix)
|
2010-04-09 20:45:04 +00:00
|
|
|
// Windows and Minix have no st_blksize.
|
2009-08-13 17:27:29 +00:00
|
|
|
assert(FD >= 0 && "File not yet open!");
|
|
|
|
struct stat statbuf;
|
2009-12-19 01:38:42 +00:00
|
|
|
if (fstat(FD, &statbuf) != 0)
|
|
|
|
return 0;
|
2010-03-24 19:38:02 +00:00
|
|
|
|
2009-12-19 01:38:42 +00:00
|
|
|
// If this is a terminal, don't use buffering. Line buffering
|
|
|
|
// would be a more traditional thing to do, but it's not worth
|
|
|
|
// the complexity.
|
|
|
|
if (S_ISCHR(statbuf.st_mode) && isatty(FD))
|
|
|
|
return 0;
|
|
|
|
// Return the preferred block size.
|
|
|
|
return statbuf.st_blksize;
|
2010-05-28 16:50:01 +00:00
|
|
|
#else
|
2009-08-13 17:27:29 +00:00
|
|
|
return raw_ostream::preferred_buffer_size();
|
2010-05-28 16:50:01 +00:00
|
|
|
#endif
|
2009-08-13 17:27:29 +00:00
|
|
|
}
|
|
|
|
|
2009-06-04 07:09:50 +00:00
|
|
|
raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
|
|
|
|
bool bg) {
|
|
|
|
if (sys::Process::ColorNeedsFlush())
|
|
|
|
flush();
|
|
|
|
const char *colorcode =
|
|
|
|
(colors == SAVEDCOLOR) ? sys::Process::OutputBold(bg)
|
|
|
|
: sys::Process::OutputColor(colors, bold, bg);
|
|
|
|
if (colorcode) {
|
2009-07-16 15:24:40 +00:00
|
|
|
size_t len = strlen(colorcode);
|
2009-06-04 07:09:50 +00:00
|
|
|
write(colorcode, len);
|
|
|
|
// don't account colors towards output characters
|
|
|
|
pos -= len;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &raw_fd_ostream::resetColor() {
|
|
|
|
if (sys::Process::ColorNeedsFlush())
|
|
|
|
flush();
|
|
|
|
const char *colorcode = sys::Process::ResetColor();
|
|
|
|
if (colorcode) {
|
2009-07-16 15:24:40 +00:00
|
|
|
size_t len = strlen(colorcode);
|
2009-06-04 07:09:50 +00:00
|
|
|
write(colorcode, len);
|
|
|
|
// don't account colors towards output characters
|
|
|
|
pos -= len;
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2009-09-11 20:46:33 +00:00
|
|
|
bool raw_fd_ostream::is_displayed() const {
|
|
|
|
return sys::Process::FileDescriptorIsDisplayed(FD);
|
|
|
|
}
|
|
|
|
|
2008-08-17 04:13:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-08-20 16:44:56 +00:00
|
|
|
// outs(), errs(), nulls()
|
2008-08-17 04:13:37 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2008-08-17 01:35:29 +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";
|
2008-08-21 00:14:44 +00:00
|
|
|
raw_ostream &llvm::outs() {
|
2010-08-20 16:39:41 +00:00
|
|
|
// Set buffer settings to model stdout behavior.
|
2010-08-20 16:44:56 +00:00
|
|
|
// Delete the file descriptor when the program exists, forcing error
|
|
|
|
// detection. If you don't want this behavior, don't use outs().
|
|
|
|
static raw_fd_ostream S(STDOUT_FILENO, true);
|
2008-08-17 04:13:37 +00:00
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// errs() - This returns a reference to a raw_ostream for standard error.
|
|
|
|
/// Use it like: errs() << "foo" << "bar";
|
2008-08-21 00:14:44 +00:00
|
|
|
raw_ostream &llvm::errs() {
|
2010-08-20 16:39:41 +00:00
|
|
|
// Set standard error to be unbuffered by default.
|
|
|
|
static raw_fd_ostream S(STDERR_FILENO, false, true);
|
2008-08-17 04:13:37 +00:00
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
2009-07-16 21:17:53 +00:00
|
|
|
/// nulls() - This returns a reference to a raw_ostream which discards output.
|
|
|
|
raw_ostream &llvm::nulls() {
|
|
|
|
static raw_null_ostream S;
|
|
|
|
return S;
|
|
|
|
}
|
|
|
|
|
2009-04-20 07:34:17 +00:00
|
|
|
|
2008-08-23 22:43:04 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// raw_string_ostream
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-18 20:07:36 +00:00
|
|
|
raw_string_ostream::~raw_string_ostream() {
|
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:24:40 +00:00
|
|
|
void raw_string_ostream::write_impl(const char *Ptr, size_t Size) {
|
2009-03-16 23:29:31 +00:00
|
|
|
OS.append(Ptr, Size);
|
2008-08-23 22:43:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// raw_svector_ostream
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-19 17:54:29 +00:00
|
|
|
// The raw_svector_ostream implementation uses the SmallVector itself as the
|
|
|
|
// buffer for the raw_ostream. We guarantee that the raw_ostream buffer is
|
|
|
|
// always pointing past the end of the vector, but within the vector
|
|
|
|
// capacity. This allows raw_ostream to write directly into the correct place,
|
|
|
|
// and we only need to set the vector size when the data is flushed.
|
|
|
|
|
2009-08-18 23:42:36 +00:00
|
|
|
raw_svector_ostream::raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {
|
2009-08-19 18:40:58 +00:00
|
|
|
// Set up the initial external buffer. We make sure that the buffer has at
|
2009-08-19 17:54:29 +00:00
|
|
|
// least 128 bytes free; raw_ostream itself only requires 64, but we want to
|
|
|
|
// make sure that we don't grow the buffer unnecessarily on destruction (when
|
|
|
|
// the data is flushed). See the FIXME below.
|
2009-08-19 18:40:58 +00:00
|
|
|
OS.reserve(OS.size() + 128);
|
2009-08-19 17:54:29 +00:00
|
|
|
SetBuffer(OS.end(), OS.capacity() - OS.size());
|
2009-08-18 23:42:36 +00:00
|
|
|
}
|
|
|
|
|
2009-08-18 20:07:36 +00:00
|
|
|
raw_svector_ostream::~raw_svector_ostream() {
|
2009-08-19 17:54:29 +00:00
|
|
|
// FIXME: Prevent resizing during this flush().
|
2009-08-18 20:07:36 +00:00
|
|
|
flush();
|
|
|
|
}
|
|
|
|
|
2010-01-22 21:16:10 +00:00
|
|
|
/// resync - This is called when the SmallVector we're appending to is changed
|
|
|
|
/// outside of the raw_svector_ostream's control. It is only safe to do this
|
|
|
|
/// if the raw_svector_ostream has previously been flushed.
|
|
|
|
void raw_svector_ostream::resync() {
|
|
|
|
assert(GetNumBytesInBuffer() == 0 && "Didn't flush before mutating vector");
|
|
|
|
|
|
|
|
if (OS.capacity() - OS.size() < 64)
|
|
|
|
OS.reserve(OS.capacity() * 2);
|
2010-01-22 19:17:48 +00:00
|
|
|
SetBuffer(OS.end(), OS.capacity() - OS.size());
|
|
|
|
}
|
|
|
|
|
2009-07-16 15:24:40 +00:00
|
|
|
void raw_svector_ostream::write_impl(const char *Ptr, size_t Size) {
|
2010-02-15 02:18:26 +00:00
|
|
|
// If we're writing bytes from the end of the buffer into the smallvector, we
|
|
|
|
// don't need to copy the bytes, just commit the bytes because they are
|
|
|
|
// already in the right place.
|
|
|
|
if (Ptr == OS.end()) {
|
|
|
|
assert(OS.size() + Size <= OS.capacity() && "Invalid write_impl() call!");
|
|
|
|
OS.set_size(OS.size() + Size);
|
|
|
|
} else {
|
|
|
|
assert(GetNumBytesInBuffer() == 0 &&
|
|
|
|
"Should be writing from buffer if some bytes in it");
|
|
|
|
// Otherwise, do copy the bytes.
|
|
|
|
OS.append(Ptr, Ptr+Size);
|
|
|
|
}
|
2009-08-19 17:54:29 +00:00
|
|
|
|
|
|
|
// Grow the vector if necessary.
|
|
|
|
if (OS.capacity() - OS.size() < 64)
|
|
|
|
OS.reserve(OS.capacity() * 2);
|
|
|
|
|
|
|
|
// Update the buffer position.
|
|
|
|
SetBuffer(OS.end(), OS.capacity() - OS.size());
|
2008-08-23 22:43:04 +00:00
|
|
|
}
|
|
|
|
|
2009-12-19 01:38:42 +00:00
|
|
|
uint64_t raw_svector_ostream::current_pos() const {
|
|
|
|
return OS.size();
|
|
|
|
}
|
2009-04-20 07:34:17 +00:00
|
|
|
|
2009-08-19 18:40:58 +00:00
|
|
|
StringRef raw_svector_ostream::str() {
|
|
|
|
flush();
|
|
|
|
return StringRef(OS.begin(), OS.size());
|
|
|
|
}
|
|
|
|
|
2009-07-16 21:17:53 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// raw_null_ostream
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-27 21:46:02 +00:00
|
|
|
raw_null_ostream::~raw_null_ostream() {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// ~raw_ostream asserts that the buffer is empty. This isn't necessary
|
|
|
|
// with raw_null_ostream, but it's better to have raw_null_ostream follow
|
|
|
|
// the rules than to change the rules just for raw_null_ostream.
|
|
|
|
flush();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-07-16 21:17:53 +00:00
|
|
|
void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
|
|
|
|
}
|
|
|
|
|
2009-12-19 01:38:42 +00:00
|
|
|
uint64_t raw_null_ostream::current_pos() const {
|
2009-07-16 21:17:53 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2010-08-20 00:48:10 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// tool_output_file
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
tool_output_file::CleanupInstaller::CleanupInstaller(const char *filename)
|
|
|
|
: Filename(filename), Keep(false) {
|
2010-08-20 00:48:10 +00:00
|
|
|
// Arrange for the file to be deleted if the process is killed.
|
2010-09-01 14:20:41 +00:00
|
|
|
if (Filename != "-")
|
2010-08-20 00:48:10 +00:00
|
|
|
sys::RemoveFileOnSignal(sys::Path(Filename));
|
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
tool_output_file::CleanupInstaller::~CleanupInstaller() {
|
2010-08-20 00:48:10 +00:00
|
|
|
// Delete the file if the client hasn't told us not to.
|
|
|
|
if (!Keep && Filename != "-")
|
|
|
|
sys::Path(Filename).eraseFromDisk();
|
2010-09-01 14:20:41 +00:00
|
|
|
|
|
|
|
// Ok, the file is successfully written and closed, or deleted. There's no
|
|
|
|
// further need to clean it up on signals.
|
|
|
|
if (Filename != "-")
|
|
|
|
sys::DontRemoveFileOnSignal(sys::Path(Filename));
|
|
|
|
}
|
|
|
|
|
|
|
|
tool_output_file::tool_output_file(const char *filename, std::string &ErrorInfo,
|
|
|
|
unsigned Flags)
|
|
|
|
: Installer(filename),
|
|
|
|
OS(filename, ErrorInfo, Flags) {
|
|
|
|
// If open fails, no cleanup is needed.
|
|
|
|
if (!ErrorInfo.empty())
|
|
|
|
Installer.Keep = true;
|
2010-08-20 00:48:10 +00:00
|
|
|
}
|