org.jboss.modules.JarModuleLoader Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2014 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.modules;
import java.io.File;
import java.util.jar.JarFile;
/**
* @author David M. Lloyd
*/
final class JarModuleLoader extends ModuleLoader {
static final String[] NO_STRINGS = new String[0];
private final ModuleLoader delegate;
private final JarFile jarFile;
private final ModuleIdentifier myIdentifier;
JarModuleLoader(final ModuleLoader delegate, final JarFile jarFile) {
super(new ModuleFinder[] { new JarModuleFinder(simpleNameOf(jarFile), jarFile) });
this.delegate = delegate;
this.jarFile = jarFile;
myIdentifier = simpleNameOf(jarFile);
}
private static ModuleIdentifier simpleNameOf(JarFile jarFile) {
String jarName = jarFile.getName();
String simpleJarName = jarName.substring(jarName.lastIndexOf(File.separatorChar) + 1);
return ModuleIdentifier.create(simpleJarName);
}
protected Module preloadModule(final ModuleIdentifier identifier) throws ModuleLoadException {
if (identifier.equals(myIdentifier)) {
return loadModuleLocal(identifier);
} else {
Module module = loadModuleLocal(identifier);
if (module == null) {
return preloadModule(identifier, delegate);
} else {
return module;
}
}
}
ModuleIdentifier getMyIdentifier() {
return myIdentifier;
}
public String toString() {
return "JAR module loader";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy