annotate src/share/vm/utilities/ostream.cpp @ 12269:da051ce490eb

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