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

com.caucho.server.distcache.DistCacheSystem Maven / Gradle / Ivy

/*
 * Copyright (c) 1998-2018 Caucho Technology -- all rights reserved
 *
 * This file is part of Resin(R) Open Source
 *
 * Each copy or derived work must preserve the copyright notice and this
 * notice unmodified.
 *
 * Resin Open Source is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Resin Open Source 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, or any warranty
 * of NON-INFRINGEMENT.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Resin Open Source; if not, write to the
 *
 *   Free Software Foundation, Inc.
 *   59 Temple Place, Suite 330
 *   Boston, MA 02111-1307  USA
 *
 * @author Scott Ferguson
 */

package com.caucho.server.distcache;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import com.caucho.env.service.AbstractResinSubSystem;
import com.caucho.env.service.ResinSystem;
import com.caucho.loader.Environment;
import com.caucho.util.L10N;

/**
 * The local cache repository.
 */
public class DistCacheSystem extends AbstractResinSubSystem 
{
  private static final L10N L = new L10N(DistCacheSystem.class);
  
  public static final int START_PRIORITY = START_PRIORITY_CACHE_SERVICE;

  private Map _managerMap
    = new ConcurrentHashMap(); 
  
  private CacheStoreManager _distCacheManager;

  // private DataSource _jdbcDataSource;
  
  public DistCacheSystem(CacheStoreManager distCacheManager)
  {
    if (distCacheManager == null)
      throw new NullPointerException();

    _distCacheManager = distCacheManager;
  }
  
  public static DistCacheSystem 
    createAndAddService(CacheStoreManager distCacheManager)
  {
    ResinSystem system = preCreate(DistCacheSystem.class);

    DistCacheSystem service = new DistCacheSystem(distCacheManager);
    system.addService(DistCacheSystem.class, service);

    return service;
  }

  public static DistCacheSystem getCurrent()
  {
    return ResinSystem.getCurrentService(DistCacheSystem.class);
  }

  /*
  public void setJdbcDataSource(DataSource dataSource)
  {
    throw new ConfigException(L.l("jdbc persistent-store requires Resin Professional"));
  }
  */

  public static CacheImpl getMatchingCache(String name)
  {
    DistCacheSystem cacheService = getCurrent();
    
    if (cacheService == null)
      return null;
    
    CacheManagerImpl localManager = cacheService.getCacheManager();

    String contextId = Environment.getEnvironmentName();

    String guid = contextId + ":" + name;

    return (CacheImpl) localManager.getCache(guid);
  }

  public CacheStoreManager getDistCacheManager()
  {
    return _distCacheManager;
  }
  
  public CacheManagerImpl getCacheManager()
  {
    String name = "Resin";
    
    return getCacheManager(name);
  }
  
  public CacheManagerImpl getCacheManager(String name)
  {
    ClassLoader loader = Thread.currentThread().getContextClassLoader();
    
    return getCacheManager(name, loader);
  }
  
  public CacheManagerImpl getCacheManager(String name, ClassLoader loader)
  {
    String guid = name + ":" + Environment.getEnvironmentName(loader);
    
    CacheManagerImpl cacheManager = _managerMap.get(guid);
    
    if (cacheManager == null) {
      cacheManager = new CacheManagerImpl(this, name, guid, loader);
      
      _managerMap.putIfAbsent(guid, cacheManager);
    }
    
    return _managerMap.get(guid);
  }
  
  void removeCacheManager(String guid)
  {
    _managerMap.remove(guid);
  }

  /**
   * @param cacheHash
   * @return
   */
  public CacheConfig getCacheConfig(byte[] cacheHash)
  {
    return getDistCacheManager().getCacheConfig(cacheHash);
  }
  
  @Override
  public int getStartPriority()
  {
    return START_PRIORITY;
  }
  
  @Override
  public void start()
  {
    _distCacheManager.start();
  }
  
  @Override
  public void stop()
  {
    _distCacheManager.close();
    // _cacheManager.close();
  }
  
  public String toString()
  {
    return getClass().getSimpleName() + "[" + _distCacheManager + "]";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy