blob: ec7ac6d007476b8ff339467623a057a5f4ba0b91 [file] [log] [blame]
Chris Lattner60d39622008-08-17 01:35:29 +00001//===--- raw_ostream.cpp - Implement the raw_ostream classes --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements support for bulk buffered stream output.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Support/raw_ostream.h"
15using namespace llvm;
16
17#if !defined(_MSC_VER)
18#include <fcntl.h>
19#else
20#include <io.h>
21#define open(x,y,z) _open(x,y)
22#define write(fd, start, size) _write(fd, start, size)
23#define close(fd) _close(fd)
24#endif
25
26// An out of line virtual method to provide a home for the class vtable.
27void raw_ostream::handle() {}
28
29//===----------------------------------------------------------------------===//
30// raw_fd_ostream
31//===----------------------------------------------------------------------===//
32
33/// raw_fd_ostream - Open the specified file for writing. If an error occurs,
34/// information about the error is put into ErrorInfo, and the stream should
35/// be immediately destroyed.
36raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo) {
37 FD = open(Filename, O_WRONLY|O_CREAT|O_TRUNC, 0644);
38 if (FD < 0) {
39 ErrorInfo = "Error opening output file '" + std::string(Filename) + "'";
40 ShouldClose = false;
41 } else {
42 ShouldClose = true;
43 }
44}
45
46raw_fd_ostream::~raw_fd_ostream() {
47 flush();
48 if (ShouldClose)
49 close(FD);
50}
51
52void raw_fd_ostream::flush_impl() {
53 if (OutBufCur-OutBufStart)
54 write(FD, OutBufStart, OutBufCur-OutBufStart);
55 HandleFlush();
56}
57
58
59raw_stdout_ostream::raw_stdout_ostream():raw_fd_ostream(STDOUT_FILENO, false) {}
60raw_stderr_ostream::raw_stderr_ostream():raw_fd_ostream(STDERR_FILENO, false) {}
61
62// An out of line virtual method to provide a home for the class vtable.
63void raw_stdout_ostream::handle() {}
64void raw_stderr_ostream::handle() {}