Package org.jboss.virtual.plugins.cache

Source Code of org.jboss.virtual.plugins.cache.TimedVFSCache$VFSContextWrapper

/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.virtual.plugins.cache;

import org.jboss.util.TimedCachePolicy;
import org.jboss.virtual.VFSUtils;
import org.jboss.virtual.spi.VFSContext;

import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;

/**
* Timed cache policy vfs cache.
*
* @author <a href="mailto:ales.justin@jboss.com">Ales Justin</a>
*/
public class TimedVFSCache extends CachePolicyVFSCache<TimedCachePolicy>
{
   private Integer defaultLifetime;
   private Boolean threadSafe;
   private Integer resolution;

   private String info;

   public TimedVFSCache()
   {
   }

   public TimedVFSCache(Integer defaultLifetime)
   {
      this(defaultLifetime, null, null);
   }

   public TimedVFSCache(Integer defaultLifetime, Boolean threadSafe, Integer resolution)
   {
      this.defaultLifetime = defaultLifetime;
      this.threadSafe = threadSafe;
      this.resolution = resolution;
   }

   public TimedVFSCache(Map<Object, Object> properties)
   {
      super(properties);
   }

   @Override
   @SuppressWarnings("unchecked")
   public Iterable<VFSContext> getCachedContexts()
   {
      TimedCachePolicy tcp = getPolicy();
      List keys = tcp.getValidKeys();
      if (keys != null && keys.isEmpty() == false)
      {
         Map<Object, VFSContext> contexts = new TreeMap<Object, VFSContext>();
         for (Object key : keys)
         {
            VFSContext context = (VFSContext)tcp.peek(key);
            if (context != null) // should be there, but you never know
               contexts.put(key, context);
         }

         return contexts.values();
      }
      return Collections.emptySet();
   }

   protected TimedCachePolicy createCachePolicy()
   {
      if (defaultLifetime == null)
         defaultLifetime = getInteger(readInstanceProperties(VFSUtils.VFS_CACHE_KEY + ".TimedPolicyCaching.lifetime", null, true));
      if (threadSafe == null)
         threadSafe = Boolean.valueOf(readInstanceProperties(VFSUtils.VFS_CACHE_KEY + ".TimedPolicyCaching.threadSafe", Boolean.TRUE, true).toString());
      if (resolution == null)
         resolution = getInteger(readInstanceProperties(VFSUtils.VFS_CACHE_KEY + ".TimedPolicyCaching.resolution", null, true));

      log.debug("Creating timed cache policy, lifetime: " + defaultLifetime + ", threadSafe: " + threadSafe + ", resolution: " + resolution);

      TimedCachePolicy tcp;
      if (defaultLifetime == null)
         tcp = new TimedCachePolicy();
      else if (resolution != null)
         tcp = new TimedCachePolicy(defaultLifetime, threadSafe, resolution);
      else
         tcp = new TimedCachePolicy(defaultLifetime);

      info = getCacheName() + "{lifetime=" + tcp.getDefaultLifetime() + ", resolution=" + tcp.getResolution() + "}";

      return tcp;
   }

   /**
    * Get the cache name.
    *
    * @return the cache name
    */
   protected String getCacheName()
   {
      return "TimedVFSCache";
   }

   /**
    * Set default lifetime.
    *
    * @param defaultLifetime the default lifetime
    */
   public void setDefaultLifetime(Integer defaultLifetime)
   {
      this.defaultLifetime = defaultLifetime;
   }

   /**
    * Set threadsafe flag.
    *
    * @param threadSafe the threadsafe flag
    */
   public void setThreadSafe(Boolean threadSafe)
   {
      this.threadSafe = threadSafe;
   }

   /**
    * The resollution.
    *
    * @param resolution the resolution
    */
   public void setResolution(Integer resolution)
   {
      this.resolution = resolution;
   }

   public String toString()
   {
      return info;
   }

   @Override
   protected Object wrapContext(VFSContext context)
   {
      return new VFSContextWrapper(getPolicy().getDefaultLifetime(), context);
   }

   private class VFSContextWrapper implements TimedCachePolicy.TimedEntry
   {
      private long expirationTime;
      private VFSContext context;

      VFSContextWrapper(long lifetime, VFSContext value)
      {
         this.expirationTime = 1000 * lifetime;
         this.context = value;
      }

      public void init(long now)
      {
         expirationTime += now;
      }

      public boolean isCurrent(long now)
      {
         return expirationTime > now;
      }

      public boolean refresh()
      {
         return false;
      }

      public void destroy()
      {
         try
         {
            context.cleanup();
         }
         catch (Exception e)
         {
            log.debug("Error cleaning up: " + e);
         }
      }

      public Object getValue()
      {
         return context;
      }
   }
}
TOP

Related Classes of org.jboss.virtual.plugins.cache.TimedVFSCache$VFSContextWrapper

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.