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