buildframework/helium/sf/java/jpa/src/com/nokia/helium/jpa/ORMUtil.java
author wbernard
Wed, 16 Jun 2010 16:51:40 +0300
changeset 588 c7c26511138f
parent 587 85df38eb4012
permissions -rw-r--r--
helium-10.0.0-bc45d50958fe


/*
 * Copyright (c) 2007-2008 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of the License "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description:  
 *
 */

package com.nokia.helium.jpa;

import org.apache.log4j.Logger;
import java.util.HashMap;
import org.apache.tools.ant.BuildException;
import java.io.IOException;

/**
 * Utility class to communicate to the database using JPA entity
 * manager.
 */
public final class ORMUtil {

    private static Logger log = Logger.getLogger(ORMUtil.class);
    
    private static final int PERSISTANCE_COUNT_LIMIT = 1000;

    private static final int READ_CACHE_LIMIT = 30000;

    private static HashMap<String, ORMEntityManager> emMap = 
        new HashMap<String, ORMEntityManager>();

    private static HashMap<String, Integer> emMapCount = 
        new HashMap<String, Integer>();

    private static Object mutexObject = new Object();
    private ORMUtil() {
    }
    
    /**
     * Initializes the entity manager and begins the transcations.
     * @param urlPath - database path to be connected to.
     */
    public static synchronized void initializeORM(String urlPath) {
        ORMEntityManager manager = emMap.get(urlPath);
        log.debug("initializeORM: urlpath: " + urlPath);
        if (manager == null) {
            try {
                log.debug("initializing for the first time");
                manager = new ORMEntityManager(urlPath);
                emMap.put(urlPath, manager);
                Integer countObj = new Integer(1);
                emMapCount.put(urlPath, countObj);
                log.debug("initializeORM: manager: " + manager);
                log.debug("initializeORM: manager: " + manager.getEntityManager());
            } catch ( IOException ex ) {
                throw new BuildException("Entity Manager creation failure");
            }
        } else {
            Integer countObj = emMapCount.get(urlPath);
            log.debug("object exists and incrementing the value");
            countObj = new Integer(countObj.intValue() + 1);
            log.debug("object exists count value: " + countObj.intValue());
            emMapCount.put(urlPath, countObj);
        }
    }

    /**
     * Helper Function to return the entity manager.
     * @return entity manager created during initialization.
     */
    public static synchronized ORMEntityManager getEntityManager(String urlPath) {
        log.debug("getEntityManager: urlpath: " + urlPath);
        ORMEntityManager manager = emMap.get(urlPath);
        if (manager != null) {
            log.debug("getEntityManager: manager: " + manager);
            log.debug("getEntityManager: manager.entityManager: " + manager.getEntityManager());
            return manager;
        } else {
            log.debug("getEntityManager: manager: is null");
            throw new BuildException("ORM entity manager is null");
        }
    }
    
    /**
     * Finalize the entity manager and release all the objects.
     */
    public static synchronized void finalizeORM(String urlPath) {
        ORMEntityManager manager = emMap.get(urlPath);
        log.debug("finalizeORM: urlpath: " + urlPath);
        if (manager != null) {
            Integer countObj = emMapCount.get(urlPath);
            if (countObj != null) {
                int count = countObj.intValue();
                count = count - 1;
                if (count > 0) {
                    countObj = new Integer(count);
                    log.debug("countOBj value: " + countObj.intValue());
                    emMapCount.put(urlPath, countObj);
                } else {
                    manager.finalizeEntityManager();
                    manager = null;
                    log.debug("finalizeORM: manager" + manager);
                    emMap.remove(urlPath);
                    emMapCount.remove(urlPath);
                }
            }
        }
    }
    
    public static Object getMutexObject() {
        return mutexObject;
    }
}