1eb92ed0ffaf693714a17c23e86278b825ba23b5
[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   bool Unbuffered;
36
37 public:
38   explicit raw_ostream(bool unbuffered=false) : Unbuffered(unbuffered) {
39     // Start out ready to flush.
40     OutBufStart = OutBufEnd = OutBufCur = 0;
41   }
42
43   virtual ~raw_ostream() {
44     delete [] OutBufStart;
45   }
46
47   //===--------------------------------------------------------------------===//
48   // Configuration Interface
49   //===--------------------------------------------------------------------===//
50
51   /// SetBufferSize - Set the internal buffer size to the specified amount
52   /// instead of the default.
53   void SetBufferSize(unsigned Size) {
54     assert(Size >= 64 &&
55            "Buffer size must be somewhat large for invariants to hold");
56     flush();
57
58     delete [] OutBufStart;
59     OutBufStart = new char[Size];
60     OutBufEnd = OutBufStart+Size;
61     OutBufCur = OutBufStart;
62   }
63
64   /// SetUnbuffered - Set the streams buffering status. When
65   /// unbuffered the stream will flush after every write. This routine
66   /// will also flush the buffer immediately when the stream is being
67   /// set to unbuffered.
68   void SetUnbuffered(bool unbuffered) {
69     Unbuffered = unbuffered;
70     if (Unbuffered)
71       flush();
72   }
73
74   //===--------------------------------------------------------------------===//
75   // Data Output Interface
76   //===--------------------------------------------------------------------===//
77
78   void flush() {
79     if (OutBufCur != OutBufStart)
80       flush_impl();
81   }
82
83   raw_ostream &operator<<(char C) {
84     if (OutBufCur >= OutBufEnd)
85       flush_impl();
86     *OutBufCur++ = C;
87     if (Unbuffered)
88       flush_impl();
89     return *this;
90   }
91
92   raw_ostream &operator<<(unsigned char C) {
93     if (OutBufCur >= OutBufEnd)
94       flush_impl();
95     *OutBufCur++ = C;
96     if (Unbuffered)
97       flush_impl();
98     return *this;
99   }
100
101   raw_ostream &operator<<(signed char C) {
102     if (OutBufCur >= OutBufEnd)
103       flush_impl();
104     *OutBufCur++ = C;
105     if (Unbuffered)
106       flush_impl();
107     return *this;
108   }
109
110   raw_ostream &operator<<(const char *Str) {
111     return write(Str, strlen(Str));
112   }
113
114   raw_ostream &operator<<(const std::string& Str) {
115     return write(Str.data(), Str.length());
116   }
117
118   raw_ostream &operator<<(unsigned long N);
119   raw_ostream &operator<<(long N);
120   raw_ostream &operator<<(unsigned long long N);
121   raw_ostream &operator<<(long long N);
122   raw_ostream &operator<<(const void *P);
123   raw_ostream &operator<<(unsigned int N) {
124     return this->operator<<(static_cast<unsigned long>(N));
125   }
126
127   raw_ostream &operator<<(int N) {
128     return this->operator<<(static_cast<long>(N));
129   }
130
131   raw_ostream &operator<<(double N) {
132     return this->operator<<(ftostr(N));
133   }
134
135   raw_ostream &write(const char *Ptr, unsigned Size);
136
137   // Formatted output, see the format() function in Support/Format.h.
138   raw_ostream &operator<<(const format_object_base &Fmt);
139
140   //===--------------------------------------------------------------------===//
141   // Subclass Interface
142   //===--------------------------------------------------------------------===//
143
144 protected:
145
146   /// flush_impl - The is the piece of the class that is implemented by
147   /// subclasses.  This outputs the currently buffered data and resets the
148   /// buffer to empty.
149   virtual void flush_impl() = 0;
150
151   /// HandleFlush - A stream's implementation of flush should call this after
152   /// emitting the bytes to the data sink.
153   void HandleFlush() {
154     if (OutBufStart == 0)
155       SetBufferSize(4096);
156     OutBufCur = OutBufStart;
157   }
158 private:
159   // An out of line virtual method to provide a home for the class vtable.
160   virtual void handle();
161 };
162
163 //===----------------------------------------------------------------------===//
164 // File Output Streams
165 //===----------------------------------------------------------------------===//
166
167 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
168 ///
169 class raw_fd_ostream : public raw_ostream {
170   int FD;
171   bool ShouldClose;
172   uint64_t pos;
173 public:
174   /// raw_fd_ostream - Open the specified file for writing. If an
175   /// error occurs, information about the error is put into ErrorInfo,
176   /// and the stream should be immediately destroyed; the string will
177   /// be empty if no error occurred.
178   ///
179   /// \param Filename - The file to open. If this is "-" then the
180   /// stream will use stdout instead.
181   /// \param Binary - The file should be opened in binary mode on
182   /// platforms that support this distinction.
183   raw_fd_ostream(const char *Filename, bool Binary, std::string &ErrorInfo);
184
185   /// raw_fd_ostream ctor - FD is the file descriptor that this writes to.  If
186   /// ShouldClose is true, this closes the file when the stream is destroyed.
187   raw_fd_ostream(int fd, bool shouldClose, 
188                  bool unbuffered=false) : raw_ostream(unbuffered), FD(fd), 
189                                           ShouldClose(shouldClose) {}
190   
191   ~raw_fd_ostream();
192
193   /// flush_impl - The is the piece of the class that is implemented by
194   /// subclasses.  This outputs the currently buffered data and resets the
195   /// buffer to empty.
196   virtual void flush_impl();
197
198   /// close - Manually flush the stream and close the file.
199   void close();
200
201   /// tell - Return the current offset with the file.
202   uint64_t tell() {
203     return pos + (OutBufCur - OutBufStart);
204   }
205
206   /// seek - Flushes the stream and repositions the underlying file descriptor
207   ///  positition to the offset specified from the beginning of the file.
208   uint64_t seek(uint64_t off);
209 };
210
211 /// raw_stdout_ostream - This is a stream that always prints to stdout.
212 ///
213 class raw_stdout_ostream : public raw_fd_ostream {
214   // An out of line virtual method to provide a home for the class vtable.
215   virtual void handle();
216 public:
217   raw_stdout_ostream();
218 };
219
220 /// raw_stderr_ostream - This is a stream that always prints to stderr.
221 ///
222 class raw_stderr_ostream : public raw_fd_ostream {
223   // An out of line virtual method to provide a home for the class vtable.
224   virtual void handle();
225 public:
226   raw_stderr_ostream();
227 };
228
229 /// outs() - This returns a reference to a raw_ostream for standard output.
230 /// Use it like: outs() << "foo" << "bar";
231 raw_ostream &outs();
232
233 /// errs() - This returns a reference to a raw_ostream for standard error.
234 /// Use it like: errs() << "foo" << "bar";
235 raw_ostream &errs();
236
237
238 //===----------------------------------------------------------------------===//
239 // Output Stream Adaptors
240 //===----------------------------------------------------------------------===//
241
242 /// raw_os_ostream - A raw_ostream that writes to an std::ostream.  This is a
243 /// simple adaptor class.
244 class raw_os_ostream : public raw_ostream {
245   std::ostream &OS;
246 public:
247   raw_os_ostream(std::ostream &O) : OS(O) {}
248   ~raw_os_ostream();
249
250   /// flush_impl - The is the piece of the class that is implemented by
251   /// subclasses.  This outputs the currently buffered data and resets the
252   /// buffer to empty.
253   virtual void flush_impl();
254 };
255
256 /// raw_string_ostream - A raw_ostream that writes to an std::string.  This is a
257 /// simple adaptor class.
258 class raw_string_ostream : public raw_ostream {
259   std::string &OS;
260 public:
261   raw_string_ostream(std::string &O) : OS(O) {}
262   ~raw_string_ostream();
263
264   /// str - Flushes the stream contents to the target string and returns
265   ///  the string's reference.
266   std::string& str() {
267     flush();
268     return OS;
269   }
270
271   /// flush_impl - The is the piece of the class that is implemented by
272   /// subclasses.  This outputs the currently buffered data and resets the
273   /// buffer to empty.
274   virtual void flush_impl();
275 };
276
277 /// raw_svector_ostream - A raw_ostream that writes to an SmallVector or
278 /// SmallString.  This is a simple adaptor class.
279 class raw_svector_ostream : public raw_ostream {
280   SmallVectorImpl<char> &OS;
281 public:
282   raw_svector_ostream(SmallVectorImpl<char> &O) : OS(O) {}
283   ~raw_svector_ostream();
284
285   /// flush_impl - The is the piece of the class that is implemented by
286   /// subclasses.  This outputs the currently buffered data and resets the
287   /// buffer to empty.
288   virtual void flush_impl();
289 };
290
291 } // end llvm namespace
292
293 #endif