⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filedircontext.java

📁 Tomcat 4.1与WebServer集成组件的源代码包.
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
                (sm.getString("resources.notFound", name));        Vector entries = list(file);        return new NamingContextEnumeration(entries.elements(), this, true);    }    /**     * Destroys the named context and removes it from the namespace. Any      * attributes associated with the name are also removed. Intermediate      * contexts are not destroyed.     * <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.      *      * In a federated naming system, a context from one naming system may be      * bound to a name in another. One can subsequently look up and perform      * operations on the foreign context using a composite name. However, an      * attempt destroy the context using this composite name will fail with      * NotContextException, because the foreign context is not a "subcontext"      * of the context in which it is bound. Instead, use unbind() to remove      * the binding of the foreign context. Destroying the foreign context      * requires that the destroySubcontext() be performed on a context from      * the foreign context's "native" naming system.     *      * @param name the name of the context to be destroyed; may not be empty     * @exception NameNotFoundException if an intermediate context does not      * exist     * @exception NotContextException if the name is bound but does not name      * a context, or does not name a context of the appropriate type     */    public void destroySubcontext(String name)        throws NamingException    {        unbind(name);    }    /**     * Retrieves the full name of this context within its own namespace.     * <p>     * Many naming services have a notion of a "full name" for objects in      * their respective namespaces. For example, an LDAP entry has a      * distinguished name, and a DNS record has a fully qualified name. This      * method allows the client application to retrieve this name. The string      * returned by this method is not a JNDI composite name and should not be      * passed directly to context methods. In naming systems for which the      * notion of full name does not make sense,      * OperationNotSupportedException is thrown.     *      * @return this context's name in its own namespace; never null     * @exception OperationNotSupportedException if the naming system does      * not have the notion of a full name     * @exception NamingException if a naming exception is encountered     */    public String getNameInNamespace()        throws NamingException {        return docBase;    }    // ----------------------------------------------------- DirContext Methods    /**     * Retrieves selected attributes associated with a named object.      * See the class description regarding attribute models, attribute type      * names, and operational attributes.     *      * @return the requested attributes; never null     * @param name the name of the object from which to retrieve attributes     * @param attrIds the identifiers of the attributes to retrieve. null      * indicates that all attributes should be retrieved; an empty array      * indicates that none should be retrieved     * @exception NamingException if a naming exception is encountered     */    public Attributes getAttributes(String name, String[] attrIds)        throws NamingException    {        if( log.isDebugEnabled() ) log.debug( "getAttributes " + name );        // Building attribute list        File file = file(name);        if (file == null)            throw new NamingException                (sm.getString("resources.notFound", name));        return new FileAttributes(file);    }    /**     * Binds a name to an object, along with associated attributes. If attrs      * is null, the resulting binding will have the attributes associated      * with obj if obj is a DirContext, and no attributes otherwise. If attrs      * is non-null, the resulting binding will have attrs as its attributes;      * any attributes associated with obj are ignored.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @param attrs the attributes to associate with the binding     * @exception NameAlreadyBoundException if name is already bound     * @exception InvalidAttributesException if some "mandatory" attributes      * of the binding are not supplied     * @exception NamingException if a naming exception is encountered     */    public void bind(String name, Object obj, Attributes attrs)        throws NamingException {                // Note: No custom attributes allowed                File file = new File(base, name);        if (file.exists())            throw new NameAlreadyBoundException                (sm.getString("resources.alreadyBound", name));                rebind(name, obj, attrs);    }    /**     * Binds a name to an object, along with associated attributes,      * overwriting any existing binding. If attrs is null and obj is a      * DirContext, the attributes from obj are used. If attrs is null and obj      * is not a DirContext, any existing attributes associated with the object     * already bound in the directory remain unchanged. If attrs is non-null,      * any existing attributes associated with the object already bound in      * the directory are removed and attrs is associated with the named      * object. If obj is a DirContext and attrs is non-null, the attributes      * of obj are ignored.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @param attrs the attributes to associate with the binding     * @exception InvalidAttributesException if some "mandatory" attributes      * of the binding are not supplied     * @exception NamingException if a naming exception is encountered     */    public void rebind(String name, Object obj, Attributes attrs)        throws NamingException {                // Note: No custom attributes allowed        // Check obj type                File file = new File(base, name);                InputStream is = null;//         if (obj instanceof Resource) {//             try {//                 is = ((Resource) obj).streamContent();//             } catch (IOException e) {//             }//         } else        // TODO support File, byte[], String        if (obj instanceof InputStream) {            is = (InputStream) obj;        } else if (obj instanceof DirContext) {            if (file.exists()) {                if (!file.delete())                    throw new NamingException                        (sm.getString("resources.bindFailed", name));            }            if (!file.mkdir())                throw new NamingException                    (sm.getString("resources.bindFailed", name));        }        if (is == null)            throw new NamingException                (sm.getString("resources.bindFailed", name));                // Open os                try {            FileOutputStream os = null;            byte buffer[] = new byte[BUFFER_SIZE];            int len = -1;            try {                os = new FileOutputStream(file);                while (true) {                    len = is.read(buffer);                    if (len == -1)                        break;                    os.write(buffer, 0, len);                }            } finally {                if (os != null)                    os.close();                is.close();            }        } catch (IOException e) {            throw new NamingException                (sm.getString("resources.bindFailed", e));        }    }    /**     * Creates and binds a new context, along with associated attributes.      * This method creates a new subcontext with the given name, binds it in      * the target context (that named by all but terminal atomic component of      * the name), and associates the supplied attributes with the newly      * created object. All intermediate and target contexts must already      * exist. If attrs is null, this method is equivalent to      * Context.createSubcontext().     *      * @param name the name of the context to create; may not be empty     * @param attrs the attributes to associate with the newly created context     * @return the newly created context     * @exception NameAlreadyBoundException if the name is already bound     * @exception InvalidAttributesException if attrs does not contain all      * the mandatory attributes required for creation     * @exception NamingException if a naming exception is encountered     */    public DirContext createSubcontext(Name nameN, Attributes attrs)        throws NamingException    {        String name=nameN.toString();        File file = new File(base, name);        if (file.exists())            throw new NameAlreadyBoundException                (sm.getString("resources.alreadyBound", name));        if (!file.mkdir())            throw new NamingException                (sm.getString("resources.bindFailed", name));        return (DirContext) lookup(name);    }    // ------------------------------------------------------ Protected Methods    /**     * Return a context-relative path, beginning with a "/", that represents     * the canonical version of the specified path after ".." and "." elements     * are resolved out.  If the specified path attempts to go outside the     * boundaries of the current context (i.e. too many ".." path elements     * are present), return <code>null</code> instead.     *     * @param path Path to be normalized     */    protected String normalize(String path) {	String normalized = path;	// Normalize the slashes and add leading slash if necessary	if (normalized.indexOf('\\') >= 0)	    normalized = normalized.replace('\\', '/');	if (!normalized.startsWith("/"))	    normalized = "/" + normalized;	// Resolve occurrences of "//" in the normalized path	while (true) {	    int index = normalized.indexOf("//");	    if (index < 0)		break;	    normalized = normalized.substring(0, index) +		normalized.substring(index + 1);	}	// Resolve occurrences of "/./" in the normalized path	while (true) {	    int index = normalized.indexOf("/./");	    if (index < 0)		break;	    normalized = normalized.substring(0, index) +		normalized.substring(index + 2);	}	// Resolve occurrences of "/../" in the normalized path	while (true) {	    int index = normalized.indexOf("/../");	    if (index < 0)		break;	    if (index == 0)		return (null);	// Trying to go outside our context	    int index2 = normalized.lastIndexOf('/', index - 1);	    normalized = normalized.substring(0, index2) +		normalized.substring(index + 3);	}	// Return the normalized path that we have completed	return (normalized);    }    /**     * Return a File object representing the specified normalized     * context-relative path if it exists and is readable.  Otherwise,     * return <code>null</code>.     *     * @param name Normalized context-relative path (with leading '/')     */    protected File file(String name) {        File file = new File(base, name);        if (file.exists() && file.canRead()) {            // Check that this file belongs to our root path            String canPath = null;            try {                canPath = file.getCanonicalPath();            } catch (IOException e) {            }            if (canPath == null)                return null;            if (!canPath.startsWith(absoluteBase)) {                return null;            }            // Windows only check            if ((caseSensitive) && (File.separatorChar  == '\\')) {                String fileAbsPath = file.getAbsolutePath();                if (fileAbsPath.endsWith("."))                    fileAbsPath = fileAbsPath + "/";                String absPath = normalize(fileAbsPath);                if (canPath != null)                    canPath = normalize(canPath);                if ((absoluteBase.length() < absPath.length())                     && (absoluteBase.length() < canPath.length())) {                    absPath = absPath.substring(absoluteBase.length() + 1);                    if ((canPath == null) || (absPath == null))                        return null;                    if (absPath.equals(""))                        absPath = "/";                    canPath = canPath.substring(absoluteBase.length() + 1);                    if (canPath.equals(""))                        canPath = "/";                    if (!canPath.equals(absPath))                        return null;                }            }        } else {            if( log.isDebugEnabled() ) log.debug( file + " " +                                                  file.exists() + " " +                                                  file.canRead() );            return null;        }        return file;    }    /**     * List the resources which are members of a collection.     *      * @param file Collection     * @return Vector containg NamingEntry objects     */    protected Vector list(File file) {        Vector entries = new Vector();        if (!file.isDirectory())            return entries;        String[] names = file.list();        Arrays.sort(names);             // Sort alphabetically        if (names == null)            return entries;        NamingEntry entry = null;        for (int i = 0; i < names.length; i++) {            File currentFile = new File(file, names[i]);            Object object = null;            if (currentFile.isDirectory()) {                FileDirContext tempContext = new FileDirContext(env);                tempContext.setDocBase(file.getPath());                object = tempContext;            } else {                //object = new FileResource(currentFile);                object = currentFile;            }            entry = new NamingEntry(names[i], object, null, NamingEntry.ENTRY);            entries.addElement(entry);        }        return entries;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -