-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java 9 and modules related changes #160
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
117b5ed
[LOGMGR-131] Update JBoss Modules dependency
dmlloyd 3f7385d
[LOGMGR-184] Make unknown method/class value null as per LogRecord sp…
dmlloyd 86ffbb4
[LOGMGR-134] Add module name, version fields to ExtLogRecord
dmlloyd f6bb7e7
[LOGMGR-131] Add format characters for module name and version
dmlloyd d66b664
[LOGMGR-131] Add structured formatter information for module name, ve…
dmlloyd 1a40d6b
[LOGMGR-133] Introduce JDKSpecific class in prepration for Java 9; ad…
dmlloyd d1ac66f
[LOGMGR-130] Extract log level init task to a separate class which ca…
dmlloyd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source. | ||
* | ||
* Copyright 2017 Red Hat, Inc., and individual contributors | ||
* as indicated by the @author tags. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.jboss.logmanager; | ||
|
||
import java.security.AccessController; | ||
import java.security.PrivilegedAction; | ||
import java.util.Set; | ||
|
||
import org.jboss.modules.Module; | ||
import org.jboss.modules.Version; | ||
|
||
/** | ||
* @author <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> | ||
*/ | ||
final class JDKSpecific { | ||
private JDKSpecific() {} | ||
|
||
private static final Gateway GATEWAY; | ||
private static final boolean JBOSS_MODULES; | ||
|
||
static { | ||
GATEWAY = AccessController.doPrivileged(new PrivilegedAction<Gateway>() { | ||
public Gateway run() { | ||
return new Gateway(); | ||
} | ||
}); | ||
boolean jbossModules = false; | ||
try { | ||
Module.getStartTime(); | ||
jbossModules = true; | ||
} catch (Throwable ignored) {} | ||
JBOSS_MODULES = jbossModules; | ||
} | ||
|
||
static final class Gateway extends SecurityManager { | ||
protected Class<?>[] getClassContext() { | ||
return super.getClassContext(); | ||
} | ||
} | ||
|
||
static Class<?> findCallingClass(Set<ClassLoader> rejectClassLoaders) { | ||
for (Class<?> caller : GATEWAY.getClassContext()) { | ||
final ClassLoader classLoader = caller.getClassLoader(); | ||
if (classLoader != null && ! rejectClassLoaders.contains(classLoader)) { | ||
return caller; | ||
} | ||
} | ||
return null; | ||
} | ||
|
||
static void calculateCaller(ExtLogRecord logRecord) { | ||
final String loggerClassName = logRecord.getLoggerClassName(); | ||
final StackTraceElement[] stackTrace = new Throwable().getStackTrace(); | ||
final Class<?>[] classes = GATEWAY.getClassContext(); | ||
// The stack trace may be missing classes, but the class context is not, so if we find a mismatch, we skip the class context items. | ||
int i = 1, j = 0; | ||
Class<?> clazz = classes[i++]; | ||
StackTraceElement element = stackTrace[j++]; | ||
boolean found = false; | ||
for (;;) { | ||
if (clazz.getName().equals(element.getClassName())) { | ||
if (clazz.getName().equals(loggerClassName)) { | ||
// next entry could be the one we want! | ||
found = true; | ||
} else { | ||
if (found) { | ||
logRecord.setSourceClassName(element.getClassName()); | ||
logRecord.setSourceMethodName(element.getMethodName()); | ||
logRecord.setSourceFileName(element.getFileName()); | ||
logRecord.setSourceLineNumber(element.getLineNumber()); | ||
if (JBOSS_MODULES) { | ||
calculateModule(logRecord, clazz); | ||
} | ||
return; | ||
} | ||
} | ||
if (j == classes.length) { | ||
logRecord.setUnknownCaller(); | ||
return; | ||
} | ||
element = stackTrace[j ++]; | ||
} | ||
if (i == classes.length) { | ||
logRecord.setUnknownCaller(); | ||
return; | ||
} | ||
clazz = classes[i ++]; | ||
} | ||
} | ||
|
||
private static void calculateModule(final ExtLogRecord logRecord, final Class<?> clazz) { | ||
final Module module = Module.forClass(clazz); | ||
if (module != null) { | ||
logRecord.setSourceModuleName(module.getName()); | ||
final Version version = module.getVersion(); | ||
if (version != null) { | ||
logRecord.setSourceModuleVersion(version.toString()); | ||
} else { | ||
logRecord.setSourceModuleVersion(null); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want a copyright header on this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I saw it was missing, but after certain recent internal discussions my opinion was pretty much
¯\_(ツ)_/¯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah same. I added it only for consistency.