ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/tomcat/util/file/ConfigurationSource.java

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

      
    
Rootfs path

      
    
Size
6076 (5.9 KB)
MD5
74304ae6b3bdf9abc0ba2bbef30f2ef6
SHA1
d8433a7fb5e378e03799bdccc04d617cea1a5e7b
SHA256
6f9a82efa3b20b64adc8f42f1fa7fc10582658f00cd25ac24f3d1f8f7daa3bff
SHA512

      
    
SHA1_git
5afa681a3cfdfe9866601eb7c2a105e01cec008a
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ConfigurationSource.java | 5.9 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.file; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URI; import java.net.URL; import java.net.URLConnection; import org.apache.tomcat.util.buf.UriUtil; /** * Abstracts configuration file storage. Allows Tomcat embedding using the regular configuration style. This abstraction * aims to be very simple and does not cover resource listing, which is usually used for dynamic deployments that are * usually not used when embedding, as well as resource writing. */ public interface ConfigurationSource { ConfigurationSource DEFAULT = new ConfigurationSource() { private final File userDir = new File(System.getProperty("user.dir")); private final URI userDirUri = userDir.toURI(); @Override public Resource getResource(String name) throws IOException { if (!UriUtil.isAbsoluteURI(name)) { File f = new File(name); if (!f.isAbsolute()) { f = new File(userDir, name); } if (f.isFile()) { FileInputStream fis = new FileInputStream(f); return new Resource(fis, f.toURI()); } } URI uri; try { uri = userDirUri.resolve(name); } catch (IllegalArgumentException e) { throw new FileNotFoundException(name); } try { URL url = uri.toURL(); return new Resource(url.openConnection().getInputStream(), uri); } catch (MalformedURLException e) { throw new FileNotFoundException(name); } } @Override public URI getURI(String name) { if (!UriUtil.isAbsoluteURI(name)) { File f = new File(name); if (!f.isAbsolute()) { f = new File(userDir, name); } if (f.isFile()) { return f.toURI(); } } return userDirUri.resolve(name); } }; /** * Represents a resource: a stream to the resource associated with its URI. */ class Resource implements AutoCloseable { private final InputStream inputStream; private final URI uri; public Resource(InputStream inputStream, URI uri) { this.inputStream = inputStream; this.uri = uri; } public InputStream getInputStream() { return inputStream; } public URI getURI() { return uri; } public long getLastModified() throws MalformedURLException, IOException { URLConnection connection = null; try { connection = uri.toURL().openConnection(); return connection.getLastModified(); } finally { if (connection != null) { connection.getInputStream().close(); } } } @Override public void close() throws IOException { if (inputStream != null) { inputStream.close(); } } } /** * Returns the contents of the main conf/server.xml file. * * @return the server.xml as an InputStream * * @throws IOException if an error occurs or if the resource does not exist */ default Resource getServerXml() throws IOException { return getConfResource("server.xml"); } /** * Returns the contents of the shared conf/web.xml file. This usually contains the declaration of the default and * JSP servlets. * * @return the web.xml as an InputStream * * @throws IOException if an error occurs or if the resource does not exist */ default Resource getSharedWebXml() throws IOException { return getConfResource("web.xml"); } /** * Get a resource, based on the conf path. * * @param name The resource name * * @return the resource as an InputStream * * @throws IOException if an error occurs or if the resource does not exist */ default Resource getConfResource(String name) throws IOException { String fullName = "conf/" + name; return getResource(fullName); } /** * Get a resource, not based on the conf path. * * @param name The resource name * * @return the resource * * @throws IOException if an error occurs or if the resource does not exist */ Resource getResource(String name) throws IOException; /** * Get a URI to the given resource. Unlike getResource, this will also return URIs to locations where no resource * exists. * * @param name The resource name * * @return a URI representing the resource location */ URI getURI(String name); }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
19.16
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