Package org.jbpm.db.hibernate

Source Code of org.jbpm.db.hibernate.HibernateHelper

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jbpm.db.hibernate;

import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.jbpm.JbpmException;
import org.jbpm.context.def.VariableAccess;
import org.jbpm.graph.def.Action;
import org.jbpm.graph.def.Event;
import org.jbpm.graph.def.ExceptionHandler;
import org.jbpm.graph.def.Node;
import org.jbpm.graph.def.ProcessDefinition;
import org.jbpm.graph.def.Transition;
import org.jbpm.instantiation.Delegation;
import org.jbpm.module.def.ModuleDefinition;
import org.jbpm.taskmgmt.def.Task;
import org.jbpm.taskmgmt.def.TaskController;
import org.jbpm.util.ClassLoaderUtil;

public abstract class HibernateHelper {

  /** maps SessionFactory's to Configurations.         */
  /** by default, configuration lookup will be enabled */
  static Map configurations = new HashMap();
  public static void clearConfigurationsCache() {
    configurations = new HashMap();
  }

  public static SessionFactory createSessionFactory() {
    return createSessionFactory(null, null, true);
  }

  public static SessionFactory createSessionFactory(String cfgXmlResource) {
    return createSessionFactory(cfgXmlResource, null, true);
  }

  public static SessionFactory createSessionFactory(String cfgXmlResource, String propertiesResource) {
    return createSessionFactory(cfgXmlResource, propertiesResource, true);
  }

  public static SessionFactory createSessionFactory(String cfgXmlResource, String propertiesResource, boolean isConfigLookupEnabled) {
    Configuration configuration = createConfiguration(cfgXmlResource, propertiesResource);
    return createSessionFactory(configuration, isConfigLookupEnabled);
  }

  public static SessionFactory createSessionFactory(Configuration configuration, boolean isConfigLookupEnabled) {
    SessionFactory sessionFactory = configuration.buildSessionFactory();
    if (isConfigLookupEnabled) {
      configurations.put(sessionFactory, configuration);
    }
    return sessionFactory;
  }

  public static Configuration createConfiguration(String cfgXmlResource, String propertiesResource) {
    Configuration configuration = new Configuration();
   
    // if a special hibernate configuration xml file is specified,
    if (cfgXmlResource!=null) {
      // use the configured file name
      log.debug("creating hibernate configuration resource '"+cfgXmlResource+"'");
      configuration.configure(cfgXmlResource);
    } else {
      log.debug("using default hibernate configuration resource (hibernate.cfg.xml)");
      configuration.configure();
    }
   
    // if the properties are specified in a separate file
    if (propertiesResource!=null) {
      log.debug("using hibernate properties from resource '"+propertiesResource+"'");
      // load the properties
      Properties properties = loadPropertiesFromResource(propertiesResource);
      if (properties != null) {
        // and overwrite the existing properties with the specified properties
        configuration.setProperties(properties);       
      }
    }

    return configuration;
  }

  public static Configuration getConfiguration(SessionFactory sessionFactory) {
    return (Configuration) configurations.get(sessionFactory);
  }
 
  public static SchemaExport createSchemaExport(SessionFactory sessionFactory) {
    return new SchemaExport(getConfiguration(sessionFactory));
  }

  public static boolean createSchemaExportScript(SessionFactory sessionFactory) {
    boolean script = false;
    String showSql = getConfiguration(sessionFactory).getProperty("hibernate.show_sql");
    if ("true".equalsIgnoreCase(showSql)) {
      script = true;
    }
    return script;
  }

  public static void clearHibernateCache(SessionFactory sessionFactory) {
    sessionFactory.evictQueries();
    sessionFactory.evict(VariableAccess.class);
    sessionFactory.evict(Action.class);
    sessionFactory.evict(Event.class);
    sessionFactory.evict(ExceptionHandler.class);
    sessionFactory.evict(Node.class);
    sessionFactory.evict(ProcessDefinition.class);
    sessionFactory.evict(Transition.class);
    sessionFactory.evict(Delegation.class);
    sessionFactory.evict(ModuleDefinition.class);
    sessionFactory.evict(Task.class);
    sessionFactory.evict(TaskController.class);
    sessionFactory.evictCollection("org.jbpm.graph.def.ProcessDefinition.events");
    sessionFactory.evictCollection("org.jbpm.graph.def.ProcessDefinition.exceptionHandlers");
    sessionFactory.evictCollection("org.jbpm.graph.def.ProcessDefinition.nodes");
    sessionFactory.evictCollection("org.jbpm.graph.def.ProcessDefinition.actions");
    sessionFactory.evictCollection("org.jbpm.graph.def.ProcessDefinition.definitions");
    sessionFactory.evictCollection("org.jbpm.graph.def.Node.events");
    sessionFactory.evictCollection("org.jbpm.graph.def.Node.exceptionHandlers");
    sessionFactory.evictCollection("org.jbpm.graph.def.Node.leavingTransitions");
    sessionFactory.evictCollection("org.jbpm.graph.def.Node.arrivingTransitions");
    sessionFactory.evictCollection("org.jbpm.graph.def.Transition.events");
    sessionFactory.evictCollection("org.jbpm.graph.def.Transition.exceptionHandlers");
    sessionFactory.evictCollection("org.jbpm.graph.def.Event.actions");
    sessionFactory.evictCollection("org.jbpm.graph.def.SuperState.nodes");
    sessionFactory.evictCollection("org.jbpm.graph.def.ExceptionHandler.actions");
    sessionFactory.evictCollection("org.jbpm.graph.node.ProcessState.variableAccesses");
    sessionFactory.evictCollection("org.jbpm.graph.node.TaskNode.tasks");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.Swimlane.tasks");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.Task.events");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.Task.exceptionHandlers");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.TaskController.variableAccesses");
    sessionFactory.evictCollection("org.jbpm.file.def.FileDefinition.processFiles");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes");
    sessionFactory.evictCollection("org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks");
    sessionFactory.evictCollection("org.jbpm.graph.action.Script.variableAccesses");
  }

  static Properties loadPropertiesFromResource(String resource) {
    Properties properties = null;
    InputStream inputStream = ClassLoaderUtil.getStream(resource);
    if (inputStream != null) {
      properties = new Properties();
      try {
        properties.load(inputStream);
        inputStream.close();
      } catch (IOException e) {
        throw new JbpmException("couldn't load hibernate properties from resource '"+resource+"'", e);
      }
    }
    else {
      log.warn("couldn't find resource '" + resource + "' to load hibernate properties from");
    }
    return properties;
  }

  private static Log log = LogFactory.getLog(HibernateHelper.class);
}
TOP

Related Classes of org.jbpm.db.hibernate.HibernateHelper

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.