net.bull.javamelody.JpaOverridePersistenceXmlClassLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javamelody-core Show documentation
Show all versions of javamelody-core Show documentation
Monitoring of JavaEE applications
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 net.bull.javamelody;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
import java.nio.charset.Charset;
import java.util.Collection;
import java.util.Collections;
import java.util.Enumeration;
import java.util.LinkedList;
import net.bull.javamelody.internal.common.InputOutput;
/**
* ClassLoader pour redéfinir le contenu de persistence.xml.
* From Sirona, http://sirona.incubator.apache.org/
*/
class JpaOverridePersistenceXmlClassLoader extends ClassLoader {
private static final String PERSISTENCE_XML = "META-INF/persistence.xml";
private static final String PERSISTENCE_PROVIDER = JpaPersistence.class.getName();
private static final String NO_PROVIDER = " ";
private final String replacement;
/**
* Constructeur.
* @param parent ClassLoader parent
* @param replacement Nom de la classe du persistence provider qui doit remplacer notre persistence provider.
*/
JpaOverridePersistenceXmlClassLoader(final ClassLoader parent, final String replacement) {
super(parent);
this.replacement = replacement;
}
/** {@inheritDoc} */
@Override
// don't load anything from here
protected Class> loadClass(final String name, final boolean resolve)
throws ClassNotFoundException {
return super.loadClass(name, resolve);
}
/** {@inheritDoc} */
@Override
public URL getResource(final String name) {
final URL url = super.getResource(name);
if (PERSISTENCE_XML.equals(name) && url != null) {
return newUrl(url, slurp(url));
}
return url;
}
/** {@inheritDoc} */
@Override
public Enumeration getResources(final String name) throws IOException {
final Enumeration urls = super.getResources(name);
if (PERSISTENCE_XML.equals(name)) {
final Collection overrided = new LinkedList();
while (urls.hasMoreElements()) {
final URL url = urls.nextElement();
overrided.add(newUrl(url, slurp(url)));
}
return Collections.enumeration(overrided);
}
return urls;
}
private URL newUrl(final URL url, final String slurp) {
if (slurp.contains(PERSISTENCE_PROVIDER)) {
final String afterReplace = slurp.replace(PERSISTENCE_PROVIDER, replacement)
.replace(NO_PROVIDER, "");
try {
return new URL(url.getProtocol(), url.getHost(), url.getPort(), url.getFile(),
new ConstantURLStreamHandler(afterReplace));
} catch (final MalformedURLException e) {
throw new IllegalStateException(e);
}
}
return url;
}
private static String slurp(final URL url) {
try {
final InputStream is = url.openStream();
try {
return InputOutput.pumpToString(is, Charset.defaultCharset());
} finally {
is.close();
}
} catch (final IOException e) {
throw new IllegalStateException(e);
}
}
private static class ConstantURLStreamHandler extends URLStreamHandler {
private final String value;
ConstantURLStreamHandler(final String value) {
super();
this.value = value;
}
@Override
protected URLConnection openConnection(URL u) throws IOException {
return new ConstantURLConnection(u, value);
}
}
private static class ConstantURLConnection extends URLConnection {
private final String value;
ConstantURLConnection(final URL url, final String value) {
super(url);
this.value = value;
}
@Override
public void connect() throws IOException {
// no-op
}
@Override
public InputStream getInputStream() throws IOException {
return new ByteArrayInputStream(value.getBytes());
}
}
}