LLVM API Documentation
#include <raw_ostream.h>
Public Member Functions | |
raw_fd_ostream (StringRef Filename, std::error_code &EC, sys::fs::OpenFlags Flags) | |
raw_fd_ostream (int fd, bool shouldClose, bool unbuffered=false) | |
~raw_fd_ostream () | |
void | close () |
uint64_t | seek (uint64_t off) |
void | SetUseAtomicWrites (bool Value) |
raw_ostream & | changeColor (enum Colors colors, bool bold=false, bool bg=false) override |
raw_ostream & | resetColor () override |
raw_ostream & | reverseColor () override |
Reverses the forground and background colors. | |
bool | is_displayed () const override |
bool | has_colors () const override |
This function determines if this stream is displayed and supports colors. | |
bool | has_error () const |
void | clear_error () |
raw_fd_ostream - A raw_ostream that writes to a file descriptor.
Definition at line 316 of file raw_ostream.h.
raw_fd_ostream::raw_fd_ostream | ( | StringRef | Filename, |
std::error_code & | EC, | ||
sys::fs::OpenFlags | Flags | ||
) |
Open the specified file for writing. If an error occurs, information about the error is put into EC, and the stream should be immediately destroyed; Flags
allows optional flags to control how the file will be opened.
As a special case, if Filename is "-", then the stream will use STDOUT_FILENO instead of opening a file. Note that it will still consider itself to own the file descriptor. In particular, it will close the file descriptor when it is done (this is necessary to detect output errors).
Definition at line 429 of file raw_ostream.cpp.
References llvm::sys::ChangeStdoutToBinary(), llvm::sys::fs::F_Text, and llvm::sys::fs::openFileForWrite().
raw_fd_ostream::raw_fd_ostream | ( | int | fd, |
bool | shouldClose, | ||
bool | unbuffered = false |
||
) |
raw_fd_ostream ctor - FD is the file descriptor that this writes to. If ShouldClose is true, this closes the file when the stream is destroyed.
Definition at line 460 of file raw_ostream.cpp.
Definition at line 479 of file raw_ostream.cpp.
References close(), llvm::raw_ostream::flush(), has_error(), and llvm::report_fatal_error().
raw_ostream & raw_fd_ostream::changeColor | ( | enum Colors | Color, |
bool | Bold = false , |
||
bool | BG = false |
||
) | [override, virtual] |
Changes the foreground color of text that will be output from this point forward.
Color | ANSI color to use, the special SAVEDCOLOR can be used to change only the bold attribute, and keep colors untouched |
Bold | bold/brighter text, default false |
BG | if true change the background, default: change foreground |
Reimplemented from llvm::raw_ostream.
Definition at line 597 of file raw_ostream.cpp.
References llvm::sys::Process::ColorNeedsFlush(), llvm::raw_ostream::flush(), llvm::sys::Process::OutputBold(), llvm::sys::Process::OutputColor(), llvm::raw_ostream::SAVEDCOLOR, llvm::LibFunc::strlen, and llvm::raw_ostream::write().
void llvm::raw_fd_ostream::clear_error | ( | ) | [inline] |
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, report_fatal_error is called to report the error. Use clear_error() after handling the error to avoid this behavior.
"Errors should never pass silently. Unless explicitly silenced."
Definition at line 409 of file raw_ostream.h.
Referenced by llvm::LTOCodeGenerator::writeMergedModules().
void raw_fd_ostream::close | ( | ) |
close - Manually flush the stream and close the file. Note that this does not call fsync.
Definition at line 557 of file raw_ostream.cpp.
References llvm::raw_ostream::flush().
Referenced by LLVMPrintModuleToFile(), llvm::LockFileManager::LockFileManager(), llvm::LTOCodeGenerator::writeMergedModules(), and ~raw_fd_ostream().
bool raw_fd_ostream::has_colors | ( | ) | const [override, virtual] |
This function determines if this stream is displayed and supports colors.
Reimplemented from llvm::raw_ostream.
Definition at line 643 of file raw_ostream.cpp.
References llvm::sys::Process::FileDescriptorHasColors().
bool llvm::raw_fd_ostream::has_error | ( | ) | const [inline] |
has_error - Return the value of the flag in this raw_fd_ostream indicating whether an output error has been encountered. This doesn't implicitly flush any pending output. Also, it doesn't guarantee to detect all errors unless the stream has been closed.
Definition at line 396 of file raw_ostream.h.
Referenced by LLVMPrintModuleToFile(), llvm::LockFileManager::LockFileManager(), llvm::LTOCodeGenerator::writeMergedModules(), and ~raw_fd_ostream().
bool raw_fd_ostream::is_displayed | ( | ) | const [override, virtual] |
This function determines if this stream is connected to a "tty" or "console" window. That is, the output would be displayed to the user rather than being put on a pipe or stored in a file.
Reimplemented from llvm::raw_ostream.
Definition at line 639 of file raw_ostream.cpp.
References llvm::sys::Process::FileDescriptorIsDisplayed().
raw_ostream & raw_fd_ostream::resetColor | ( | ) | [override, virtual] |
Resets the colors to terminal defaults. Call this when you are done outputting colored text, or before program exit.
Reimplemented from llvm::raw_ostream.
Definition at line 613 of file raw_ostream.cpp.
References llvm::sys::Process::ColorNeedsFlush(), llvm::raw_ostream::flush(), llvm::sys::Process::ResetColor(), llvm::LibFunc::strlen, and llvm::raw_ostream::write().
raw_ostream & raw_fd_ostream::reverseColor | ( | ) | [override, virtual] |
Reverses the forground and background colors.
Reimplemented from llvm::raw_ostream.
Definition at line 626 of file raw_ostream.cpp.
References llvm::sys::Process::ColorNeedsFlush(), llvm::raw_ostream::flush(), llvm::sys::Process::OutputReverse(), llvm::LibFunc::strlen, and llvm::raw_ostream::write().
uint64_t raw_fd_ostream::seek | ( | uint64_t | off | ) |
seek - Flushes the stream and repositions the underlying file descriptor position to the offset specified from the beginning of the file.
Definition at line 569 of file raw_ostream.cpp.
References llvm::raw_ostream::flush().
Referenced by llvm::InstrProfWriter::write().
void llvm::raw_fd_ostream::SetUseAtomicWrites | ( | bool | Value | ) | [inline] |
SetUseAtomicWrite - Set the stream to attempt to use atomic writes for individual output routines where possible.
Note that because raw_ostream's are typically buffered, this flag is only sensible when used on unbuffered streams which will flush their output immediately.
Definition at line 378 of file raw_ostream.h.