hotspot/src/share/vm/utilities/ostream.cpp
author vlivanov
Fri, 05 Oct 2012 18:57:10 -0700
changeset 13964 01a2b863cc61
parent 13476 471200fb94fd
child 15228 e92acc84ade3
permissions -rw-r--r--
7177003: C1: LogCompilation support Summary: add LogCompilation support in C1 - both client and tiered mode. Reviewed-by: twisti, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
     2
 * Copyright (c) 1997, 2012, 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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "utilities/defaultStream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "utilities/xmlstream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#ifdef TARGET_OS_FAMILY_linux
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
# include "os_linux.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#ifdef TARGET_OS_FAMILY_solaris
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
# include "os_solaris.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#endif
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    39
#ifdef TARGET_OS_FAMILY_windows
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    40
# include "os_windows.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    41
#endif
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9990
diff changeset
    42
#ifdef TARGET_OS_FAMILY_bsd
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9990
diff changeset
    43
# include "os_bsd.inline.hpp"
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9990
diff changeset
    44
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
extern "C" void jio_print(const char* s); // Declarationtion of jvm method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
outputStream::outputStream(int width) {
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
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
outputStream::outputStream(int width, bool has_time_stamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  _indentation = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  if (has_time_stamps)  _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
void outputStream::update_position(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  for (size_t i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    char ch = s[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    if (ch == '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
      _newlines += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      _precount += _position + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      _position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    } else if (ch == '\t') {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    73
      int tw = 8 - (_position & 7);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    74
      _position += tw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    75
      _precount -= tw-1;  // invariant:  _precount + _position == total count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      _position += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
// Execute a vsprintf, using the given buffer if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
// Return a pointer to the formatted string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
const char* outputStream::do_vsnprintf(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                                       const char* format, va_list ap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                       bool add_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                       size_t& result_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  const char* result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (add_cr)  buflen--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  if (!strchr(format, '%')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // constant format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    result = format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  } else if (format[0] == '%' && format[1] == 's' && format[2] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    // trivial copy-through format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    result = va_arg(ap, const char*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  } else if (vsnprintf(buffer, buflen, format, ap) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    DEBUG_ONLY(warning("increase O_BUFLEN in ostream.hpp -- output truncated");)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    result_len = buflen - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  if (add_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    if (result != buffer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      strncpy(buffer, result, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    buffer[result_len++] = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
void outputStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
void outputStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
void outputStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
void outputStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
void outputStream::fill_to(int col) {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   155
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   156
  sp(need_fill);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   157
}
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
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
   160
  if (position() >= col + slop)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   161
    cr();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   162
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   163
  if (need_fill < min_space)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   164
    need_fill = min_space;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   165
  sp(need_fill);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
void outputStream::put(char ch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  assert(ch != 0, "please fix call site");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  char buf[] = { ch, '\0' };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  write(buf, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   174
#define SP_USE_TABS false
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   175
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   176
void outputStream::sp(int count) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   177
  if (count < 0)  return;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   178
  if (SP_USE_TABS && count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   179
    int target = position() + count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   180
    while (count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   181
      this->write("\t", 1);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   182
      count -= 8;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   183
    }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   184
    count = target - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   185
  }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   186
  while (count > 0) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   187
    int nw = (count > 8) ? 8 : count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   188
    this->write("        ", nw);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   189
    count -= nw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   190
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
void outputStream::cr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  this->write("\n", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
void outputStream::stamp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  if (! _stamp.is_updated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    _stamp.update(); // start at 0 on first call to stamp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // outputStream::stamp() may get called by ostream_abort(), use snprintf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // to avoid allocating large stack buffer in print().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  char buf[40];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  jio_snprintf(buf, sizeof(buf), "%.3f", _stamp.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  print_raw(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   209
void outputStream::stamp(bool guard,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   210
                         const char* prefix,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   211
                         const char* suffix) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   212
  if (!guard) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   213
    return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   214
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   215
  print_raw(prefix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   216
  stamp();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   217
  print_raw(suffix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   218
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   219
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
void outputStream::date_stamp(bool guard,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
                              const char* prefix,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
                              const char* suffix) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  if (!guard) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  print_raw(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  static const char error_time[] = "yyyy-mm-ddThh:mm:ss.mmm+zzzz";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  static const int buffer_length = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  char buffer[buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  const char* iso8601_result = os::iso8601_time(buffer, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  if (iso8601_result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
    print_raw(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    print_raw(error_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  print_raw(suffix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   240
outputStream& outputStream::indent() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  while (_position < _indentation) sp();
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   242
  return *this;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
void outputStream::print_jlong(jlong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // N.B. Same as INT64_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  print(os::jlong_format_specifier(), value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
void outputStream::print_julong(julong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // N.B. Same as UINT64_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  print(os::julong_format_specifier(), value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
13476
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   255
/**
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   256
 * 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
   257
 *   <hex-address>: 8 * <hex-halfword> <ascii translation (optional)>
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   258
 * example:
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   259
 * 0000000: 7f44 4f46 0102 0102 0000 0000 0000 0000  .DOF............
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   260
 * 0000010: 0000 0000 0000 0040 0000 0020 0000 0005  .......@... ....
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   261
 * 0000020: 0000 0000 0000 0040 0000 0000 0000 015d  .......@.......]
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
 *
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   264
 * indent is applied to each line.  Ends with a CR.
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   265
 */
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   266
void outputStream::print_data(void* data, size_t len, bool with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   267
  size_t limit = (len + 16) / 16 * 16;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   268
  for (size_t i = 0; i < limit; ++i) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   269
    if (i % 16 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   270
      indent().print("%07x:", i);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   271
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   272
    if (i % 2 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   273
      print(" ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   274
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   275
    if (i < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   276
      print("%02x", ((unsigned char*)data)[i]);
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   277
    } else {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   278
      print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   279
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   280
    if ((i + 1) % 16 == 0) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   281
      if (with_ascii) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   282
        print("  ");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   283
        for (size_t j = 0; j < 16; ++j) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   284
          size_t idx = i + j - 15;
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   285
          if (idx < len) {
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   286
            char c = ((char*)data)[idx];
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   287
            print("%c", c >= 32 && c <= 126 ? c : '.');
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   288
          }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   289
        }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   290
      }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   291
      print_cr("");
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   292
    }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   293
  }
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   294
}
471200fb94fd 7116786: RFE: Detailed information on VerifyErrors
kamg
parents: 13195
diff changeset
   295
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
stringStream::stringStream(size_t initial_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  buffer_length = initial_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  buffer        = NEW_RESOURCE_ARRAY(char, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  buffer_fixed  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
// useful for output to fixed chunks of memory, such as performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
stringStream::stringStream(char* fixed_buffer, size_t fixed_buffer_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  buffer_fixed  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
void stringStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  size_t write_len = len;               // number of non-null bytes to write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  size_t end = buffer_pos + len + 1;    // position after write and final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  if (end > buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
      end = buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
      write_len = end - buffer_pos - 1; // leave room for the final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
      char* oldbuf = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
      buffer = NEW_RESOURCE_ARRAY(char, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
      strncpy(buffer, oldbuf, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // invariant: buffer is always null-terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  guarantee(buffer_pos + write_len + 1 <= buffer_length, "stringStream oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  buffer[buffer_pos + write_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  strncpy(buffer + buffer_pos, s, write_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  buffer_pos += write_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // Note that the following does not depend on write_len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // This means that position and count get updated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // even when overflow occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
char* stringStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
stringStream::~stringStream() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
xmlStream*   xtty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
outputStream* tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
outputStream* gclog_or_tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
extern Mutex* tty_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
fileStream::fileStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  _file = fopen(file_name, "w");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  _need_close = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   362
fileStream::fileStream(const char* file_name, const char* opentype) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   363
  _file = fopen(file_name, opentype);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   364
  _need_close = true;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   365
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   366
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
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
   368
  if (_file != NULL)  {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   369
    // 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
   370
    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
   371
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
8114
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   375
long fileStream::fileSize() {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   376
  long size = -1;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   377
  if (_file != NULL) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   378
    long pos  = ::ftell(_file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   379
    if (::fseek(_file, 0, SEEK_END) == 0) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   380
      size = ::ftell(_file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   381
    }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   382
    ::fseek(_file, pos, SEEK_SET);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   383
  }
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   384
  return size;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   385
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   386
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   387
char* fileStream::readln(char *data, int count ) {
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   388
  char * ret = ::fgets(data, count, _file);
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   389
  //Get rid of annoying \n char
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   390
  data[::strlen(data)-1] = '\0';
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   391
  return ret;
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   392
}
340b5b8b544b 7003401: Implement VM error-reporting functionality on erroneous termination
kamg
parents: 7405
diff changeset
   393
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
fileStream::~fileStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  if (_file != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    if (_need_close) fclose(_file);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   397
    _file      = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
void fileStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  fflush(_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
fdStream::fdStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  _fd = open(file_name, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  _need_close = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
fdStream::~fdStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  if (_fd != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    if (_need_close) close(_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    _fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
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
   418
  if (_fd != -1) {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   419
    // 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
   420
    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
   421
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   425
rotatingFileStream::~rotatingFileStream() {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   426
  if (_file != NULL) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   427
    if (_need_close) fclose(_file);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   428
    _file      = NULL;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   429
    FREE_C_HEAP_ARRAY(char, _file_name, mtInternal);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   430
    _file_name = NULL;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   431
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   432
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   433
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   434
rotatingFileStream::rotatingFileStream(const char* file_name) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   435
  _cur_file_num = 0;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   436
  _bytes_writen = 0L;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   437
  _file_name = NEW_C_HEAP_ARRAY(char, strlen(file_name)+10, mtInternal);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   438
  jio_snprintf(_file_name, strlen(file_name)+10, "%s.%d", file_name, _cur_file_num);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   439
  _file = fopen(_file_name, "w");
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   440
  _need_close = true;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   441
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   442
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   443
rotatingFileStream::rotatingFileStream(const char* file_name, const char* opentype) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   444
  _cur_file_num = 0;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   445
  _bytes_writen = 0L;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   446
  _file_name = NEW_C_HEAP_ARRAY(char, strlen(file_name)+10, mtInternal);
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   447
  jio_snprintf(_file_name, strlen(file_name)+10, "%s.%d", file_name, _cur_file_num);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   448
  _file = fopen(_file_name, opentype);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   449
  _need_close = true;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   450
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   451
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   452
void rotatingFileStream::write(const char* s, size_t len) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   453
  if (_file != NULL)  {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   454
    // Make an unused local variable to avoid warning from gcc 4.x compiler.
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   455
    size_t count = fwrite(s, 1, len, _file);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   456
    Atomic::add((jlong)count, &_bytes_writen);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   457
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   458
  update_position(s, len);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   459
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   460
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   461
// 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
   462
// 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
   463
// 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
   464
// 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
   465
// 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
   466
// 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
   467
// 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
   468
// must be synchronized.
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   469
void rotatingFileStream::rotate_log() {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   470
  if (_bytes_writen < (jlong)GCLogFileSize) return;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   471
#ifdef ASSERT
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   472
  Thread *thread = Thread::current();
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   473
  assert(thread == NULL ||
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   474
         (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
   475
         "Must be VMThread at safepoint");
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   476
#endif
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   477
  if (NumberOfGCLogFiles == 1) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   478
    // rotate in same file
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   479
    rewind();
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   480
    _bytes_writen = 0L;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   481
    return;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   482
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   483
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   484
  // rotate file in names file.0, file.1, file.2, ..., file.<MaxGCLogFileNumbers-1>
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   485
  // close current file, rotate to next file
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   486
  if (_file != NULL) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   487
    _cur_file_num ++;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   488
    if (_cur_file_num >= NumberOfGCLogFiles) _cur_file_num = 0;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   489
    jio_snprintf(_file_name, strlen(Arguments::gc_log_filename()) + 10, "%s.%d",
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   490
             Arguments::gc_log_filename(), _cur_file_num);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   491
    fclose(_file);
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   492
    _file = NULL;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   493
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   494
  _file = fopen(_file_name, "w");
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   495
  if (_file != NULL) {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   496
    _bytes_writen = 0L;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   497
    _need_close = true;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   498
  } else {
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   499
    tty->print_cr("failed to open rotation log file %s due to %s\n",
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   500
                  _file_name, strerror(errno));
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   501
    _need_close = false;
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   502
  }
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   503
}
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   504
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
defaultStream* defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
int defaultStream::_output_fd = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
int defaultStream::_error_fd  = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
FILE* defaultStream::_output_stream = stdout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
FILE* defaultStream::_error_stream  = stderr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
#define LOG_MAJOR_VERSION 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
#define LOG_MINOR_VERSION 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
void defaultStream::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  _inited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  if (LogVMOutput || LogCompilation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    init_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
bool defaultStream::has_log_file() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // lazily create log file (at startup, LogVMOutput is false even
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  // if +LogVMOutput is used, because the flags haven't been parsed yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  // For safer printing during fatal error handling, do not init logfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  // if a VM error has been reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  if (!_inited && !is_error_reported())  init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  return _log_file != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   530
static const char* make_log_name(const char* log_name, const char* force_directory) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  const char* basename = log_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  char file_sep = os::file_separator()[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  const char* cp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  for (cp = log_name; *cp != '\0'; cp++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    if (*cp == '/' || *cp == file_sep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
      basename = cp+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  const char* nametail = log_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   541
  // Compute buffer length
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   542
  size_t buffer_length;
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   543
  if (force_directory != NULL) {
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   544
    buffer_length = strlen(force_directory) + strlen(os::file_separator()) +
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   545
                    strlen(basename) + 1;
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   546
  } else {
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   547
    buffer_length = strlen(log_name) + 1;
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   548
  }
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   549
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   550
  const char* star = strchr(basename, '*');
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   551
  int star_pos = (star == NULL) ? -1 : (star - nametail);
8867
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   552
  int skip = 1;
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   553
  if (star == NULL) {
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   554
    // Try %p
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   555
    star = strstr(basename, "%p");
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   556
    if (star != NULL) {
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   557
      skip = 2;
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   558
    }
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   559
  }
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   560
  star_pos = (star == NULL) ? -1 : (star - nametail);
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   561
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   562
  char pid[32];
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   563
  if (star_pos >= 0) {
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   564
    jio_snprintf(pid, sizeof(pid), "%u", os::current_process_id());
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   565
    buffer_length += strlen(pid);
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   566
  }
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   567
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   568
  // Create big enough buffer.
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   569
  char *buf = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   570
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  strcpy(buf, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  if (force_directory != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
    strcat(buf, force_directory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    strcat(buf, os::file_separator());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    nametail = basename;       // completely skip directory prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  if (star_pos >= 0) {
8867
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   579
    // convert foo*bar.log or foo%pbar.log to foo123bar.log
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    int buf_pos = (int) strlen(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
    strncpy(&buf[buf_pos], nametail, star_pos);
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   582
    strcpy(&buf[buf_pos + star_pos], pid);
8867
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   583
    nametail += star_pos + skip;  // skip prefix and pid format
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  strcat(buf, nametail);      // append rest of name, or all of name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
void defaultStream::init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // %%% Need a MutexLocker?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  const char* log_name = LogFile != NULL ? LogFile : "hotspot.log";
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   593
  const char* try_name = make_log_name(log_name, NULL);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   594
  fileStream* file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  if (!file->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
    // Try again to open the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
    char warnbuf[O_BUFLEN*2];
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   598
    jio_snprintf(warnbuf, sizeof(warnbuf),
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   599
                 "Warning:  Cannot open log file: %s\n", try_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
    // Note:  This feature is for maintainer use only.  No need for L10N.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
    jio_print(warnbuf);
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   602
    FREE_C_HEAP_ARRAY(char, try_name, mtInternal);
8867
6febcc945802 7022204: LogFile wildcarding should use %p instead of star
never
parents: 8333
diff changeset
   603
    try_name = make_log_name("hs_pid%p.log", os::get_temp_directory());
5237
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   604
    jio_snprintf(warnbuf, sizeof(warnbuf),
aab592fd4f44 6938627: Make temporary directory use property java.io.tmpdir when specified
coleenp
parents: 2105
diff changeset
   605
                 "Warning:  Forcing option -XX:LogFile=%s\n", try_name);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
    jio_print(warnbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
    delete file;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   608
    file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   609
    FREE_C_HEAP_ARRAY(char, try_name, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  if (file->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
    _log_file = file;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   613
    xmlStream* xs = new(ResourceObj::C_HEAP, mtInternal) xmlStream(file);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
    _outer_xmlStream = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
    if (this == tty)  xtty = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
    // Write XML header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
    xs->print_cr("<?xml version='1.0' encoding='UTF-8'?>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    // (For now, don't bother to issue a DTD for this private format.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    // we ever get round to introduce that method on the os class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    xs->head("hotspot_log version='%d %d'"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
             " process='%d' time_ms='"INT64_FORMAT"'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
             LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
             os::current_process_id(), time_ms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
    // Write VM version header immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
    xs->head("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
    xs->head("name"); xs->text("%s", VM_Version::vm_name()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
    xs->tail("name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
    xs->head("release"); xs->text("%s", VM_Version::vm_release()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
    xs->tail("release");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
    xs->head("info"); xs->text("%s", VM_Version::internal_vm_info_string()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
    xs->tail("info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    xs->tail("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
    // Record information about the command-line invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
    xs->head("vm_arguments");  // Cf. Arguments::print_on()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
    if (Arguments::num_jvm_flags() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
      xs->head("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
      Arguments::print_jvm_flags_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
      xs->tail("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
    if (Arguments::num_jvm_args() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
      xs->head("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      Arguments::print_jvm_args_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
      xs->tail("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    if (Arguments::java_command() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      xs->head("command"); xs->text()->print_cr("%s", Arguments::java_command());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
      xs->tail("command");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
    if (Arguments::sun_java_launcher() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
      xs->head("launcher"); xs->text()->print_cr("%s", Arguments::sun_java_launcher());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
      xs->tail("launcher");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    if (Arguments::system_properties() !=  NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
      xs->head("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
      // Print it as a java-style property list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
      // System properties don't generally contain newlines, so don't bother with unparsing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
      for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
        xs->text()->print_cr("%s=%s", p->key(), p->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
      xs->tail("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
    xs->tail("vm_arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
    // tty output per se is grouped under the <tty>...</tty> element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
    xs->head("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
    // All further non-markup text gets copied to the tty:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
    xs->_text = this;  // requires friend declaration!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
    delete(file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
    // and leave xtty as NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    LogVMOutput = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
    DisplayVMOutput = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    LogCompilation = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
// finish_log() is called during normal VM shutdown. finish_log_on_error() is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
// called by ostream_abort() after a fatal error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
void defaultStream::finish_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  xs->done("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
  CompileLog::finish_log(xs->out());  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
  xs->done("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  delete _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
void defaultStream::finish_log_on_error(char *buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
  if (xs && xs->out()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    xs->done_raw("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
    CompileLog::finish_log_on_error(xs->out(), buf, buflen);  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    xs->done_raw("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
    _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
    _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
    if (file) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
      file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
      // Can't delete or close the file because delete and fclose aren't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
      // async-safe. We are about to die, so leave it to the kernel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
      // delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
intx defaultStream::hold(intx writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
  bool has_log = has_log_file();  // check before locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  if (// impossible, but who knows?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
      writer_id == NO_WRITER ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
      // bootstrap problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
      tty_lock == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
      // can't grab a lock or call Thread::current() if TLS isn't initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      ThreadLocalStorage::thread() == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
      // developer hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      !SerializeVMOutput ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
      // VM already unhealthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      is_error_reported() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
      // safepoint == global lock (for VM only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      (SafepointSynchronize::is_synchronizing() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
       Thread::current()->is_VM_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
    // do not attempt to lock unless we know the thread and the VM is healthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
  if (_writer == writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
    // already held, no need to re-grab the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  tty_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  // got the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  if (writer_id != _last_writer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
    if (has_log) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
      _log_file->bol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      // output a hint where this output is coming from:
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13476
diff changeset
   762
      _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
    _last_writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
  _writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
  return writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
void defaultStream::release(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  if (holder == NO_WRITER) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
    // nothing to release:  either a recursive lock, or we scribbled (too bad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  if (_writer != holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
    return;  // already unlocked, perhaps via break_tty_lock_for_safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  _writer = NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
  tty_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
// Yuck:  jio_print does not accept char*/len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
static void call_jio_print(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  char buffer[O_BUFLEN+100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  if (len > sizeof(buffer)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
    warning("increase O_BUFLEN in ostream.cpp -- output truncated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
    len = sizeof(buffer)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  strncpy(buffer, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  buffer[len] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  jio_print(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
void defaultStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
  intx holder = hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  if (DisplayVMOutput &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      (_outer_xmlStream == NULL || !_outer_xmlStream->inside_attrs())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
    // print to output stream. It can be redirected by a vfprintf hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
    if (s[len] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
      jio_print(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      call_jio_print(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  // print to log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  if (has_log_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
    int nl0 = _newlines;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
    xmlTextStream::write(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
    // flush the log file too, if there were any newlines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
    if (nl0 != _newlines){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
      flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
    update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
intx ttyLocker::hold_tty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  if (defaultStream::instance == NULL)  return defaultStream::NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
  return defaultStream::instance->hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
void ttyLocker::release_tty(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
  if (holder == defaultStream::NO_WRITER)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
8333
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   836
bool ttyLocker::release_tty_if_locked() {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   837
  intx thread_id = os::current_thread_id();
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   838
  if (defaultStream::instance->writer() == thread_id) {
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   839
    // 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
   840
    // previously held.
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   841
    release_tty(thread_id);
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   842
    return true;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   843
  }
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   844
  return false;
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   845
}
11a7f6fc6419 7021531: lock ordering problems after fix for 6354181
never
parents: 8114
diff changeset
   846
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
void ttyLocker::break_tty_lock_for_safepoint(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
  if (defaultStream::instance != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
      defaultStream::instance->writer() == holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
    if (xtty != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
      xtty->print_cr("<!-- safepoint while printing -->");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
    defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
  // (else there was no lock to break)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
void ostream_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  if (defaultStream::instance == NULL) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   860
    defaultStream::instance = new(ResourceObj::C_HEAP, mtInternal) defaultStream();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
    tty = defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
    // We want to ensure that time stamps in GC logs consider time 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
    // the time when the JVM is initialized, not the first time we ask
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
    // for a time stamp. So, here, we explicitly update the time stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
    // of tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
    tty->time_stamp().update_to(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
void ostream_init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  // For -Xloggc:<file> option - called in runtime/thread.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
  // Note : this must be called AFTER ostream_init()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  gclog_or_tty = tty; // default to tty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  if (Arguments::gc_log_filename() != NULL) {
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   877
    fileStream * gclog  = UseGCLogFileRotation ?
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   878
                          new(ResourceObj::C_HEAP, mtInternal)
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   879
                             rotatingFileStream(Arguments::gc_log_filename()) :
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   880
                          new(ResourceObj::C_HEAP, mtInternal)
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   881
                             fileStream(Arguments::gc_log_filename());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
    if (gclog->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
      // now we update the time stamp of the GC log to be synced up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
      // with tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
      gclog->time_stamp().update_to(tty->time_stamp().ticks());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    }
9990
c8683968c01b 6941923: RFE: Handling large log files produced by long running Java Applications
minqi
parents: 8887
diff changeset
   887
    gclog_or_tty = gclog;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
  // If we haven't lazily initialized the logfile yet, do it now,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
  // to avoid the possibility of lazy initialization during a VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  // crash, which can affect the stability of the fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  defaultStream::instance->has_log_file();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
// ostream_exit() is called during normal VM exit to finish log files, flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
// output and free resource.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
void ostream_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  static bool ostream_exit_called = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
  if (ostream_exit_called)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
  ostream_exit_called = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
  if (gclog_or_tty != tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
      delete gclog_or_tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      // we temporaly disable PrintMallocFree here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      // as otherwise it'll lead to using of almost deleted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
      // tty or defaultStream::instance in logging facility
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
      // of HeapFree(), see 6391258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
      DEBUG_ONLY(FlagSetting fs(PrintMallocFree, false);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
      if (tty != defaultStream::instance) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
          delete tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
      if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
          delete defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
  tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
  xtty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
  gclog_or_tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
// ostream_abort() is called by os::abort() when VM is about to die.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
void ostream_abort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
  // Here we can't delete gclog_or_tty and tty, just flush their output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
  if (gclog_or_tty) gclog_or_tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  if (tty) tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
  if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
    static char buf[4096];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
    defaultStream::instance->finish_log_on_error(buf, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
staticBufferStream::staticBufferStream(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
                                       outputStream *outer_stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  _buffer = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  _buflen = buflen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
  _outer_stream = outer_stream;
8887
1e9e60a225a6 7032849: 7022998 changes broke hs_err compile task print
kvn
parents: 8867
diff changeset
   941
  // compile task prints time stamp relative to VM start
1e9e60a225a6 7032849: 7022998 changes broke hs_err compile task print
kvn
parents: 8867
diff changeset
   942
  _stamp.update_to(1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
489c9b5090e2 Initial load
duke
parents:
diff changeset
   945
void staticBufferStream::write(const char* c, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
  _outer_stream->print_raw(c, (int)len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
void staticBufferStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  _outer_stream->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
void staticBufferStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
void staticBufferStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   970
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
void staticBufferStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   974
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   975
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   976
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
void staticBufferStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   983
bufferedStream::bufferedStream(size_t initial_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
  buffer_length = initial_size;
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
   985
  buffer        = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   986
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   987
  buffer_fixed  = false;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   988
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   989
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   990
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   991
bufferedStream::bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   992
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   993
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   994
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   995
  buffer_fixed  = true;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   996
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   997
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   998
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
void bufferedStream::write(const char* s, size_t len) {
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1000
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1001
  if(buffer_pos + len > buffer_max) {
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1002
    flush();
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1003
  }
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1004
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1005
  size_t end = buffer_pos + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1006
  if (end >= buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1008
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1009
      len = buffer_length - buffer_pos - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1011
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1012
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1013
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
      }
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
  1016
      buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1017
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1018
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1019
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  memcpy(buffer + buffer_pos, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
  buffer_pos += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
char* bufferedStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1028
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
bufferedStream::~bufferedStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  if (!buffer_fixed) {
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11256
diff changeset
  1034
    FREE_C_HEAP_ARRAY(char, buffer, mtInternal);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 9990
diff changeset
  1040
#if defined(SOLARIS) || defined(LINUX) || defined(_ALLBSD_SOURCE)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
#include <sys/socket.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
#include <netinet/in.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
#include <arpa/inet.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
// Network access
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1048
networkStream::networkStream() : bufferedStream(1024*10, 1024*10) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
  _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1052
  int result = os::socket(AF_INET, SOCK_STREAM, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  if (result <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
    assert(false, "Socket could not be created!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1055
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
    _socket = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1059
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
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
  1061
  return os::recv(_socket, buf, (int)len, 0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
void networkStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
  if (size() != 0) {
11256
025cd1741566 7091417: recvfrom's 6th input should be of type socklen_t
phh
parents: 10565
diff changeset
  1066
    int result = os::raw_send(_socket, (char *)base(), size(), 0);
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1067
    assert(result != -1, "connection error");
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
  1068
    assert(result == (int)size(), "didn't send enough data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
networkStream::~networkStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
void networkStream::close() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  if (_socket != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
    flush();
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1080
    os::socket_close(_socket);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
    _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
bool networkStream::connect(const char *ip, short port) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  struct sockaddr_in server;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  server.sin_family = AF_INET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
  server.sin_port = htons(port);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
  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
  1092
  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
  1093
    struct hostent* host = os::get_host_by_name((char*)ip);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
    if (host != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1095
      memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1099
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1101
7405
e6fc8d3926f8 6348631: remove the use of the HPI library from Hotspot
ikrylov
parents: 7397
diff changeset
  1102
  int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  return (result >= 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
#endif