All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.cache.ehcache.internal.regions.EhcacheTransactionalDataRegion Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2011, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program 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 distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.cache.ehcache.internal.regions;

import java.util.Properties;

import net.sf.ehcache.Ehcache;
import net.sf.ehcache.Element;
import net.sf.ehcache.concurrent.CacheLockProvider;
import net.sf.ehcache.concurrent.LockType;
import net.sf.ehcache.concurrent.StripedReadWriteLockSync;
import net.sf.ehcache.constructs.nonstop.NonStopCacheException;

import org.hibernate.cache.CacheException;
import org.hibernate.cache.ehcache.internal.nonstop.HibernateNonstopCacheExceptionHandler;
import org.hibernate.cache.ehcache.internal.strategy.EhcacheAccessStrategyFactory;
import org.hibernate.cache.spi.CacheDataDescription;
import org.hibernate.cache.spi.TransactionalDataRegion;
import org.hibernate.cfg.Settings;

/**
 * An Ehcache specific TransactionalDataRegion.
 * 

* This is the common superclass entity and collection regions. * * @author Chris Dennis * @author Greg Luck * @author Emmanuel Bernard * @author Abhishek Sanoujam * @author Alex Snaps */ public class EhcacheTransactionalDataRegion extends EhcacheDataRegion implements TransactionalDataRegion { private static final int LOCAL_LOCK_PROVIDER_CONCURRENCY = 128; /** * Hibernate settings associated with the persistence unit. */ protected final Settings settings; /** * Metadata associated with the objects stored in the region. */ protected final CacheDataDescription metadata; private final CacheLockProvider lockProvider; /** * Construct an transactional Hibernate cache region around the given Ehcache instance. */ EhcacheTransactionalDataRegion(EhcacheAccessStrategyFactory accessStrategyFactory, Ehcache cache, Settings settings, CacheDataDescription metadata, Properties properties) { super( accessStrategyFactory, cache, properties ); this.settings = settings; this.metadata = metadata; Object context = cache.getInternalContext(); if ( context instanceof CacheLockProvider ) { this.lockProvider = (CacheLockProvider) context; } else { this.lockProvider = new StripedReadWriteLockSync( LOCAL_LOCK_PROVIDER_CONCURRENCY ); } } /** * Return the hibernate settings * * @return settings */ public Settings getSettings() { return settings; } /** * {@inheritDoc} */ public boolean isTransactionAware() { return false; } /** * {@inheritDoc} */ public CacheDataDescription getCacheDataDescription() { return metadata; } /** * Get the value mapped to this key, or null if no value is mapped to this key. */ public final Object get(Object key) { try { Element element = cache.get( key ); if ( element == null ) { return null; } else { return element.getObjectValue(); } } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); return null; } else { throw new CacheException( e ); } } } /** * Map the given value to the given key, replacing any existing mapping for this key */ public final void put(Object key, Object value) throws CacheException { try { Element element = new Element( key, value ); cache.put( element ); } catch ( IllegalArgumentException e ) { throw new CacheException( e ); } catch ( IllegalStateException e ) { throw new CacheException( e ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Remove the mapping for this key (if any exists). */ public final void remove(Object key) throws CacheException { try { cache.remove( key ); } catch ( ClassCastException e ) { throw new CacheException( e ); } catch ( IllegalStateException e ) { throw new CacheException( e ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Remove all mapping from this cache region. */ public final void clear() throws CacheException { try { cache.removeAll(); } catch ( IllegalStateException e ) { throw new CacheException( e ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Attempts to write lock the mapping for the given key. */ public final void writeLock(Object key) { try { lockProvider.getSyncForKey( key ).lock( LockType.WRITE ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Attempts to write unlock the mapping for the given key. */ public final void writeUnlock(Object key) { try { lockProvider.getSyncForKey( key ).unlock( LockType.WRITE ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Attempts to read lock the mapping for the given key. */ public final void readLock(Object key) { try { lockProvider.getSyncForKey( key ).lock( LockType.WRITE ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Attempts to read unlock the mapping for the given key. */ public final void readUnlock(Object key) { try { lockProvider.getSyncForKey( key ).unlock( LockType.WRITE ); } catch ( net.sf.ehcache.CacheException e ) { if ( e instanceof NonStopCacheException ) { HibernateNonstopCacheExceptionHandler.getInstance() .handleNonstopCacheException( (NonStopCacheException) e ); } else { throw new CacheException( e ); } } } /** * Returns true if the locks used by the locking methods of this region are the independent of the cache. *

* Independent locks are not locked by the cache when the cache is accessed directly. This means that for an independent lock * lock holds taken through a region method will not block direct access to the cache via other means. */ public final boolean locksAreIndependentOfCache() { return lockProvider instanceof StripedReadWriteLockSync; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy