709a063e2aeaa96603e17e122fa2fd69c061ec30
[oota-llvm.git] / include / llvm / Support / raw_ostream.h
1 //===--- raw_ostream.h - Raw output stream ----------------------*- C++ -*-===//
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 file defines the raw_ostream class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_SUPPORT_RAW_OSTREAM_H
15 #define LLVM_SUPPORT_RAW_OSTREAM_H
16
17 #include "llvm/ADT/StringExtras.h"
18 #include <cassert>
19 #include <cstring>
20 #include <string>
21 #include <iosfwd>
22
23 namespace llvm {
24   class format_object_base;
25   template <typename T>
26   class SmallVectorImpl;
27   
28 /// raw_ostream - This class implements an extremely fast bulk output stream
29 /// that can *only* output to a stream.  It does not support seeking, reopening,
30 /// rewinding, line buffered disciplines etc. It is a simple buffer that outputs
31 /// a chunk at a time.
32 class raw_ostream {
33 protected:
34   char *OutBufStart, *OutBufEnd, *OutBufCur;
35 public:
36   raw_ostream() {
37     // Start out ready to flush.
38     OutBufStart = OutBufEnd = OutBufCur = 0;
39   }
40
41   virtual ~raw_ostream() {
42     delete [] OutBufStart;
43   }
44   
45   //===--------------------------------------------------------------------===//
46   // Configuration Interface
47   //===--------------------------------------------------------------------===//
48   
49   /// SetBufferSize - Set the internal buffer size to the specified amount
50   /// instead of the default.
51   void SetBufferSize(unsigned Size) {
52     assert(Size >= 64 &&
53            "Buffer size must be somewhat large for invariants to hold");
54     flush();
55     
56     delete [] OutBufStart;
57     OutBufStart = new char[Size];
58     OutBufEnd = OutBufStart+Size;
59     OutBufCur = OutBufStart;
60   }
61   
62   //===--------------------------------------------------------------------===//
63   // Data Output Interface
64   //===--------------------------------------------------------------------===//
65   
66   void flush() {
67     if (OutBufCur != OutBufStart)
68       flush_impl();
69   }
70   
71   raw_ostream &operator<<(char C) {
72     if (OutBufCur >= OutBufEnd)
73       flush_impl();
74     *OutBufCur++ = C;
75     return *this;
76   }
77   
78   raw_ostream &operator<<(unsigned char C) {
79     if (OutBufCur >= OutBufEnd)
80       flush_impl();
81     *OutBufCur++ = C;
82     return *this;
83   }
84   
85   raw_ostream &operator<<(signed char C) {
86     if (OutBufCur >= OutBufEnd)
87       flush_impl();
88     *OutBufCur++ = C;
89     return *this;
90   }
91   
92   raw_ostream &operator<<(const char *Str) {
93     return write(Str, strlen(Str));
94   }
95   
96   raw_ostream &operator<<(const std::string& Str) {
97     return write(Str.data(), Str.length());
98   }
99   
100   raw_ostream &operator<<(unsigned long N);
101   raw_ostream &operator<<(long N);
102   raw_ostream &operator<<(unsigned long long N);
103   raw_ostream &operator<<(long long N);
104   raw_ostream &operator<<(const void *P);
105   raw_ostream &operator<<(unsigned int N) {
106     return this->operator<<(static_cast<unsigned long>(N));
107   }
108   
109   raw_ostream &operator<<(int N) {
110     return this->operator<<(static_cast<long>(N));
111   }
112
113   raw_ostream &operator<<(double N) {
114     return this->operator<<(ftostr(N));
115   }
116   
117   raw_ostream &write(const char *Ptr, unsigned Size);
118   
119   // Formatted output, see the format() function in Support/Format.h.
120   raw_ostream &operator<<(const format_object_base &Fmt);
121   
122   //===--------------------------------------------------------------------===//
123   // Subclass Interface
124   //===--------------------------------------------------------------------===//
125
126 protected:
127   
128   /// flush_impl - The is the piece of the class that is implemented by
129   /// subclasses.  This outputs the currently buffered data and resets the
130   /// buffer to empty.
131   virtual void flush_impl() = 0;
132   
133   /// HandleFlush - A stream's implementation of flush should call this after
134   /// emitting the bytes to the data sink.
135   void HandleFlush() {
136     if (OutBufStart == 0)
137       SetBufferSize(4096);
138     OutBufCur = OutBufStart;
139   }
140 private:
141   // An out of line virtual method to provide a home for the class vtable.
142   virtual void handle();
143 };
144   
145 //===----------------------------------------------------------------------===//
146 // File Output Streams
147 //===----------------------------------------------------------------------===//
148   
149 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
150 ///
151 class raw_fd_ostream : public raw_ostream {
152   int FD;
153   bool ShouldClose;
154 public:
155   /// raw_fd_ostream - Open the specified file for writing. If an
156   /// error occurs, information about the error is put into ErrorInfo,
157   /// and the stream should be immediately destroyed; the string will
158   /// be empty if no error occurred.
159   ///
160   /// \param Filename - The file to open. If this is "-" then the
161   /// stream will use stdout instead.
162   /// \param Binary - The file should be opened in binary mode on
163   /// platforms that support this distinction.
164   raw_fd_ostream(const char *Filename, bool Binary, std::string &ErrorInfo);
165   
166   /// raw_fd_ostream ctor - FD is the file descriptor that this writes to.  If
167   /// ShouldClose is true, this closes the file when 
168   raw_fd_ostream(int fd, bool shouldClose) : FD(fd), ShouldClose(shouldClose) {}
169   
170   ~raw_fd_ostream();
171     
172   /// flush_impl - The is the piece of the class that is implemented by
173   /// subclasses.  This outputs the currently buffered data and resets the
174   /// buffer to empty.
175   virtual void flush_impl();
176   
177   /// close - Manually flush the stream and close the file.
178   void close();  
179 };
180   
181 /// raw_stdout_ostream - This is a stream that always prints to stdout.
182 ///
183 class raw_stdout_ostream : public raw_fd_ostream {
184   // An out of line virtual method to provide a home for the class vtable.
185   virtual void handle();
186 public:
187   raw_stdout_ostream();
188 };
189
190 /// raw_stderr_ostream - This is a stream that always prints to stderr.
191 ///
192 class raw_stderr_ostream : public raw_fd_ostream {
193   // An out of line virtual method to provide a home for the class vtable.
194   virtual void handle();
195 public:
196   raw_stderr_ostream();
197 };
198   
199 /// outs() - This returns a reference to a raw_ostream for standard output.
200 /// Use it like: outs() << "foo" << "bar";
201 raw_ostream &outs();
202
203 /// errs() - This returns a reference to a raw_ostream for standard error.
204 /// Use it like: errs() << "foo" << "bar";
205 raw_ostream &errs();
206   
207   
208 //===----------------------------------------------------------------------===//
209 // Output Stream Adaptors
210 //===----------------------------------------------------------------------===//
211   
212 /// raw_os_ostream - A raw_ostream that writes to an std::ostream.  This is a
213 /// simple adaptor class.
214 class raw_os_ostream : public raw_ostream {
215   std::ostream &OS;
216 public:
217   raw_os_ostream(std::ostream &O) : OS(O) {}
218   ~raw_os_ostream();
219
220   /// flush_impl - The is the piece of the class that is implemented by
221   /// subclasses.  This outputs the currently buffered data and resets the
222   /// buffer to empty.
223   virtual void flush_impl();
224 };
225
226 /// raw_string_ostream - A raw_ostream that writes to an std::string.  This is a
227 /// simple adaptor class.
228 class raw_string_ostream : public raw_ostream {
229   std::string &OS;
230 public:
231   raw_string_ostream(std::string &O) : OS(O) {}
232   ~raw_string_ostream();
233   
234   /// str - Flushes the stream contents to the target string and returns
235   ///  the string's reference.
236   std::string& str() {
237     flush();
238     return OS;
239   }
240   
241   /// flush_impl - The is the piece of the class that is implemented by
242   /// subclasses.  This outputs the currently buffered data and resets the
243   /// buffer to empty.
244   virtual void flush_impl();
245 };
246   
247 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
248 /// SmallString.  This is a simple adaptor class.
249 class raw_svector_ostream : public raw_ostream {
250   SmallVectorImpl<char> &OS;
251 public:
252   raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
253   ~raw_svector_ostream();
254   
255   /// flush_impl - The is the piece of the class that is implemented by
256   /// subclasses.  This outputs the currently buffered data and resets the
257   /// buffer to empty.
258   virtual void flush_impl();
259 };
260   
261 } // end llvm namespace
262
263 #endif