src/share/vm/utilities/ostream.cpp

Fri, 29 Apr 2016 00:06:10 +0800

author
aoqi
date
Fri, 29 Apr 2016 00:06:10 +0800
changeset 1
2d8a650513c2
parent 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Added MIPS 64-bit port.

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "compiler/compileLog.hpp"
aoqi@0 27 #include "oops/oop.inline.hpp"
aoqi@0 28 #include "runtime/arguments.hpp"
aoqi@0 29 #include "utilities/defaultStream.hpp"
aoqi@0 30 #include "utilities/ostream.hpp"
aoqi@0 31 #include "utilities/top.hpp"
aoqi@0 32 #include "utilities/xmlstream.hpp"
aoqi@0 33 #ifdef TARGET_OS_FAMILY_linux
aoqi@0 34 # include "os_linux.inline.hpp"
aoqi@0 35 #endif
aoqi@0 36 #ifdef TARGET_OS_FAMILY_solaris
aoqi@0 37 # include "os_solaris.inline.hpp"
aoqi@0 38 #endif
aoqi@0 39 #ifdef TARGET_OS_FAMILY_windows
aoqi@0 40 # include "os_windows.inline.hpp"
aoqi@0 41 #endif
aoqi@0 42 #ifdef TARGET_OS_FAMILY_aix
aoqi@0 43 # include "os_aix.inline.hpp"
aoqi@0 44 #endif
aoqi@0 45 #ifdef TARGET_OS_FAMILY_bsd
aoqi@0 46 # include "os_bsd.inline.hpp"
aoqi@0 47 #endif
aoqi@0 48
aoqi@0 49 extern "C" void jio_print(const char* s); // Declarationtion of jvm method
aoqi@0 50
aoqi@0 51 outputStream::outputStream(int width) {
aoqi@0 52 _width = width;
aoqi@0 53 _position = 0;
aoqi@0 54 _newlines = 0;
aoqi@0 55 _precount = 0;
aoqi@0 56 _indentation = 0;
aoqi@0 57 }
aoqi@0 58
aoqi@0 59 outputStream::outputStream(int width, bool has_time_stamps) {
aoqi@0 60 _width = width;
aoqi@0 61 _position = 0;
aoqi@0 62 _newlines = 0;
aoqi@0 63 _precount = 0;
aoqi@0 64 _indentation = 0;
aoqi@0 65 if (has_time_stamps) _stamp.update();
aoqi@0 66 }
aoqi@0 67
aoqi@0 68 void outputStream::update_position(const char* s, size_t len) {
aoqi@0 69 for (size_t i = 0; i < len; i++) {
aoqi@0 70 char ch = s[i];
aoqi@0 71 if (ch == '\n') {
aoqi@0 72 _newlines += 1;
aoqi@0 73 _precount += _position + 1;
aoqi@0 74 _position = 0;
aoqi@0 75 } else if (ch == '\t') {
aoqi@0 76 int tw = 8 - (_position & 7);
aoqi@0 77 _position += tw;
aoqi@0 78 _precount -= tw-1; // invariant: _precount + _position == total count
aoqi@0 79 } else {
aoqi@0 80 _position += 1;
aoqi@0 81 }
aoqi@0 82 }
aoqi@0 83 }
aoqi@0 84
aoqi@0 85 // Execute a vsprintf, using the given buffer if necessary.
aoqi@0 86 // Return a pointer to the formatted string.
aoqi@0 87 const char* outputStream::do_vsnprintf(char* buffer, size_t buflen,
aoqi@0 88 const char* format, va_list ap,
aoqi@0 89 bool add_cr,
aoqi@0 90 size_t& result_len) {
aoqi@0 91 const char* result;
aoqi@0 92 if (add_cr) buflen--;
aoqi@0 93 if (!strchr(format, '%')) {
aoqi@0 94 // constant format string
aoqi@0 95 result = format;
aoqi@0 96 result_len = strlen(result);
aoqi@0 97 if (add_cr && result_len >= buflen) result_len = buflen-1; // truncate
aoqi@0 98 } else if (format[0] == '%' && format[1] == 's' && format[2] == '\0') {
aoqi@0 99 // trivial copy-through format string
aoqi@0 100 result = va_arg(ap, const char*);
aoqi@0 101 result_len = strlen(result);
aoqi@0 102 if (add_cr && result_len >= buflen) result_len = buflen-1; // truncate
aoqi@0 103 } else if (vsnprintf(buffer, buflen, format, ap) >= 0) {
aoqi@0 104 result = buffer;
aoqi@0 105 result_len = strlen(result);
aoqi@0 106 } else {
aoqi@0 107 DEBUG_ONLY(warning("increase O_BUFLEN in ostream.hpp -- output truncated");)
aoqi@0 108 result = buffer;
aoqi@0 109 result_len = buflen - 1;
aoqi@0 110 buffer[result_len] = 0;
aoqi@0 111 }
aoqi@0 112 if (add_cr) {
aoqi@0 113 if (result != buffer) {
aoqi@0 114 strncpy(buffer, result, buflen);
aoqi@0 115 result = buffer;
aoqi@0 116 }
aoqi@0 117 buffer[result_len++] = '\n';
aoqi@0 118 buffer[result_len] = 0;
aoqi@0 119 }
aoqi@0 120 return result;
aoqi@0 121 }
aoqi@0 122
aoqi@0 123 void outputStream::print(const char* format, ...) {
aoqi@0 124 char buffer[O_BUFLEN];
aoqi@0 125 va_list ap;
aoqi@0 126 va_start(ap, format);
aoqi@0 127 size_t len;
aoqi@0 128 const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, false, len);
aoqi@0 129 write(str, len);
aoqi@0 130 va_end(ap);
aoqi@0 131 }
aoqi@0 132
aoqi@0 133 void outputStream::print_cr(const char* format, ...) {
aoqi@0 134 char buffer[O_BUFLEN];
aoqi@0 135 va_list ap;
aoqi@0 136 va_start(ap, format);
aoqi@0 137 size_t len;
aoqi@0 138 const char* str = do_vsnprintf(buffer, O_BUFLEN, format, ap, true, len);
aoqi@0 139 write(str, len);
aoqi@0 140 va_end(ap);
aoqi@0 141 }
aoqi@0 142
aoqi@0 143 void outputStream::vprint(const char *format, va_list argptr) {
aoqi@0 144 char buffer[O_BUFLEN];
aoqi@0 145 size_t len;
aoqi@0 146 const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, false, len);
aoqi@0 147 write(str, len);
aoqi@0 148 }
aoqi@0 149
aoqi@0 150 void outputStream::vprint_cr(const char* format, va_list argptr) {
aoqi@0 151 char buffer[O_BUFLEN];
aoqi@0 152 size_t len;
aoqi@0 153 const char* str = do_vsnprintf(buffer, O_BUFLEN, format, argptr, true, len);
aoqi@0 154 write(str, len);
aoqi@0 155 }
aoqi@0 156
aoqi@0 157 void outputStream::fill_to(int col) {
aoqi@0 158 int need_fill = col - position();
aoqi@0 159 sp(need_fill);
aoqi@0 160 }
aoqi@0 161
aoqi@0 162 void outputStream::move_to(int col, int slop, int min_space) {
aoqi@0 163 if (position() >= col + slop)
aoqi@0 164 cr();
aoqi@0 165 int need_fill = col - position();
aoqi@0 166 if (need_fill < min_space)
aoqi@0 167 need_fill = min_space;
aoqi@0 168 sp(need_fill);
aoqi@0 169 }
aoqi@0 170
aoqi@0 171 void outputStream::put(char ch) {
aoqi@0 172 assert(ch != 0, "please fix call site");
aoqi@0 173 char buf[] = { ch, '\0' };
aoqi@0 174 write(buf, 1);
aoqi@0 175 }
aoqi@0 176
aoqi@0 177 #define SP_USE_TABS false
aoqi@0 178
aoqi@0 179 void outputStream::sp(int count) {
aoqi@0 180 if (count < 0) return;
aoqi@0 181 if (SP_USE_TABS && count >= 8) {
aoqi@0 182 int target = position() + count;
aoqi@0 183 while (count >= 8) {
aoqi@0 184 this->write("\t", 1);
aoqi@0 185 count -= 8;
aoqi@0 186 }
aoqi@0 187 count = target - position();
aoqi@0 188 }
aoqi@0 189 while (count > 0) {
aoqi@0 190 int nw = (count > 8) ? 8 : count;
aoqi@0 191 this->write(" ", nw);
aoqi@0 192 count -= nw;
aoqi@0 193 }
aoqi@0 194 }
aoqi@0 195
aoqi@0 196 void outputStream::cr() {
aoqi@0 197 this->write("\n", 1);
aoqi@0 198 }
aoqi@0 199
aoqi@0 200 void outputStream::stamp() {
aoqi@0 201 if (! _stamp.is_updated()) {
aoqi@0 202 _stamp.update(); // start at 0 on first call to stamp()
aoqi@0 203 }
aoqi@0 204
aoqi@0 205 // outputStream::stamp() may get called by ostream_abort(), use snprintf
aoqi@0 206 // to avoid allocating large stack buffer in print().
aoqi@0 207 char buf[40];
aoqi@0 208 jio_snprintf(buf, sizeof(buf), "%.3f", _stamp.seconds());
aoqi@0 209 print_raw(buf);
aoqi@0 210 }
aoqi@0 211
aoqi@0 212 void outputStream::stamp(bool guard,
aoqi@0 213 const char* prefix,
aoqi@0 214 const char* suffix) {
aoqi@0 215 if (!guard) {
aoqi@0 216 return;
aoqi@0 217 }
aoqi@0 218 print_raw(prefix);
aoqi@0 219 stamp();
aoqi@0 220 print_raw(suffix);
aoqi@0 221 }
aoqi@0 222
aoqi@0 223 void outputStream::date_stamp(bool guard,
aoqi@0 224 const char* prefix,
aoqi@0 225 const char* suffix) {
aoqi@0 226 if (!guard) {
aoqi@0 227 return;
aoqi@0 228 }
aoqi@0 229 print_raw(prefix);
aoqi@0 230 static const char error_time[] = "yyyy-mm-ddThh:mm:ss.mmm+zzzz";
aoqi@0 231 static const int buffer_length = 32;
aoqi@0 232 char buffer[buffer_length];
aoqi@0 233 const char* iso8601_result = os::iso8601_time(buffer, buffer_length);
aoqi@0 234 if (iso8601_result != NULL) {
aoqi@0 235 print_raw(buffer);
aoqi@0 236 } else {
aoqi@0 237 print_raw(error_time);
aoqi@0 238 }
aoqi@0 239 print_raw(suffix);
aoqi@0 240 return;
aoqi@0 241 }
aoqi@0 242
aoqi@0 243 outputStream& outputStream::indent() {
aoqi@0 244 while (_position < _indentation) sp();
aoqi@0 245 return *this;
aoqi@0 246 }
aoqi@0 247
aoqi@0 248 void outputStream::print_jlong(jlong value) {
aoqi@0 249 print(JLONG_FORMAT, value);
aoqi@0 250 }
aoqi@0 251
aoqi@0 252 void outputStream::print_julong(julong value) {
aoqi@0 253 print(JULONG_FORMAT, value);
aoqi@0 254 }
aoqi@0 255
aoqi@0 256 /**
aoqi@0 257 * This prints out hex data in a 'windbg' or 'xxd' form, where each line is:
aoqi@0 258 * <hex-address>: 8 * <hex-halfword> <ascii translation (optional)>
aoqi@0 259 * example:
aoqi@0 260 * 0000000: 7f44 4f46 0102 0102 0000 0000 0000 0000 .DOF............
aoqi@0 261 * 0000010: 0000 0000 0000 0040 0000 0020 0000 0005 .......@... ....
aoqi@0 262 * 0000020: 0000 0000 0000 0040 0000 0000 0000 015d .......@.......]
aoqi@0 263 * ...
aoqi@0 264 *
aoqi@0 265 * indent is applied to each line. Ends with a CR.
aoqi@0 266 */
aoqi@0 267 void outputStream::print_data(void* data, size_t len, bool with_ascii) {
aoqi@0 268 size_t limit = (len + 16) / 16 * 16;
aoqi@0 269 for (size_t i = 0; i < limit; ++i) {
aoqi@0 270 if (i % 16 == 0) {
aoqi@0 271 indent().print(SIZE_FORMAT_HEX_W(07)":", i);
aoqi@0 272 }
aoqi@0 273 if (i % 2 == 0) {
aoqi@0 274 print(" ");
aoqi@0 275 }
aoqi@0 276 if (i < len) {
aoqi@0 277 print("%02x", ((unsigned char*)data)[i]);
aoqi@0 278 } else {
aoqi@0 279 print(" ");
aoqi@0 280 }
aoqi@0 281 if ((i + 1) % 16 == 0) {
aoqi@0 282 if (with_ascii) {
aoqi@0 283 print(" ");
aoqi@0 284 for (size_t j = 0; j < 16; ++j) {
aoqi@0 285 size_t idx = i + j - 15;
aoqi@0 286 if (idx < len) {
aoqi@0 287 char c = ((char*)data)[idx];
aoqi@0 288 print("%c", c >= 32 && c <= 126 ? c : '.');
aoqi@0 289 }
aoqi@0 290 }
aoqi@0 291 }
aoqi@0 292 cr();
aoqi@0 293 }
aoqi@0 294 }
aoqi@0 295 }
aoqi@0 296
aoqi@0 297 stringStream::stringStream(size_t initial_size) : outputStream() {
aoqi@0 298 buffer_length = initial_size;
aoqi@0 299 buffer = NEW_RESOURCE_ARRAY(char, buffer_length);
aoqi@0 300 buffer_pos = 0;
aoqi@0 301 buffer_fixed = false;
aoqi@0 302 DEBUG_ONLY(rm = Thread::current()->current_resource_mark();)
aoqi@0 303 }
aoqi@0 304
aoqi@0 305 // useful for output to fixed chunks of memory, such as performance counters
aoqi@0 306 stringStream::stringStream(char* fixed_buffer, size_t fixed_buffer_size) : outputStream() {
aoqi@0 307 buffer_length = fixed_buffer_size;
aoqi@0 308 buffer = fixed_buffer;
aoqi@0 309 buffer_pos = 0;
aoqi@0 310 buffer_fixed = true;
aoqi@0 311 }
aoqi@0 312
aoqi@0 313 void stringStream::write(const char* s, size_t len) {
aoqi@0 314 size_t write_len = len; // number of non-null bytes to write
aoqi@0 315 size_t end = buffer_pos + len + 1; // position after write and final '\0'
aoqi@0 316 if (end > buffer_length) {
aoqi@0 317 if (buffer_fixed) {
aoqi@0 318 // if buffer cannot resize, silently truncate
aoqi@0 319 end = buffer_length;
aoqi@0 320 write_len = end - buffer_pos - 1; // leave room for the final '\0'
aoqi@0 321 } else {
aoqi@0 322 // For small overruns, double the buffer. For larger ones,
aoqi@0 323 // increase to the requested size.
aoqi@0 324 if (end < buffer_length * 2) {
aoqi@0 325 end = buffer_length * 2;
aoqi@0 326 }
aoqi@0 327 char* oldbuf = buffer;
aoqi@0 328 assert(rm == NULL || Thread::current()->current_resource_mark() == rm,
aoqi@0 329 "stringStream is re-allocated with a different ResourceMark");
aoqi@0 330 buffer = NEW_RESOURCE_ARRAY(char, end);
aoqi@0 331 strncpy(buffer, oldbuf, buffer_pos);
aoqi@0 332 buffer_length = end;
aoqi@0 333 }
aoqi@0 334 }
aoqi@0 335 // invariant: buffer is always null-terminated
aoqi@0 336 guarantee(buffer_pos + write_len + 1 <= buffer_length, "stringStream oob");
aoqi@0 337 buffer[buffer_pos + write_len] = 0;
aoqi@0 338 strncpy(buffer + buffer_pos, s, write_len);
aoqi@0 339 buffer_pos += write_len;
aoqi@0 340
aoqi@0 341 // Note that the following does not depend on write_len.
aoqi@0 342 // This means that position and count get updated
aoqi@0 343 // even when overflow occurs.
aoqi@0 344 update_position(s, len);
aoqi@0 345 }
aoqi@0 346
aoqi@0 347 char* stringStream::as_string() {
aoqi@0 348 char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos + 1);
aoqi@0 349 strncpy(copy, buffer, buffer_pos);
aoqi@0 350 copy[buffer_pos] = 0; // terminating null
aoqi@0 351 return copy;
aoqi@0 352 }
aoqi@0 353
aoqi@0 354 stringStream::~stringStream() {}
aoqi@0 355
aoqi@0 356 xmlStream* xtty;
aoqi@0 357 outputStream* tty;
aoqi@0 358 outputStream* gclog_or_tty;
aoqi@0 359 extern Mutex* tty_lock;
aoqi@0 360
aoqi@0 361 #define EXTRACHARLEN 32
aoqi@0 362 #define CURRENTAPPX ".current"
aoqi@0 363 #define FILENAMEBUFLEN 1024
aoqi@0 364 // convert YYYY-MM-DD HH:MM:SS to YYYY-MM-DD_HH-MM-SS
aoqi@0 365 char* get_datetime_string(char *buf, size_t len) {
aoqi@0 366 os::local_time_string(buf, len);
aoqi@0 367 int i = (int)strlen(buf);
aoqi@0 368 while (i-- >= 0) {
aoqi@0 369 if (buf[i] == ' ') buf[i] = '_';
aoqi@0 370 else if (buf[i] == ':') buf[i] = '-';
aoqi@0 371 }
aoqi@0 372 return buf;
aoqi@0 373 }
aoqi@0 374
aoqi@0 375 static const char* make_log_name_internal(const char* log_name, const char* force_directory,
aoqi@0 376 int pid, const char* tms) {
aoqi@0 377 const char* basename = log_name;
aoqi@0 378 char file_sep = os::file_separator()[0];
aoqi@0 379 const char* cp;
aoqi@0 380 char pid_text[32];
aoqi@0 381
aoqi@0 382 for (cp = log_name; *cp != '\0'; cp++) {
aoqi@0 383 if (*cp == '/' || *cp == file_sep) {
aoqi@0 384 basename = cp + 1;
aoqi@0 385 }
aoqi@0 386 }
aoqi@0 387 const char* nametail = log_name;
aoqi@0 388 // Compute buffer length
aoqi@0 389 size_t buffer_length;
aoqi@0 390 if (force_directory != NULL) {
aoqi@0 391 buffer_length = strlen(force_directory) + strlen(os::file_separator()) +
aoqi@0 392 strlen(basename) + 1;
aoqi@0 393 } else {
aoqi@0 394 buffer_length = strlen(log_name) + 1;
aoqi@0 395 }
aoqi@0 396
aoqi@0 397 // const char* star = strchr(basename, '*');
aoqi@0 398 const char* pts = strstr(basename, "%p");
aoqi@0 399 int pid_pos = (pts == NULL) ? -1 : (pts - nametail);
aoqi@0 400
aoqi@0 401 if (pid_pos >= 0) {
aoqi@0 402 jio_snprintf(pid_text, sizeof(pid_text), "pid%u", pid);
aoqi@0 403 buffer_length += strlen(pid_text);
aoqi@0 404 }
aoqi@0 405
aoqi@0 406 pts = strstr(basename, "%t");
aoqi@0 407 int tms_pos = (pts == NULL) ? -1 : (pts - nametail);
aoqi@0 408 if (tms_pos >= 0) {
aoqi@0 409 buffer_length += strlen(tms);
aoqi@0 410 }
aoqi@0 411
aoqi@0 412 // Create big enough buffer.
aoqi@0 413 char *buf = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
aoqi@0 414
aoqi@0 415 strcpy(buf, "");
aoqi@0 416 if (force_directory != NULL) {
aoqi@0 417 strcat(buf, force_directory);
aoqi@0 418 strcat(buf, os::file_separator());
aoqi@0 419 nametail = basename; // completely skip directory prefix
aoqi@0 420 }
aoqi@0 421
aoqi@0 422 // who is first, %p or %t?
aoqi@0 423 int first = -1, second = -1;
aoqi@0 424 const char *p1st = NULL;
aoqi@0 425 const char *p2nd = NULL;
aoqi@0 426
aoqi@0 427 if (pid_pos >= 0 && tms_pos >= 0) {
aoqi@0 428 // contains both %p and %t
aoqi@0 429 if (pid_pos < tms_pos) {
aoqi@0 430 // case foo%pbar%tmonkey.log
aoqi@0 431 first = pid_pos;
aoqi@0 432 p1st = pid_text;
aoqi@0 433 second = tms_pos;
aoqi@0 434 p2nd = tms;
aoqi@0 435 } else {
aoqi@0 436 // case foo%tbar%pmonkey.log
aoqi@0 437 first = tms_pos;
aoqi@0 438 p1st = tms;
aoqi@0 439 second = pid_pos;
aoqi@0 440 p2nd = pid_text;
aoqi@0 441 }
aoqi@0 442 } else if (pid_pos >= 0) {
aoqi@0 443 // contains %p only
aoqi@0 444 first = pid_pos;
aoqi@0 445 p1st = pid_text;
aoqi@0 446 } else if (tms_pos >= 0) {
aoqi@0 447 // contains %t only
aoqi@0 448 first = tms_pos;
aoqi@0 449 p1st = tms;
aoqi@0 450 }
aoqi@0 451
aoqi@0 452 int buf_pos = (int)strlen(buf);
aoqi@0 453 const char* tail = nametail;
aoqi@0 454
aoqi@0 455 if (first >= 0) {
aoqi@0 456 tail = nametail + first + 2;
aoqi@0 457 strncpy(&buf[buf_pos], nametail, first);
aoqi@0 458 strcpy(&buf[buf_pos + first], p1st);
aoqi@0 459 buf_pos = (int)strlen(buf);
aoqi@0 460 if (second >= 0) {
aoqi@0 461 strncpy(&buf[buf_pos], tail, second - first - 2);
aoqi@0 462 strcpy(&buf[buf_pos + second - first - 2], p2nd);
aoqi@0 463 tail = nametail + second + 2;
aoqi@0 464 }
aoqi@0 465 }
aoqi@0 466 strcat(buf, tail); // append rest of name, or all of name
aoqi@0 467 return buf;
aoqi@0 468 }
aoqi@0 469
aoqi@0 470 // log_name comes from -XX:LogFile=log_name or -Xloggc:log_name
aoqi@0 471 // in log_name, %p => pid1234 and
aoqi@0 472 // %t => YYYY-MM-DD_HH-MM-SS
aoqi@0 473 static const char* make_log_name(const char* log_name, const char* force_directory) {
aoqi@0 474 char timestr[32];
aoqi@0 475 get_datetime_string(timestr, sizeof(timestr));
aoqi@0 476 return make_log_name_internal(log_name, force_directory, os::current_process_id(),
aoqi@0 477 timestr);
aoqi@0 478 }
aoqi@0 479
aoqi@0 480 #ifndef PRODUCT
aoqi@0 481 void test_loggc_filename() {
aoqi@0 482 int pid;
aoqi@0 483 char tms[32];
aoqi@0 484 char i_result[FILENAMEBUFLEN];
aoqi@0 485 const char* o_result;
aoqi@0 486 get_datetime_string(tms, sizeof(tms));
aoqi@0 487 pid = os::current_process_id();
aoqi@0 488
aoqi@0 489 // test.log
aoqi@0 490 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "test.log", tms);
aoqi@0 491 o_result = make_log_name_internal("test.log", NULL, pid, tms);
aoqi@0 492 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test.log\", NULL)");
aoqi@0 493 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 494
aoqi@0 495 // test-%t-%p.log
aoqi@0 496 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "test-%s-pid%u.log", tms, pid);
aoqi@0 497 o_result = make_log_name_internal("test-%t-%p.log", NULL, pid, tms);
aoqi@0 498 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test-%%t-%%p.log\", NULL)");
aoqi@0 499 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 500
aoqi@0 501 // test-%t%p.log
aoqi@0 502 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "test-%spid%u.log", tms, pid);
aoqi@0 503 o_result = make_log_name_internal("test-%t%p.log", NULL, pid, tms);
aoqi@0 504 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"test-%%t%%p.log\", NULL)");
aoqi@0 505 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 506
aoqi@0 507 // %p%t.log
aoqi@0 508 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "pid%u%s.log", pid, tms);
aoqi@0 509 o_result = make_log_name_internal("%p%t.log", NULL, pid, tms);
aoqi@0 510 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%p%%t.log\", NULL)");
aoqi@0 511 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 512
aoqi@0 513 // %p-test.log
aoqi@0 514 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "pid%u-test.log", pid);
aoqi@0 515 o_result = make_log_name_internal("%p-test.log", NULL, pid, tms);
aoqi@0 516 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%p-test.log\", NULL)");
aoqi@0 517 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 518
aoqi@0 519 // %t.log
aoqi@0 520 jio_snprintf(i_result, sizeof(char)*FILENAMEBUFLEN, "%s.log", tms);
aoqi@0 521 o_result = make_log_name_internal("%t.log", NULL, pid, tms);
aoqi@0 522 assert(strcmp(i_result, o_result) == 0, "failed on testing make_log_name(\"%%t.log\", NULL)");
aoqi@0 523 FREE_C_HEAP_ARRAY(char, o_result, mtInternal);
aoqi@0 524 }
aoqi@0 525 #endif // PRODUCT
aoqi@0 526
aoqi@0 527 fileStream::fileStream(const char* file_name) {
aoqi@0 528 _file = fopen(file_name, "w");
aoqi@0 529 if (_file != NULL) {
aoqi@0 530 _need_close = true;
aoqi@0 531 } else {
aoqi@0 532 warning("Cannot open file %s due to %s\n", file_name, strerror(errno));
aoqi@0 533 _need_close = false;
aoqi@0 534 }
aoqi@0 535 }
aoqi@0 536
aoqi@0 537 fileStream::fileStream(const char* file_name, const char* opentype) {
aoqi@0 538 _file = fopen(file_name, opentype);
aoqi@0 539 if (_file != NULL) {
aoqi@0 540 _need_close = true;
aoqi@0 541 } else {
aoqi@0 542 warning("Cannot open file %s due to %s\n", file_name, strerror(errno));
aoqi@0 543 _need_close = false;
aoqi@0 544 }
aoqi@0 545 }
aoqi@0 546
aoqi@0 547 void fileStream::write(const char* s, size_t len) {
aoqi@0 548 if (_file != NULL) {
aoqi@0 549 // Make an unused local variable to avoid warning from gcc 4.x compiler.
aoqi@0 550 size_t count = fwrite(s, 1, len, _file);
aoqi@0 551 }
aoqi@0 552 update_position(s, len);
aoqi@0 553 }
aoqi@0 554
aoqi@0 555 long fileStream::fileSize() {
aoqi@0 556 long size = -1;
aoqi@0 557 if (_file != NULL) {
aoqi@0 558 long pos = ::ftell(_file);
aoqi@0 559 if (::fseek(_file, 0, SEEK_END) == 0) {
aoqi@0 560 size = ::ftell(_file);
aoqi@0 561 }
aoqi@0 562 ::fseek(_file, pos, SEEK_SET);
aoqi@0 563 }
aoqi@0 564 return size;
aoqi@0 565 }
aoqi@0 566
aoqi@0 567 char* fileStream::readln(char *data, int count ) {
aoqi@0 568 char * ret = ::fgets(data, count, _file);
aoqi@0 569 //Get rid of annoying \n char
aoqi@0 570 data[::strlen(data)-1] = '\0';
aoqi@0 571 return ret;
aoqi@0 572 }
aoqi@0 573
aoqi@0 574 fileStream::~fileStream() {
aoqi@0 575 if (_file != NULL) {
aoqi@0 576 if (_need_close) fclose(_file);
aoqi@0 577 _file = NULL;
aoqi@0 578 }
aoqi@0 579 }
aoqi@0 580
aoqi@0 581 void fileStream::flush() {
aoqi@0 582 fflush(_file);
aoqi@0 583 }
aoqi@0 584
aoqi@0 585 fdStream::fdStream(const char* file_name) {
aoqi@0 586 _fd = open(file_name, O_WRONLY | O_CREAT | O_TRUNC, 0666);
aoqi@0 587 _need_close = true;
aoqi@0 588 }
aoqi@0 589
aoqi@0 590 fdStream::~fdStream() {
aoqi@0 591 if (_fd != -1) {
aoqi@0 592 if (_need_close) close(_fd);
aoqi@0 593 _fd = -1;
aoqi@0 594 }
aoqi@0 595 }
aoqi@0 596
aoqi@0 597 void fdStream::write(const char* s, size_t len) {
aoqi@0 598 if (_fd != -1) {
aoqi@0 599 // Make an unused local variable to avoid warning from gcc 4.x compiler.
aoqi@0 600 size_t count = ::write(_fd, s, (int)len);
aoqi@0 601 }
aoqi@0 602 update_position(s, len);
aoqi@0 603 }
aoqi@0 604
aoqi@0 605 // dump vm version, os version, platform info, build id,
aoqi@0 606 // memory usage and command line flags into header
aoqi@0 607 void gcLogFileStream::dump_loggc_header() {
aoqi@0 608 if (is_open()) {
aoqi@0 609 print_cr("%s", Abstract_VM_Version::internal_vm_info_string());
aoqi@0 610 os::print_memory_info(this);
aoqi@0 611 print("CommandLine flags: ");
aoqi@0 612 CommandLineFlags::printSetFlags(this);
aoqi@0 613 }
aoqi@0 614 }
aoqi@0 615
aoqi@0 616 gcLogFileStream::~gcLogFileStream() {
aoqi@0 617 if (_file != NULL) {
aoqi@0 618 if (_need_close) fclose(_file);
aoqi@0 619 _file = NULL;
aoqi@0 620 }
aoqi@0 621 if (_file_name != NULL) {
aoqi@0 622 FREE_C_HEAP_ARRAY(char, _file_name, mtInternal);
aoqi@0 623 _file_name = NULL;
aoqi@0 624 }
aoqi@0 625 }
aoqi@0 626
aoqi@0 627 gcLogFileStream::gcLogFileStream(const char* file_name) {
aoqi@0 628 _cur_file_num = 0;
aoqi@0 629 _bytes_written = 0L;
aoqi@0 630 _file_name = make_log_name(file_name, NULL);
aoqi@0 631
aoqi@0 632 // gc log file rotation
aoqi@0 633 if (UseGCLogFileRotation && NumberOfGCLogFiles > 1) {
aoqi@0 634 char tempbuf[FILENAMEBUFLEN];
aoqi@0 635 jio_snprintf(tempbuf, sizeof(tempbuf), "%s.%d" CURRENTAPPX, _file_name, _cur_file_num);
aoqi@0 636 _file = fopen(tempbuf, "w");
aoqi@0 637 } else {
aoqi@0 638 _file = fopen(_file_name, "w");
aoqi@0 639 }
aoqi@0 640 if (_file != NULL) {
aoqi@0 641 _need_close = true;
aoqi@0 642 dump_loggc_header();
aoqi@0 643 } else {
aoqi@0 644 warning("Cannot open file %s due to %s\n", _file_name, strerror(errno));
aoqi@0 645 _need_close = false;
aoqi@0 646 }
aoqi@0 647 }
aoqi@0 648
aoqi@0 649 void gcLogFileStream::write(const char* s, size_t len) {
aoqi@0 650 if (_file != NULL) {
aoqi@0 651 size_t count = fwrite(s, 1, len, _file);
aoqi@0 652 _bytes_written += count;
aoqi@0 653 }
aoqi@0 654 update_position(s, len);
aoqi@0 655 }
aoqi@0 656
aoqi@0 657 // rotate_log must be called from VMThread at safepoint. In case need change parameters
aoqi@0 658 // for gc log rotation from thread other than VMThread, a sub type of VM_Operation
aoqi@0 659 // should be created and be submitted to VMThread's operation queue. DO NOT call this
aoqi@0 660 // function directly. Currently, it is safe to rotate log at safepoint through VMThread.
aoqi@0 661 // That is, no mutator threads and concurrent GC threads run parallel with VMThread to
aoqi@0 662 // write to gc log file at safepoint. If in future, changes made for mutator threads or
aoqi@0 663 // concurrent GC threads to run parallel with VMThread at safepoint, write and rotate_log
aoqi@0 664 // must be synchronized.
aoqi@0 665 void gcLogFileStream::rotate_log(bool force, outputStream* out) {
aoqi@0 666 char time_msg[FILENAMEBUFLEN];
aoqi@0 667 char time_str[EXTRACHARLEN];
aoqi@0 668 char current_file_name[FILENAMEBUFLEN];
aoqi@0 669 char renamed_file_name[FILENAMEBUFLEN];
aoqi@0 670
aoqi@0 671 if (!should_rotate(force)) {
aoqi@0 672 return;
aoqi@0 673 }
aoqi@0 674
aoqi@0 675 #ifdef ASSERT
aoqi@0 676 Thread *thread = Thread::current();
aoqi@0 677 assert(thread == NULL ||
aoqi@0 678 (thread->is_VM_thread() && SafepointSynchronize::is_at_safepoint()),
aoqi@0 679 "Must be VMThread at safepoint");
aoqi@0 680 #endif
aoqi@0 681 if (NumberOfGCLogFiles == 1) {
aoqi@0 682 // rotate in same file
aoqi@0 683 rewind();
aoqi@0 684 _bytes_written = 0L;
aoqi@0 685 jio_snprintf(time_msg, sizeof(time_msg), "File %s rotated at %s\n",
aoqi@0 686 _file_name, os::local_time_string((char *)time_str, sizeof(time_str)));
aoqi@0 687 write(time_msg, strlen(time_msg));
aoqi@0 688
aoqi@0 689 if (out != NULL) {
aoqi@0 690 out->print("%s", time_msg);
aoqi@0 691 }
aoqi@0 692
aoqi@0 693 dump_loggc_header();
aoqi@0 694 return;
aoqi@0 695 }
aoqi@0 696
aoqi@0 697 #if defined(_WINDOWS)
aoqi@0 698 #ifndef F_OK
aoqi@0 699 #define F_OK 0
aoqi@0 700 #endif
aoqi@0 701 #endif // _WINDOWS
aoqi@0 702
aoqi@0 703 // rotate file in names extended_filename.0, extended_filename.1, ...,
aoqi@0 704 // extended_filename.<NumberOfGCLogFiles - 1>. Current rotation file name will
aoqi@0 705 // have a form of extended_filename.<i>.current where i is the current rotation
aoqi@0 706 // file number. After it reaches max file size, the file will be saved and renamed
aoqi@0 707 // with .current removed from its tail.
aoqi@0 708 size_t filename_len = strlen(_file_name);
aoqi@0 709 if (_file != NULL) {
aoqi@0 710 jio_snprintf(renamed_file_name, filename_len + EXTRACHARLEN, "%s.%d",
aoqi@0 711 _file_name, _cur_file_num);
aoqi@0 712 jio_snprintf(current_file_name, filename_len + EXTRACHARLEN, "%s.%d" CURRENTAPPX,
aoqi@0 713 _file_name, _cur_file_num);
aoqi@0 714
aoqi@0 715 const char* msg = force ? "GC log rotation request has been received."
aoqi@0 716 : "GC log file has reached the maximum size.";
aoqi@0 717 jio_snprintf(time_msg, sizeof(time_msg), "%s %s Saved as %s\n",
aoqi@0 718 os::local_time_string((char *)time_str, sizeof(time_str)),
aoqi@0 719 msg, renamed_file_name);
aoqi@0 720 write(time_msg, strlen(time_msg));
aoqi@0 721
aoqi@0 722 if (out != NULL) {
aoqi@0 723 out->print("%s", time_msg);
aoqi@0 724 }
aoqi@0 725
aoqi@0 726 fclose(_file);
aoqi@0 727 _file = NULL;
aoqi@0 728
aoqi@0 729 bool can_rename = true;
aoqi@0 730 if (access(current_file_name, F_OK) != 0) {
aoqi@0 731 // current file does not exist?
aoqi@0 732 warning("No source file exists, cannot rename\n");
aoqi@0 733 can_rename = false;
aoqi@0 734 }
aoqi@0 735 if (can_rename) {
aoqi@0 736 if (access(renamed_file_name, F_OK) == 0) {
aoqi@0 737 if (remove(renamed_file_name) != 0) {
aoqi@0 738 warning("Could not delete existing file %s\n", renamed_file_name);
aoqi@0 739 can_rename = false;
aoqi@0 740 }
aoqi@0 741 } else {
aoqi@0 742 // file does not exist, ok to rename
aoqi@0 743 }
aoqi@0 744 }
aoqi@0 745 if (can_rename && rename(current_file_name, renamed_file_name) != 0) {
aoqi@0 746 warning("Could not rename %s to %s\n", _file_name, renamed_file_name);
aoqi@0 747 }
aoqi@0 748 }
aoqi@0 749
aoqi@0 750 _cur_file_num++;
aoqi@0 751 if (_cur_file_num > NumberOfGCLogFiles - 1) _cur_file_num = 0;
aoqi@0 752 jio_snprintf(current_file_name, filename_len + EXTRACHARLEN, "%s.%d" CURRENTAPPX,
aoqi@0 753 _file_name, _cur_file_num);
aoqi@0 754 _file = fopen(current_file_name, "w");
aoqi@0 755
aoqi@0 756 if (_file != NULL) {
aoqi@0 757 _bytes_written = 0L;
aoqi@0 758 _need_close = true;
aoqi@0 759 // reuse current_file_name for time_msg
aoqi@0 760 jio_snprintf(current_file_name, filename_len + EXTRACHARLEN,
aoqi@0 761 "%s.%d", _file_name, _cur_file_num);
aoqi@0 762 jio_snprintf(time_msg, sizeof(time_msg), "%s GC log file created %s\n",
aoqi@0 763 os::local_time_string((char *)time_str, sizeof(time_str)),
aoqi@0 764 current_file_name);
aoqi@0 765 write(time_msg, strlen(time_msg));
aoqi@0 766
aoqi@0 767 if (out != NULL) {
aoqi@0 768 out->print("%s", time_msg);
aoqi@0 769 }
aoqi@0 770
aoqi@0 771 dump_loggc_header();
aoqi@0 772 // remove the existing file
aoqi@0 773 if (access(current_file_name, F_OK) == 0) {
aoqi@0 774 if (remove(current_file_name) != 0) {
aoqi@0 775 warning("Could not delete existing file %s\n", current_file_name);
aoqi@0 776 }
aoqi@0 777 }
aoqi@0 778 } else {
aoqi@0 779 warning("failed to open rotation log file %s due to %s\n"
aoqi@0 780 "Turned off GC log file rotation\n",
aoqi@0 781 _file_name, strerror(errno));
aoqi@0 782 _need_close = false;
aoqi@0 783 FLAG_SET_DEFAULT(UseGCLogFileRotation, false);
aoqi@0 784 }
aoqi@0 785 }
aoqi@0 786
aoqi@0 787 defaultStream* defaultStream::instance = NULL;
aoqi@0 788 int defaultStream::_output_fd = 1;
aoqi@0 789 int defaultStream::_error_fd = 2;
aoqi@0 790 FILE* defaultStream::_output_stream = stdout;
aoqi@0 791 FILE* defaultStream::_error_stream = stderr;
aoqi@0 792
aoqi@0 793 #define LOG_MAJOR_VERSION 160
aoqi@0 794 #define LOG_MINOR_VERSION 1
aoqi@0 795
aoqi@0 796 void defaultStream::init() {
aoqi@0 797 _inited = true;
aoqi@0 798 if (LogVMOutput || LogCompilation) {
aoqi@0 799 init_log();
aoqi@0 800 }
aoqi@0 801 }
aoqi@0 802
aoqi@0 803 bool defaultStream::has_log_file() {
aoqi@0 804 // lazily create log file (at startup, LogVMOutput is false even
aoqi@0 805 // if +LogVMOutput is used, because the flags haven't been parsed yet)
aoqi@0 806 // For safer printing during fatal error handling, do not init logfile
aoqi@0 807 // if a VM error has been reported.
aoqi@0 808 if (!_inited && !is_error_reported()) init();
aoqi@0 809 return _log_file != NULL;
aoqi@0 810 }
aoqi@0 811
aoqi@0 812 void defaultStream::init_log() {
aoqi@0 813 // %%% Need a MutexLocker?
aoqi@0 814 const char* log_name = LogFile != NULL ? LogFile : "hotspot_%p.log";
aoqi@0 815 const char* try_name = make_log_name(log_name, NULL);
aoqi@0 816 fileStream* file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
aoqi@0 817 if (!file->is_open()) {
aoqi@0 818 // Try again to open the file.
aoqi@0 819 char warnbuf[O_BUFLEN*2];
aoqi@0 820 jio_snprintf(warnbuf, sizeof(warnbuf),
aoqi@0 821 "Warning: Cannot open log file: %s\n", try_name);
aoqi@0 822 // Note: This feature is for maintainer use only. No need for L10N.
aoqi@0 823 jio_print(warnbuf);
aoqi@0 824 FREE_C_HEAP_ARRAY(char, try_name, mtInternal);
aoqi@0 825 try_name = make_log_name(log_name, os::get_temp_directory());
aoqi@0 826 jio_snprintf(warnbuf, sizeof(warnbuf),
aoqi@0 827 "Warning: Forcing option -XX:LogFile=%s\n", try_name);
aoqi@0 828 jio_print(warnbuf);
aoqi@0 829 delete file;
aoqi@0 830 file = new(ResourceObj::C_HEAP, mtInternal) fileStream(try_name);
aoqi@0 831 }
aoqi@0 832 FREE_C_HEAP_ARRAY(char, try_name, mtInternal);
aoqi@0 833
aoqi@0 834 if (file->is_open()) {
aoqi@0 835 _log_file = file;
aoqi@0 836 xmlStream* xs = new(ResourceObj::C_HEAP, mtInternal) xmlStream(file);
aoqi@0 837 _outer_xmlStream = xs;
aoqi@0 838 if (this == tty) xtty = xs;
aoqi@0 839 // Write XML header.
aoqi@0 840 xs->print_cr("<?xml version='1.0' encoding='UTF-8'?>");
aoqi@0 841 // (For now, don't bother to issue a DTD for this private format.)
aoqi@0 842 jlong time_ms = os::javaTimeMillis() - tty->time_stamp().milliseconds();
aoqi@0 843 // %%% Should be: jlong time_ms = os::start_time_milliseconds(), if
aoqi@0 844 // we ever get round to introduce that method on the os class
aoqi@0 845 xs->head("hotspot_log version='%d %d'"
aoqi@0 846 " process='%d' time_ms='"INT64_FORMAT"'",
aoqi@0 847 LOG_MAJOR_VERSION, LOG_MINOR_VERSION,
aoqi@0 848 os::current_process_id(), (int64_t)time_ms);
aoqi@0 849 // Write VM version header immediately.
aoqi@0 850 xs->head("vm_version");
aoqi@0 851 xs->head("name"); xs->text("%s", VM_Version::vm_name()); xs->cr();
aoqi@0 852 xs->tail("name");
aoqi@0 853 xs->head("release"); xs->text("%s", VM_Version::vm_release()); xs->cr();
aoqi@0 854 xs->tail("release");
aoqi@0 855 xs->head("info"); xs->text("%s", VM_Version::internal_vm_info_string()); xs->cr();
aoqi@0 856 xs->tail("info");
aoqi@0 857 xs->tail("vm_version");
aoqi@0 858 // Record information about the command-line invocation.
aoqi@0 859 xs->head("vm_arguments"); // Cf. Arguments::print_on()
aoqi@0 860 if (Arguments::num_jvm_flags() > 0) {
aoqi@0 861 xs->head("flags");
aoqi@0 862 Arguments::print_jvm_flags_on(xs->text());
aoqi@0 863 xs->tail("flags");
aoqi@0 864 }
aoqi@0 865 if (Arguments::num_jvm_args() > 0) {
aoqi@0 866 xs->head("args");
aoqi@0 867 Arguments::print_jvm_args_on(xs->text());
aoqi@0 868 xs->tail("args");
aoqi@0 869 }
aoqi@0 870 if (Arguments::java_command() != NULL) {
aoqi@0 871 xs->head("command"); xs->text()->print_cr("%s", Arguments::java_command());
aoqi@0 872 xs->tail("command");
aoqi@0 873 }
aoqi@0 874 if (Arguments::sun_java_launcher() != NULL) {
aoqi@0 875 xs->head("launcher"); xs->text()->print_cr("%s", Arguments::sun_java_launcher());
aoqi@0 876 xs->tail("launcher");
aoqi@0 877 }
aoqi@0 878 if (Arguments::system_properties() != NULL) {
aoqi@0 879 xs->head("properties");
aoqi@0 880 // Print it as a java-style property list.
aoqi@0 881 // System properties don't generally contain newlines, so don't bother with unparsing.
aoqi@0 882 for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
aoqi@0 883 xs->text()->print_cr("%s=%s", p->key(), p->value());
aoqi@0 884 }
aoqi@0 885 xs->tail("properties");
aoqi@0 886 }
aoqi@0 887 xs->tail("vm_arguments");
aoqi@0 888 // tty output per se is grouped under the <tty>...</tty> element.
aoqi@0 889 xs->head("tty");
aoqi@0 890 // All further non-markup text gets copied to the tty:
aoqi@0 891 xs->_text = this; // requires friend declaration!
aoqi@0 892 } else {
aoqi@0 893 delete(file);
aoqi@0 894 // and leave xtty as NULL
aoqi@0 895 LogVMOutput = false;
aoqi@0 896 DisplayVMOutput = true;
aoqi@0 897 LogCompilation = false;
aoqi@0 898 }
aoqi@0 899 }
aoqi@0 900
aoqi@0 901 // finish_log() is called during normal VM shutdown. finish_log_on_error() is
aoqi@0 902 // called by ostream_abort() after a fatal error.
aoqi@0 903 //
aoqi@0 904 void defaultStream::finish_log() {
aoqi@0 905 xmlStream* xs = _outer_xmlStream;
aoqi@0 906 xs->done("tty");
aoqi@0 907
aoqi@0 908 // Other log forks are appended here, at the End of Time:
aoqi@0 909 CompileLog::finish_log(xs->out()); // write compile logging, if any, now
aoqi@0 910
aoqi@0 911 xs->done("hotspot_log");
aoqi@0 912 xs->flush();
aoqi@0 913
aoqi@0 914 fileStream* file = _log_file;
aoqi@0 915 _log_file = NULL;
aoqi@0 916
aoqi@0 917 delete _outer_xmlStream;
aoqi@0 918 _outer_xmlStream = NULL;
aoqi@0 919
aoqi@0 920 file->flush();
aoqi@0 921 delete file;
aoqi@0 922 }
aoqi@0 923
aoqi@0 924 void defaultStream::finish_log_on_error(char *buf, int buflen) {
aoqi@0 925 xmlStream* xs = _outer_xmlStream;
aoqi@0 926
aoqi@0 927 if (xs && xs->out()) {
aoqi@0 928
aoqi@0 929 xs->done_raw("tty");
aoqi@0 930
aoqi@0 931 // Other log forks are appended here, at the End of Time:
aoqi@0 932 CompileLog::finish_log_on_error(xs->out(), buf, buflen); // write compile logging, if any, now
aoqi@0 933
aoqi@0 934 xs->done_raw("hotspot_log");
aoqi@0 935 xs->flush();
aoqi@0 936
aoqi@0 937 fileStream* file = _log_file;
aoqi@0 938 _log_file = NULL;
aoqi@0 939 _outer_xmlStream = NULL;
aoqi@0 940
aoqi@0 941 if (file) {
aoqi@0 942 file->flush();
aoqi@0 943
aoqi@0 944 // Can't delete or close the file because delete and fclose aren't
aoqi@0 945 // async-safe. We are about to die, so leave it to the kernel.
aoqi@0 946 // delete file;
aoqi@0 947 }
aoqi@0 948 }
aoqi@0 949 }
aoqi@0 950
aoqi@0 951 intx defaultStream::hold(intx writer_id) {
aoqi@0 952 bool has_log = has_log_file(); // check before locking
aoqi@0 953 if (// impossible, but who knows?
aoqi@0 954 writer_id == NO_WRITER ||
aoqi@0 955
aoqi@0 956 // bootstrap problem
aoqi@0 957 tty_lock == NULL ||
aoqi@0 958
aoqi@0 959 // can't grab a lock or call Thread::current() if TLS isn't initialized
aoqi@0 960 ThreadLocalStorage::thread() == NULL ||
aoqi@0 961
aoqi@0 962 // developer hook
aoqi@0 963 !SerializeVMOutput ||
aoqi@0 964
aoqi@0 965 // VM already unhealthy
aoqi@0 966 is_error_reported() ||
aoqi@0 967
aoqi@0 968 // safepoint == global lock (for VM only)
aoqi@0 969 (SafepointSynchronize::is_synchronizing() &&
aoqi@0 970 Thread::current()->is_VM_thread())
aoqi@0 971 ) {
aoqi@0 972 // do not attempt to lock unless we know the thread and the VM is healthy
aoqi@0 973 return NO_WRITER;
aoqi@0 974 }
aoqi@0 975 if (_writer == writer_id) {
aoqi@0 976 // already held, no need to re-grab the lock
aoqi@0 977 return NO_WRITER;
aoqi@0 978 }
aoqi@0 979 tty_lock->lock_without_safepoint_check();
aoqi@0 980 // got the lock
aoqi@0 981 if (writer_id != _last_writer) {
aoqi@0 982 if (has_log) {
aoqi@0 983 _log_file->bol();
aoqi@0 984 // output a hint where this output is coming from:
aoqi@0 985 _log_file->print_cr("<writer thread='" UINTX_FORMAT "'/>", writer_id);
aoqi@0 986 }
aoqi@0 987 _last_writer = writer_id;
aoqi@0 988 }
aoqi@0 989 _writer = writer_id;
aoqi@0 990 return writer_id;
aoqi@0 991 }
aoqi@0 992
aoqi@0 993 void defaultStream::release(intx holder) {
aoqi@0 994 if (holder == NO_WRITER) {
aoqi@0 995 // nothing to release: either a recursive lock, or we scribbled (too bad)
aoqi@0 996 return;
aoqi@0 997 }
aoqi@0 998 if (_writer != holder) {
aoqi@0 999 return; // already unlocked, perhaps via break_tty_lock_for_safepoint
aoqi@0 1000 }
aoqi@0 1001 _writer = NO_WRITER;
aoqi@0 1002 tty_lock->unlock();
aoqi@0 1003 }
aoqi@0 1004
aoqi@0 1005
aoqi@0 1006 // Yuck: jio_print does not accept char*/len.
aoqi@0 1007 static void call_jio_print(const char* s, size_t len) {
aoqi@0 1008 char buffer[O_BUFLEN+100];
aoqi@0 1009 if (len > sizeof(buffer)-1) {
aoqi@0 1010 warning("increase O_BUFLEN in ostream.cpp -- output truncated");
aoqi@0 1011 len = sizeof(buffer)-1;
aoqi@0 1012 }
aoqi@0 1013 strncpy(buffer, s, len);
aoqi@0 1014 buffer[len] = '\0';
aoqi@0 1015 jio_print(buffer);
aoqi@0 1016 }
aoqi@0 1017
aoqi@0 1018
aoqi@0 1019 void defaultStream::write(const char* s, size_t len) {
aoqi@0 1020 intx thread_id = os::current_thread_id();
aoqi@0 1021 intx holder = hold(thread_id);
aoqi@0 1022
aoqi@0 1023 if (DisplayVMOutput &&
aoqi@0 1024 (_outer_xmlStream == NULL || !_outer_xmlStream->inside_attrs())) {
aoqi@0 1025 // print to output stream. It can be redirected by a vfprintf hook
aoqi@0 1026 if (s[len] == '\0') {
aoqi@0 1027 jio_print(s);
aoqi@0 1028 } else {
aoqi@0 1029 call_jio_print(s, len);
aoqi@0 1030 }
aoqi@0 1031 }
aoqi@0 1032
aoqi@0 1033 // print to log file
aoqi@0 1034 if (has_log_file()) {
aoqi@0 1035 int nl0 = _newlines;
aoqi@0 1036 xmlTextStream::write(s, len);
aoqi@0 1037 // flush the log file too, if there were any newlines
aoqi@0 1038 if (nl0 != _newlines){
aoqi@0 1039 flush();
aoqi@0 1040 }
aoqi@0 1041 } else {
aoqi@0 1042 update_position(s, len);
aoqi@0 1043 }
aoqi@0 1044
aoqi@0 1045 release(holder);
aoqi@0 1046 }
aoqi@0 1047
aoqi@0 1048 intx ttyLocker::hold_tty() {
aoqi@0 1049 if (defaultStream::instance == NULL) return defaultStream::NO_WRITER;
aoqi@0 1050 intx thread_id = os::current_thread_id();
aoqi@0 1051 return defaultStream::instance->hold(thread_id);
aoqi@0 1052 }
aoqi@0 1053
aoqi@0 1054 void ttyLocker::release_tty(intx holder) {
aoqi@0 1055 if (holder == defaultStream::NO_WRITER) return;
aoqi@0 1056 defaultStream::instance->release(holder);
aoqi@0 1057 }
aoqi@0 1058
aoqi@0 1059 bool ttyLocker::release_tty_if_locked() {
aoqi@0 1060 intx thread_id = os::current_thread_id();
aoqi@0 1061 if (defaultStream::instance->writer() == thread_id) {
aoqi@0 1062 // release the lock and return true so callers know if was
aoqi@0 1063 // previously held.
aoqi@0 1064 release_tty(thread_id);
aoqi@0 1065 return true;
aoqi@0 1066 }
aoqi@0 1067 return false;
aoqi@0 1068 }
aoqi@0 1069
aoqi@0 1070 void ttyLocker::break_tty_lock_for_safepoint(intx holder) {
aoqi@0 1071 if (defaultStream::instance != NULL &&
aoqi@0 1072 defaultStream::instance->writer() == holder) {
aoqi@0 1073 if (xtty != NULL) {
aoqi@0 1074 xtty->print_cr("<!-- safepoint while printing -->");
aoqi@0 1075 }
aoqi@0 1076 defaultStream::instance->release(holder);
aoqi@0 1077 }
aoqi@0 1078 // (else there was no lock to break)
aoqi@0 1079 }
aoqi@0 1080
aoqi@0 1081 void ostream_init() {
aoqi@0 1082 if (defaultStream::instance == NULL) {
aoqi@0 1083 defaultStream::instance = new(ResourceObj::C_HEAP, mtInternal) defaultStream();
aoqi@0 1084 tty = defaultStream::instance;
aoqi@0 1085
aoqi@0 1086 // We want to ensure that time stamps in GC logs consider time 0
aoqi@0 1087 // the time when the JVM is initialized, not the first time we ask
aoqi@0 1088 // for a time stamp. So, here, we explicitly update the time stamp
aoqi@0 1089 // of tty.
aoqi@0 1090 tty->time_stamp().update_to(1);
aoqi@0 1091 }
aoqi@0 1092 }
aoqi@0 1093
aoqi@0 1094 void ostream_init_log() {
aoqi@0 1095 // For -Xloggc:<file> option - called in runtime/thread.cpp
aoqi@0 1096 // Note : this must be called AFTER ostream_init()
aoqi@0 1097
aoqi@0 1098 gclog_or_tty = tty; // default to tty
aoqi@0 1099 if (Arguments::gc_log_filename() != NULL) {
aoqi@0 1100 fileStream * gclog = new(ResourceObj::C_HEAP, mtInternal)
aoqi@0 1101 gcLogFileStream(Arguments::gc_log_filename());
aoqi@0 1102 if (gclog->is_open()) {
aoqi@0 1103 // now we update the time stamp of the GC log to be synced up
aoqi@0 1104 // with tty.
aoqi@0 1105 gclog->time_stamp().update_to(tty->time_stamp().ticks());
aoqi@0 1106 }
aoqi@0 1107 gclog_or_tty = gclog;
aoqi@0 1108 }
aoqi@0 1109
aoqi@0 1110 // If we haven't lazily initialized the logfile yet, do it now,
aoqi@0 1111 // to avoid the possibility of lazy initialization during a VM
aoqi@0 1112 // crash, which can affect the stability of the fatal error handler.
aoqi@0 1113 defaultStream::instance->has_log_file();
aoqi@0 1114 }
aoqi@0 1115
aoqi@0 1116 // ostream_exit() is called during normal VM exit to finish log files, flush
aoqi@0 1117 // output and free resource.
aoqi@0 1118 void ostream_exit() {
aoqi@0 1119 static bool ostream_exit_called = false;
aoqi@0 1120 if (ostream_exit_called) return;
aoqi@0 1121 ostream_exit_called = true;
aoqi@0 1122 if (gclog_or_tty != tty) {
aoqi@0 1123 delete gclog_or_tty;
aoqi@0 1124 }
aoqi@0 1125 {
aoqi@0 1126 // we temporaly disable PrintMallocFree here
aoqi@0 1127 // as otherwise it'll lead to using of almost deleted
aoqi@0 1128 // tty or defaultStream::instance in logging facility
aoqi@0 1129 // of HeapFree(), see 6391258
aoqi@0 1130 DEBUG_ONLY(FlagSetting fs(PrintMallocFree, false);)
aoqi@0 1131 if (tty != defaultStream::instance) {
aoqi@0 1132 delete tty;
aoqi@0 1133 }
aoqi@0 1134 if (defaultStream::instance != NULL) {
aoqi@0 1135 delete defaultStream::instance;
aoqi@0 1136 }
aoqi@0 1137 }
aoqi@0 1138 tty = NULL;
aoqi@0 1139 xtty = NULL;
aoqi@0 1140 gclog_or_tty = NULL;
aoqi@0 1141 defaultStream::instance = NULL;
aoqi@0 1142 }
aoqi@0 1143
aoqi@0 1144 // ostream_abort() is called by os::abort() when VM is about to die.
aoqi@0 1145 void ostream_abort() {
aoqi@0 1146 // Here we can't delete gclog_or_tty and tty, just flush their output
aoqi@0 1147 if (gclog_or_tty) gclog_or_tty->flush();
aoqi@0 1148 if (tty) tty->flush();
aoqi@0 1149
aoqi@0 1150 if (defaultStream::instance != NULL) {
aoqi@0 1151 static char buf[4096];
aoqi@0 1152 defaultStream::instance->finish_log_on_error(buf, sizeof(buf));
aoqi@0 1153 }
aoqi@0 1154 }
aoqi@0 1155
aoqi@0 1156 staticBufferStream::staticBufferStream(char* buffer, size_t buflen,
aoqi@0 1157 outputStream *outer_stream) {
aoqi@0 1158 _buffer = buffer;
aoqi@0 1159 _buflen = buflen;
aoqi@0 1160 _outer_stream = outer_stream;
aoqi@0 1161 // compile task prints time stamp relative to VM start
aoqi@0 1162 _stamp.update_to(1);
aoqi@0 1163 }
aoqi@0 1164
aoqi@0 1165 void staticBufferStream::write(const char* c, size_t len) {
aoqi@0 1166 _outer_stream->print_raw(c, (int)len);
aoqi@0 1167 }
aoqi@0 1168
aoqi@0 1169 void staticBufferStream::flush() {
aoqi@0 1170 _outer_stream->flush();
aoqi@0 1171 }
aoqi@0 1172
aoqi@0 1173 void staticBufferStream::print(const char* format, ...) {
aoqi@0 1174 va_list ap;
aoqi@0 1175 va_start(ap, format);
aoqi@0 1176 size_t len;
aoqi@0 1177 const char* str = do_vsnprintf(_buffer, _buflen, format, ap, false, len);
aoqi@0 1178 write(str, len);
aoqi@0 1179 va_end(ap);
aoqi@0 1180 }
aoqi@0 1181
aoqi@0 1182 void staticBufferStream::print_cr(const char* format, ...) {
aoqi@0 1183 va_list ap;
aoqi@0 1184 va_start(ap, format);
aoqi@0 1185 size_t len;
aoqi@0 1186 const char* str = do_vsnprintf(_buffer, _buflen, format, ap, true, len);
aoqi@0 1187 write(str, len);
aoqi@0 1188 va_end(ap);
aoqi@0 1189 }
aoqi@0 1190
aoqi@0 1191 void staticBufferStream::vprint(const char *format, va_list argptr) {
aoqi@0 1192 size_t len;
aoqi@0 1193 const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, false, len);
aoqi@0 1194 write(str, len);
aoqi@0 1195 }
aoqi@0 1196
aoqi@0 1197 void staticBufferStream::vprint_cr(const char* format, va_list argptr) {
aoqi@0 1198 size_t len;
aoqi@0 1199 const char* str = do_vsnprintf(_buffer, _buflen, format, argptr, true, len);
aoqi@0 1200 write(str, len);
aoqi@0 1201 }
aoqi@0 1202
aoqi@0 1203 bufferedStream::bufferedStream(size_t initial_size, size_t bufmax) : outputStream() {
aoqi@0 1204 buffer_length = initial_size;
aoqi@0 1205 buffer = NEW_C_HEAP_ARRAY(char, buffer_length, mtInternal);
aoqi@0 1206 buffer_pos = 0;
aoqi@0 1207 buffer_fixed = false;
aoqi@0 1208 buffer_max = bufmax;
aoqi@0 1209 }
aoqi@0 1210
aoqi@0 1211 bufferedStream::bufferedStream(char* fixed_buffer, size_t fixed_buffer_size, size_t bufmax) : outputStream() {
aoqi@0 1212 buffer_length = fixed_buffer_size;
aoqi@0 1213 buffer = fixed_buffer;
aoqi@0 1214 buffer_pos = 0;
aoqi@0 1215 buffer_fixed = true;
aoqi@0 1216 buffer_max = bufmax;
aoqi@0 1217 }
aoqi@0 1218
aoqi@0 1219 void bufferedStream::write(const char* s, size_t len) {
aoqi@0 1220
aoqi@0 1221 if(buffer_pos + len > buffer_max) {
aoqi@0 1222 flush();
aoqi@0 1223 }
aoqi@0 1224
aoqi@0 1225 size_t end = buffer_pos + len;
aoqi@0 1226 if (end >= buffer_length) {
aoqi@0 1227 if (buffer_fixed) {
aoqi@0 1228 // if buffer cannot resize, silently truncate
aoqi@0 1229 len = buffer_length - buffer_pos - 1;
aoqi@0 1230 } else {
aoqi@0 1231 // For small overruns, double the buffer. For larger ones,
aoqi@0 1232 // increase to the requested size.
aoqi@0 1233 if (end < buffer_length * 2) {
aoqi@0 1234 end = buffer_length * 2;
aoqi@0 1235 }
aoqi@0 1236 buffer = REALLOC_C_HEAP_ARRAY(char, buffer, end, mtInternal);
aoqi@0 1237 buffer_length = end;
aoqi@0 1238 }
aoqi@0 1239 }
aoqi@0 1240 memcpy(buffer + buffer_pos, s, len);
aoqi@0 1241 buffer_pos += len;
aoqi@0 1242 update_position(s, len);
aoqi@0 1243 }
aoqi@0 1244
aoqi@0 1245 char* bufferedStream::as_string() {
aoqi@0 1246 char* copy = NEW_RESOURCE_ARRAY(char, buffer_pos+1);
aoqi@0 1247 strncpy(copy, buffer, buffer_pos);
aoqi@0 1248 copy[buffer_pos] = 0; // terminating null
aoqi@0 1249 return copy;
aoqi@0 1250 }
aoqi@0 1251
aoqi@0 1252 bufferedStream::~bufferedStream() {
aoqi@0 1253 if (!buffer_fixed) {
aoqi@0 1254 FREE_C_HEAP_ARRAY(char, buffer, mtInternal);
aoqi@0 1255 }
aoqi@0 1256 }
aoqi@0 1257
aoqi@0 1258 #ifndef PRODUCT
aoqi@0 1259
aoqi@0 1260 #if defined(SOLARIS) || defined(LINUX) || defined(AIX) || defined(_ALLBSD_SOURCE)
aoqi@0 1261 #include <sys/types.h>
aoqi@0 1262 #include <sys/socket.h>
aoqi@0 1263 #include <netinet/in.h>
aoqi@0 1264 #include <arpa/inet.h>
aoqi@0 1265 #endif
aoqi@0 1266
aoqi@0 1267 // Network access
aoqi@0 1268 networkStream::networkStream() : bufferedStream(1024*10, 1024*10) {
aoqi@0 1269
aoqi@0 1270 _socket = -1;
aoqi@0 1271
aoqi@0 1272 int result = os::socket(AF_INET, SOCK_STREAM, 0);
aoqi@0 1273 if (result <= 0) {
aoqi@0 1274 assert(false, "Socket could not be created!");
aoqi@0 1275 } else {
aoqi@0 1276 _socket = result;
aoqi@0 1277 }
aoqi@0 1278 }
aoqi@0 1279
aoqi@0 1280 int networkStream::read(char *buf, size_t len) {
aoqi@0 1281 return os::recv(_socket, buf, (int)len, 0);
aoqi@0 1282 }
aoqi@0 1283
aoqi@0 1284 void networkStream::flush() {
aoqi@0 1285 if (size() != 0) {
aoqi@0 1286 int result = os::raw_send(_socket, (char *)base(), size(), 0);
aoqi@0 1287 assert(result != -1, "connection error");
aoqi@0 1288 assert(result == (int)size(), "didn't send enough data");
aoqi@0 1289 }
aoqi@0 1290 reset();
aoqi@0 1291 }
aoqi@0 1292
aoqi@0 1293 networkStream::~networkStream() {
aoqi@0 1294 close();
aoqi@0 1295 }
aoqi@0 1296
aoqi@0 1297 void networkStream::close() {
aoqi@0 1298 if (_socket != -1) {
aoqi@0 1299 flush();
aoqi@0 1300 os::socket_close(_socket);
aoqi@0 1301 _socket = -1;
aoqi@0 1302 }
aoqi@0 1303 }
aoqi@0 1304
aoqi@0 1305 bool networkStream::connect(const char *ip, short port) {
aoqi@0 1306
aoqi@0 1307 struct sockaddr_in server;
aoqi@0 1308 server.sin_family = AF_INET;
aoqi@0 1309 server.sin_port = htons(port);
aoqi@0 1310
aoqi@0 1311 server.sin_addr.s_addr = inet_addr(ip);
aoqi@0 1312 if (server.sin_addr.s_addr == (uint32_t)-1) {
aoqi@0 1313 struct hostent* host = os::get_host_by_name((char*)ip);
aoqi@0 1314 if (host != NULL) {
aoqi@0 1315 memcpy(&server.sin_addr, host->h_addr_list[0], host->h_length);
aoqi@0 1316 } else {
aoqi@0 1317 return false;
aoqi@0 1318 }
aoqi@0 1319 }
aoqi@0 1320
aoqi@0 1321
aoqi@0 1322 int result = os::connect(_socket, (struct sockaddr*)&server, sizeof(struct sockaddr_in));
aoqi@0 1323 return (result >= 0);
aoqi@0 1324 }
aoqi@0 1325
aoqi@0 1326 #endif

mercurial