ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/descriptor/LocalResolver.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/descriptor/LocalResolver.java
Status
scanned
Type
file
Name
LocalResolver.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
5835 (5.7 KB)
MD5
c90f576e79f6de66c08b0e93c4b5fc75
SHA1
a791e6679198352aadf8672083c79f0bc5fe6327
SHA256
4890331bccdfdcfea4933c7968d3cce9af4390aaee1a5597f1b0cde4316b4eee
SHA512

      
    
SHA1_git
cca837f39e7db2dc9d80ef544b0b752188e5b388
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
LocalResolver.java | 5.7 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.util.descriptor; import java.io.FileNotFoundException; import java.io.IOException; import java.net.MalformedURLException; import java.net.URI; import java.net.URISyntaxException; import java.util.Map; import org.apache.tomcat.util.buf.UriUtil; import org.apache.tomcat.util.res.StringManager; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.ext.EntityResolver2; /** * A resolver for locally cached XML resources. */ public class LocalResolver implements EntityResolver2 { private static final StringManager sm = StringManager.getManager(Constants.PACKAGE_NAME); private static final String[] JAVA_EE_NAMESPACES = { XmlIdentifiers.JAVAEE_1_4_NS, XmlIdentifiers.JAVAEE_5_NS, XmlIdentifiers.JAVAEE_7_NS, XmlIdentifiers.JAKARTAEE_9_NS }; private final Map<String,String> publicIds; private final Map<String,String> systemIds; private final boolean blockExternal; /** * Constructor providing mappings of public and system identifiers to local resources. Each map contains a mapping * from a well-known identifier to a URL for a local resource path. * * @param publicIds mapping of well-known public identifiers to local resources * @param systemIds mapping of well-known system identifiers to local resources * @param blockExternal are external resources blocked that are not well-known */ public LocalResolver(Map<String,String> publicIds, Map<String,String> systemIds, boolean blockExternal) { this.publicIds = publicIds; this.systemIds = systemIds; this.blockExternal = blockExternal; } @Override public InputSource resolveEntity(String publicId, String systemId) throws SAXException, IOException { return resolveEntity(null, publicId, null, systemId); } @Override public InputSource resolveEntity(String name, String publicId, String base, String systemId) throws SAXException, IOException { // First try resolving using the publicId String resolved = publicIds.get(publicId); if (resolved != null) { InputSource is = new InputSource(resolved); is.setPublicId(publicId); return is; } // If there is no systemId, can't try anything else if (systemId == null) { throw new FileNotFoundException(sm.getString("localResolver.unresolvedEntity", name, publicId, null, base)); } // Try resolving with the supplied systemId resolved = systemIds.get(systemId); if (resolved != null) { InputSource is = new InputSource(resolved); is.setPublicId(publicId); return is; } // Work-around for XML documents that use just the file name for the // location to refer to a JavaEE schema for (String javaEENamespace : JAVA_EE_NAMESPACES) { String javaEESystemId = javaEENamespace + '/' + systemId; resolved = systemIds.get(javaEESystemId); if (resolved != null) { InputSource is = new InputSource(resolved); is.setPublicId(publicId); return is; } } // Resolve the supplied systemId against the base URI systemUri; try { if (base == null) { systemUri = new URI(systemId); } else { URI baseUri = new URI(base); systemUri = UriUtil.resolve(baseUri, systemId); } systemUri = systemUri.normalize(); } catch (URISyntaxException e) { // May be caused by a | being used instead of a : in an absolute // file URI on Windows. if (blockExternal) { // Absolute paths aren't allowed so block it throw new MalformedURLException(e.getMessage()); } else { // See if the URLHandler can resolve it return new InputSource(systemId); } } if (systemUri.isAbsolute()) { // Try the resolved systemId resolved = systemIds.get(systemUri.toString()); if (resolved != null) { InputSource is = new InputSource(resolved); is.setPublicId(publicId); return is; } if (!blockExternal) { InputSource is = new InputSource(systemUri.toString()); is.setPublicId(publicId); return is; } } throw new FileNotFoundException(sm.getString("localResolver.unresolvedEntity", name, publicId, systemId, base)); } @Override public InputSource getExternalSubset(String name, String baseURI) throws SAXException, IOException { return null; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
19.67
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9