Package org.springframework.cache.concurrent

Source Code of org.springframework.cache.concurrent.ConcurrentMapCache$NullHolder

/*
* 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.concurrent;

import org.springframework.cache.Cache;
import org.springframework.cache.support.SimpleValueWrapper;

import java.io.Serializable;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
* Simple {@link Cache} implementation based on the core JDK
* {@code java.util.concurrent} package.
*
* <p>Useful for testing or simple caching scenarios, typically in combination
* with {@link org.springframework.cache.support.SimpleCacheManager} or
* dynamically through {@link ConcurrentMapCacheManager}.
*
* <p><b>Note:</b> As {@link ConcurrentHashMap} (the default implementation used)
* does not allow for {@code null} values to be stored, this class will replace
* them with a predefined internal object. This behavior can be changed through the
* {@link #ConcurrentMapCache(String, ConcurrentMap, boolean)} constructor.
*
* @author Costin Leau
* @author Juergen Hoeller
* @since 3.1
*/
public class ConcurrentMapCache implements Cache {

  private static final Object NULL_HOLDER = new NullHolder();

  private final String name;

  private final ConcurrentMap<Object, Object> store;

  private final boolean allowNullValues;


  /**
   * Create a new ConcurrentMapCache with the specified name.
   * @param name the name of the cache
   */
  public ConcurrentMapCache(String name) {
    this(name, new ConcurrentHashMap<Object, Object>(256), true);
  }

  /**
   * Create a new ConcurrentMapCache with the specified name.
   * @param name the name of the cache
   * @param allowNullValues whether to accept and convert null values for this cache
   */
  public ConcurrentMapCache(String name, boolean allowNullValues) {
    this(name, new ConcurrentHashMap<Object, Object>(256), allowNullValues);
  }

  /**
   * Create a new ConcurrentMapCache with the specified name and the
   * given internal ConcurrentMap to use.
   * @param name the name of the cache
   * @param store the ConcurrentMap to use as an internal store
   * @param allowNullValues whether to allow <code>null</code> values
   * (adapting them to an internal null holder value)
   */
  public ConcurrentMapCache(String name, ConcurrentMap<Object, Object> store, boolean allowNullValues) {
    this.name = name;
    this.store = store;
    this.allowNullValues = allowNullValues;
  }


  public String getName() {
    return this.name;
  }

  public ConcurrentMap getNativeCache() {
    return this.store;
  }

  public boolean isAllowNullValues() {
    return this.allowNullValues;
  }

  public ValueWrapper get(Object key) {
    Object value = this.store.get(key);
    return (value != null ? new SimpleValueWrapper(fromStoreValue(value)) : null);
  }

  public void put(Object key, Object value) {
    this.store.put(key, toStoreValue(value));
  }

  public void evict(Object key) {
    this.store.remove(key);
  }

  public void clear() {
    this.store.clear();
  }


  /**
   * Convert the given value from the internal store to a user value
   * returned from the get method (adapting <code>null</code>).
   * @param storeValue the store value
   * @return the value to return to the user
   */
  protected Object fromStoreValue(Object storeValue) {
    if (this.allowNullValues && storeValue == NULL_HOLDER) {
      return null;
    }
    return storeValue;
  }

  /**
   * Convert the given user value, as passed into the put method,
   * to a value in the internal store (adapting <code>null</code>).
   * @param userValue the given user value
   * @return the value to store
   */
  protected Object toStoreValue(Object userValue) {
    if (this.allowNullValues && userValue == null) {
      return NULL_HOLDER;
    }
    return userValue;
  }


  private static class NullHolder implements Serializable {
  }

}
TOP

Related Classes of org.springframework.cache.concurrent.ConcurrentMapCache$NullHolder

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.