📄 proxydircontext.java
字号:
/* * ==================================================================== * * The Apache Software License, Version 1.1 * * Copyright (c) 1999 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowlegement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowlegement may appear in the software itself, * if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * * [Additional notices, if required by prior licensing conditions] * */ package org.apache.naming.modules.cache;import java.util.Collections;import java.util.Date;import java.util.Hashtable;import java.util.Map;import java.io.InputStream;import java.io.IOException;import java.io.ByteArrayInputStream;import javax.naming.Context;import javax.naming.Name;import javax.naming.NameParser;import javax.naming.NamingEnumeration;import javax.naming.NamingException;import javax.naming.directory.DirContext;import javax.naming.directory.Attributes;import javax.naming.directory.Attribute;import javax.naming.directory.ModificationItem;import javax.naming.directory.SearchControls;// Better classloader supportimport org.apache.tomcat.util.res.StringManager;import org.apache.naming.core.*;import org.apache.naming.util.AttributeHelper;import org.apache.commons.collections.LRUMap;/* Changes( costin ): The goal is to make it a generic JNDI cache, not specific to file system. - no more wrapping in Resource and ResourceAttributes. We just cache, and the caller can use tools to do the wrapping or operate on atts. - we use only lastModified ( not contentLength ). - TODO: - add a special CacheInputStream - that will save the byte[] in the cache entry. - 2 TTL: one will prevent accessing the dir ( even for lastModified ), one will expire the entry regardless. The first should be very short ( .1 sec ? ), for to avoid very frequent accesses to the same entry. Alternative ( probably the best ): use a background thread to check 'lastModified', like we do in 3.3 for class reloading.*//** * Proxy Directory Context implementation. * * Will cache directory entries - attributes and content. This can be used * to eliminate expensive dir access and to avoid keeping large directories in memory. * * @author Remy Maucherat * @author Costin Manolache */public class ProxyDirContext implements DirContext { private static org.apache.commons.logging.Log log= org.apache.commons.logging.LogFactory.getLog( ProxyDirContext.class ); // ----------------------------------------------------------- Constructors /** * Builds a proxy directory context using the given environment. */ public ProxyDirContext(Hashtable env, DirContext dirContext) { this.env = env; this.dirContext = dirContext; if (dirContext instanceof BaseDirContext) { // Initialize parameters based on the associated dir context, like // the caching policy. if (((BaseDirContext) dirContext).isCached()) { cache = Collections.synchronizedMap(new LRUMap(cacheSize)); cacheTTL = ((BaseDirContext) dirContext).getCacheTTL(); cacheObjectMaxSize = ((BaseDirContext) dirContext).getCacheObjectMaxSize(); } } } /** * Builds a clone of this proxy dir context, wrapping the given directory * context, and sharing the same cache. */ protected ProxyDirContext(ProxyDirContext proxyDirContext, DirContext dirContext) { this.env = proxyDirContext.env; this.dirContext = dirContext; this.cache = proxyDirContext.cache; this.cacheSize = proxyDirContext.cacheSize; this.cacheTTL = proxyDirContext.cacheTTL; this.cacheObjectMaxSize = proxyDirContext.cacheObjectMaxSize; } // ----------------------------------------------------- Instance Variables /** * Environment. */ protected Hashtable env; /** * The string manager for this package. */ protected StringManager sm = StringManager.getManager("org.apache.naming.res"); /** * Associated DirContext. */ protected DirContext dirContext; /** * Cache. * Path -> Cache entry. */ protected Map cache = null; /** * Cache size */ protected int cacheSize = 1000; /** * Cache TTL. */ protected int cacheTTL = 5000; // 5s /** * Max size of resources which will have their content cached. */ protected int cacheObjectMaxSize = 32768; // 32 KB // --------------------------------------------------------- Public Methods /** * Return the actual directory context we are wrapping. */ public DirContext getDirContext() { return this.dirContext; } // -------------------------------------------------------- Context Methods /** * Retrieves the named object. If name is empty, returns a new instance * of this context (which represents the same naming context as this * context, but its environment may be modified independently and it may * be accessed concurrently). * * @param name the name of the object to look up * @return the object bound to name * @exception NamingException if a naming exception is encountered */ public Object lookup(Name name) throws NamingException { CacheEntry entry = cacheLookupAndLoad(name.toString()); if (entry != null) { if (entry.resource != null) { // Check content caching. return entry.resource; } else { return entry.context; } } log.info("Strange, entry was no loadeded " + name ); Object object = dirContext.lookup(parseName(name));// if (object instanceof InputStream)// return new Resource((InputStream) object);// else return object; } /** * Retrieves the named object. * * @param name the name of the object to look up * @return the object bound to name * @exception NamingException if a naming exception is encountered */ public Object lookup(String name) throws NamingException { CacheEntry entry = cacheLookupAndLoad(name); if (entry != null) { if (entry.resource != null) { return entry.resource; } else { return entry.context; } } log.info("Strange, entry was no loadeded " + name ); Object object = dirContext.lookup(parseName(name));// if (object instanceof InputStream) {// return new Resource((InputStream) object);// } else if (object instanceof DirContext) {// return object;// } else if (object instanceof Resource) {// return object;// } else {// return new Resource(new ByteArrayInputStream// (object.toString().getBytes()));// } return object; } /** * Binds a name to an object. All intermediate contexts and the target * context (that named by all but terminal atomic component of the name) * must already exist. * * @param name the name to bind; may not be empty * @param obj the object to bind; possibly null * @exception NameAlreadyBoundException if name is already bound * @exception InvalidAttributesException if object did not supply all * mandatory attributes * @exception NamingException if a naming exception is encountered */ public void bind(Name name, Object obj) throws NamingException { dirContext.bind(parseName(name), obj); cacheUnload(name.toString()); } /** * Binds a name to an object. * * @param name the name to bind; may not be empty * @param obj the object to bind; possibly null * @exception NameAlreadyBoundException if name is already bound * @exception InvalidAttributesException if object did not supply all * mandatory attributes * @exception NamingException if a naming exception is encountered */ public void bind(String name, Object obj) throws NamingException { dirContext.bind(parseName(name), obj); cacheUnload(name); } /** * Binds a name to an object, overwriting any existing binding. All * intermediate contexts and the target context (that named by all but * terminal atomic component of the name) must already exist. * <p> * If the object is a DirContext, any existing attributes associated with * the name are replaced with those of the object. Otherwise, any * existing attributes associated with the name remain unchanged. * * @param name the name to bind; may not be empty * @param obj the object to bind; possibly null * @exception InvalidAttributesException if object did not supply all * mandatory attributes * @exception NamingException if a naming exception is encountered */ public void rebind(Name name, Object obj) throws NamingException { dirContext.rebind(parseName(name), obj); cacheUnload(name.toString()); } /** * Binds a name to an object, overwriting any existing binding. * * @param name the name to bind; may not be empty * @param obj the object to bind; possibly null * @exception InvalidAttributesException if object did not supply all * mandatory attributes * @exception NamingException if a naming exception is encountered */ public void rebind(String name, Object obj) throws NamingException { dirContext.rebind(parseName(name), obj); cacheUnload(name); } /** * Unbinds the named object. Removes the terminal atomic name in name * from the target context--that named by all but the terminal atomic * part of name. * <p> * This method is idempotent. It succeeds even if the terminal atomic * name is not bound in the target context, but throws * NameNotFoundException if any of the intermediate contexts do not exist. * * @param name the name to bind; may not be empty * @exception NameNotFoundException if an intermediate context does not * exist * @exception NamingException if a naming exception is encountered */ public void unbind(Name name) throws NamingException { dirContext.unbind(parseName(name)); cacheUnload(name.toString()); } /** * Unbinds the named object. * * @param name the name to bind; may not be empty * @exception NameNotFoundException if an intermediate context does not * exist * @exception NamingException if a naming exception is encountered */ public void unbind(String name) throws NamingException { dirContext.unbind(parseName(name)); cacheUnload(name); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -