Skip to content
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

[LOGMGR-218] Follows up on the previous commit which could potentiall… #230

Merged
merged 1 commit into from
Feb 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions core/src/main/java/org/jboss/logmanager/JDKSpecific.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@
import java.security.PrivilegedAction;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.jboss.modules.Module;
import org.jboss.modules.Version;
Expand All @@ -39,7 +36,6 @@ private JDKSpecific() {}

private static final Gateway GATEWAY;
private static final boolean JBOSS_MODULES;
private static final boolean MODULAR_JVM;

static {
GATEWAY = AccessController.doPrivileged(new PrivilegedAction<Gateway>() {
Expand All @@ -53,23 +49,6 @@ public Gateway run() {
jbossModules = true;
} catch (Throwable ignored) {}
JBOSS_MODULES = jbossModules;

// Get the current Java version and determine, by JVM version level, if this is a modular JDK
final String value = AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override
public String run() {
return System.getProperty("java.specification.version");
}
});
// Shouldn't happen, but we'll assume we're not a modular environment
boolean modularJvm = false;
if (value != null) {
final Matcher matcher = Pattern.compile("^(?:1\\.)?(\\d+)$").matcher(value);
if (matcher.find()) {
modularJvm = Integer.parseInt(matcher.group(1)) >= 9;
}
}
MODULAR_JVM = modularJvm;
}

static final class Gateway extends SecurityManager {
Expand All @@ -78,17 +57,6 @@ protected Class<?>[] getClassContext() {
}
}

/**
* Determines whether or not this is a modular JVM. The version of the {@code java.specification.version} is checked
* to determine if the version is greater than or equal to 9. This is required to disable specific features/hacks
* for older JVM's when the log manager is loaded on the boot class path which doesn't support multi-release JAR's.
*
* @return {@code true} if determined to be a modular JVM, otherwise {@code false}
*/
static boolean isModularJvm() {
return MODULAR_JVM;
}

static Class<?> findCallingClass(Set<ClassLoader> rejectClassLoaders) {
for (Class<?> caller : GATEWAY.getClassContext()) {
final ClassLoader classLoader = caller.getClassLoader();
Expand Down
67 changes: 67 additions & 0 deletions core/src/main/java/org/jboss/logmanager/Jvm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* JBoss, Home of Professional Open Source.
*
* Copyright 2019 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.regex.Matcher;
import java.util.regex.Pattern;

/**
* This is required to be separate from the {@link JDKSpecific} helper. It's specifically required for WildFly embedded
* as the {@link JDKSpecific} initializes JBoss Modules which could cause issues if it's initialized too early. This
* avoids the early initialization.
*
* @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a>
*/
final class Jvm {
private static final boolean MODULAR_JVM;

static {

// Get the current Java version and determine, by JVM version level, if this is a modular JDK
final String value = AccessController.doPrivileged(new PrivilegedAction<String>() {
@Override
public String run() {
return System.getProperty("java.specification.version");
}
});
// Shouldn't happen, but we'll assume we're not a modular environment
boolean modularJvm = false;
if (value != null) {
final Matcher matcher = Pattern.compile("^(?:1\\.)?(\\d+)$").matcher(value);
if (matcher.find()) {
modularJvm = Integer.parseInt(matcher.group(1)) >= 9;
}
}
MODULAR_JVM = modularJvm;
}

/**
* Determines whether or not this is a modular JVM. The version of the {@code java.specification.version} is checked
* to determine if the version is greater than or equal to 9. This is required to disable specific features/hacks
* for older JVM's when the log manager is loaded on the boot class path which doesn't support multi-release JAR's.
*
* @return {@code true} if determined to be a modular JVM, otherwise {@code false}
*/
static boolean isModular() {
return MODULAR_JVM;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class LogLevelInitTask implements PrivilegedAction<Void> {
public Void run() {
// If this is a modular JVM ignore the level hack. The check here is required when the log manager is added to
// the boot class path. The boot class path does not support multi-release JAR's.
if (JDKSpecific.isModularJvm()) {
if (Jvm.isModular()) {
return null;
}
/* This mysterious-looking hack is designed to trick JDK logging into not leaking classloaders and
Expand Down
9 changes: 0 additions & 9 deletions core/src/main/java9/org/jboss/logmanager/JDKSpecific.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,6 @@ private JDKSpecific() {}
JBOSS_MODULES = jbossModules;
}

/**
* Always returns {@code true}.
*
* @return {@code true}
*/
static boolean isModularJvm() {
return true;
}

static Class<?> findCallingClass(Set<ClassLoader> rejectClassLoaders) {
final SecurityManager sm = System.getSecurityManager();
if (sm != null) {
Expand Down
35 changes: 35 additions & 0 deletions core/src/main/java9/org/jboss/logmanager/Jvm.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* JBoss, Home of Professional Open Source.
*
* Copyright 2019 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;

/**
* @author <a href="mailto:jperkins@redhat.com">James R. Perkins</a>
*/
final class Jvm {

/**
* Always returns {@code true}.
*
* @return {@code true}
*/
static boolean isModular() {
return true;
}
}
4 changes: 2 additions & 2 deletions core/src/test/java/org/jboss/logmanager/Environment.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ public class Environment {
*
* @return {@code true} if this is a modular JVM (Java 9+), otherwise {@code false}
*
* @see JDKSpecific#isModularJvm()
* @see Jvm#isModular()
*/
public static boolean isModularJvm() {
return JDKSpecific.isModularJvm();
return Jvm.isModular();
}
}