src/hotspot/share/utilities/ostream.hpp
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 37254 hotspot/src/share/vm/utilities/ostream.hpp@8631304f255c
child 49980 57dd7b4ba338
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
     2
 * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_UTILITIES_OSTREAM_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_UTILITIES_OSTREAM_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/timer.hpp"
35897
beba2418d973 8146793: logStream::write re-formats string
kbarrett
parents: 35869
diff changeset
    30
#include "utilities/globalDefinitions.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
18928
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 17121
diff changeset
    32
DEBUG_ONLY(class ResourceMark;)
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 17121
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Output streams for printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// Printing guidelines:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// Where possible, please use tty->print() and tty->print_cr().
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// For product mode VM warnings use warning() which internally uses tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// In places where tty is not initialized yet or too much overhead,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// we may use jio_printf:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//     jio_fprintf(defaultStream::output_stream(), "Message");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
// This allows for redirection via -XX:+DisplayVMOutputToStdout and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
// -XX:+DisplayVMOutputToStderr
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class outputStream : public ResourceObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
   int _indentation; // current indentation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
   int _width;       // width of the page
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
   int _position;    // position on the current line
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
   int _newlines;    // number of '\n' output so far
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
   julong _precount; // number of chars output, less _position
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
   TimeStamp _stamp; // for time stamps
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    52
   char* _scratch;   // internal scratch buffer for printf
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    53
   size_t _scratch_len; // size of internal scratch buffer
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
   void update_position(const char* s, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
   static const char* do_vsnprintf(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                                   const char* format, va_list ap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
                                   bool add_cr,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
    59
                                   size_t& result_len)  ATTRIBUTE_PRINTF(3, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    61
   // calls do_vsnprintf and writes output to stream; uses an on-stack buffer.
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    62
   void do_vsnprintf_and_write_with_automatic_buffer(const char* format, va_list ap, bool add_cr) ATTRIBUTE_PRINTF(2, 0);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    63
   // calls do_vsnprintf and writes output to stream; uses the user-provided buffer;
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    64
   void do_vsnprintf_and_write_with_scratch_buffer(const char* format, va_list ap, bool add_cr) ATTRIBUTE_PRINTF(2, 0);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    65
   // calls do_vsnprintf, then writes output to stream.
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    66
   void do_vsnprintf_and_write(const char* format, va_list ap, bool add_cr) ATTRIBUTE_PRINTF(2, 0);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    67
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
   // creation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
   outputStream(int width = 80);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
   outputStream(int width, bool has_time_stamps);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
   // indentation
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
    74
   outputStream& indent();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
   void inc() { _indentation++; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
   void dec() { _indentation--; };
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
    77
   void inc(int n) { _indentation += n; };
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
    78
   void dec(int n) { _indentation -= n; };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
   int  indentation() const    { return _indentation; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
   void set_indentation(int i) { _indentation = i;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
   void fill_to(int col);
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    82
   void move_to(int col, int slop = 6, int min_space = 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
   // sizing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
   int width()    const { return _width;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
   int position() const { return _position; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
   int newlines() const { return _newlines; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
   julong count() const { return _precount + _position; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
   void set_count(julong count) { _precount = count - _position; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
   void set_position(int pos)   { _position = pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
   // printing
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
    93
   void print(const char* format, ...) ATTRIBUTE_PRINTF(2, 3);
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
    94
   void print_cr(const char* format, ...) ATTRIBUTE_PRINTF(2, 3);
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
    95
   void vprint(const char *format, va_list argptr) ATTRIBUTE_PRINTF(2, 0);
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
    96
   void vprint_cr(const char* format, va_list argptr) ATTRIBUTE_PRINTF(2, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
   void print_raw(const char* str)            { write(str, strlen(str)); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
   void print_raw(const char* str, int len)   { write(str,         len); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
   void print_raw_cr(const char* str)         { write(str, strlen(str)); cr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
   void print_raw_cr(const char* str, int len){ write(str,         len); cr(); }
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   101
   void print_data(void* data, size_t len, bool with_ascii);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
   void put(char ch);
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   103
   void sp(int count = 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
   void cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
   void bol() { if (_position > 0)  cr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
   // Time stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
   TimeStamp& time_stamp() { return _stamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
   void stamp();
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   110
   void stamp(bool guard, const char* prefix, const char* suffix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   111
   void stamp(bool guard) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   112
     stamp(guard, "", ": ");
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 347
diff changeset
   113
   }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
   // Date stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
   void date_stamp(bool guard, const char* prefix, const char* suffix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
   // A simplified call that includes a suffix of ": "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
   void date_stamp(bool guard) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
     date_stamp(guard, "", ": ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
   // portable printing of 64 bit integers
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
   void print_jlong(jlong value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
   void print_julong(julong value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
   // flushing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
   virtual void flush() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
   virtual void write(const char* str, size_t len) = 0;
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22234
diff changeset
   128
   virtual void rotate_log(bool force, outputStream* out = NULL) {} // GC log rotation
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8921
diff changeset
   129
   virtual ~outputStream() {}   // close properly on deletion
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   131
   // Caller may specify their own scratch buffer to use for printing; otherwise,
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   132
   // an automatic buffer on the stack (with O_BUFLEN len) is used.
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   133
   void set_scratch_buffer(char* p, size_t len) { _scratch = p; _scratch_len = len; }
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   134
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
   void dec_cr() { dec(); cr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
   void inc_cr() { inc(); cr(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
// standard output
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8921
diff changeset
   140
// ANSI C++ name collision
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
extern outputStream* tty;           // tty output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   143
class streamIndentor : public StackObj {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   144
 private:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   145
  outputStream* _str;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   146
  int _amount;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   147
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   148
 public:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   149
  streamIndentor(outputStream* str, int amt = 2) : _str(str), _amount(amt) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   150
    _str->inc(_amount);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   151
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   152
  ~streamIndentor() { _str->dec(_amount); }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   153
};
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   154
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 9990
diff changeset
   155
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
// advisory locking for the shared tty stream:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
class ttyLocker: StackObj {
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   158
  friend class ttyUnlocker;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  intx _holder;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  static intx  hold_tty();                // returns a "holder" token
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static void  release_tty(intx holder);  // must witness same token
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   165
  static bool  release_tty_if_locked();   // returns true if lock was released
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  static void  break_tty_lock_for_safepoint(intx holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  ttyLocker()  { _holder = hold_tty(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  ~ttyLocker() { release_tty(_holder); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   172
// Release the tty lock if it's held and reacquire it if it was
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   173
// locked.  Used to avoid lock ordering problems.
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   174
class ttyUnlocker: StackObj {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   175
 private:
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   176
  bool _was_locked;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   177
 public:
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   178
  ttyUnlocker()  {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   179
    _was_locked = ttyLocker::release_tty_if_locked();
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   180
  }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   181
  ~ttyUnlocker() {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   182
    if (_was_locked) {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   183
      ttyLocker::hold_tty();
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   184
    }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   185
  }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   186
};
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   187
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
// for writing to strings; buffer will expand automatically
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
class stringStream : public outputStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  char*  buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  size_t buffer_pos;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  size_t buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  bool   buffer_fixed;
18928
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 17121
diff changeset
   195
  DEBUG_ONLY(ResourceMark* rm;)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  stringStream(size_t initial_bufsize = 256);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  stringStream(char* fixed_buffer, size_t fixed_buffer_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  ~stringStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  virtual void write(const char* c, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  size_t      size() { return buffer_pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  const char* base() { return buffer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void  reset() { buffer_pos = 0; _precount = 0; _position = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  char* as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
class fileStream : public outputStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  FILE* _file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  bool  _need_close;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
 public:
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8921
diff changeset
   212
  fileStream() { _file = NULL; _need_close = false; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  fileStream(const char* file_name);
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   214
  fileStream(const char* file_name, const char* opentype);
17121
e40a97c700d9 8012260: ciReplay: Include PID into the name of replay data file
vlivanov
parents: 15803
diff changeset
   215
  fileStream(FILE* file, bool need_close = false) { _file = file; _need_close = need_close; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  ~fileStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  bool is_open() const { return _file != NULL; }
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   218
  void set_need_close(bool b) { _need_close = b;}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  virtual void write(const char* c, size_t len);
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   220
  size_t read(void *data, size_t size, size_t count) { return ::fread(data, size, count, _file); }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   221
  char* readln(char *data, int count);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   222
  int eof() { return feof(_file); }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   223
  long fileSize();
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7397
diff changeset
   224
  void rewind() { ::rewind(_file); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25350
diff changeset
   228
CDS_ONLY(extern fileStream*   classlist_file;)
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25350
diff changeset
   229
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// unlike fileStream, fdStream does unbuffered I/O by calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
// open() and write() directly. It is async-safe, but output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
// from multiple thread may be mixed together. Used by fatal
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
// error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
class fdStream : public outputStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  int  _fd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  bool _need_close;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  fdStream(const char* file_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  fdStream(int fd = -1) { _fd = fd; _need_close = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  ~fdStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  bool is_open() const { return _fd != -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  void set_fd(int fd) { _fd = fd; _need_close = false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  int fd() const { return _fd; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  virtual void write(const char* c, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  void flush() {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
void ostream_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void ostream_init_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void ostream_exit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
void ostream_abort();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
// In the non-fixed buffer case an underlying buffer will be created and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
// managed in C heap. Not MT-safe.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
class bufferedStream : public outputStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  char*  buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  size_t buffer_pos;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 347
diff changeset
   260
  size_t buffer_max;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  size_t buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  bool   buffer_fixed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
 public:
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 347
diff changeset
   264
  bufferedStream(size_t initial_bufsize = 256, size_t bufmax = 1024*1024*10);
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 347
diff changeset
   265
  bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax = 1024*1024*10);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  ~bufferedStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  virtual void write(const char* c, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  size_t      size() { return buffer_pos; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  const char* base() { return buffer; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void  reset() { buffer_pos = 0; _precount = 0; _position = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  char* as_string();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
#define O_BUFLEN 2000   // max size of output of individual print() methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
class networkStream : public bufferedStream {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    int _socket;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
    networkStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
    ~networkStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    bool connect(const char *host, short port);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    bool is_open() const { return _socket != -1; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    int read(char *buf, size_t len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
    void close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    virtual void flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
#endif
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   295
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   296
#endif // SHARE_VM_UTILITIES_OSTREAM_HPP