|
Glassfish example source code file (PersistenceUnitInfoImpl.java)
The Glassfish PersistenceUnitInfoImpl.java source code
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-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 org.glassfish.persistence.jpa;
import com.sun.enterprise.deployment.BundleDescriptor;
import com.sun.enterprise.deployment.PersistenceUnitDescriptor;
import com.sun.enterprise.deployment.RootDeploymentDescriptor;
import com.sun.enterprise.deployment.util.ModuleDescriptor;
import com.sun.enterprise.util.i18n.StringManager;
import com.sun.logging.LogDomains;
import javax.naming.NamingException;
import javax.persistence.spi.ClassTransformer;
import javax.persistence.spi.PersistenceUnitInfo;
import javax.persistence.spi.PersistenceUnitTransactionType;
import javax.persistence.SharedCacheMode;
import javax.persistence.ValidationMode;
import javax.sql.DataSource;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.glassfish.deployment.common.DeploymentUtils;
/**
* This class implements {@link PersistenceUnitInfo} interface.
*
* @author Sanjeeb.Sahoo@Sun.COM
*/
public class PersistenceUnitInfoImpl implements PersistenceUnitInfo {
/* This class is public because it is used in verifier */
private static final String DEFAULT_PROVIDER_NAME = "org.eclipse.persistence.jpa.PersistenceProvider"; // NOI18N
// We allow the default provider to be specified using -D option.
private static String defaultProvider;
private static Logger logger = LogDomains.getLogger(PersistenceUnitInfoImpl.class, LogDomains.PERSISTENCE_LOGGER);
private static final StringManager localStrings = StringManager.getManager(PersistenceUnitInfoImpl.class);
private PersistenceUnitDescriptor persistenceUnitDescriptor;
private ProviderContainerContractInfo providerContainerContractInfo;
private File absolutePuRootFile;
private DataSource jtaDataSource;
private DataSource nonJtaDataSource;
private List<URL> jarFiles;
public PersistenceUnitInfoImpl(
PersistenceUnitDescriptor persistenceUnitDescriptor,
ProviderContainerContractInfo providerContainerContractInfo) {
this.persistenceUnitDescriptor = persistenceUnitDescriptor;
this.providerContainerContractInfo = providerContainerContractInfo;
jarFiles = _getJarFiles();
String jtaDataSourceName = persistenceUnitDescriptor.getJtaDataSource();
String nonJtaDataSourceName = persistenceUnitDescriptor.getNonJtaDataSource();
try {
jtaDataSource = jtaDataSourceName == null ? null : providerContainerContractInfo.lookupDataSource(jtaDataSourceName);
nonJtaDataSource = nonJtaDataSourceName == null ? null : providerContainerContractInfo.lookupNonTxDataSource(nonJtaDataSourceName);
} catch (NamingException e) {
throw new RuntimeException(e);
}
}
// Implementation of PersistenceUnitInfo interface
/**
* {@inheritDoc}
*/
public String getPersistenceUnitName() {
return persistenceUnitDescriptor.getName();
}
/**
* {@inheritDoc}
*/
public String getPersistenceProviderClassName() {
return getPersistenceProviderClassNameForPuDesc(persistenceUnitDescriptor);
}
/**
* {@inheritDoc}
*/
public PersistenceUnitTransactionType getTransactionType() {
return PersistenceUnitTransactionType.valueOf(
persistenceUnitDescriptor.getTransactionType());
}
/**
* {@inheritDoc}
*/
public DataSource getJtaDataSource() {
return jtaDataSource;
}
/**
* {@inheritDoc}
*/
public DataSource getNonJtaDataSource() {
return nonJtaDataSource;
}
public URL getPersistenceUnitRootUrl() {
try {
return getAbsolutePuRootFile().toURI().toURL();
} catch (MalformedURLException e) {
throw new RuntimeException(e);
}
}
/**
* {@inheritDoc}
*/
public List<String> getMappingFileNames() {
return persistenceUnitDescriptor.getMappingFiles(); // its already unmodifiable
}
/**
* {@inheritDoc}
*/
public List<URL> getJarFileUrls() {
return jarFiles;
}
/**
* {@inheritDoc}
*/
public List<String> getManagedClassNames() {
return persistenceUnitDescriptor.getClasses(); // its already unmodifiable
}
public boolean excludeUnlistedClasses() {
return persistenceUnitDescriptor.isExcludeUnlistedClasses();
}
public SharedCacheMode getSharedCacheMode() {
return persistenceUnitDescriptor.getSharedCacheMode();
}
public ValidationMode getValidationMode() {
return persistenceUnitDescriptor.getValidationMode();
}
/**
* {@inheritDoc}
*/
public Properties getProperties() {
return persistenceUnitDescriptor.getProperties(); // its already a clone
}
public String getPersistenceXMLSchemaVersion() {
return persistenceUnitDescriptor.getParent().getSpecVersion();
}
/**
* {@inheritDoc}
*/
public ClassLoader getClassLoader() {
return providerContainerContractInfo.getClassLoader();
}
/**
* {@inheritDoc}
*/
public void addTransformer(ClassTransformer transformer) {
providerContainerContractInfo.addTransformer(transformer);
}
/**
* {@inheritDoc}
*/
public ClassLoader getNewTempClassLoader() {
return providerContainerContractInfo.getTempClassloader();
}
@Override public String toString() {
/*
* This method is used for debugging only.
*/
StringBuilder result = new StringBuilder("<persistence-unit>"); // NOI18N
result.append("\n\t<PURoot>").append(getPersistenceUnitRootUrl()).append(""); // NOI18N
result.append("\n\t<name>").append(getPersistenceUnitName()).append(""); // NOI18N
result.append("\n\t<provider>").append(getPersistenceProviderClassName()).append(""); // NOI18N
result.append("\n\t<transaction-type>").append(getTransactionType()).append(""); // NOI18N
result.append("\n\t<jta-data-source>").append(getJtaDataSource()).append(""); // NOI18N
result.append("\n\t<non-jta-data-source>").append(getNonJtaDataSource()).append(""); // NOI18N
for (URL jar : getJarFileUrls()) {
result.append("\n\t<jar-file>").append(jar).append(""); // NOI18N
}
for (String mappingFile : getMappingFileNames()) {
result.append("\n\t<mapping-file>").append(mappingFile).append(""); // NOI18N
}
for (String clsName : getManagedClassNames()) {
result.append("\n\t<class-name>").append(clsName).append(""); // NOI18N
}
result.append("\n\t<exclude-unlisted-classes>").append(excludeUnlistedClasses()).append(""); // NOI18N
result.append("\n\t<properties>").append(getProperties()).append(""); // NOI18N
result.append("\n\t<class-loader>").append(getClassLoader()).append(""); // NOI18N
result.append("\n</persistence-unit>\n"); // NOI18N
return result.toString();
}
private List<URL> _getJarFiles() {
List<String> jarFileNames = new ArrayList
Other Glassfish examples (source code examples)Here is a short list of links related to this Glassfish PersistenceUnitInfoImpl.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.