Make raw_null_ostream flush its buffer in its destructor, so that
[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 "llvm/ADT/StringRef.h"
19 #include <cassert>
20 #include <cstring>
21 #include <string>
22 #include <iosfwd>
23
24 namespace llvm {
25   class format_object_base;
26   template <typename T>
27   class SmallVectorImpl;
28
29 /// raw_ostream - This class implements an extremely fast bulk output stream
30 /// that can *only* output to a stream.  It does not support seeking, reopening,
31 /// rewinding, line buffered disciplines etc. It is a simple buffer that outputs
32 /// a chunk at a time.
33 class raw_ostream {
34 private:
35   /// The buffer is handled in such a way that the buffer is
36   /// uninitialized, unbuffered, or out of space when OutBufCur >=
37   /// OutBufEnd. Thus a single comparison suffices to determine if we
38   /// need to take the slow path to write a single character.
39   ///
40   /// The buffer is in one of three states:
41   ///  1. Unbuffered (Unbuffered == true)
42   ///  1. Uninitialized (Unbuffered == false && OutBufStart == 0).
43   ///  2. Buffered (Unbuffered == false && OutBufStart != 0 &&
44   ///               OutBufEnd - OutBufStart >= 64).
45   char *OutBufStart, *OutBufEnd, *OutBufCur;
46   bool Unbuffered;
47
48   /// Error This flag is true if an error of any kind has been detected.
49   ///
50   bool Error;
51
52 public:
53   // color order matches ANSI escape sequence, don't change
54   enum Colors {
55     BLACK=0,
56     RED,
57     GREEN,
58     YELLOW,
59     BLUE,
60     MAGENTA,
61     CYAN,
62     WHITE,
63     SAVEDCOLOR
64   };
65
66   explicit raw_ostream(bool unbuffered=false)
67     : Unbuffered(unbuffered), Error(false) {
68     // Start out ready to flush.
69     OutBufStart = OutBufEnd = OutBufCur = 0;
70   }
71
72   virtual ~raw_ostream();
73
74   /// tell - Return the current offset with the file.
75   uint64_t tell() { return current_pos() + GetNumBytesInBuffer(); }
76
77   /// has_error - Return the value of the flag in this raw_ostream indicating
78   /// whether an output error has been encountered.
79   bool has_error() const {
80     return Error;
81   }
82
83   /// clear_error - Set the flag read by has_error() to false. If the error
84   /// flag is set at the time when this raw_ostream's destructor is called,
85   /// llvm_report_error is called to report the error. Use clear_error()
86   /// after handling the error to avoid this behavior.
87   void clear_error() {
88     Error = false;
89   }
90
91   //===--------------------------------------------------------------------===//
92   // Configuration Interface
93   //===--------------------------------------------------------------------===//
94
95   /// SetBufferSize - Set the internal buffer size to the specified amount
96   /// instead of the default.
97   void SetBufferSize(size_t Size=4096) {
98     assert(Size >= 64 &&
99            "Buffer size must be somewhat large for invariants to hold");
100     flush();
101
102     delete [] OutBufStart;
103     OutBufStart = new char[Size];
104     OutBufEnd = OutBufStart+Size;
105     OutBufCur = OutBufStart;
106     Unbuffered = false;
107   }
108
109   /// SetUnbuffered - Set the streams buffering status. When
110   /// unbuffered the stream will flush after every write. This routine
111   /// will also flush the buffer immediately when the stream is being
112   /// set to unbuffered.
113   void SetUnbuffered() {
114     flush();
115     
116     delete [] OutBufStart;
117     OutBufStart = OutBufEnd = OutBufCur = 0;
118     Unbuffered = true;
119   }
120
121   size_t GetNumBytesInBuffer() const {
122     return OutBufCur - OutBufStart;
123   }
124
125   //===--------------------------------------------------------------------===//
126   // Data Output Interface
127   //===--------------------------------------------------------------------===//
128
129   void flush() {
130     if (OutBufCur != OutBufStart)
131       flush_nonempty();
132   }
133
134   raw_ostream &operator<<(char C) {
135     if (OutBufCur >= OutBufEnd)
136       return write(C);
137     *OutBufCur++ = C;
138     return *this;
139   }
140
141   raw_ostream &operator<<(unsigned char C) {
142     if (OutBufCur >= OutBufEnd)
143       return write(C);
144     *OutBufCur++ = C;
145     return *this;
146   }
147
148   raw_ostream &operator<<(signed char C) {
149     if (OutBufCur >= OutBufEnd)
150       return write(C);
151     *OutBufCur++ = C;
152     return *this;
153   }
154
155   raw_ostream &operator<<(const StringRef &Str) {
156     // Inline fast path, particularly for strings with a known length.
157     size_t Size = Str.size();
158
159     // Make sure we can use the fast path.
160     if (OutBufCur+Size > OutBufEnd)
161       return write(Str.data(), Size);
162
163     memcpy(OutBufCur, Str.data(), Size);
164     OutBufCur += Size;
165     return *this;
166   }
167
168   raw_ostream &operator<<(const char *Str) {
169     // Inline fast path, particulary for constant strings where a sufficiently
170     // smart compiler will simplify strlen.
171
172     this->operator<<(StringRef(Str));
173     return *this;
174   }
175
176   raw_ostream &operator<<(const std::string& Str) {
177     write(Str.data(), Str.length());
178     return *this;
179   }
180
181   raw_ostream &operator<<(unsigned long N);
182   raw_ostream &operator<<(long N);
183   raw_ostream &operator<<(unsigned long long N);
184   raw_ostream &operator<<(long long N);
185   raw_ostream &operator<<(const void *P);
186   raw_ostream &operator<<(unsigned int N) {
187     this->operator<<(static_cast<unsigned long>(N));
188     return *this;
189   }
190
191   raw_ostream &operator<<(int N) {
192     this->operator<<(static_cast<long>(N));
193     return *this;
194   }
195
196   raw_ostream &operator<<(double N) {
197     this->operator<<(ftostr(N));
198     return *this;
199   }
200
201   raw_ostream &write(unsigned char C);
202   raw_ostream &write(const char *Ptr, size_t Size);
203
204   // Formatted output, see the format() function in Support/Format.h.
205   raw_ostream &operator<<(const format_object_base &Fmt);
206
207   /// Changes the foreground color of text that will be output from this point
208   /// forward.
209   /// @param colors ANSI color to use, the special SAVEDCOLOR can be used to
210   /// change only the bold attribute, and keep colors untouched
211   /// @param bold bold/brighter text, default false
212   /// @param bg if true change the background, default: change foreground
213   /// @returns itself so it can be used within << invocations
214   virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,
215                                    bool  bg=false) { return *this; }
216
217   /// Resets the colors to terminal defaults. Call this when you are done
218   /// outputting colored text, or before program exit.
219   virtual raw_ostream &resetColor() { return *this; }
220
221   //===--------------------------------------------------------------------===//
222   // Subclass Interface
223   //===--------------------------------------------------------------------===//
224
225 private:
226   /// write_impl - The is the piece of the class that is implemented
227   /// by subclasses.  This writes the \args Size bytes starting at
228   /// \arg Ptr to the underlying stream.
229   /// 
230   /// \invariant { Size > 0 }
231   virtual void write_impl(const char *Ptr, size_t Size) = 0;
232
233   // An out of line virtual method to provide a home for the class vtable.
234   virtual void handle();
235
236   /// current_pos - Return the current position within the stream, not
237   /// counting the bytes currently in the buffer.
238   virtual uint64_t current_pos() = 0;
239
240 protected:
241   /// error_detected - Set the flag indicating that an output error has
242   /// been encountered.
243   void error_detected() { Error = true; }
244
245   //===--------------------------------------------------------------------===//
246   // Private Interface
247   //===--------------------------------------------------------------------===//
248 private:
249   /// flush_nonempty - Flush the current buffer, which is known to be
250   /// non-empty. This outputs the currently buffered data and resets
251   /// the buffer to empty.
252   void flush_nonempty();
253 };
254
255 //===----------------------------------------------------------------------===//
256 // File Output Streams
257 //===----------------------------------------------------------------------===//
258
259 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
260 ///
261 class raw_fd_ostream : public raw_ostream {
262   int FD;
263   bool ShouldClose;
264   uint64_t pos;
265
266   /// write_impl - See raw_ostream::write_impl.
267   virtual void write_impl(const char *Ptr, size_t Size);
268
269   /// current_pos - Return the current position within the stream, not
270   /// counting the bytes currently in the buffer.
271   virtual uint64_t current_pos() { return pos; }
272
273 public:
274   /// raw_fd_ostream - Open the specified file for writing. If an
275   /// error occurs, information about the error is put into ErrorInfo,
276   /// and the stream should be immediately destroyed; the string will
277   /// be empty if no error occurred.
278   ///
279   /// \param Filename - The file to open. If this is "-" then the
280   /// stream will use stdout instead.
281   /// \param Binary - The file should be opened in binary mode on
282   /// platforms that support this distinction.
283   /// \param Force - Don't consider the case where the file already
284   /// exists to be an error.
285   raw_fd_ostream(const char *Filename, bool Binary, bool Force,
286                  std::string &ErrorInfo);
287
288   /// raw_fd_ostream ctor - FD is the file descriptor that this writes to.  If
289   /// ShouldClose is true, this closes the file when the stream is destroyed.
290   raw_fd_ostream(int fd, bool shouldClose, 
291                  bool unbuffered=false) : raw_ostream(unbuffered), FD(fd), 
292                                           ShouldClose(shouldClose) {}
293   
294   ~raw_fd_ostream();
295
296   /// close - Manually flush the stream and close the file.
297   void close();
298
299   /// tell - Return the current offset with the file.
300   uint64_t tell() { return pos + GetNumBytesInBuffer(); }
301
302   /// seek - Flushes the stream and repositions the underlying file descriptor
303   ///  positition to the offset specified from the beginning of the file.
304   uint64_t seek(uint64_t off);
305
306   virtual raw_ostream &changeColor(enum Colors colors, bool bold=false,
307                                    bool bg=false);
308   virtual raw_ostream &resetColor();
309 };
310
311 /// raw_stdout_ostream - This is a stream that always prints to stdout.
312 ///
313 class raw_stdout_ostream : public raw_fd_ostream {
314   // An out of line virtual method to provide a home for the class vtable.
315   virtual void handle();
316 public:
317   raw_stdout_ostream();
318 };
319
320 /// raw_stderr_ostream - This is a stream that always prints to stderr.
321 ///
322 class raw_stderr_ostream : public raw_fd_ostream {
323   // An out of line virtual method to provide a home for the class vtable.
324   virtual void handle();
325 public:
326   raw_stderr_ostream();
327 };
328
329 /// outs() - This returns a reference to a raw_ostream for standard output.
330 /// Use it like: outs() << "foo" << "bar";
331 raw_ostream &outs();
332
333 /// errs() - This returns a reference to a raw_ostream for standard error.
334 /// Use it like: errs() << "foo" << "bar";
335 raw_ostream &errs();
336
337 /// nulls() - This returns a reference to a raw_ostream which simply discards
338 /// output.
339 raw_ostream &nulls();
340
341 //===----------------------------------------------------------------------===//
342 // Output Stream Adaptors
343 //===----------------------------------------------------------------------===//
344
345 /// raw_os_ostream - A raw_ostream that writes to an std::ostream.  This is a
346 /// simple adaptor class.  It does not check for output errors; clients should
347 /// use the underlying stream to detect errors.
348 class raw_os_ostream : public raw_ostream {
349   std::ostream &OS;
350
351   /// write_impl - See raw_ostream::write_impl.
352   virtual void write_impl(const char *Ptr, size_t Size);
353
354   /// current_pos - Return the current position within the stream, not
355   /// counting the bytes currently in the buffer.
356   virtual uint64_t current_pos();
357
358 public:
359   raw_os_ostream(std::ostream &O) : OS(O) {}
360   ~raw_os_ostream();
361
362   /// tell - Return the current offset with the stream.
363   uint64_t tell();
364 };
365
366 /// raw_string_ostream - A raw_ostream that writes to an std::string.  This is a
367 /// simple adaptor class. This class does not encounter output errors.
368 class raw_string_ostream : public raw_ostream {
369   std::string &OS;
370
371   /// write_impl - See raw_ostream::write_impl.
372   virtual void write_impl(const char *Ptr, size_t Size);
373
374   /// current_pos - Return the current position within the stream, not
375   /// counting the bytes currently in the buffer.
376   virtual uint64_t current_pos() { return OS.size(); }
377 public:
378   explicit raw_string_ostream(std::string &O) : OS(O) {}
379   ~raw_string_ostream();
380
381   /// tell - Return the current offset with the stream.
382   uint64_t tell() { return OS.size() + GetNumBytesInBuffer(); }
383
384   /// str - Flushes the stream contents to the target string and returns
385   ///  the string's reference.
386   std::string& str() {
387     flush();
388     return OS;
389   }
390 };
391
392 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
393 /// SmallString.  This is a simple adaptor class. This class does not
394 /// encounter output errors.
395 class raw_svector_ostream : public raw_ostream {
396   SmallVectorImpl<char> &OS;
397
398   /// write_impl - See raw_ostream::write_impl.
399   virtual void write_impl(const char *Ptr, size_t Size);
400
401   /// current_pos - Return the current position within the stream, not
402   /// counting the bytes currently in the buffer.
403   virtual uint64_t current_pos();
404 public:
405   explicit raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
406   ~raw_svector_ostream();
407
408   /// tell - Return the current offset with the stream.
409   uint64_t tell();
410 };
411
412 /// raw_null_ostream - A raw_ostream that discards all output.
413 class raw_null_ostream : public raw_ostream {
414   /// write_impl - See raw_ostream::write_impl.
415   virtual void write_impl(const char *Ptr, size_t size);
416   
417   /// current_pos - Return the current position within the stream, not
418   /// counting the bytes currently in the buffer.
419   virtual uint64_t current_pos();
420
421 public:
422   explicit raw_null_ostream() {}
423   ~raw_null_ostream();
424 };
425
426 } // end llvm namespace
427
428 #endif