Package com.clarkparsia.empire.impl

Source Code of com.clarkparsia.empire.impl.EntityManagerFactoryImpl

/*
* Copyright (c) 2009-2010 Clark & Parsia, LLC. <http://www.clarkparsia.com>
*
* 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 com.clarkparsia.empire.impl;

import com.clarkparsia.empire.ds.MutableDataSource;
import com.clarkparsia.empire.ds.DataSource;
import com.clarkparsia.empire.ds.DataSourceFactory;
import com.clarkparsia.empire.ds.DataSourceException;
import com.clarkparsia.empire.ds.SupportsTransactions;
import com.clarkparsia.empire.ds.impl.TransactionalDataSource;

import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityManager;

import java.util.Map;
import java.util.HashMap;
import java.util.Collection;
import java.util.HashSet;
import java.net.ConnectException;

/**
* <p>Implementation of the JPA {@link EntityManagerFactory} class to support creating Empire based
* {@link EntityManager EntityManagers}.  Uses an instance of a {@link com.clarkparsia.empire.ds.DataSourceFactory} to dynamically
* create the DataSource used by the new EntityManager on the fly.</p>
*
* @author Michael Grove
* @since 0.1
* @version 0.7
*/
public final class EntityManagerFactoryImpl implements EntityManagerFactory {

  public static final String USE_EMPIRE_TRANSACTIONS = "use.empire.transactions";
 
  /**
   * Factory for creating the DataSources backed by EntityManagers from this factory.
   */
    private DataSourceFactory mDataSourceFactoryProvider;

  /**
   * Whether or not this EntityManagerFactory is open.
   */
  private boolean mIsOpen = true;

  /**
   * The list of EntityManager's created by this factory.
   */
  private Collection<EntityManager> mManagers;

  /**
   * Factory configuration parameters
   */
  private Map<String, ?> mConfig;

  /**
   * Create a new AbstractEntityManagerFactory
     * @param theProvider the DataSourceFactory to use with this
     */
  public EntityManagerFactoryImpl(DataSourceFactory theProvider) {
    this(theProvider, new HashMap<String, Object>());
  }

  /**
   * Create a new AbstractEntityManagerFactory
     * @param theProvider the DataSourceFactory to use with this
   * @param theConfig the container configuration to be used by this EntityManagerFactory
     */
  public EntityManagerFactoryImpl(DataSourceFactory theProvider, final Map<String, ?> theConfig) {
    mManagers = new HashSet<EntityManager>();
        mDataSourceFactoryProvider = theProvider;
   
    mConfig = theConfig;
  }

  /**
   * Create a new instance of an {@link EntityManager} based on the parameters in the map
   * @param theMap the data to use to create the new EntityManager
   * @return a new EntityManager
   * @throws IllegalArgumentException thrown if the map does not contain the required set of properties to
   * create a new instance of the EntityManager
   */
  protected EntityManager newEntityManager(Map<String, Object> theMap) {
    try {
      Map<String, Object> aConfig = new HashMap<String, Object>(mConfig);

      aConfig.putAll(theMap);

      DataSource aSource = mDataSourceFactoryProvider.create(aConfig);

      if (!(aSource instanceof MutableDataSource)) {
        throw new IllegalArgumentException("Cannot use Empire with a non-mutable Data source");
      }

      if (isUseEmpireTransactions() && !(aSource instanceof SupportsTransactions)) {
        aSource = new TransactionalDataSource((MutableDataSource) aSource);
      }
     
      aSource.connect();

      return new EntityManagerImpl( (MutableDataSource) aSource);
    }
    catch (ConnectException e) {
      throw new IllegalStateException("Could not connect to the data source", e);
    }
    catch (DataSourceException e) {
      throw new IllegalArgumentException("There was an error creating the data source for the new EntityManager", e);
    }
  }
 
  private boolean isUseEmpireTransactions() {
    return mConfig.containsKey(USE_EMPIRE_TRANSACTIONS) && Boolean.parseBoolean(mConfig.get(USE_EMPIRE_TRANSACTIONS).toString());
  }

  /**
   * @inheritDoc
   */
  public EntityManager createEntityManager() {
    return createEntityManager(new HashMap());
  }

  /**
   * @inheritDoc
   */
  public EntityManager createEntityManager(final Map theMap) {
    assertOpen();

    EntityManager aManager = newEntityManager(theMap);

    mManagers.add(aManager);

    return aManager;
  }

  /**
   * @inheritDoc
   */
  public void close() {
    mIsOpen = false;

    cleanup();
  }

  /**
   * @inheritDoc
   */
  public boolean isOpen() {
    return mIsOpen;
  }

  /**
   * Free up all resources used by this EntityManagerFactory.  This includes closing all EntityManager's created
   * by this factory.
   */
  protected void cleanup() {
    for (EntityManager aManager : mManagers) {
      if (aManager.isOpen()) {
        aManager.close();
      }
    }
  }

  /**
   * Enforce that this factory is open before allowing any operations to be performed on it
   * @throws IllegalStateException thrown if the factory is not open
   */
  private void assertOpen() {
    if (!isOpen()) {
      throw new IllegalStateException("EntityManagerFactory is not open");
    }
  }
}
TOP

Related Classes of com.clarkparsia.empire.impl.EntityManagerFactoryImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.