Package org.springframework.cache.ehcache

Source Code of org.springframework.cache.ehcache.EhCacheCacheManager

/*
* Copyright 2002-2012 the original author or authors.
*
* 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.springframework.cache.ehcache;

import java.util.Collection;
import java.util.LinkedHashSet;

import net.sf.ehcache.Ehcache;
import net.sf.ehcache.Status;

import org.springframework.cache.Cache;
import org.springframework.cache.transaction.AbstractTransactionSupportingCacheManager;
import org.springframework.util.Assert;

/**
* CacheManager backed by an EhCache {@link net.sf.ehcache.CacheManager}.
*
* @author Costin Leau
* @author Juergen Hoeller
* @since 3.1
*/
public class EhCacheCacheManager extends AbstractTransactionSupportingCacheManager {

  private net.sf.ehcache.CacheManager cacheManager;


  /**
   * Create a new EhCacheCacheManager, setting the target EhCache CacheManager
   * through the {@link #setCacheManager} bean property.
   */
  public EhCacheCacheManager() {
  }

  /**
   * Create a new EhCacheCacheManager for the given backing EhCache.
   * @param cacheManager the backing EhCache {@link net.sf.ehcache.CacheManager}
   */
  public EhCacheCacheManager(net.sf.ehcache.CacheManager cacheManager) {
    this.cacheManager = cacheManager;
  }


  /**
   * Set the backing EhCache {@link net.sf.ehcache.CacheManager}.
   */
  public void setCacheManager(net.sf.ehcache.CacheManager cacheManager) {
    this.cacheManager = cacheManager;
  }

  /**
   * Return the backing EhCache {@link net.sf.ehcache.CacheManager}.
   */
  public net.sf.ehcache.CacheManager getCacheManager() {
    return this.cacheManager;
  }


  @Override
  protected Collection<Cache> loadCaches() {
    Assert.notNull(this.cacheManager, "A backing EhCache CacheManager is required");
    Status status = this.cacheManager.getStatus();
    Assert.isTrue(Status.STATUS_ALIVE.equals(status),
        "An 'alive' EhCache CacheManager is required - current cache is " + status.toString());

    String[] names = this.cacheManager.getCacheNames();
    Collection<Cache> caches = new LinkedHashSet<Cache>(names.length);
    for (String name : names) {
      caches.add(new EhCacheCache(this.cacheManager.getEhcache(name)));
    }
    return caches;
  }

  @Override
  public Cache getCache(String name) {
    Cache cache = super.getCache(name);
    if (cache == null) {
      // check the EhCache cache again
      // (in case the cache was added at runtime)
      Ehcache ehcache = this.cacheManager.getEhcache(name);
      if (ehcache != null) {
        cache = new EhCacheCache(ehcache);
        addCache(cache);
      }
    }
    return cache;
  }

}
TOP

Related Classes of org.springframework.cache.ehcache.EhCacheCacheManager

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.