src/hotspot/share/utilities/ostream.cpp
author stuefe
Wed, 05 Jun 2019 19:34:43 +0200
changeset 55236 c87e52dbdca0
parent 55023 d56d8e40b6cd
child 58195 a82fe7a88ce4
permissions -rw-r--r--
8225225: stringStream internal buffer should always be zero terminated Reviewed-by: coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53911
65f2a401e0eb 8218811: replace open by os::open in hotspot coding
mbaesken
parents: 51070
diff changeset
     2
 * Copyright (c) 1997, 2019, 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: 5237
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5237
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: 5237
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
#include "precompiled.hpp"
47765
b7c7428eaab9 8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents: 47216
diff changeset
    26
#include "jvm.h"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "compiler/compileLog.hpp"
49360
886acec3b4c6 8199275: Fix inclusions of allocation.inline.hpp
stefank
parents: 49177
diff changeset
    28
#include "memory/allocation.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/arguments.hpp"
49593
4dd58ecc9912 8200105: Remove cyclic dependency between oop.inline.hpp and collectedHeap.inline.hpp
stefank
parents: 49360
diff changeset
    31
#include "runtime/os.inline.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25468
diff changeset
    32
#include "runtime/vm_version.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "utilities/defaultStream.hpp"
27683
1d5707553fff 8064580: Move INCLUDE_CDS include section to the end of the include list
stefank
parents: 26135
diff changeset
    34
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "utilities/ostream.hpp"
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46560
diff changeset
    36
#include "utilities/vmError.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
49842
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
    39
// Declarations of jvm methods
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
    40
extern "C" void jio_print(const char* s, size_t len);
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
    41
extern "C" int jio_printf(const char *fmt, ...);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
outputStream::outputStream(int width) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  _indentation = 0;
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    49
  _scratch     = NULL;
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    50
  _scratch_len = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
outputStream::outputStream(int width, bool has_time_stamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _indentation = 0;
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    59
  _scratch     = NULL;
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
    60
  _scratch_len = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  if (has_time_stamps)  _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
void outputStream::update_position(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  for (size_t i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    char ch = s[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (ch == '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      _newlines += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      _precount += _position + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      _position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    } else if (ch == '\t') {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    72
      int tw = 8 - (_position & 7);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    73
      _position += tw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    74
      _precount -= tw-1;  // invariant:  _precount + _position == total count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      _position += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// Execute a vsprintf, using the given buffer if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Return a pointer to the formatted string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
const char* outputStream::do_vsnprintf(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                       const char* format, va_list ap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                                       bool add_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                       size_t& result_len) {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    87
  assert(buflen >= 2, "buffer too small");
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    88
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  const char* result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (add_cr)  buflen--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (!strchr(format, '%')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // constant format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    result = format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  } else if (format[0] == '%' && format[1] == 's' && format[2] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    // trivial copy-through format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    result = va_arg(ap, const char*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   101
  } else {
49177
eebf559c9e0d 8196882: VS2017 Hotspot Defined vsnprintf Function Causes C2084 Already Defined Compilation Error
kbarrett
parents: 48859
diff changeset
   102
    int written = os::vsnprintf(buffer, buflen, format, ap);
eebf559c9e0d 8196882: VS2017 Hotspot Defined vsnprintf Function Causes C2084 Already Defined Compilation Error
kbarrett
parents: 48859
diff changeset
   103
    assert(written >= 0, "vsnprintf encoding error");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    result = buffer;
49177
eebf559c9e0d 8196882: VS2017 Hotspot Defined vsnprintf Function Causes C2084 Already Defined Compilation Error
kbarrett
parents: 48859
diff changeset
   105
    if ((size_t)written < buflen) {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   106
      result_len = written;
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   107
    } else {
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   108
      DEBUG_ONLY(warning("increase O_BUFLEN in ostream.hpp -- output truncated");)
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   109
      result_len = buflen - 1;
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   110
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  if (add_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    if (result != buffer) {
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   114
      memcpy(buffer, result, result_len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
      result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    buffer[result_len++] = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   123
void outputStream::do_vsnprintf_and_write_with_automatic_buffer(const char* format, va_list ap, bool add_cr) {
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   124
  char buffer[O_BUFLEN];
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   125
  size_t len;
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   126
  const char* str = do_vsnprintf(buffer, sizeof(buffer), format, ap, add_cr, len);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   127
  write(str, len);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   128
}
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   129
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   130
void outputStream::do_vsnprintf_and_write_with_scratch_buffer(const char* format, va_list ap, bool add_cr) {
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   131
  size_t len;
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   132
  const char* str = do_vsnprintf(_scratch, _scratch_len, format, ap, add_cr, len);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   133
  write(str, len);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   134
}
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   135
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   136
void outputStream::do_vsnprintf_and_write(const char* format, va_list ap, bool add_cr) {
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   137
  if (_scratch) {
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   138
    do_vsnprintf_and_write_with_scratch_buffer(format, ap, add_cr);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   139
  } else {
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   140
    do_vsnprintf_and_write_with_automatic_buffer(format, ap, add_cr);
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   141
  }
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   142
}
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   143
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
void outputStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  va_start(ap, format);
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   147
  do_vsnprintf_and_write(format, ap, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
void outputStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  va_start(ap, format);
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   154
  do_vsnprintf_and_write(format, ap, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void outputStream::vprint(const char *format, va_list argptr) {
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   159
  do_vsnprintf_and_write(format, argptr, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
void outputStream::vprint_cr(const char* format, va_list argptr) {
35869
cd7df4cdaa1a 8146905: cleanup ostream, staticBufferStream
stuefe
parents: 35061
diff changeset
   163
  do_vsnprintf_and_write(format, argptr, true);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
void outputStream::fill_to(int col) {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   167
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   168
  sp(need_fill);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   169
}
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   170
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   171
void outputStream::move_to(int col, int slop, int min_space) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   172
  if (position() >= col + slop)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   173
    cr();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   174
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   175
  if (need_fill < min_space)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   176
    need_fill = min_space;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   177
  sp(need_fill);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
void outputStream::put(char ch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  assert(ch != 0, "please fix call site");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  char buf[] = { ch, '\0' };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  write(buf, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   186
#define SP_USE_TABS false
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   187
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   188
void outputStream::sp(int count) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   189
  if (count < 0)  return;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   190
  if (SP_USE_TABS && count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   191
    int target = position() + count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   192
    while (count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   193
      this->write("\t", 1);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   194
      count -= 8;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   195
    }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   196
    count = target - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   197
  }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   198
  while (count > 0) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   199
    int nw = (count > 8) ? 8 : count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   200
    this->write("        ", nw);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   201
    count -= nw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   202
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
void outputStream::cr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  this->write("\n", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49842
diff changeset
   209
void outputStream::cr_indent() {
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49842
diff changeset
   210
  cr(); indent();
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49842
diff changeset
   211
}
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49842
diff changeset
   212
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
void outputStream::stamp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  if (! _stamp.is_updated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
    _stamp.update(); // start at 0 on first call to stamp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // outputStream::stamp() may get called by ostream_abort(), use snprintf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // to avoid allocating large stack buffer in print().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  char buf[40];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  jio_snprintf(buf, sizeof(buf), "%.3f", _stamp.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  print_raw(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   225
void outputStream::stamp(bool guard,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   226
                         const char* prefix,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   227
                         const char* suffix) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   228
  if (!guard) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   229
    return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   230
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   231
  print_raw(prefix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   232
  stamp();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   233
  print_raw(suffix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   234
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   235
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
void outputStream::date_stamp(bool guard,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
                              const char* prefix,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                              const char* suffix) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  if (!guard) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  print_raw(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  static const char error_time[] = "yyyy-mm-ddThh:mm:ss.mmm+zzzz";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  static const int buffer_length = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  char buffer[buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  const char* iso8601_result = os::iso8601_time(buffer, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  if (iso8601_result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    print_raw(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    print_raw(error_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  print_raw(suffix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   256
outputStream& outputStream::indent() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  while (_position < _indentation) sp();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   258
  return *this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
void outputStream::print_jlong(jlong value) {
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13964
diff changeset
   262
  print(JLONG_FORMAT, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
void outputStream::print_julong(julong value) {
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13964
diff changeset
   266
  print(JULONG_FORMAT, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   269
/**
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   270
 * This prints out hex data in a 'windbg' or 'xxd' form, where each line is:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   271
 *   <hex-address>: 8 * <hex-halfword> <ascii translation (optional)>
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   272
 * example:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   273
 * 0000000: 7f44 4f46 0102 0102 0000 0000 0000 0000  .DOF............
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   274
 * 0000010: 0000 0000 0000 0040 0000 0020 0000 0005  .......@... ....
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   275
 * 0000020: 0000 0000 0000 0040 0000 0000 0000 015d  .......@.......]
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   276
 * ...
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   277
 *
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   278
 * indent is applied to each line.  Ends with a CR.
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   279
 */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   280
void outputStream::print_data(void* data, size_t len, bool with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   281
  size_t limit = (len + 16) / 16 * 16;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   282
  for (size_t i = 0; i < limit; ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   283
    if (i % 16 == 0) {
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 30764
diff changeset
   284
      indent().print(INTPTR_FORMAT_W(07) ":", i);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   285
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   286
    if (i % 2 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   287
      print(" ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   288
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   289
    if (i < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   290
      print("%02x", ((unsigned char*)data)[i]);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   291
    } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   292
      print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   293
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   294
    if ((i + 1) % 16 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   295
      if (with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   296
        print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   297
        for (size_t j = 0; j < 16; ++j) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   298
          size_t idx = i + j - 15;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   299
          if (idx < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   300
            char c = ((char*)data)[idx];
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   301
            print("%c", c >= 32 && c <= 126 ? c : '.');
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   302
          }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   303
        }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   304
      }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   305
      cr();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   306
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   307
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   308
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   309
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
stringStream::stringStream(size_t initial_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  buffer_length = initial_size;
54974
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   312
  buffer        = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  buffer_fixed  = false;
55236
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   315
  zero_terminate();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
// useful for output to fixed chunks of memory, such as performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
stringStream::stringStream(char* fixed_buffer, size_t fixed_buffer_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  buffer_fixed  = true;
55236
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   324
  zero_terminate();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
void stringStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  size_t write_len = len;               // number of non-null bytes to write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  size_t end = buffer_pos + len + 1;    // position after write and final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  if (end > buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      end = buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
      write_len = end - buffer_pos - 1; // leave room for the final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      }
54974
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   341
      buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // invariant: buffer is always null-terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  guarantee(buffer_pos + write_len + 1 <= buffer_length, "stringStream oob");
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   347
  if (write_len > 0) {
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   348
    memcpy(buffer + buffer_pos, s, write_len);
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   349
    buffer_pos += write_len;
55236
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   350
    zero_terminate();
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   351
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // Note that the following does not depend on write_len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // This means that position and count get updated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // even when overflow occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
55236
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   359
void stringStream::zero_terminate() {
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   360
  assert(buffer != NULL &&
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   361
         buffer_pos < buffer_length, "sanity");
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   362
  buffer[buffer_pos] = '\0';
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   363
}
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   364
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   365
void stringStream::reset() {
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   366
  buffer_pos = 0; _precount = 0; _position = 0;
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   367
  zero_terminate();
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   368
}
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   369
c87e52dbdca0 8225225: stringStream internal buffer should always be zero terminated
stuefe
parents: 55023
diff changeset
   370
char* stringStream::as_string() const {
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   371
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
54974
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   377
stringStream::~stringStream() {
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   378
  if (buffer_fixed == false && buffer != NULL) {
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   379
    FREE_C_HEAP_ARRAY(char, buffer);
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   380
  }
22961d673487 8224193: stringStream should not use Resouce Area
stuefe
parents: 53931
diff changeset
   381
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
xmlStream*   xtty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
outputStream* tty;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   385
CDS_ONLY(fileStream* classlist_file;) // Only dump the classes that can be stored into the CDS archive
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
extern Mutex* tty_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   388
#define EXTRACHARLEN   32
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   389
#define CURRENTAPPX    ".current"
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   390
// convert YYYY-MM-DD HH:MM:SS to YYYY-MM-DD_HH-MM-SS
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   391
char* get_datetime_string(char *buf, size_t len) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   392
  os::local_time_string(buf, len);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   393
  int i = (int)strlen(buf);
35936
e401b754ae09 8148005: One byte may be corrupted by get_datetime_string()
asmotrak
parents: 35897
diff changeset
   394
  while (--i >= 0) {
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   395
    if (buf[i] == ' ') buf[i] = '_';
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   396
    else if (buf[i] == ':') buf[i] = '-';
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   397
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   398
  return buf;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   399
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   400
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   401
static const char* make_log_name_internal(const char* log_name, const char* force_directory,
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   402
                                                int pid, const char* tms) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   403
  const char* basename = log_name;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   404
  char file_sep = os::file_separator()[0];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   405
  const char* cp;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   406
  char  pid_text[32];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   407
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   408
  for (cp = log_name; *cp != '\0'; cp++) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   409
    if (*cp == '/' || *cp == file_sep) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   410
      basename = cp + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   411
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   412
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   413
  const char* nametail = log_name;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   414
  // Compute buffer length
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   415
  size_t buffer_length;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   416
  if (force_directory != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   417
    buffer_length = strlen(force_directory) + strlen(os::file_separator()) +
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   418
                    strlen(basename) + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   419
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   420
    buffer_length = strlen(log_name) + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   421
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   422
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   423
  const char* pts = strstr(basename, "%p");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   424
  int pid_pos = (pts == NULL) ? -1 : (pts - nametail);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   425
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   426
  if (pid_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   427
    jio_snprintf(pid_text, sizeof(pid_text), "pid%u", pid);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   428
    buffer_length += strlen(pid_text);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   429
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   430
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   431
  pts = strstr(basename, "%t");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   432
  int tms_pos = (pts == NULL) ? -1 : (pts - nametail);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   433
  if (tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   434
    buffer_length += strlen(tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   435
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   436
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   437
  // File name is too long.
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   438
  if (buffer_length > JVM_MAXPATHLEN) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   439
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   440
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   441
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   442
  // Create big enough buffer.
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   443
  char *buf = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   444
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   445
  strcpy(buf, "");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   446
  if (force_directory != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   447
    strcat(buf, force_directory);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   448
    strcat(buf, os::file_separator());
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   449
    nametail = basename;       // completely skip directory prefix
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   450
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   451
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   452
  // who is first, %p or %t?
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   453
  int first = -1, second = -1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   454
  const char *p1st = NULL;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   455
  const char *p2nd = NULL;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   456
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   457
  if (pid_pos >= 0 && tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   458
    // contains both %p and %t
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   459
    if (pid_pos < tms_pos) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   460
      // case foo%pbar%tmonkey.log
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   461
      first  = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   462
      p1st   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   463
      second = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   464
      p2nd   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   465
    } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   466
      // case foo%tbar%pmonkey.log
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   467
      first  = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   468
      p1st   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   469
      second = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   470
      p2nd   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   471
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   472
  } else if (pid_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   473
    // contains %p only
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   474
    first  = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   475
    p1st   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   476
  } else if (tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   477
    // contains %t only
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   478
    first  = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   479
    p1st   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   480
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   481
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   482
  int buf_pos = (int)strlen(buf);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   483
  const char* tail = nametail;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   484
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   485
  if (first >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   486
    tail = nametail + first + 2;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   487
    strncpy(&buf[buf_pos], nametail, first);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   488
    strcpy(&buf[buf_pos + first], p1st);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   489
    buf_pos = (int)strlen(buf);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   490
    if (second >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   491
      strncpy(&buf[buf_pos], tail, second - first - 2);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   492
      strcpy(&buf[buf_pos + second - first - 2], p2nd);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   493
      tail = nametail + second + 2;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   494
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   495
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   496
  strcat(buf, tail);      // append rest of name, or all of name
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   497
  return buf;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   498
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   499
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34633
diff changeset
   500
// log_name comes from -XX:LogFile=log_name or
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   501
// -XX:DumpLoadedClassList=<file_name>
20691
63d27d9c8e79 8025849: Redundant "pid" in VM log file name (e.g. hotspot_pidpid12345.log)
vlivanov
parents: 20022
diff changeset
   502
// in log_name, %p => pid1234 and
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   503
//              %t => YYYY-MM-DD_HH-MM-SS
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   504
static const char* make_log_name(const char* log_name, const char* force_directory) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   505
  char timestr[32];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   506
  get_datetime_string(timestr, sizeof(timestr));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   507
  return make_log_name_internal(log_name, force_directory, os::current_process_id(),
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   508
                                timestr);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   509
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   510
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
fileStream::fileStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  _file = fopen(file_name, "w");
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   513
  if (_file != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   514
    _need_close = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   515
  } else {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 36570
diff changeset
   516
    warning("Cannot open file %s due to %s\n", file_name, os::strerror(errno));
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   517
    _need_close = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   518
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   521
fileStream::fileStream(const char* file_name, const char* opentype) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   522
  _file = fopen(file_name, opentype);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   523
  if (_file != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   524
    _need_close = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   525
  } else {
37113
5a33bf5089ac 8148425: strerror() function is not thread-safe
stuefe
parents: 36570
diff changeset
   526
    warning("Cannot open file %s due to %s\n", file_name, os::strerror(errno));
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   527
    _need_close = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   528
  }
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   529
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   530
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
void fileStream::write(const char* s, size_t len) {
1889
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   532
  if (_file != NULL)  {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   533
    // Make an unused local variable to avoid warning from gcc 4.x compiler.
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   534
    size_t count = fwrite(s, 1, len, _file);
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   535
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   539
long fileStream::fileSize() {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   540
  long size = -1;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   541
  if (_file != NULL) {
51070
2f4c3cac8556 8206977: Minor improvements of runtime code.
goetz
parents: 49980
diff changeset
   542
    long pos = ::ftell(_file);
2f4c3cac8556 8206977: Minor improvements of runtime code.
goetz
parents: 49980
diff changeset
   543
    if (pos < 0) return pos;
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   544
    if (::fseek(_file, 0, SEEK_END) == 0) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   545
      size = ::ftell(_file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   546
    }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   547
    ::fseek(_file, pos, SEEK_SET);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   548
  }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   549
  return size;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   550
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   551
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   552
char* fileStream::readln(char *data, int count ) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   553
  char * ret = ::fgets(data, count, _file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   554
  //Get rid of annoying \n char
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   555
  data[::strlen(data)-1] = '\0';
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   556
  return ret;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   557
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   558
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
fileStream::~fileStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  if (_file != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
    if (_need_close) fclose(_file);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   562
    _file      = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
void fileStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  fflush(_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
void fdStream::write(const char* s, size_t len) {
1889
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   571
  if (_fd != -1) {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   572
    // Make an unused local variable to avoid warning from gcc 4.x compiler.
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   573
    size_t count = ::write(_fd, s, (int)len);
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   574
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
defaultStream* defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
int defaultStream::_output_fd = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
int defaultStream::_error_fd  = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
FILE* defaultStream::_output_stream = stdout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
FILE* defaultStream::_error_stream  = stderr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
#define LOG_MAJOR_VERSION 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
#define LOG_MINOR_VERSION 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
void defaultStream::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
  _inited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  if (LogVMOutput || LogCompilation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
    init_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
bool defaultStream::has_log_file() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // lazily create log file (at startup, LogVMOutput is false even
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // if +LogVMOutput is used, because the flags haven't been parsed yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  // For safer printing during fatal error handling, do not init logfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  // if a VM error has been reported.
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46560
diff changeset
   599
  if (!_inited && !VMError::is_error_reported())  init();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  return _log_file != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   603
fileStream* defaultStream::open_file(const char* log_name) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   604
  const char* try_name = make_log_name(log_name, NULL);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   605
  if (try_name == NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   606
    warning("Cannot open file %s: file name is too long.\n", log_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   607
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   608
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   609
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   610
  fileStream* file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   611
  FREE_C_HEAP_ARRAY(char, try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   612
  if (file->is_open()) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   613
    return file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   614
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   615
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   616
  // Try again to open the file in the temp directory.
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   617
  delete file;
49842
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
   618
  // Note: This feature is for maintainer use only.  No need for L10N.
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
   619
  jio_printf("Warning:  Cannot open log file: %s\n", log_name);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   620
  try_name = make_log_name(log_name, os::get_temp_directory());
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   621
  if (try_name == NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   622
    warning("Cannot open file %s: file name is too long for directory %s.\n", log_name, os::get_temp_directory());
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   623
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   624
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   625
49842
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
   626
  jio_printf("Warning:  Forcing option -XX:LogFile=%s\n", try_name);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   627
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   628
  file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   629
  FREE_C_HEAP_ARRAY(char, try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   630
  if (file->is_open()) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   631
    return file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   632
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   633
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   634
  delete file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   635
  return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   636
}
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   637
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
void defaultStream::init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // %%% Need a MutexLocker?
20691
63d27d9c8e79 8025849: Redundant "pid" in VM log file name (e.g. hotspot_pidpid12345.log)
vlivanov
parents: 20022
diff changeset
   640
  const char* log_name = LogFile != NULL ? LogFile : "hotspot_%p.log";
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   641
  fileStream* file = open_file(log_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   642
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   643
  if (file != NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   644
    _log_file = file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   645
    _outer_xmlStream = new(ResourceObj::C_HEAP, mtInternal) xmlStream(file);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   646
    start_log();
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   647
  } else {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   648
    // and leave xtty as NULL
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   649
    LogVMOutput = false;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   650
    DisplayVMOutput = true;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   651
    LogCompilation = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
  }
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   653
}
20010
c66a7254680c 8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents: 18928
diff changeset
   654
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   655
void defaultStream::start_log() {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   656
  xmlStream*xs = _outer_xmlStream;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    if (this == tty)  xtty = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    // Write XML header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    xs->print_cr("<?xml version='1.0' encoding='UTF-8'?>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    // (For now, don't bother to issue a DTD for this private format.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    // we ever get round to introduce that method on the os class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    xs->head("hotspot_log version='%d %d'"
31592
43f48e165466 8081202: Hotspot compile warning: "Invalid suffix on literal; C++11 requires a space between literal and identifier"
bpittore
parents: 30764
diff changeset
   665
             " process='%d' time_ms='" INT64_FORMAT "'",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
             LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   667
             os::current_process_id(), (int64_t)time_ms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    // Write VM version header immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
    xs->head("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    xs->head("name"); xs->text("%s", VM_Version::vm_name()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    xs->tail("name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    xs->head("release"); xs->text("%s", VM_Version::vm_release()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    xs->tail("release");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    xs->head("info"); xs->text("%s", VM_Version::internal_vm_info_string()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
    xs->tail("info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
    xs->tail("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
    // Record information about the command-line invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
    xs->head("vm_arguments");  // Cf. Arguments::print_on()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    if (Arguments::num_jvm_flags() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
      xs->head("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
      Arguments::print_jvm_flags_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
      xs->tail("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    if (Arguments::num_jvm_args() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
      xs->head("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
      Arguments::print_jvm_args_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
      xs->tail("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
    if (Arguments::java_command() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
      xs->head("command"); xs->text()->print_cr("%s", Arguments::java_command());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
      xs->tail("command");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    if (Arguments::sun_java_launcher() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
      xs->head("launcher"); xs->text()->print_cr("%s", Arguments::sun_java_launcher());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      xs->tail("launcher");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
    if (Arguments::system_properties() !=  NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      xs->head("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      // Print it as a java-style property list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
      // System properties don't generally contain newlines, so don't bother with unparsing.
30251
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   701
      outputStream *text = xs->text();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
      for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35936
diff changeset
   703
        assert(p->key() != NULL, "p->key() is NULL");
40244
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   704
        if (p->is_readable()) {
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   705
          // Print in two stages to avoid problems with long
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   706
          // keys/values.
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   707
          text->print_raw(p->key());
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   708
          text->put('=');
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   709
          assert(p->value() != NULL, "p->value() is NULL");
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   710
          text->print_raw_cr(p->value());
b3055c216762 8136930: Simplify use of module-system options by custom launchers
hseigel
parents: 37466
diff changeset
   711
        }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
      xs->tail("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    xs->tail("vm_arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    // tty output per se is grouped under the <tty>...</tty> element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
    xs->head("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    // All further non-markup text gets copied to the tty:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
    xs->_text = this;  // requires friend declaration!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
// finish_log() is called during normal VM shutdown. finish_log_on_error() is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
// called by ostream_abort() after a fatal error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
void defaultStream::finish_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
  xs->done("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  CompileLog::finish_log(xs->out());  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  xs->done("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
  xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
  fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  delete _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
  file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
  delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
void defaultStream::finish_log_on_error(char *buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  if (xs && xs->out()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    xs->done_raw("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
    // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    CompileLog::finish_log_on_error(xs->out(), buf, buflen);  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
    xs->done_raw("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
    xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
    fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
    _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
    if (file) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
      // Can't delete or close the file because delete and fclose aren't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
      // async-safe. We are about to die, so leave it to the kernel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
      // delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
intx defaultStream::hold(intx writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  bool has_log = has_log_file();  // check before locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  if (// impossible, but who knows?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
      writer_id == NO_WRITER ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      // bootstrap problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
      tty_lock == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
34633
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33736
diff changeset
   780
      // can't grab a lock if current Thread isn't set
2a6c7c7b30a7 8132510: Replace ThreadLocalStorage with compiler/language-based thread-local variables
dholmes
parents: 33736
diff changeset
   781
      Thread::current_or_null() == NULL ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
      // developer hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
      !SerializeVMOutput ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
      // VM already unhealthy
46589
f1c04490ded1 8182848: Some functions misplaced in debug.hpp
coleenp
parents: 46560
diff changeset
   787
      VMError::is_error_reported() ||
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
      // safepoint == global lock (for VM only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
      (SafepointSynchronize::is_synchronizing() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
       Thread::current()->is_VM_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
    // do not attempt to lock unless we know the thread and the VM is healthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  if (_writer == writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    // already held, no need to re-grab the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  tty_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
  // got the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
  if (writer_id != _last_writer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    if (has_log) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      _log_file->bol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      // output a hint where this output is coming from:
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13476
diff changeset
   806
      _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    _last_writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  _writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  return writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
void defaultStream::release(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  if (holder == NO_WRITER) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
    // nothing to release:  either a recursive lock, or we scribbled (too bad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  if (_writer != holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
    return;  // already unlocked, perhaps via break_tty_lock_for_safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  _writer = NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  tty_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
void defaultStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  intx holder = hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
  if (DisplayVMOutput &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
      (_outer_xmlStream == NULL || !_outer_xmlStream->inside_attrs())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
    // print to output stream. It can be redirected by a vfprintf hook
49842
8c1a4628b2f0 8201649: Remove dubious call_jio_print in ostream.cpp
clanger
parents: 49726
diff changeset
   833
    jio_print(s, len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
  // print to log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
  if (has_log_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
    int nl0 = _newlines;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
    xmlTextStream::write(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
    // flush the log file too, if there were any newlines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
    if (nl0 != _newlines){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
      flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
    update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
intx ttyLocker::hold_tty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  if (defaultStream::instance == NULL)  return defaultStream::NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  return defaultStream::instance->hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
void ttyLocker::release_tty(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
  if (holder == defaultStream::NO_WRITER)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   862
bool ttyLocker::release_tty_if_locked() {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   863
  intx thread_id = os::current_thread_id();
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   864
  if (defaultStream::instance->writer() == thread_id) {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   865
    // release the lock and return true so callers know if was
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   866
    // previously held.
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   867
    release_tty(thread_id);
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   868
    return true;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   869
  }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   870
  return false;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   871
}
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   872
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
void ttyLocker::break_tty_lock_for_safepoint(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  if (defaultStream::instance != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
      defaultStream::instance->writer() == holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
    if (xtty != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
      xtty->print_cr("<!-- safepoint while printing -->");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
    defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  // (else there was no lock to break)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
void ostream_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
  if (defaultStream::instance == NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   886
    defaultStream::instance = new(ResourceObj::C_HEAP, mtInternal) defaultStream();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
    tty = defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
    // We want to ensure that time stamps in GC logs consider time 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    // the time when the JVM is initialized, not the first time we ask
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
    // for a time stamp. So, here, we explicitly update the time stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    // of tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
    tty->time_stamp().update_to(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
void ostream_init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  // Note : this must be called AFTER ostream_init()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   900
#if INCLUDE_CDS
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   901
  // For -XX:DumpLoadedClassList=<file> option
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   902
  if (DumpLoadedClassList != NULL) {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   903
    const char* list_name = make_log_name(DumpLoadedClassList, NULL);
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   904
    classlist_file = new(ResourceObj::C_HEAP, mtInternal)
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   905
                         fileStream(list_name);
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   906
    FREE_C_HEAP_ARRAY(char, list_name);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   907
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   908
#endif
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   909
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
  // If we haven't lazily initialized the logfile yet, do it now,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
  // to avoid the possibility of lazy initialization during a VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
  // crash, which can affect the stability of the fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
  defaultStream::instance->has_log_file();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
// ostream_exit() is called during normal VM exit to finish log files, flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
// output and free resource.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
void ostream_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  static bool ostream_exit_called = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  if (ostream_exit_called)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  ostream_exit_called = true;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   922
#if INCLUDE_CDS
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   923
  if (classlist_file != NULL) {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   924
    delete classlist_file;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   925
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   926
#endif
48859
5a4d08efbad9 6909265: assert(_OnDeck != Self->_MutexEvent,"invariant") with -XX:+PrintMallocFree
coleenp
parents: 47765
diff changeset
   927
  if (tty != defaultStream::instance) {
5a4d08efbad9 6909265: assert(_OnDeck != Self->_MutexEvent,"invariant") with -XX:+PrintMallocFree
coleenp
parents: 47765
diff changeset
   928
    delete tty;
5a4d08efbad9 6909265: assert(_OnDeck != Self->_MutexEvent,"invariant") with -XX:+PrintMallocFree
coleenp
parents: 47765
diff changeset
   929
  }
5a4d08efbad9 6909265: assert(_OnDeck != Self->_MutexEvent,"invariant") with -XX:+PrintMallocFree
coleenp
parents: 47765
diff changeset
   930
  if (defaultStream::instance != NULL) {
5a4d08efbad9 6909265: assert(_OnDeck != Self->_MutexEvent,"invariant") with -XX:+PrintMallocFree
coleenp
parents: 47765
diff changeset
   931
    delete defaultStream::instance;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
  xtty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
  defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
// ostream_abort() is called by os::abort() when VM is about to die.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
void ostream_abort() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 34633
diff changeset
   940
  // Here we can't delete tty, just flush its output
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  if (tty) tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    static char buf[4096];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    defaultStream::instance->finish_log_on_error(buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   949
bufferedStream::bufferedStream(size_t initial_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  buffer_length = initial_size;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   951
  buffer        = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  buffer_fixed  = false;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   954
  buffer_max    = bufmax;
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   955
  truncated     = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   958
bufferedStream::bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
  buffer_fixed  = true;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   963
  buffer_max    = bufmax;
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   964
  truncated     = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
void bufferedStream::write(const char* s, size_t len) {
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   968
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   969
  if (truncated) {
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   970
    return;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   971
  }
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   972
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   973
  if(buffer_pos + len > buffer_max) {
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   974
    flush(); // Note: may be a noop.
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   975
  }
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   976
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
  size_t end = buffer_pos + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  if (end >= buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
      len = buffer_length - buffer_pos - 1;
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   982
      truncated = true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   985
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   988
      }
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   989
      // Impose a cap beyond which the buffer cannot grow - a size which
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   990
      // in all probability indicates a real error, e.g. faulty printing
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   991
      // code looping, while not affecting cases of just-very-large-but-its-normal
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   992
      // output.
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   993
      const size_t reasonable_cap = MAX2(100 * M, buffer_max * 2);
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   994
      if (end > reasonable_cap) {
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   995
        // In debug VM, assert right away.
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   996
        assert(false, "Exceeded max buffer size for this string.");
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   997
        // Release VM: silently truncate. We do this since these kind of errors
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   998
        // are both difficult to predict with testing (depending on logging content)
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
   999
        // and usually not serious enough to kill a production VM for it.
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1000
        end = reasonable_cap;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1001
        size_t remaining = end - buffer_pos;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1002
        if (len >= remaining) {
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1003
          len = remaining - 1;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1004
          truncated = true;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1005
        }
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1006
      }
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1007
      if (buffer_length < end) {
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1008
        buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end, mtInternal);
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1009
        buffer_length = end;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1010
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  }
55023
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1013
  if (len > 0) {
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1014
    memcpy(buffer + buffer_pos, s, len);
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1015
    buffer_pos += len;
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1016
    update_position(s, len);
d56d8e40b6cd 8220394: bufferedStream does not honor size limit
stuefe
parents: 54974
diff changeset
  1017
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
char* bufferedStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
bufferedStream::~bufferedStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  if (!buffer_fixed) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1029
    FREE_C_HEAP_ARRAY(char, buffer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 18928
diff changeset
  1035
#if defined(SOLARIS) || defined(LINUX) || defined(AIX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
#include <sys/socket.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
#include <netinet/in.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
#include <arpa/inet.h>
49726
4ae63fcabe2e 8199736: Define WIN32_LEAN_AND_MEAN before including windows.h
rwestberg
parents: 49593
diff changeset
  1040
#elif defined(_WINDOWS)
4ae63fcabe2e 8199736: Define WIN32_LEAN_AND_MEAN before including windows.h
rwestberg
parents: 49593
diff changeset
  1041
#include <winsock2.h>
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
// Network access
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1045
networkStream::networkStream() : bufferedStream(1024*10, 1024*10) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1049
  int result = os::socket(AF_INET, SOCK_STREAM, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  if (result <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
    assert(false, "Socket could not be created!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
    _socket = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
int networkStream::read(char *buf, size_t len) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1058
  return os::recv(_socket, buf, (int)len, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
void networkStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
  if (size() != 0) {
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10565
diff changeset
  1063
    int result = os::raw_send(_socket, (char *)base(), size(), 0);
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1064
    assert(result != -1, "connection error");
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1065
    assert(result == (int)size(), "didn't send enough data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
networkStream::~networkStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
void networkStream::close() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  if (_socket != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
    flush();
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1077
    os::socket_close(_socket);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
bool networkStream::connect(const char *ip, short port) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
  struct sockaddr_in server;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  server.sin_family = AF_INET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  server.sin_port = htons(port);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  server.sin_addr.s_addr = inet_addr(ip);
253
cc8062372007 6679422: networkStream::connect() in ostream.cpp is not 64-bit clean
jcoomes
parents: 1
diff changeset
  1089
  if (server.sin_addr.s_addr == (uint32_t)-1) {
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1090
    struct hostent* host = os::get_host_by_name((char*)ip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
    if (host != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
      memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1099
  int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  return (result >= 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
#endif