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