annotate src/share/vm/utilities/ostream.cpp @ 0:a61af66fc99e jdk7-b24

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