org.eclipse.jetty.server
Class ResourceCache

java.lang.Object
  extended by org.eclipse.jetty.util.component.AbstractLifeCycle
      extended by org.eclipse.jetty.server.ResourceCache
All Implemented Interfaces:
LifeCycle

public class ResourceCache
extends AbstractLifeCycle


Nested Class Summary
 class ResourceCache.Content
          MetaData associated with a context Resource.
 class ResourceCache.Miss
          MetaData associated with a context Resource.
 
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
 
Field Summary
protected  Map _cache
           
protected  int _cachedFiles
           
protected  int _cachedSize
           
protected  ResourceCache.Content _leastRecentlyUsed
           
protected  ResourceCache.Content _mostRecentlyUsed
           
 
Fields inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
_listeners, FAILED, RUNNING, STARTED, STARTING, STOPPED, STOPPING
 
Constructor Summary
ResourceCache(MimeTypes mimeTypes)
          Constructor.
 
Method Summary
 void doStart()
           
 void doStop()
          Stop the context.
protected  void fill(ResourceCache.Content content)
           
 void flushCache()
           
 int getCachedFiles()
           
 int getCachedSize()
           
 int getMaxCachedFiles()
           
 int getMaxCachedFileSize()
           
 int getMaxCacheSize()
           
 ResourceCache.Content lookup(String pathInContext, Resource resource)
           
 ResourceCache.Content lookup(String pathInContext, ResourceFactory factory)
          Get a Entry from the cache.
 void miss(String pathInContext, Resource resource)
          Remember a Resource Miss!
 void setMaxCachedFiles(int maxCachedFiles)
           
 void setMaxCachedFileSize(int maxCachedFileSize)
           
 void setMaxCacheSize(int maxCacheSize)
           
 
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_cache

protected final Map _cache

_cachedSize

protected int _cachedSize

_cachedFiles

protected int _cachedFiles

_mostRecentlyUsed

protected ResourceCache.Content _mostRecentlyUsed

_leastRecentlyUsed

protected ResourceCache.Content _leastRecentlyUsed
Constructor Detail

ResourceCache

public ResourceCache(MimeTypes mimeTypes)
Constructor.

Method Detail

getCachedSize

public int getCachedSize()

getCachedFiles

public int getCachedFiles()

getMaxCachedFileSize

public int getMaxCachedFileSize()

setMaxCachedFileSize

public void setMaxCachedFileSize(int maxCachedFileSize)

getMaxCacheSize

public int getMaxCacheSize()

setMaxCacheSize

public void setMaxCacheSize(int maxCacheSize)

getMaxCachedFiles

public int getMaxCachedFiles()
Returns:
Returns the maxCachedFiles.

setMaxCachedFiles

public void setMaxCachedFiles(int maxCachedFiles)
Parameters:
maxCachedFiles - The maxCachedFiles to set.

flushCache

public void flushCache()

lookup

public ResourceCache.Content lookup(String pathInContext,
                                    ResourceFactory factory)
                             throws IOException
Get a Entry from the cache. Get either a valid entry object or create a new one if possible.

Parameters:
pathInContext - The key into the cache
factory - If no matching entry is found, this ResourceFactory will be used to create the Resource for the new enry that is created.
Returns:
The entry matching pathInContext, or a new entry if no matching entry was found
Throws:
IOException

lookup

public ResourceCache.Content lookup(String pathInContext,
                                    Resource resource)
                             throws IOException
Throws:
IOException

miss

public void miss(String pathInContext,
                 Resource resource)
          throws IOException
Remember a Resource Miss!

Parameters:
pathInContext -
resource -
Throws:
IOException

doStart

public void doStart()
             throws Exception
Overrides:
doStart in class AbstractLifeCycle
Throws:
Exception

doStop

public void doStop()
            throws InterruptedException
Stop the context.

Overrides:
doStop in class AbstractLifeCycle
Throws:
InterruptedException

fill

protected void fill(ResourceCache.Content content)
             throws IOException
Throws:
IOException


Copyright © 1995-2009 Mort Bay Consulting. All Rights Reserved.