author | phh |
Sat, 30 Nov 2019 14:33:05 -0800 | |
changeset 59330 | 5b96c12f909d |
parent 47765 | b7c7428eaab9 |
permissions | -rw-r--r-- |
33097 | 1 |
/* |
46560
388aa8d67c80
8181449: Fix debug.hpp / globalDefinitions.hpp dependency inversion
kbarrett
parents:
42886
diff
changeset
|
2 |
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. |
33097 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
#include "precompiled.hpp" |
|
47765
b7c7428eaab9
8189610: Reconcile jvm.h and all jvm_md.h between java.base and hotspot
coleenp
parents:
47216
diff
changeset
|
25 |
#include "jvm.h" |
33097 | 26 |
#include "logging/logDecorators.hpp" |
27 |
#include "logging/logDecorations.hpp" |
|
28 |
#include "logging/logFileStreamOutput.hpp" |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
29 |
#include "logging/logMessageBuffer.hpp" |
33097 | 30 |
#include "memory/allocation.inline.hpp" |
31 |
||
42067
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
32 |
static bool initialized; |
42886
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
33 |
static union { |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
34 |
char stdoutmem[sizeof(LogStdoutOutput)]; |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
35 |
jlong dummy; |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
36 |
} aligned_stdoutmem; |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
37 |
static union { |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
38 |
char stderrmem[sizeof(LogStderrOutput)]; |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
39 |
jlong dummy; |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
40 |
} aligned_stderrmem; |
42067
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
41 |
|
42886
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
42 |
LogStdoutOutput &StdoutLog = reinterpret_cast<LogStdoutOutput&>(aligned_stdoutmem.stdoutmem); |
9d8028808e78
8170548: VM may crash at startup because StdoutLog/StderrLog logging stream can be badly aligned
simonis
parents:
42067
diff
changeset
|
43 |
LogStderrOutput &StderrLog = reinterpret_cast<LogStderrOutput&>(aligned_stderrmem.stderrmem); |
42067
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
44 |
|
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
45 |
LogFileStreamInitializer::LogFileStreamInitializer() { |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
46 |
if (!initialized) { |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
47 |
::new (&StdoutLog) LogStdoutOutput(); |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
48 |
::new (&StderrLog) LogStderrOutput(); |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
49 |
initialized = true; |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
50 |
} |
34b99c8faa51
8146009: "pure virtual method called" with using new GC logging mechanism
mlarsson
parents:
38263
diff
changeset
|
51 |
} |
33097 | 52 |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
53 |
int LogFileStreamOutput::write_decorations(const LogDecorations& decorations) { |
33097 | 54 |
int total_written = 0; |
55 |
||
56 |
for (uint i = 0; i < LogDecorators::Count; i++) { |
|
57 |
LogDecorators::Decorator decorator = static_cast<LogDecorators::Decorator>(i); |
|
58 |
if (!_decorators.is_decorator(decorator)) { |
|
59 |
continue; |
|
60 |
} |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
61 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
62 |
int written = jio_fprintf(_stream, "[%-*s]", |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
63 |
_decorator_padding[decorator], |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
64 |
decorations.decoration(decorator)); |
33097 | 65 |
if (written <= 0) { |
66 |
return -1; |
|
67 |
} else if (static_cast<size_t>(written - 2) > _decorator_padding[decorator]) { |
|
68 |
_decorator_padding[decorator] = written - 2; |
|
69 |
} |
|
70 |
total_written += written; |
|
71 |
} |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
72 |
return total_written; |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
73 |
} |
33097 | 74 |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
75 |
int LogFileStreamOutput::write(const LogDecorations& decorations, const char* msg) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
76 |
const bool use_decorations = !_decorators.is_empty(); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
77 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
78 |
int written = 0; |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
79 |
os::flockfile(_stream); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
80 |
if (use_decorations) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
81 |
written += write_decorations(decorations); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
82 |
written += jio_fprintf(_stream, " "); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
83 |
} |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
84 |
written += jio_fprintf(_stream, "%s\n", msg); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
85 |
fflush(_stream); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
86 |
os::funlockfile(_stream); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
87 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
88 |
return written; |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
89 |
} |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
90 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
91 |
int LogFileStreamOutput::write(LogMessageBuffer::Iterator msg_iterator) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
92 |
const bool use_decorations = !_decorators.is_empty(); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
93 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
94 |
int written = 0; |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
95 |
os::flockfile(_stream); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
96 |
for (; !msg_iterator.is_at_end(); msg_iterator++) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
97 |
if (use_decorations) { |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
98 |
written += write_decorations(msg_iterator.decorations()); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
99 |
written += jio_fprintf(_stream, " "); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
100 |
} |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
101 |
written += jio_fprintf(_stream, "%s\n", msg_iterator.message()); |
33097 | 102 |
} |
103 |
fflush(_stream); |
|
38263
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
104 |
os::funlockfile(_stream); |
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
105 |
|
a7488329ad27
8145934: Make ttyLocker equivalent for Unified Logging framework
mlarsson
parents:
33097
diff
changeset
|
106 |
return written; |
33097 | 107 |
} |