org.apache.tapestry5.internal.jpa.PersistenceUnitInfoImpl Maven / Gradle / Ivy
The newest version!
// Copyright 2011 The Apache Software Foundation
//
// 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.apache.tapestry5.internal.jpa;
import org.apache.tapestry5.commons.util.CollectionFactory;
import org.apache.tapestry5.jpa.TapestryPersistenceUnitInfo;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.persistence.SharedCacheMode;
import javax.persistence.ValidationMode;
import javax.persistence.spi.ClassTransformer;
import javax.persistence.spi.PersistenceUnitTransactionType;
import javax.sql.DataSource;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
public class PersistenceUnitInfoImpl implements TapestryPersistenceUnitInfo
{
private String persistenceUnitName;
private String persistenceProviderClassName;
private String persistenceXMLSchemaVersion;
private PersistenceUnitTransactionType transactionType = PersistenceUnitTransactionType.RESOURCE_LOCAL;
private DataSource nonJtaDataSource;
private DataSource jtaDataSource;
private ValidationMode validationMode;
private SharedCacheMode sharedCacheMode;
private boolean excludeUnlistedClasses = true;
private final Set managedClassNames = CollectionFactory.newSet();
private final Set mappingFilesNames = CollectionFactory.newSet();
private final List jarFileUrls = CollectionFactory.newList();
private final Properties properties = new Properties();
private Map entityManagerProperties;
public PersistenceUnitInfoImpl(String persistenceUnitName)
{
this.persistenceUnitName = persistenceUnitName;
}
/**
* {@inheritDoc}
*/
@Override
public String getPersistenceUnitName()
{
return persistenceUnitName;
}
/**
* {@inheritDoc}
*/
@Override
public String getPersistenceProviderClassName()
{
return persistenceProviderClassName;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo persistenceProviderClassName(final String persistenceProviderClassName)
{
this.persistenceProviderClassName = persistenceProviderClassName;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public PersistenceUnitTransactionType getTransactionType()
{
return transactionType;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo transactionType(final PersistenceUnitTransactionType transactionType)
{
this.transactionType = transactionType;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public DataSource getJtaDataSource()
{
return jtaDataSource;
}
/**
* {@inheritDoc}
*/
@Override
public DataSource getNonJtaDataSource()
{
return nonJtaDataSource;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo nonJtaDataSource(final String nonJtaDataSource)
{
this.nonJtaDataSource = lookupDataSource(nonJtaDataSource);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo jtaDataSource(final String jtaDataSource)
{
this.jtaDataSource = lookupDataSource(jtaDataSource);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public List getMappingFileNames()
{
List tmp = CollectionFactory.newList(mappingFilesNames);
return Collections.unmodifiableList(tmp);
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addMappingFileName(final String fileName)
{
mappingFilesNames.add(fileName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addJarFileUrl(URL url)
{
jarFileUrls.add(url);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addJarFileUrl(String url)
{
try
{
return addJarFileUrl(new URL(getPersistenceUnitRootUrl(), url));
} catch (MalformedURLException e)
{
throw new RuntimeException(e);
}
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addProperty(String name, String value)
{
getProperties().put(name, value);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo excludeUnlistedClasses(boolean exclude)
{
this.excludeUnlistedClasses = exclude;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public List getJarFileUrls()
{
return Collections.unmodifiableList(jarFileUrls);
}
/**
* {@inheritDoc}
*/
@Override
public URL getPersistenceUnitRootUrl()
{
return getClass().getResource("/");
}
/**
* {@inheritDoc}
*/
@Override
public List getManagedClassNames()
{
List tmp = CollectionFactory.newList(managedClassNames);
return Collections.unmodifiableList(tmp);
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addManagedClassName(final String className)
{
managedClassNames.add(className);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo addManagedClass(final Class> clazz)
{
addManagedClassName(clazz.getName());
return this;
}
/**
* {@inheritDoc}
*/
@Override
public boolean excludeUnlistedClasses()
{
return excludeUnlistedClasses;
}
/**
* {@inheritDoc}
*/
@Override
public SharedCacheMode getSharedCacheMode()
{
return sharedCacheMode;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo sharedCacheMode(final SharedCacheMode cacheMode)
{
sharedCacheMode = cacheMode;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ValidationMode getValidationMode()
{
return validationMode;
}
/**
* {@inheritDoc}
*/
@Override
public TapestryPersistenceUnitInfo validationMode(final ValidationMode validationMode)
{
this.validationMode = validationMode;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public Properties getProperties()
{
return properties;
}
/**
* {@inheritDoc}
*/
@Override
public String getPersistenceXMLSchemaVersion()
{
return persistenceXMLSchemaVersion;
}
public void setPersistenceXMLSchemaVersion(final String version)
{
persistenceXMLSchemaVersion = version;
}
/**
* {@inheritDoc}
*/
@Override
public ClassLoader getClassLoader()
{
return Thread.currentThread().getContextClassLoader();
}
/**
* {@inheritDoc}
*/
@Override
public void addTransformer(final ClassTransformer transformer)
{
}
/**
* {@inheritDoc}
*/
@Override
public ClassLoader getNewTempClassLoader()
{
return getClassLoader();
}
private DataSource lookupDataSource(final String name)
{
try
{
// TODO: Create InitialContext with environment properties?
final Context initContext = new InitialContext();
final Context envContext = (Context) initContext.lookup("java:comp/env");
return (DataSource) envContext.lookup(name);
} catch (final NamingException e)
{
throw new RuntimeException(e);
}
}
@Override
public TapestryPersistenceUnitInfo setEntityManagerProperties(Map properties) {
entityManagerProperties = properties;
return this;
}
@Override
public Map getEntityManagerProperties() {
return entityManagerProperties;
}
}