annotate src/share/vm/utilities/ostream.cpp @ 20804:7848fc12602b

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