hotspot/src/share/vm/utilities/ostream.cpp
author xdono
Mon, 09 Mar 2009 13:28:46 -0700
changeset 2105 347008ce7984
parent 1889 24b003a6fe46
child 5237 aab592fd4f44
permissions -rw-r--r--
6814575: Update copyright year Summary: Update copyright for files that have been modified in 2009, up to 03/09 Reviewed-by: katleman, tbell, ohair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
2105
347008ce7984 6814575: Update copyright year
xdono
parents: 1889
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_ostream.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
extern "C" void jio_print(const char* s); // Declarationtion of jvm method
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
outputStream::outputStream(int width) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  _indentation = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
outputStream::outputStream(int width, bool has_time_stamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  _width       = width;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _position    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  _newlines    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  _precount    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _indentation = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  if (has_time_stamps)  _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
void outputStream::update_position(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  for (size_t i = 0; i < len; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    char ch = s[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    if (ch == '\n') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      _newlines += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
      _precount += _position + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
      _position = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    } else if (ch == '\t') {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    55
      int tw = 8 - (_position & 7);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    56
      _position += tw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    57
      _precount -= tw-1;  // invariant:  _precount + _position == total count
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
      _position += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// Execute a vsprintf, using the given buffer if necessary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// Return a pointer to the formatted string.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
const char* outputStream::do_vsnprintf(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
                                       const char* format, va_list ap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
                                       bool add_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
                                       size_t& result_len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  const char* result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (add_cr)  buflen--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (!strchr(format, '%')) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // constant format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    result = format;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  } else if (format[0] == '%' && format[1] == 's' && format[2] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    // trivial copy-through format string
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    result = va_arg(ap, const char*);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    if (add_cr && result_len >= buflen)  result_len = buflen-1;  // truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  } else if (vsnprintf(buffer, buflen, format, ap) >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    result_len = strlen(result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
    DEBUG_ONLY(warning("increase O_BUFLEN in ostream.hpp -- output truncated");)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    result_len = buflen - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (add_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    if (result != buffer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      strncpy(buffer, result, buflen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
      result = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    buffer[result_len++] = '\n';
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    buffer[result_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
void outputStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
void outputStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
void outputStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  char buffer[O_BUFLEN];
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, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
void outputStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  char buffer[O_BUFLEN];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
void outputStream::fill_to(int col) {
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   137
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   138
  sp(need_fill);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   139
}
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   140
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   141
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
   142
  if (position() >= col + slop)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   143
    cr();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   144
  int need_fill = col - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   145
  if (need_fill < min_space)
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   146
    need_fill = min_space;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   147
  sp(need_fill);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
void outputStream::put(char ch) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  assert(ch != 0, "please fix call site");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  char buf[] = { ch, '\0' };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  write(buf, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   156
#define SP_USE_TABS false
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
void outputStream::sp(int count) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   159
  if (count < 0)  return;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   160
  if (SP_USE_TABS && count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   161
    int target = position() + count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   162
    while (count >= 8) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   163
      this->write("\t", 1);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   164
      count -= 8;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   165
    }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   166
    count = target - position();
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   167
  }
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   168
  while (count > 0) {
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   169
    int nw = (count > 8) ? 8 : count;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   170
    this->write("        ", nw);
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   171
    count -= nw;
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
   172
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void outputStream::cr() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  this->write("\n", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
void outputStream::stamp() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (! _stamp.is_updated()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    _stamp.update(); // start at 0 on first call to stamp()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // outputStream::stamp() may get called by ostream_abort(), use snprintf
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // to avoid allocating large stack buffer in print().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  char buf[40];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  jio_snprintf(buf, sizeof(buf), "%.3f", _stamp.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  print_raw(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   191
void outputStream::stamp(bool guard,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   192
                         const char* prefix,
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   193
                         const char* suffix) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   194
  if (!guard) {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   195
    return;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   196
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   197
  print_raw(prefix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   198
  stamp();
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   199
  print_raw(suffix);
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   200
}
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 349
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
void outputStream::date_stamp(bool guard,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
                              const char* prefix,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
                              const char* suffix) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  if (!guard) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  print_raw(prefix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  static const char error_time[] = "yyyy-mm-ddThh:mm:ss.mmm+zzzz";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  static const int buffer_length = 32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  char buffer[buffer_length];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  const char* iso8601_result = os::iso8601_time(buffer, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  if (iso8601_result != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
    print_raw(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    print_raw(error_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  print_raw(suffix);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
void outputStream::indent() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  while (_position < _indentation) sp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
void outputStream::print_jlong(jlong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // N.B. Same as INT64_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  print(os::jlong_format_specifier(), value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
void outputStream::print_julong(julong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // N.B. Same as UINT64_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  print(os::julong_format_specifier(), value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
stringStream::stringStream(size_t initial_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  buffer_length = initial_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  buffer        = NEW_RESOURCE_ARRAY(char, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  buffer_fixed  = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// useful for output to fixed chunks of memory, such as performance counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
stringStream::stringStream(char* fixed_buffer, size_t fixed_buffer_size) : outputStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  buffer_fixed  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
void stringStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  size_t write_len = len;               // number of non-null bytes to write
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  size_t end = buffer_pos + len + 1;    // position after write and final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  if (end > buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
      end = buffer_length;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      write_len = end - buffer_pos - 1; // leave room for the final '\0'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
      char* oldbuf = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
      buffer = NEW_RESOURCE_ARRAY(char, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
      strncpy(buffer, oldbuf, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // invariant: buffer is always null-terminated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  guarantee(buffer_pos + write_len + 1 <= buffer_length, "stringStream oob");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  buffer[buffer_pos + write_len] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  strncpy(buffer + buffer_pos, s, write_len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  buffer_pos += write_len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // Note that the following does not depend on write_len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // This means that position and count get updated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // even when overflow occurs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
char* stringStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
stringStream::~stringStream() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
xmlStream*   xtty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
outputStream* tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
outputStream* gclog_or_tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
extern Mutex* tty_lock;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
fileStream::fileStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  _file = fopen(file_name, "w");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  _need_close = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
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
   303
  if (_file != NULL)  {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   304
    // 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
   305
    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
   306
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
fileStream::~fileStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  if (_file != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
    if (_need_close) fclose(_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    _file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
void fileStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  fflush(_file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
fdStream::fdStream(const char* file_name) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  _fd = open(file_name, O_WRONLY | O_CREAT | O_TRUNC, 0666);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  _need_close = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
fdStream::~fdStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  if (_fd != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
    if (_need_close) close(_fd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    _fd = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
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
   334
  if (_fd != -1) {
24b003a6fe46 6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2
xlu
parents: 1388
diff changeset
   335
    // 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
   336
    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
   337
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
defaultStream* defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
int defaultStream::_output_fd = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
int defaultStream::_error_fd  = 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
FILE* defaultStream::_output_stream = stdout;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
FILE* defaultStream::_error_stream  = stderr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
#define LOG_MAJOR_VERSION 160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
#define LOG_MINOR_VERSION 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
void defaultStream::init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  _inited = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  if (LogVMOutput || LogCompilation) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
    init_log();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
bool defaultStream::has_log_file() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // lazily create log file (at startup, LogVMOutput is false even
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // if +LogVMOutput is used, because the flags haven't been parsed yet)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // For safer printing during fatal error handling, do not init logfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // if a VM error has been reported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  if (!_inited && !is_error_reported())  init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  return _log_file != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
static const char* make_log_name(const char* log_name, const char* force_directory, char* buf) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  const char* basename = log_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  char file_sep = os::file_separator()[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  const char* cp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  for (cp = log_name; *cp != '\0'; cp++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    if (*cp == '/' || *cp == file_sep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
      basename = cp+1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  const char* nametail = log_name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  strcpy(buf, "");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  if (force_directory != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
    strcat(buf, force_directory);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
    strcat(buf, os::file_separator());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    nametail = basename;       // completely skip directory prefix
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  const char* star = strchr(basename, '*');
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  int star_pos = (star == NULL) ? -1 : (star - nametail);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  if (star_pos >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
    // convert foo*bar.log to foo123bar.log
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
    int buf_pos = (int) strlen(buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    strncpy(&buf[buf_pos], nametail, star_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
    sprintf(&buf[buf_pos + star_pos], "%u", os::current_process_id());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    nametail += star_pos + 1;  // skip prefix and star
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  strcat(buf, nametail);      // append rest of name, or all of name
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  return buf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
void defaultStream::init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // %%% Need a MutexLocker?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  const char* log_name = LogFile != NULL ? LogFile : "hotspot.log";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  char buf[O_BUFLEN*2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  const char* try_name = make_log_name(log_name, NULL, buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  fileStream* file = new(ResourceObj::C_HEAP) fileStream(try_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  if (!file->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
    // Try again to open the file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    char warnbuf[O_BUFLEN*2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    sprintf(warnbuf, "Warning:  Cannot open log file: %s\n", try_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    // Note:  This feature is for maintainer use only.  No need for L10N.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
    jio_print(warnbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    try_name = make_log_name("hs_pid*.log", os::get_temp_directory(), buf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    sprintf(warnbuf, "Warning:  Forcing option -XX:LogFile=%s\n", try_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    jio_print(warnbuf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    file = new(ResourceObj::C_HEAP) fileStream(try_name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  if (file->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    _log_file = file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    xmlStream* xs = new(ResourceObj::C_HEAP) xmlStream(file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    _outer_xmlStream = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
    if (this == tty)  xtty = xs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    // Write XML header.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
    xs->print_cr("<?xml version='1.0' encoding='UTF-8'?>");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
    // (For now, don't bother to issue a DTD for this private format.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
    jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
    // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
    // we ever get round to introduce that method on the os class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
    xs->head("hotspot_log version='%d %d'"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
             " process='%d' time_ms='"INT64_FORMAT"'",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
             LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
             os::current_process_id(), time_ms);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
    // Write VM version header immediately.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    xs->head("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    xs->head("name"); xs->text("%s", VM_Version::vm_name()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
    xs->tail("name");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    xs->head("release"); xs->text("%s", VM_Version::vm_release()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    xs->tail("release");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
    xs->head("info"); xs->text("%s", VM_Version::internal_vm_info_string()); xs->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    xs->tail("info");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    xs->tail("vm_version");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
    // Record information about the command-line invocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    xs->head("vm_arguments");  // Cf. Arguments::print_on()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    if (Arguments::num_jvm_flags() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
      xs->head("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
      Arguments::print_jvm_flags_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
      xs->tail("flags");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    if (Arguments::num_jvm_args() > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
      xs->head("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      Arguments::print_jvm_args_on(xs->text());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
      xs->tail("args");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    if (Arguments::java_command() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      xs->head("command"); xs->text()->print_cr("%s", Arguments::java_command());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
      xs->tail("command");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    if (Arguments::sun_java_launcher() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
      xs->head("launcher"); xs->text()->print_cr("%s", Arguments::sun_java_launcher());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
      xs->tail("launcher");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    if (Arguments::system_properties() !=  NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      xs->head("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
      // Print it as a java-style property list.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
      // System properties don't generally contain newlines, so don't bother with unparsing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
      for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
        xs->text()->print_cr("%s=%s", p->key(), p->value());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
      xs->tail("properties");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
    xs->tail("vm_arguments");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    // tty output per se is grouped under the <tty>...</tty> element.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    xs->head("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    // All further non-markup text gets copied to the tty:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
    xs->_text = this;  // requires friend declaration!
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
    delete(file);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    // and leave xtty as NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    LogVMOutput = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    DisplayVMOutput = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    LogCompilation = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
// finish_log() is called during normal VM shutdown. finish_log_on_error() is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
// called by ostream_abort() after a fatal error.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
void defaultStream::finish_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  xs->done("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  CompileLog::finish_log(xs->out());  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  xs->done("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  delete _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
void defaultStream::finish_log_on_error(char *buf, int buflen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  xmlStream* xs = _outer_xmlStream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  if (xs && xs->out()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    xs->done_raw("tty");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    // Other log forks are appended here, at the End of Time:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    CompileLog::finish_log_on_error(xs->out(), buf, buflen);  // write compile logging, if any, now
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
    xs->done_raw("hotspot_log");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
    xs->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    fileStream* file = _log_file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
    _log_file = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    _outer_xmlStream = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
    if (file) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
      file->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
      // Can't delete or close the file because delete and fclose aren't
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
      // async-safe. We are about to die, so leave it to the kernel.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
      // delete file;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
intx defaultStream::hold(intx writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  bool has_log = has_log_file();  // check before locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  if (// impossible, but who knows?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
      writer_id == NO_WRITER ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
      // bootstrap problem
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
      tty_lock == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      // can't grab a lock or call Thread::current() if TLS isn't initialized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      ThreadLocalStorage::thread() == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
      // developer hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
      !SerializeVMOutput ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
      // VM already unhealthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
      is_error_reported() ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
      // safepoint == global lock (for VM only)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
      (SafepointSynchronize::is_synchronizing() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
       Thread::current()->is_VM_thread())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
      ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
    // do not attempt to lock unless we know the thread and the VM is healthy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
  if (_writer == writer_id) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    // already held, no need to re-grab the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
    return NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
  tty_lock->lock_without_safepoint_check();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  // got the lock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   564
  if (writer_id != _last_writer) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
    if (has_log) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
      _log_file->bol();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
      // output a hint where this output is coming from:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
      _log_file->print_cr("<writer thread='"INTX_FORMAT"'/>", writer_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    _last_writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  _writer = writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  return writer_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
void defaultStream::release(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  if (holder == NO_WRITER) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    // nothing to release:  either a recursive lock, or we scribbled (too bad)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  if (_writer != holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
    return;  // already unlocked, perhaps via break_tty_lock_for_safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  _writer = NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  tty_lock->unlock();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
// Yuck:  jio_print does not accept char*/len.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
static void call_jio_print(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  char buffer[O_BUFLEN+100];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  if (len > sizeof(buffer)-1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    warning("increase O_BUFLEN in ostream.cpp -- output truncated");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
    len = sizeof(buffer)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  strncpy(buffer, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  buffer[len] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  jio_print(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
void defaultStream::write(const char* s, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  intx holder = hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if (DisplayVMOutput &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
      (_outer_xmlStream == NULL || !_outer_xmlStream->inside_attrs())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
    // print to output stream. It can be redirected by a vfprintf hook
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
    if (s[len] == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
      jio_print(s);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
      call_jio_print(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  // print to log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
  if (has_log_file()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
    int nl0 = _newlines;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
    xmlTextStream::write(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
    // flush the log file too, if there were any newlines
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
    if (nl0 != _newlines){
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
      flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
    update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
  release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
intx ttyLocker::hold_tty() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
  if (defaultStream::instance == NULL)  return defaultStream::NO_WRITER;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  intx thread_id = os::current_thread_id();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
  return defaultStream::instance->hold(thread_id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
void ttyLocker::release_tty(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
  if (holder == defaultStream::NO_WRITER)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
void ttyLocker::break_tty_lock_for_safepoint(intx holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  if (defaultStream::instance != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
      defaultStream::instance->writer() == holder) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
    if (xtty != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      xtty->print_cr("<!-- safepoint while printing -->");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
    defaultStream::instance->release(holder);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
  // (else there was no lock to break)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
void ostream_init() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
  if (defaultStream::instance == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    defaultStream::instance = new(ResourceObj::C_HEAP) defaultStream();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
    tty = defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
    // We want to ensure that time stamps in GC logs consider time 0
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
    // the time when the JVM is initialized, not the first time we ask
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
    // for a time stamp. So, here, we explicitly update the time stamp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
    // of tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
    tty->time_stamp().update_to(1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
void ostream_init_log() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // For -Xloggc:<file> option - called in runtime/thread.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  // Note : this must be called AFTER ostream_init()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  gclog_or_tty = tty; // default to tty
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  if (Arguments::gc_log_filename() != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
    fileStream * gclog = new(ResourceObj::C_HEAP)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
                           fileStream(Arguments::gc_log_filename());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
    if (gclog->is_open()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
      // now we update the time stamp of the GC log to be synced up
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
      // with tty.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
      gclog->time_stamp().update_to(tty->time_stamp().ticks());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
      gclog_or_tty = gclog;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // If we haven't lazily initialized the logfile yet, do it now,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  // to avoid the possibility of lazy initialization during a VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  // crash, which can affect the stability of the fatal error handler.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
  defaultStream::instance->has_log_file();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
// ostream_exit() is called during normal VM exit to finish log files, flush
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
// output and free resource.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
void ostream_exit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
  static bool ostream_exit_called = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  if (ostream_exit_called)  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  ostream_exit_called = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  if (gclog_or_tty != tty) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      delete gclog_or_tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
      // we temporaly disable PrintMallocFree here
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
      // as otherwise it'll lead to using of almost deleted
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
      // tty or defaultStream::instance in logging facility
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
      // of HeapFree(), see 6391258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
      DEBUG_ONLY(FlagSetting fs(PrintMallocFree, false);)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      if (tty != defaultStream::instance) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
          delete tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
          delete defaultStream::instance;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
  tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  xtty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  gclog_or_tty = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  defaultStream::instance = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
// ostream_abort() is called by os::abort() when VM is about to die.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
void ostream_abort() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
  // Here we can't delete gclog_or_tty and tty, just flush their output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
  if (gclog_or_tty) gclog_or_tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
  if (tty) tty->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
  if (defaultStream::instance != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
    static char buf[4096];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
    defaultStream::instance->finish_log_on_error(buf, sizeof(buf));
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
staticBufferStream::staticBufferStream(char* buffer, size_t buflen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
                                       outputStream *outer_stream) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
  _buffer = buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  _buflen = buflen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  _outer_stream = outer_stream;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
void staticBufferStream::write(const char* c, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
  _outer_stream->print_raw(c, (int)len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
void staticBufferStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
  _outer_stream->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
void staticBufferStream::print(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
void staticBufferStream::print_cr(const char* format, ...) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
  va_list ap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
  va_start(ap, format);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
  const char* str = do_vsnprintf(_buffer, _buflen, format, ap, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
  va_end(ap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
void staticBufferStream::vprint(const char *format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, false, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
void staticBufferStream::vprint_cr(const char* format, va_list argptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
  size_t len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
  const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, true, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  write(str, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   773
bufferedStream::bufferedStream(size_t initial_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
  buffer_length = initial_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
  buffer        = NEW_C_HEAP_ARRAY(char, buffer_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
  buffer_fixed  = false;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   778
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   781
bufferedStream::bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax) : outputStream() {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
  buffer_length = fixed_buffer_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
  buffer        = fixed_buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  buffer_pos    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  buffer_fixed  = true;
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   786
  buffer_max    = bufmax;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
void bufferedStream::write(const char* s, size_t len) {
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   790
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   791
  if(buffer_pos + len > buffer_max) {
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   792
    flush();
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   793
  }
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   794
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
  size_t end = buffer_pos + len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   796
  if (end >= buffer_length) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
    if (buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      // if buffer cannot resize, silently truncate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
      len = buffer_length - buffer_pos - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
      // For small overruns, double the buffer.  For larger ones,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   802
      // increase to the requested size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
      if (end < buffer_length * 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
        end = buffer_length * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   806
      buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
      buffer_length = end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   809
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
  memcpy(buffer + buffer_pos, s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
  buffer_pos += len;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
  update_position(s, len);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
char* bufferedStream::as_string() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
  char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
  strncpy(copy, buffer, buffer_pos);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
  copy[buffer_pos] = 0;  // terminating null
489c9b5090e2 Initial load
duke
parents:
diff changeset
   819
  return copy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
bufferedStream::~bufferedStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  if (!buffer_fixed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   824
    FREE_C_HEAP_ARRAY(char, buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   827
489c9b5090e2 Initial load
duke
parents:
diff changeset
   828
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
#if defined(SOLARIS) || defined(LINUX)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
#include <sys/types.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
#include <sys/socket.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
#include <netinet/in.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
#include <arpa/inet.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
489c9b5090e2 Initial load
duke
parents:
diff changeset
   837
// Network access
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   838
networkStream::networkStream() : bufferedStream(1024*10, 1024*10) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
  _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
  hpi::initialize_socket_library();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
  int result = hpi::socket(AF_INET, SOCK_STREAM, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
  if (result <= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   846
    assert(false, "Socket could not be created!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
    _socket = result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
int networkStream::read(char *buf, size_t len) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   853
  return hpi::recv(_socket, buf, (int)len, 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
void networkStream::flush() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (size() != 0) {
768
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   858
    int result = hpi::raw_send(_socket, (char *)base(), (int)size(), 0);
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   859
    assert(result != -1, "connection error");
d0bebc7eefc2 6718676: putback for 6604014 is incomplete
never
parents: 349
diff changeset
   860
    assert(result == (int)size(), "didn't send enough data");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
  reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
networkStream::~networkStream() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  close();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
void networkStream::close() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
  if (_socket != -1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   871
    flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
    hpi::socket_close(_socket);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
    _socket = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
bool networkStream::connect(const char *ip, short port) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  struct sockaddr_in server;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
  server.sin_family = AF_INET;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
  server.sin_port = htons(port);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
  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
   884
  if (server.sin_addr.s_addr == (uint32_t)-1) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   885
#ifdef _WINDOWS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
    struct hostent* host = hpi::get_host_by_name((char*)ip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
    struct hostent* host = gethostbyname(ip);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
    if (host != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
      memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
  int result = hpi::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
  return (result >= 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
#endif