hotspot/src/share/vm/utilities/ostream.cpp
author david
Tue, 29 Sep 2015 11:02:08 +0200
changeset 33105 294e48b4f704
parent 33097 96e348cb0442
child 33107 77bf0d2069a3
permissions -rw-r--r--
8080775: Better argument formatting for assert() and friends Reviewed-by: kbarrett, pliden
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30281
diff changeset
     2
 * Copyright (c) 1997, 2015, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "compiler/compileLog.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30281
diff changeset
    27
#include "gc/shared/gcId.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/arguments.hpp"
25468
5331df506290 8048241: Introduce umbrella header os.inline.hpp and clean up includes
goetz
parents: 25350
diff changeset
    30
#include "runtime/os.hpp"
25715
d5a8dbdc5150 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
goetz
parents: 25468
diff changeset
    31
#include "runtime/vm_version.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "utilities/defaultStream.hpp"
27683
1d5707553fff 8064580: Move INCLUDE_CDS include section to the end of the include list
stefank
parents: 26135
diff changeset
    33
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "utilities/xmlstream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
extern "C" void jio_print(const char* s); // Declarationtion of jvm method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
outputStream::outputStream(int width) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  _indentation = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
outputStream::outputStream(int width, bool has_time_stamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _indentation = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  if (has_time_stamps)  _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
void outputStream::update_position(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  for (size_t i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    char ch = s[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (ch == '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      _newlines += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      _precount += _position + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      _position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    } else if (ch == '\t') {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    65
      int tw = 8 - (_position & 7);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    66
      _position += tw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    67
      _precount -= tw-1;  // invariant:  _precount + _position == total count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      _position += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
// Execute a vsprintf, using the given buffer if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
// Return a pointer to the formatted string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
const char* outputStream::do_vsnprintf(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                       const char* format, va_list ap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                       bool add_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                       size_t& result_len) {
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    80
  assert(buflen >= 2, "buffer too small");
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    81
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  const char* result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  if (add_cr)  buflen--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  if (!strchr(format, '%')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    // constant format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    result = format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  } else if (format[0] == '%' && format[1] == 's' && format[2] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // trivial copy-through format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    result = va_arg(ap, const char*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    94
  } else {
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    95
    // Handle truncation:
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    96
    // posix: upon truncation, vsnprintf returns number of bytes which
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    97
    //   would have been written (excluding terminating zero) had the buffer
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    98
    //   been large enough
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
    99
    // windows: upon truncation, vsnprintf returns -1
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   100
    const int written = vsnprintf(buffer, buflen, format, ap);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    result = buffer;
27471
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   102
    if (written < (int) buflen && written >= 0) {
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   103
      result_len = written;
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   104
    } else {
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   105
      DEBUG_ONLY(warning("increase O_BUFLEN in ostream.hpp -- output truncated");)
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   106
      result_len = buflen - 1;
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   107
      buffer[result_len] = 0;
6e56277909f1 8062370: Various minor code improvements
goetz
parents: 26135
diff changeset
   108
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  if (add_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    if (result != buffer) {
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   112
      memcpy(buffer, result, result_len);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    buffer[result_len++] = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
void outputStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
void outputStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
void outputStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
void outputStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
void outputStream::fill_to(int col) {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   156
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   157
  sp(need_fill);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   158
}
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   159
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   160
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
   161
  if (position() >= col + slop)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   162
    cr();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   163
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   164
  if (need_fill < min_space)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   165
    need_fill = min_space;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   166
  sp(need_fill);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
void outputStream::put(char ch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  assert(ch != 0, "please fix call site");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  char buf[] = { ch, '\0' };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  write(buf, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   175
#define SP_USE_TABS false
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   176
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   177
void outputStream::sp(int count) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   178
  if (count < 0)  return;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   179
  if (SP_USE_TABS && count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   180
    int target = position() + count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   181
    while (count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   182
      this->write("\t", 1);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   183
      count -= 8;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   184
    }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   185
    count = target - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   186
  }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   187
  while (count > 0) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   188
    int nw = (count > 8) ? 8 : count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   189
    this->write("        ", nw);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   190
    count -= nw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   191
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
void outputStream::cr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  this->write("\n", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
void outputStream::stamp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  if (! _stamp.is_updated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    _stamp.update(); // start at 0 on first call to stamp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // outputStream::stamp() may get called by ostream_abort(), use snprintf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // to avoid allocating large stack buffer in print().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  char buf[40];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  jio_snprintf(buf, sizeof(buf), "%.3f", _stamp.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  print_raw(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   210
void outputStream::stamp(bool guard,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   211
                         const char* prefix,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   212
                         const char* suffix) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   213
  if (!guard) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   214
    return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   215
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   216
  print_raw(prefix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   217
  stamp();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   218
  print_raw(suffix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   219
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   220
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
void outputStream::date_stamp(bool guard,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                              const char* prefix,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
                              const char* suffix) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (!guard) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  print_raw(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static const char error_time[] = "yyyy-mm-ddThh:mm:ss.mmm+zzzz";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  static const int buffer_length = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  char buffer[buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  const char* iso8601_result = os::iso8601_time(buffer, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  if (iso8601_result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    print_raw(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
    print_raw(error_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  print_raw(suffix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
25350
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   241
void outputStream::gclog_stamp(const GCId& gc_id) {
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   242
  date_stamp(PrintGCDateStamps);
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   243
  stamp(PrintGCTimeStamps);
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   244
  if (PrintGCID) {
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   245
    print("#%u: ", gc_id.id());
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   246
  }
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   247
}
6423a57e5451 8043607: Add a GC id as a log decoration similar to PrintGCTimeStamps
brutisso
parents: 24424
diff changeset
   248
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   249
outputStream& outputStream::indent() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  while (_position < _indentation) sp();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   251
  return *this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
void outputStream::print_jlong(jlong value) {
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13964
diff changeset
   255
  print(JLONG_FORMAT, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
void outputStream::print_julong(julong value) {
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13964
diff changeset
   259
  print(JULONG_FORMAT, value);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   262
/**
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   263
 * 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
   264
 *   <hex-address>: 8 * <hex-halfword> <ascii translation (optional)>
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   265
 * example:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   266
 * 0000000: 7f44 4f46 0102 0102 0000 0000 0000 0000  .DOF............
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   267
 * 0000010: 0000 0000 0000 0040 0000 0020 0000 0005  .......@... ....
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   268
 * 0000020: 0000 0000 0000 0040 0000 0000 0000 015d  .......@.......]
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
 *
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   271
 * indent is applied to each line.  Ends with a CR.
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   272
 */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   273
void outputStream::print_data(void* data, size_t len, bool with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   274
  size_t limit = (len + 16) / 16 * 16;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   275
  for (size_t i = 0; i < limit; ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   276
    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
   277
      indent().print(INTPTR_FORMAT_W(07) ":", i);
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   278
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   279
    if (i % 2 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   280
      print(" ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   281
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   282
    if (i < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   283
      print("%02x", ((unsigned char*)data)[i]);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   284
    } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   285
      print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   286
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   287
    if ((i + 1) % 16 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   288
      if (with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   289
        print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   290
        for (size_t j = 0; j < 16; ++j) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   291
          size_t idx = i + j - 15;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   292
          if (idx < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   293
            char c = ((char*)data)[idx];
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   294
            print("%c", c >= 32 && c <= 126 ? c : '.');
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   295
          }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   296
        }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   297
      }
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   298
      cr();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   299
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   300
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   301
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   302
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
stringStream::stringStream(size_t initial_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  buffer_length = initial_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  buffer        = NEW_RESOURCE_ARRAY(char, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  buffer_fixed  = false;
18928
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 15803
diff changeset
   308
  DEBUG_ONLY(rm = Thread::current()->current_resource_mark();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
// useful for output to fixed chunks of memory, such as performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
stringStream::stringStream(char* fixed_buffer, size_t fixed_buffer_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  buffer_fixed  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
void stringStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  size_t write_len = len;               // number of non-null bytes to write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  size_t end = buffer_pos + len + 1;    // position after write and final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  if (end > buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      end = buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      write_len = end - buffer_pos - 1; // leave room for the final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
      char* oldbuf = buffer;
18928
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 15803
diff changeset
   334
      assert(rm == NULL || Thread::current()->current_resource_mark() == rm,
ac0163dd0a50 7143807: ResourceMark nesting problem in stringStream
fparain
parents: 15803
diff changeset
   335
             "stringStream is re-allocated with a different ResourceMark");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
      buffer = NEW_RESOURCE_ARRAY(char, end);
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   337
      if (buffer_pos > 0) {
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   338
        memcpy(buffer, oldbuf, buffer_pos);
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   339
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // invariant: buffer is always null-terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  guarantee(buffer_pos + write_len + 1 <= buffer_length, "stringStream oob");
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   345
  if (write_len > 0) {
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   346
    buffer[buffer_pos + write_len] = 0;
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   347
    memcpy(buffer + buffer_pos, s, write_len);
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   348
    buffer_pos += write_len;
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 30251
diff changeset
   349
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // Note that the following does not depend on write_len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // This means that position and count get updated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  // even when overflow occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
char* stringStream::as_string() {
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   358
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos + 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
stringStream::~stringStream() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
xmlStream*   xtty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
outputStream* tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
outputStream* gclog_or_tty;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   369
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
   370
extern Mutex* tty_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   372
#define EXTRACHARLEN   32
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   373
#define CURRENTAPPX    ".current"
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   374
// 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
   375
char* get_datetime_string(char *buf, size_t len) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   376
  os::local_time_string(buf, len);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   377
  int i = (int)strlen(buf);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   378
  while (i-- >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   379
    if (buf[i] == ' ') buf[i] = '_';
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   380
    else if (buf[i] == ':') buf[i] = '-';
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   381
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   382
  return buf;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   383
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   384
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   385
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
   386
                                                int pid, const char* tms) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   387
  const char* basename = log_name;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   388
  char file_sep = os::file_separator()[0];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   389
  const char* cp;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   390
  char  pid_text[32];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   391
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   392
  for (cp = log_name; *cp != '\0'; cp++) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   393
    if (*cp == '/' || *cp == file_sep) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   394
      basename = cp + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   395
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   396
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   397
  const char* nametail = log_name;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   398
  // Compute buffer length
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   399
  size_t buffer_length;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   400
  if (force_directory != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   401
    buffer_length = strlen(force_directory) + strlen(os::file_separator()) +
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   402
                    strlen(basename) + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   403
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   404
    buffer_length = strlen(log_name) + 1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   405
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   406
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   407
  const char* pts = strstr(basename, "%p");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   408
  int pid_pos = (pts == NULL) ? -1 : (pts - nametail);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   409
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   410
  if (pid_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   411
    jio_snprintf(pid_text, sizeof(pid_text), "pid%u", pid);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   412
    buffer_length += strlen(pid_text);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   413
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   414
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   415
  pts = strstr(basename, "%t");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   416
  int tms_pos = (pts == NULL) ? -1 : (pts - nametail);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   417
  if (tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   418
    buffer_length += strlen(tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   419
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   420
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   421
  // File name is too long.
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   422
  if (buffer_length > JVM_MAXPATHLEN) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   423
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   424
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   425
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   426
  // Create big enough buffer.
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   427
  char *buf = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   428
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   429
  strcpy(buf, "");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   430
  if (force_directory != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   431
    strcat(buf, force_directory);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   432
    strcat(buf, os::file_separator());
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   433
    nametail = basename;       // completely skip directory prefix
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   434
  }
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
  // who is first, %p or %t?
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   437
  int first = -1, second = -1;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   438
  const char *p1st = NULL;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   439
  const char *p2nd = NULL;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   440
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   441
  if (pid_pos >= 0 && tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   442
    // contains both %p and %t
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   443
    if (pid_pos < tms_pos) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   444
      // case foo%pbar%tmonkey.log
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   445
      first  = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   446
      p1st   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   447
      second = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   448
      p2nd   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   449
    } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   450
      // case foo%tbar%pmonkey.log
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   451
      first  = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   452
      p1st   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   453
      second = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   454
      p2nd   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   455
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   456
  } else if (pid_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   457
    // contains %p only
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   458
    first  = pid_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   459
    p1st   = pid_text;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   460
  } else if (tms_pos >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   461
    // contains %t only
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   462
    first  = tms_pos;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   463
    p1st   = tms;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   464
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   465
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   466
  int buf_pos = (int)strlen(buf);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   467
  const char* tail = nametail;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   468
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   469
  if (first >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   470
    tail = nametail + first + 2;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   471
    strncpy(&buf[buf_pos], nametail, first);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   472
    strcpy(&buf[buf_pos + first], p1st);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   473
    buf_pos = (int)strlen(buf);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   474
    if (second >= 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   475
      strncpy(&buf[buf_pos], tail, second - first - 2);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   476
      strcpy(&buf[buf_pos + second - first - 2], p2nd);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   477
      tail = nametail + second + 2;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   478
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   479
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   480
  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
   481
  return buf;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   482
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   483
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   484
// log_name comes from -XX:LogFile=log_name, -Xloggc:log_name or
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
   485
// -XX:DumpLoadedClassList=<file_name>
20691
63d27d9c8e79 8025849: Redundant "pid" in VM log file name (e.g. hotspot_pidpid12345.log)
vlivanov
parents: 20022
diff changeset
   486
// in log_name, %p => pid1234 and
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   487
//              %t => YYYY-MM-DD_HH-MM-SS
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   488
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
   489
  char timestr[32];
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   490
  get_datetime_string(timestr, sizeof(timestr));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   491
  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
   492
                                timestr);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   493
}
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
#ifndef PRODUCT
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   496
void test_loggc_filename() {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   497
  int pid;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   498
  char  tms[32];
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   499
  char  i_result[JVM_MAXPATHLEN];
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   500
  const char* o_result;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   501
  get_datetime_string(tms, sizeof(tms));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   502
  pid = os::current_process_id();
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   503
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   504
  // test.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   505
  jio_snprintf(i_result, JVM_MAXPATHLEN, "test.log", tms);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   506
  o_result = make_log_name_internal("test.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   507
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   508
  FREE_C_HEAP_ARRAY(char, o_result);
19968
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
  // test-%t-%p.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   511
  jio_snprintf(i_result, JVM_MAXPATHLEN, "test-%s-pid%u.log", tms, pid);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   512
  o_result = make_log_name_internal("test-%t-%p.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   513
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test-%%t-%%p.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   514
  FREE_C_HEAP_ARRAY(char, o_result);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   515
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   516
  // test-%t%p.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   517
  jio_snprintf(i_result, JVM_MAXPATHLEN, "test-%spid%u.log", tms, pid);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   518
  o_result = make_log_name_internal("test-%t%p.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   519
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test-%%t%%p.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   520
  FREE_C_HEAP_ARRAY(char, o_result);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   521
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   522
  // %p%t.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   523
  jio_snprintf(i_result, JVM_MAXPATHLEN, "pid%u%s.log", pid, tms);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   524
  o_result = make_log_name_internal("%p%t.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   525
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%p%%t.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   526
  FREE_C_HEAP_ARRAY(char, o_result);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   527
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   528
  // %p-test.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   529
  jio_snprintf(i_result, JVM_MAXPATHLEN, "pid%u-test.log", pid);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   530
  o_result = make_log_name_internal("%p-test.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   531
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%p-test.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   532
  FREE_C_HEAP_ARRAY(char, o_result);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   533
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   534
  // %t.log
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   535
  jio_snprintf(i_result, JVM_MAXPATHLEN, "%s.log", tms);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   536
  o_result = make_log_name_internal("%t.log", NULL, pid, tms);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   537
  assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%t.log\", NULL)");
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   538
  FREE_C_HEAP_ARRAY(char, o_result);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   539
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   540
  {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   541
    // longest filename
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   542
    char longest_name[JVM_MAXPATHLEN];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   543
    memset(longest_name, 'a', sizeof(longest_name));
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   544
    longest_name[JVM_MAXPATHLEN - 1] = '\0';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   545
    o_result = make_log_name_internal((const char*)&longest_name, NULL, pid, tms);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   546
    assert(strcmp(longest_name, o_result) == 0, "longest name does not match. expected '%s' but got '%s'", longest_name, o_result);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   547
    FREE_C_HEAP_ARRAY(char, o_result);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   548
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   549
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   550
  {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   551
    // too long file name
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   552
    char too_long_name[JVM_MAXPATHLEN + 100];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   553
    int too_long_length = sizeof(too_long_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   554
    memset(too_long_name, 'a', too_long_length);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   555
    too_long_name[too_long_length - 1] = '\0';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   556
    o_result = make_log_name_internal((const char*)&too_long_name, NULL, pid, tms);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   557
    assert(o_result == NULL, "Too long file name should return NULL, but got '%s'", o_result);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   558
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   559
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   560
  {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   561
    // too long with timestamp
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   562
    char longest_name[JVM_MAXPATHLEN];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   563
    memset(longest_name, 'a', JVM_MAXPATHLEN);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   564
    longest_name[JVM_MAXPATHLEN - 3] = '%';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   565
    longest_name[JVM_MAXPATHLEN - 2] = 't';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   566
    longest_name[JVM_MAXPATHLEN - 1] = '\0';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   567
    o_result = make_log_name_internal((const char*)&longest_name, NULL, pid, tms);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   568
    assert(o_result == NULL, "Too long file name after timestamp expansion should return NULL, but got '%s'", o_result);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   569
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   570
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   571
  {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   572
    // too long with pid
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   573
    char longest_name[JVM_MAXPATHLEN];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   574
    memset(longest_name, 'a', JVM_MAXPATHLEN);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   575
    longest_name[JVM_MAXPATHLEN - 3] = '%';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   576
    longest_name[JVM_MAXPATHLEN - 2] = 'p';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   577
    longest_name[JVM_MAXPATHLEN - 1] = '\0';
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   578
    o_result = make_log_name_internal((const char*)&longest_name, NULL, pid, tms);
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 33097
diff changeset
   579
    assert(o_result == NULL, "Too long file name after pid expansion should return NULL, but got '%s'", o_result);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   580
  }
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   581
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   582
#endif // PRODUCT
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   583
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
fileStream::fileStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  _file = fopen(file_name, "w");
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   586
  if (_file != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   587
    _need_close = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   588
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   589
    warning("Cannot open file %s due to %s\n", file_name, strerror(errno));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   590
    _need_close = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   591
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   594
fileStream::fileStream(const char* file_name, const char* opentype) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   595
  _file = fopen(file_name, opentype);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   596
  if (_file != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   597
    _need_close = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   598
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   599
    warning("Cannot open file %s due to %s\n", file_name, strerror(errno));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   600
    _need_close = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   601
  }
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   602
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   603
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
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
   605
  if (_file != NULL)  {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   606
    // 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
   607
    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
   608
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   612
long fileStream::fileSize() {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   613
  long size = -1;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   614
  if (_file != NULL) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   615
    long pos  = ::ftell(_file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   616
    if (::fseek(_file, 0, SEEK_END) == 0) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   617
      size = ::ftell(_file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   618
    }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   619
    ::fseek(_file, pos, SEEK_SET);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   620
  }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   621
  return size;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   622
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   623
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   624
char* fileStream::readln(char *data, int count ) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   625
  char * ret = ::fgets(data, count, _file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   626
  //Get rid of annoying \n char
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   627
  data[::strlen(data)-1] = '\0';
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   628
  return ret;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   629
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   630
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
fileStream::~fileStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  if (_file != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    if (_need_close) fclose(_file);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   634
    _file      = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
void fileStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  fflush(_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
fdStream::fdStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  _fd = open(file_name, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
  _need_close = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
fdStream::~fdStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
  if (_fd != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
    if (_need_close) close(_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    _fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
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
   655
  if (_fd != -1) {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   656
    // 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
   657
    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
   658
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   662
// dump vm version, os version, platform info, build id,
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   663
// memory usage and command line flags into header
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   664
void gcLogFileStream::dump_loggc_header() {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   665
  if (is_open()) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   666
    print_cr("%s", Abstract_VM_Version::internal_vm_info_string());
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   667
    os::print_memory_info(this);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   668
    print("CommandLine flags: ");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   669
    CommandLineFlags::printSetFlags(this);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   670
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   671
}
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   672
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   673
gcLogFileStream::~gcLogFileStream() {
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   674
  if (_file != NULL) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   675
    if (_need_close) fclose(_file);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   676
    _file = NULL;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   677
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   678
  if (_file_name != NULL) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
   679
    FREE_C_HEAP_ARRAY(char, _file_name);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   680
    _file_name = NULL;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   681
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   682
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   683
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   684
gcLogFileStream::gcLogFileStream(const char* file_name) {
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   685
  _cur_file_num = 0;
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   686
  _bytes_written = 0L;
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   687
  _file_name = make_log_name(file_name, NULL);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   688
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   689
  if (_file_name == NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   690
    warning("Cannot open file %s: file name is too long.\n", file_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   691
    _need_close = false;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   692
    UseGCLogFileRotation = false;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   693
    return;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   694
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   695
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   696
  // gc log file rotation
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   697
  if (UseGCLogFileRotation && NumberOfGCLogFiles > 1) {
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   698
    char tempbuf[JVM_MAXPATHLEN];
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   699
    jio_snprintf(tempbuf, sizeof(tempbuf), "%s.%d" CURRENTAPPX, _file_name, _cur_file_num);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   700
    _file = fopen(tempbuf, "w");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   701
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   702
    _file = fopen(_file_name, "w");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   703
  }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   704
  if (_file != NULL) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   705
    _need_close = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   706
    dump_loggc_header();
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   707
  } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   708
    warning("Cannot open file %s due to %s\n", _file_name, strerror(errno));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   709
    _need_close = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   710
  }
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   711
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   712
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   713
void gcLogFileStream::write(const char* s, size_t len) {
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   714
  if (_file != NULL) {
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   715
    size_t count = fwrite(s, 1, len, _file);
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   716
    _bytes_written += count;
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   717
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   718
  update_position(s, len);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   719
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   720
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   721
// rotate_log must be called from VMThread at safepoint. In case need change parameters
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   722
// for gc log rotation from thread other than VMThread, a sub type of VM_Operation
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   723
// should be created and be submitted to VMThread's operation queue. DO NOT call this
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   724
// function directly. Currently, it is safe to rotate log at safepoint through VMThread.
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   725
// That is, no mutator threads and concurrent GC threads run parallel with VMThread to
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   726
// write to gc log file at safepoint. If in future, changes made for mutator threads or
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   727
// concurrent GC threads to run parallel with VMThread at safepoint, write and rotate_log
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   728
// must be synchronized.
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   729
void gcLogFileStream::rotate_log(bool force, outputStream* out) {
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   730
  char time_msg[O_BUFLEN];
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   731
  char time_str[EXTRACHARLEN];
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   732
  char current_file_name[JVM_MAXPATHLEN];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   733
  char renamed_file_name[JVM_MAXPATHLEN];
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   734
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   735
  if (!should_rotate(force)) {
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   736
    return;
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   737
  }
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   738
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   739
#ifdef ASSERT
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   740
  Thread *thread = Thread::current();
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   741
  assert(thread == NULL ||
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   742
         (thread->is_VM_thread() && SafepointSynchronize::is_at_safepoint()),
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   743
         "Must be VMThread at safepoint");
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   744
#endif
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   745
  if (NumberOfGCLogFiles == 1) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   746
    // rotate in same file
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   747
    rewind();
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   748
    _bytes_written = 0L;
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   749
    jio_snprintf(time_msg, sizeof(time_msg), "File  %s rotated at %s\n",
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   750
                 _file_name, os::local_time_string((char *)time_str, sizeof(time_str)));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   751
    write(time_msg, strlen(time_msg));
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   752
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   753
    if (out != NULL) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   754
      out->print("%s", time_msg);
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   755
    }
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   756
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   757
    dump_loggc_header();
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   758
    return;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   759
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   760
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   761
#if defined(_WINDOWS)
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   762
#ifndef F_OK
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   763
#define F_OK 0
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   764
#endif
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   765
#endif // _WINDOWS
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   766
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   767
  // rotate file in names extended_filename.0, extended_filename.1, ...,
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   768
  // extended_filename.<NumberOfGCLogFiles - 1>. Current rotation file name will
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   769
  // have a form of extended_filename.<i>.current where i is the current rotation
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   770
  // file number. After it reaches max file size, the file will be saved and renamed
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   771
  // with .current removed from its tail.
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   772
  if (_file != NULL) {
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   773
    jio_snprintf(renamed_file_name, JVM_MAXPATHLEN, "%s.%d",
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   774
                 _file_name, _cur_file_num);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   775
    int result = jio_snprintf(current_file_name, JVM_MAXPATHLEN,
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   776
                              "%s.%d" CURRENTAPPX, _file_name, _cur_file_num);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   777
    if (result >= JVM_MAXPATHLEN) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   778
      warning("Cannot create new log file name: %s: file name is too long.\n", current_file_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   779
      return;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   780
    }
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   781
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   782
    const char* msg = force ? "GC log rotation request has been received."
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   783
                            : "GC log file has reached the maximum size.";
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   784
    jio_snprintf(time_msg, sizeof(time_msg), "%s %s Saved as %s\n",
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   785
                     os::local_time_string((char *)time_str, sizeof(time_str)),
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   786
                                                         msg, renamed_file_name);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   787
    write(time_msg, strlen(time_msg));
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   788
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   789
    if (out != NULL) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   790
      out->print("%s", time_msg);
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   791
    }
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   792
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   793
    fclose(_file);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   794
    _file = NULL;
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   795
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   796
    bool can_rename = true;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   797
    if (access(current_file_name, F_OK) != 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   798
      // current file does not exist?
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   799
      warning("No source file exists, cannot rename\n");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   800
      can_rename = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   801
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   802
    if (can_rename) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   803
      if (access(renamed_file_name, F_OK) == 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   804
        if (remove(renamed_file_name) != 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   805
          warning("Could not delete existing file %s\n", renamed_file_name);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   806
          can_rename = false;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   807
        }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   808
      } else {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   809
        // file does not exist, ok to rename
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   810
      }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   811
    }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   812
    if (can_rename && rename(current_file_name, renamed_file_name) != 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   813
      warning("Could not rename %s to %s\n", _file_name, renamed_file_name);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   814
    }
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   815
  }
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   816
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   817
  _cur_file_num++;
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   818
  if (_cur_file_num > NumberOfGCLogFiles - 1) _cur_file_num = 0;
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   819
  int result = jio_snprintf(current_file_name,  JVM_MAXPATHLEN, "%s.%d" CURRENTAPPX,
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   820
               _file_name, _cur_file_num);
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   821
  if (result >= JVM_MAXPATHLEN) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   822
    warning("Cannot create new log file name: %s: file name is too long.\n", current_file_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   823
    return;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   824
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   825
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   826
  _file = fopen(current_file_name, "w");
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   827
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   828
  if (_file != NULL) {
15803
9328492899cc 8008314: Unimplemented() Atomic::load breaks the applications
jwilhelm
parents: 15228
diff changeset
   829
    _bytes_written = 0L;
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   830
    _need_close = true;
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   831
    // reuse current_file_name for time_msg
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   832
    jio_snprintf(current_file_name, JVM_MAXPATHLEN,
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   833
                 "%s.%d", _file_name, _cur_file_num);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   834
    jio_snprintf(time_msg, sizeof(time_msg), "%s GC log file created %s\n",
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   835
                 os::local_time_string((char *)time_str, sizeof(time_str)), current_file_name);
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   836
    write(time_msg, strlen(time_msg));
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   837
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   838
    if (out != NULL) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   839
      out->print("%s", time_msg);
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   840
    }
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 22838
diff changeset
   841
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   842
    dump_loggc_header();
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   843
    // remove the existing file
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   844
    if (access(current_file_name, F_OK) == 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   845
      if (remove(current_file_name) != 0) {
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   846
        warning("Could not delete existing file %s\n", current_file_name);
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   847
      }
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   848
    }
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   849
  } else {
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   850
    warning("failed to open rotation log file %s due to %s\n"
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   851
            "Turned off GC log file rotation\n",
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   852
                  _file_name, strerror(errno));
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   853
    _need_close = false;
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
   854
    FLAG_SET_DEFAULT(UseGCLogFileRotation, false);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   855
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   856
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   857
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
defaultStream* defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
int defaultStream::_output_fd = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
int defaultStream::_error_fd  = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
FILE* defaultStream::_output_stream = stdout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
FILE* defaultStream::_error_stream  = stderr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
#define LOG_MAJOR_VERSION 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
#define LOG_MINOR_VERSION 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
void defaultStream::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  _inited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  if (LogVMOutput || LogCompilation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
    init_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
bool defaultStream::has_log_file() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  // lazily create log file (at startup, LogVMOutput is false even
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  // if +LogVMOutput is used, because the flags haven't been parsed yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
  // For safer printing during fatal error handling, do not init logfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
  // if a VM error has been reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  if (!_inited && !is_error_reported())  init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  return _log_file != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   883
fileStream* defaultStream::open_file(const char* log_name) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   884
  const char* try_name = make_log_name(log_name, NULL);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   885
  if (try_name == NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   886
    warning("Cannot open file %s: file name is too long.\n", log_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   887
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   888
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   889
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   890
  fileStream* file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   891
  FREE_C_HEAP_ARRAY(char, try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   892
  if (file->is_open()) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   893
    return file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   894
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   895
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   896
  // Try again to open the file in the temp directory.
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   897
  delete file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   898
  char warnbuf[O_BUFLEN*2];
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   899
  jio_snprintf(warnbuf, sizeof(warnbuf), "Warning:  Cannot open log file: %s\n", log_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   900
  // Note:  This feature is for maintainer use only.  No need for L10N.
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   901
  jio_print(warnbuf);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   902
  try_name = make_log_name(log_name, os::get_temp_directory());
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   903
  if (try_name == NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   904
    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
   905
    return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   906
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   907
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   908
  jio_snprintf(warnbuf, sizeof(warnbuf),
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   909
               "Warning:  Forcing option -XX:LogFile=%s\n", try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   910
  jio_print(warnbuf);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   911
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   912
  file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   913
  FREE_C_HEAP_ARRAY(char, try_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   914
  if (file->is_open()) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   915
    return file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   916
  }
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   917
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   918
  delete file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   919
  return NULL;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   920
}
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   921
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
void defaultStream::init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
  // %%% Need a MutexLocker?
20691
63d27d9c8e79 8025849: Redundant "pid" in VM log file name (e.g. hotspot_pidpid12345.log)
vlivanov
parents: 20022
diff changeset
   924
  const char* log_name = LogFile != NULL ? LogFile : "hotspot_%p.log";
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   925
  fileStream* file = open_file(log_name);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   926
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   927
  if (file != NULL) {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   928
    _log_file = file;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   929
    _outer_xmlStream = new(ResourceObj::C_HEAP, mtInternal) xmlStream(file);
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   930
    start_log();
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   931
  } else {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   932
    // and leave xtty as NULL
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   933
    LogVMOutput = false;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   934
    DisplayVMOutput = true;
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   935
    LogCompilation = false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
  }
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   937
}
20010
c66a7254680c 8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents: 18928
diff changeset
   938
28509
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   939
void defaultStream::start_log() {
56efbcb555fb 8049253: Better GC validation
brutisso
parents: 27883
diff changeset
   940
  xmlStream*xs = _outer_xmlStream;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
    if (this == tty)  xtty = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
    // Write XML header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
    xs->print_cr("<?xml version='1.0' encoding='UTF-8'?>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
    // (For now, don't bother to issue a DTD for this private format.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
    jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
    // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
    // we ever get round to introduce that method on the os class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
    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
   949
             " process='%d' time_ms='" INT64_FORMAT "'",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
             LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23517
diff changeset
   951
             os::current_process_id(), (int64_t)time_ms);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
    // Write VM version header immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
    xs->head("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
    xs->head("name"); xs->text("%s", VM_Version::vm_name()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
    xs->tail("name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
    xs->head("release"); xs->text("%s", VM_Version::vm_release()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
    xs->tail("release");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
    xs->head("info"); xs->text("%s", VM_Version::internal_vm_info_string()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
    xs->tail("info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
    xs->tail("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
    // Record information about the command-line invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
    xs->head("vm_arguments");  // Cf. Arguments::print_on()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
    if (Arguments::num_jvm_flags() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
      xs->head("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
      Arguments::print_jvm_flags_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
      xs->tail("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
    if (Arguments::num_jvm_args() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
      xs->head("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
      Arguments::print_jvm_args_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
      xs->tail("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
    if (Arguments::java_command() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
      xs->head("command"); xs->text()->print_cr("%s", Arguments::java_command());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
      xs->tail("command");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
    if (Arguments::sun_java_launcher() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
      xs->head("launcher"); xs->text()->print_cr("%s", Arguments::sun_java_launcher());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
      xs->tail("launcher");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
    if (Arguments::system_properties() !=  NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
      xs->head("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   983
      // Print it as a java-style property list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
      // 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
   985
      outputStream *text = xs->text();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
      for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
30251
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   987
        // Print in two stages to avoid problems with long
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   988
        // keys/values.
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   989
        text->print_raw(p->key());
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   990
        text->put('=');
9b05c9cc4698 8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
dholmes
parents: 28509
diff changeset
   991
        text->print_raw_cr(p->value());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
      xs->tail("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
    xs->tail("vm_arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   996
    // tty output per se is grouped under the <tty>...</tty> element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
    xs->head("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
    // All further non-markup text gets copied to the tty:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
    xs->_text = this;  // requires friend declaration!
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1000
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1001
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1002
// finish_log() is called during normal VM shutdown. finish_log_on_error() is
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
// called by ostream_abort() after a fatal error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1004
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
void defaultStream::finish_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
  xs->done("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
  // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  CompileLog::finish_log(xs->out());  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
  xs->done("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
  xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
  fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
  _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
  delete _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
void defaultStream::finish_log_on_error(char *buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  if (xs && xs->out()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
    xs->done_raw("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
    // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
    CompileLog::finish_log_on_error(xs->out(), buf, buflen);  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
    xs->done_raw("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
    xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
    fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
    _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
    _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    if (file) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
      file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
      // Can't delete or close the file because delete and fclose aren't
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
      // async-safe. We are about to die, so leave it to the kernel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
      // delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
intx defaultStream::hold(intx writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  bool has_log = has_log_file();  // check before locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
  if (// impossible, but who knows?
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
      writer_id == NO_WRITER ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
      // bootstrap problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
      tty_lock == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
      // can't grab a lock or call Thread::current() if TLS isn't initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
      ThreadLocalStorage::thread() == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
      // developer hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
      !SerializeVMOutput ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
      // VM already unhealthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
      is_error_reported() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
      // safepoint == global lock (for VM only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
      (SafepointSynchronize::is_synchronizing() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
       Thread::current()->is_VM_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
    // do not attempt to lock unless we know the thread and the VM is healthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  if (_writer == writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
    // already held, no need to re-grab the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
  tty_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  // got the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  if (writer_id != _last_writer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
    if (has_log) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
      _log_file->bol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
      // output a hint where this output is coming from:
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13476
diff changeset
  1086
      _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
    _last_writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
  _writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  return writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1092
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
void defaultStream::release(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
  if (holder == NO_WRITER) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    // nothing to release:  either a recursive lock, or we scribbled (too bad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  if (_writer != holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
    return;  // already unlocked, perhaps via break_tty_lock_for_safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  _writer = NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  tty_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
// Yuck:  jio_print does not accept char*/len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
static void call_jio_print(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  char buffer[O_BUFLEN+100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
  if (len > sizeof(buffer)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
    warning("increase O_BUFLEN in ostream.cpp -- output truncated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
    len = sizeof(buffer)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
  strncpy(buffer, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
  buffer[len] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1116
  jio_print(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
void defaultStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  intx holder = hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  if (DisplayVMOutput &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
      (_outer_xmlStream == NULL || !_outer_xmlStream->inside_attrs())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
    // print to output stream. It can be redirected by a vfprintf hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
    if (s[len] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1128
      jio_print(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
      call_jio_print(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1131
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1134
  // print to log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
  if (has_log_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1136
    int nl0 = _newlines;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
    xmlTextStream::write(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
    // flush the log file too, if there were any newlines
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
    if (nl0 != _newlines){
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
      flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1142
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
    update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
intx ttyLocker::hold_tty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
  if (defaultStream::instance == NULL)  return defaultStream::NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
  return defaultStream::instance->hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
void ttyLocker::release_tty(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
  if (holder == defaultStream::NO_WRITER)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
  defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1160
bool ttyLocker::release_tty_if_locked() {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1161
  intx thread_id = os::current_thread_id();
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1162
  if (defaultStream::instance->writer() == thread_id) {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1163
    // 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
  1164
    // previously held.
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1165
    release_tty(thread_id);
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1166
    return true;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1167
  }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1168
  return false;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1169
}
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
  1170
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
void ttyLocker::break_tty_lock_for_safepoint(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  if (defaultStream::instance != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
      defaultStream::instance->writer() == holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
    if (xtty != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
      xtty->print_cr("<!-- safepoint while printing -->");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
    defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
  // (else there was no lock to break)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1181
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
void ostream_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1183
  if (defaultStream::instance == NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
  1184
    defaultStream::instance = new(ResourceObj::C_HEAP, mtInternal) defaultStream();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
    tty = defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1187
    // We want to ensure that time stamps in GC logs consider time 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1188
    // the time when the JVM is initialized, not the first time we ask
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    // for a time stamp. So, here, we explicitly update the time stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1190
    // of tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    tty->time_stamp().update_to(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
void ostream_init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
  // For -Xloggc:<file> option - called in runtime/thread.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
  // Note : this must be called AFTER ostream_init()
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
  gclog_or_tty = tty; // default to tty
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
  if (Arguments::gc_log_filename() != NULL) {
19968
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
  1201
    fileStream * gclog  = new(ResourceObj::C_HEAP, mtInternal)
64f9d23af647 7164841: Improvements to the GC log file rotation
minqi
parents: 18928
diff changeset
  1202
                             gcLogFileStream(Arguments::gc_log_filename());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
    if (gclog->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1204
      // now we update the time stamp of the GC log to be synced up
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1205
      // with tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
      gclog->time_stamp().update_to(tty->time_stamp().ticks());
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
    }
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
  1208
    gclog_or_tty = gclog;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1211
#if INCLUDE_CDS
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1212
  // For -XX:DumpLoadedClassList=<file> option
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1213
  if (DumpLoadedClassList != NULL) {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1214
    const char* list_name = make_log_name(DumpLoadedClassList, NULL);
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1215
    classlist_file = new(ResourceObj::C_HEAP, mtInternal)
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1216
                         fileStream(list_name);
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1217
    FREE_C_HEAP_ARRAY(char, list_name);
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1218
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1219
#endif
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1220
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
  // If we haven't lazily initialized the logfile yet, do it now,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
  // to avoid the possibility of lazy initialization during a VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
  // crash, which can affect the stability of the fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
  defaultStream::instance->has_log_file();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
// ostream_exit() is called during normal VM exit to finish log files, flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
// output and free resource.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
void ostream_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
  static bool ostream_exit_called = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  if (ostream_exit_called)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
  ostream_exit_called = true;
26135
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1233
#if INCLUDE_CDS
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1234
  if (classlist_file != NULL) {
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1235
    delete classlist_file;
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1236
  }
82b516c550f7 8046070: Class Data Sharing clean up and refactoring
iklam
parents: 25715
diff changeset
  1237
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
  if (gclog_or_tty != tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
      delete gclog_or_tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
      // we temporaly disable PrintMallocFree here
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      // as otherwise it'll lead to using of almost deleted
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
      // tty or defaultStream::instance in logging facility
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
      // of HeapFree(), see 6391258
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      DEBUG_ONLY(FlagSetting fs(PrintMallocFree, false);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
      if (tty != defaultStream::instance) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
          delete tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
      if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
          delete defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
  tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
  xtty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
  gclog_or_tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
  defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
// ostream_abort() is called by os::abort() when VM is about to die.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
void ostream_abort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
  // Here we can't delete gclog_or_tty and tty, just flush their output
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
  if (gclog_or_tty) gclog_or_tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
  if (tty) tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
  if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
    static char buf[4096];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
    defaultStream::instance->finish_log_on_error(buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
staticBufferStream::staticBufferStream(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
                                       outputStream *outer_stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
  _buffer = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
  _buflen = buflen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
  _outer_stream = outer_stream;
8887
1e9e60a225a6 7032849: 7022998 changes broke hs_err compile task print
kvn
parents: 8867
diff changeset
  1277
  // compile task prints time stamp relative to VM start
1e9e60a225a6 7032849: 7022998 changes broke hs_err compile task print
kvn
parents: 8867
diff changeset
  1278
  _stamp.update_to(1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
void staticBufferStream::write(const char* c, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
  _outer_stream->print_raw(c, (int)len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
void staticBufferStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
  _outer_stream->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
void staticBufferStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
void staticBufferStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
void staticBufferStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
void staticBufferStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1319
bufferedStream::bufferedStream(size_t initial_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
  buffer_length = initial_size;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
  1321
  buffer        = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
  buffer_fixed  = false;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1324
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1327
bufferedStream::bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
  buffer_fixed  = true;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1332
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1335
void bufferedStream::write(const char* s, size_t len) {
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1336
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1337
  if(buffer_pos + len > buffer_max) {
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1338
    flush();
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1339
  }
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1340
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1341
  size_t end = buffer_pos + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
  if (end >= buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
      len = buffer_length - buffer_pos - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
      }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
  1352
      buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
  memcpy(buffer + buffer_pos, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  buffer_pos += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1360
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
char* bufferedStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1362
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
bufferedStream::~bufferedStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  if (!buffer_fixed) {
27880
afb974a04396 8060074: os::free() takes MemoryTrackingLevel but doesn't need it
coleenp
parents: 27471
diff changeset
  1370
    FREE_C_HEAP_ARRAY(char, buffer);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
22827
07d991d45a51 8023033: PPC64 (part 13): basic changes for AIX
goetz
parents: 18928
diff changeset
  1376
#if defined(SOLARIS) || defined(LINUX) || defined(AIX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
#include <sys/socket.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
#include <netinet/in.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
#include <arpa/inet.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
// Network access
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1384
networkStream::networkStream() : bufferedStream(1024*10, 1024*10) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
  _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1388
  int result = os::socket(AF_INET, SOCK_STREAM, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
  if (result <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
    assert(false, "Socket could not be created!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    _socket = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1393
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1394
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
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
  1397
  return os::recv(_socket, buf, (int)len, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
void networkStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
  if (size() != 0) {
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10565
diff changeset
  1402
    int result = os::raw_send(_socket, (char *)base(), size(), 0);
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1403
    assert(result != -1, "connection error");
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1404
    assert(result == (int)size(), "didn't send enough data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
networkStream::~networkStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
void networkStream::close() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
  if (_socket != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1415
    flush();
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1416
    os::socket_close(_socket);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
    _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1421
bool networkStream::connect(const char *ip, short port) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1422
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
  struct sockaddr_in server;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
  server.sin_family = AF_INET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
  server.sin_port = htons(port);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1426
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1427
  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
  1428
  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
  1429
    struct hostent* host = os::get_host_by_name((char*)ip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
    if (host != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1431
      memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1437
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1438
  int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1439
  return (result >= 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
#endif
33097
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1443
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1444
void logStream::write(const char* s, size_t len) {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1445
  if (len > 0 && s[len - 1] == '\n') {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1446
    _current_line.write(s, len - 1);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1447
    _log_func(_current_line.as_string());
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1448
    _current_line.reset();
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1449
  } else {
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1450
    _current_line.write(s, len);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1451
    update_position(s, len);
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1452
  }
96e348cb0442 8046148: JEP 158: Unified JVM Logging
mlarsson
parents: 31592
diff changeset
  1453
}