com.sun.enterprise.deployment.archivist.PersistenceArchivist Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2009-2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.enterprise.deployment.archivist;
import com.sun.enterprise.deployment.io.DeploymentDescriptorFile;
import com.sun.enterprise.deployment.io.PersistenceDeploymentDescriptorFile;
import com.sun.enterprise.deployment.RootDeploymentDescriptor;
import com.sun.enterprise.deployment.PersistenceUnitsDescriptor;
import com.sun.enterprise.deployment.util.XModuleType;
import com.sun.logging.LogDomains;
import org.glassfish.api.deployment.archive.ReadableArchive;
import org.glassfish.deployment.common.DeploymentUtils;
import org.xml.sax.SAXParseException;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.Map;
import java.util.HashMap;
import java.util.Enumeration;
public abstract class PersistenceArchivist extends ExtensionsArchivist {
protected static final String JAR_EXT = ".jar";
protected static final char SEPERATOR_CHAR = '/';
private static final Logger st_logger = LogDomains.getLogger(DeploymentUtils.class, LogDomains.DPL_LOGGER);
protected final Logger logger = st_logger;
public DeploymentDescriptorFile getStandardDDFile(RootDeploymentDescriptor descriptor) {
return new PersistenceDeploymentDescriptorFile();
}
public DeploymentDescriptorFile getConfigurationDDFile(RootDeploymentDescriptor descriptor) {
return null;
}
public XModuleType getModuleType() {
return XModuleType.Persistence;
}
@Override
// Need to be overridden in derived class to define module type it supports
public abstract boolean supportsModuleType(XModuleType moduleType);
@Override
public Object open(Archivist main, ReadableArchive archive, RootDeploymentDescriptor descriptor)
throws IOException, SAXParseException {
String puRoot = getPuRoot(archive);
readPersistenceDeploymentDescriptor(main, archive, puRoot, descriptor);
return null; // return null so that the descritor does not get added twice to extensions
}
/** @return true of given path is probable pu root */
public static boolean isProbablePuRootJar(String path) {
return isJarEntry(path) && checkIsInRootOfArchive(path);
}
/** @return true if given path is in root of archive */
private static boolean checkIsInRootOfArchive(String path) {
return path.indexOf('/') == -1;
}
/** @return true of give path corresponds to a jar entry */
private static boolean isJarEntry(String path) {
return path.endsWith(JAR_EXT);
}
protected PersistenceUnitsDescriptor readPersistenceDeploymentDescriptor(Archivist main,
ReadableArchive subArchive, String puRoot, RootDeploymentDescriptor descriptor)
throws IOException, SAXParseException {
final String subArchiveURI = subArchive.getURI().getSchemeSpecificPart();
if (logger.isLoggable(Level.FINE)) {
logger.logp(Level.FINE, "Archivist",
"readPersistenceDeploymentDescriptor",
"PURoot = [{0}] subArchive = {1}",
new Object[]{puRoot, subArchiveURI});
}
if (descriptor.getExtensionsDescriptors(PersistenceUnitsDescriptor.class, puRoot) != null) {
if (logger.isLoggable(Level.FINE)) {
logger.logp(Level.FINE, "Archivist",
"readPersistenceDeploymentDescriptor",
"PU has been already read for = {0}",
subArchiveURI);
}
return null;
}
PersistenceUnitsDescriptor persistenceUnitsDescriptor =
PersistenceUnitsDescriptor.class.cast(super.open(main, subArchive, descriptor));
if (persistenceUnitsDescriptor!=null) {
persistenceUnitsDescriptor.setParent(descriptor);
persistenceUnitsDescriptor.setPuRoot(puRoot);
descriptor.addExtensionDescriptor(PersistenceUnitsDescriptor.class,persistenceUnitsDescriptor, puRoot);
}
return persistenceUnitsDescriptor;
}
public T getDefaultDescriptor() {
return null;
}
/**
* Gets probable persitence roots from given parentArchive using given subArchiveRootScanner
* @param parentArchive the parentArchive within which probable persitence roots need to be scanned
* @param subArchivePURootScanner the scanner instance used for the scan
* @see com.sun.enterprise.deployment.archivist.EarPersistenceArchivist.SubArchivePURootScanner
* @return Map of puroot path to probable puroot archive.
*/
protected static Map getProbablePersistenceRoots(ReadableArchive parentArchive, SubArchivePURootScanner subArchivePURootScanner) {
Map probablePersitenceArchives = new HashMap();
ReadableArchive archiveToScan = subArchivePURootScanner.getSubArchiveToScan(parentArchive);
if(archiveToScan != null) { // The subarchive exists
Enumeration entries = archiveToScan.entries();
String puRootPrefix = subArchivePURootScanner.getPurRootPrefix();
while(entries.hasMoreElements()) {
String entry = entries.nextElement();
if(subArchivePURootScanner.isProbablePuRootJar(entry)) {
ReadableArchive puRootArchive = getSubArchive(archiveToScan, entry, false /* expect entry to be present */);
if(puRootArchive != null) {
String puRoot = puRootPrefix + entry;
probablePersitenceArchives.put(puRoot, puRootArchive);
}
}
}
}
return probablePersitenceArchives;
}
private static ReadableArchive getSubArchive(ReadableArchive parentArchive, String path, boolean expectAbscenceOfSubArchive) {
ReadableArchive returnedArchive = null;
try {
returnedArchive = parentArchive.getSubArchive(path);
} catch (IOException ioe) {
// if there is any problem in opening the subarchive, and the subarchive is expected to be present, log the exception
if(!expectAbscenceOfSubArchive) {
st_logger.log(Level.SEVERE, ioe.getMessage(), ioe);
}
}
return returnedArchive;
}
protected String getPuRoot(ReadableArchive archive) {
// getPuRoot() is called from Open() of this class to define pu root. This is default implementation to keep compiler happy.
// It is assumed that subclasses not overriding open() (which are currently ACCPersitenceArchivist and ServerSidePersitenceArchivist)
// would override this method.
assert false;
return null;
}
protected static abstract class SubArchivePURootScanner {
abstract String getPathOfSubArchiveToScan();
ReadableArchive getSubArchiveToScan(ReadableArchive parentArchive) {
String pathOfSubArchiveToScan = getPathOfSubArchiveToScan();
return (pathOfSubArchiveToScan == null || pathOfSubArchiveToScan.isEmpty()) ? parentArchive :
getSubArchive(parentArchive, pathOfSubArchiveToScan, true /*It is possible that lib does not exist for a given ear */);
}
String getPurRootPrefix() {
String pathOfSubArchiveToScan = getPathOfSubArchiveToScan();
return (pathOfSubArchiveToScan == null || pathOfSubArchiveToScan.isEmpty()) ? pathOfSubArchiveToScan : pathOfSubArchiveToScan + SEPERATOR_CHAR;
}
boolean isProbablePuRootJar(String jarName) {
// all jars in root of subarchive are probable pu roots
boolean probablePuRootJar = PersistenceArchivist.isProbablePuRootJar(jarName);
if(!probablePuRootJar && isJarEntry(jarName) ) {
// A jar that is not in root of archive. Log that it will not be scanned
if (st_logger.isLoggable(Level.FINE)) {
st_logger.logp(Level.FINE, "PersistenceArchivist",
"readPersistenceDeploymentDescriptors",
"skipping {0} as it exists inside a directory in {1}.",
new Object[]{jarName, getPathOfSubArchiveToScan()});
}
}
return probablePuRootJar;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy