ostream.hpp revision 3557:4ee06e614636
1/*
2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25#ifndef SHARE_VM_UTILITIES_OSTREAM_HPP
26#define SHARE_VM_UTILITIES_OSTREAM_HPP
27
28#include "memory/allocation.hpp"
29#include "runtime/timer.hpp"
30
31// Output streams for printing
32//
33// Printing guidelines:
34// Where possible, please use tty->print() and tty->print_cr().
35// For product mode VM warnings use warning() which internally uses tty.
36// In places where tty is not initialized yet or too much overhead,
37// we may use jio_printf:
38//     jio_fprintf(defaultStream::output_stream(), "Message");
39// This allows for redirection via -XX:+DisplayVMOutputToStdout and
40// -XX:+DisplayVMOutputToStderr
41class outputStream : public ResourceObj {
42 protected:
43   int _indentation; // current indentation
44   int _width;       // width of the page
45   int _position;    // position on the current line
46   int _newlines;    // number of '\n' output so far
47   julong _precount; // number of chars output, less _position
48   TimeStamp _stamp; // for time stamps
49
50   void update_position(const char* s, size_t len);
51   static const char* do_vsnprintf(char* buffer, size_t buflen,
52                                   const char* format, va_list ap,
53                                   bool add_cr,
54                                   size_t& result_len);
55
56 public:
57   // creation
58   outputStream(int width = 80);
59   outputStream(int width, bool has_time_stamps);
60
61   // indentation
62   outputStream& indent();
63   void inc() { _indentation++; };
64   void dec() { _indentation--; };
65   void inc(int n) { _indentation += n; };
66   void dec(int n) { _indentation -= n; };
67   int  indentation() const    { return _indentation; }
68   void set_indentation(int i) { _indentation = i;    }
69   void fill_to(int col);
70   void move_to(int col, int slop = 6, int min_space = 2);
71
72   // sizing
73   int width()    const { return _width;    }
74   int position() const { return _position; }
75   int newlines() const { return _newlines; }
76   julong count() const { return _precount + _position; }
77   void set_count(julong count) { _precount = count - _position; }
78   void set_position(int pos)   { _position = pos; }
79
80   // printing
81   void print(const char* format, ...);
82   void print_cr(const char* format, ...);
83   void vprint(const char *format, va_list argptr);
84   void vprint_cr(const char* format, va_list argptr);
85   void print_raw(const char* str)            { write(str, strlen(str)); }
86   void print_raw(const char* str, int len)   { write(str,         len); }
87   void print_raw_cr(const char* str)         { write(str, strlen(str)); cr(); }
88   void print_raw_cr(const char* str, int len){ write(str,         len); cr(); }
89   void print_data(void* data, size_t len, bool with_ascii);
90   void put(char ch);
91   void sp(int count = 1);
92   void cr();
93   void bol() { if (_position > 0)  cr(); }
94
95   // Time stamp
96   TimeStamp& time_stamp() { return _stamp; }
97   void stamp();
98   void stamp(bool guard, const char* prefix, const char* suffix);
99   void stamp(bool guard) {
100     stamp(guard, "", ": ");
101   }
102   // Date stamp
103   void date_stamp(bool guard, const char* prefix, const char* suffix);
104   // A simplified call that includes a suffix of ": "
105   void date_stamp(bool guard) {
106     date_stamp(guard, "", ": ");
107   }
108
109   // portable printing of 64 bit integers
110   void print_jlong(jlong value);
111   void print_julong(julong value);
112
113   // flushing
114   virtual void flush() {}
115   virtual void write(const char* str, size_t len) = 0;
116   virtual void rotate_log() {} // GC log rotation
117   virtual ~outputStream() {}   // close properly on deletion
118
119   void dec_cr() { dec(); cr(); }
120   void inc_cr() { inc(); cr(); }
121};
122
123// standard output
124// ANSI C++ name collision
125extern outputStream* tty;           // tty output
126extern outputStream* gclog_or_tty;  // stream for gc log if -Xloggc:<f>, or tty
127
128class streamIndentor : public StackObj {
129 private:
130  outputStream* _str;
131  int _amount;
132
133 public:
134  streamIndentor(outputStream* str, int amt = 2) : _str(str), _amount(amt) {
135    _str->inc(_amount);
136  }
137  ~streamIndentor() { _str->dec(_amount); }
138};
139
140
141// advisory locking for the shared tty stream:
142class ttyLocker: StackObj {
143  friend class ttyUnlocker;
144 private:
145  intx _holder;
146
147 public:
148  static intx  hold_tty();                // returns a "holder" token
149  static void  release_tty(intx holder);  // must witness same token
150  static bool  release_tty_if_locked();   // returns true if lock was released
151  static void  break_tty_lock_for_safepoint(intx holder);
152
153  ttyLocker()  { _holder = hold_tty(); }
154  ~ttyLocker() { release_tty(_holder); }
155};
156
157// Release the tty lock if it's held and reacquire it if it was
158// locked.  Used to avoid lock ordering problems.
159class ttyUnlocker: StackObj {
160 private:
161  bool _was_locked;
162 public:
163  ttyUnlocker()  {
164    _was_locked = ttyLocker::release_tty_if_locked();
165  }
166  ~ttyUnlocker() {
167    if (_was_locked) {
168      ttyLocker::hold_tty();
169    }
170  }
171};
172
173// for writing to strings; buffer will expand automatically
174class stringStream : public outputStream {
175 protected:
176  char*  buffer;
177  size_t buffer_pos;
178  size_t buffer_length;
179  bool   buffer_fixed;
180 public:
181  stringStream(size_t initial_bufsize = 256);
182  stringStream(char* fixed_buffer, size_t fixed_buffer_size);
183  ~stringStream();
184  virtual void write(const char* c, size_t len);
185  size_t      size() { return buffer_pos; }
186  const char* base() { return buffer; }
187  void  reset() { buffer_pos = 0; _precount = 0; _position = 0; }
188  char* as_string();
189};
190
191class fileStream : public outputStream {
192 protected:
193  FILE* _file;
194  bool  _need_close;
195 public:
196  fileStream() { _file = NULL; _need_close = false; }
197  fileStream(const char* file_name);
198  fileStream(const char* file_name, const char* opentype);
199  fileStream(FILE* file) { _file = file; _need_close = false; }
200  ~fileStream();
201  bool is_open() const { return _file != NULL; }
202  void set_need_close(bool b) { _need_close = b;}
203  virtual void write(const char* c, size_t len);
204  size_t read(void *data, size_t size, size_t count) { return ::fread(data, size, count, _file); }
205  char* readln(char *data, int count);
206  int eof() { return feof(_file); }
207  long fileSize();
208  void rewind() { ::rewind(_file); }
209  void flush();
210};
211
212// unlike fileStream, fdStream does unbuffered I/O by calling
213// open() and write() directly. It is async-safe, but output
214// from multiple thread may be mixed together. Used by fatal
215// error handler.
216class fdStream : public outputStream {
217 protected:
218  int  _fd;
219  bool _need_close;
220 public:
221  fdStream(const char* file_name);
222  fdStream(int fd = -1) { _fd = fd; _need_close = false; }
223  ~fdStream();
224  bool is_open() const { return _fd != -1; }
225  void set_fd(int fd) { _fd = fd; _need_close = false; }
226  int fd() const { return _fd; }
227  virtual void write(const char* c, size_t len);
228  void flush() {};
229};
230
231class rotatingFileStream : public fileStream {
232 protected:
233  char*  _file_name;
234  jlong  _bytes_writen;
235  uintx  _cur_file_num;             // current logfile rotation number, from 0 to MaxGCLogFileNumbers-1
236 public:
237  rotatingFileStream(const char* file_name);
238  rotatingFileStream(const char* file_name, const char* opentype);
239  rotatingFileStream(FILE* file) : fileStream(file) {}
240  ~rotatingFileStream();
241  virtual void write(const char* c, size_t len);
242  virtual void rotate_log();
243};
244
245void ostream_init();
246void ostream_init_log();
247void ostream_exit();
248void ostream_abort();
249
250// staticBufferStream uses a user-supplied buffer for all formatting.
251// Used for safe formatting during fatal error handling.  Not MT safe.
252// Do not share the stream between multiple threads.
253class staticBufferStream : public outputStream {
254 private:
255  char* _buffer;
256  size_t _buflen;
257  outputStream* _outer_stream;
258 public:
259  staticBufferStream(char* buffer, size_t buflen,
260                     outputStream *outer_stream);
261  ~staticBufferStream() {};
262  virtual void write(const char* c, size_t len);
263  void flush();
264  void print(const char* format, ...);
265  void print_cr(const char* format, ...);
266  void vprint(const char *format, va_list argptr);
267  void vprint_cr(const char* format, va_list argptr);
268};
269
270// In the non-fixed buffer case an underlying buffer will be created and
271// managed in C heap. Not MT-safe.
272class bufferedStream : public outputStream {
273 protected:
274  char*  buffer;
275  size_t buffer_pos;
276  size_t buffer_max;
277  size_t buffer_length;
278  bool   buffer_fixed;
279 public:
280  bufferedStream(size_t initial_bufsize = 256, size_t bufmax = 1024*1024*10);
281  bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax = 1024*1024*10);
282  ~bufferedStream();
283  virtual void write(const char* c, size_t len);
284  size_t      size() { return buffer_pos; }
285  const char* base() { return buffer; }
286  void  reset() { buffer_pos = 0; _precount = 0; _position = 0; }
287  char* as_string();
288};
289
290#define O_BUFLEN 2000   // max size of output of individual print() methods
291
292#ifndef PRODUCT
293
294class networkStream : public bufferedStream {
295
296  private:
297    int _socket;
298
299  public:
300    networkStream();
301    ~networkStream();
302
303    bool connect(const char *host, short port);
304    bool is_open() const { return _socket != -1; }
305    int read(char *buf, size_t len);
306    void close();
307    virtual void flush();
308};
309
310#endif
311
312#endif // SHARE_VM_UTILITIES_OSTREAM_HPP
313