org.killbill.xmlloader.UriAccessor Maven / Gradle / Ivy
/*
* Copyright 2010-2011 Ning, Inc.
* Copyright 2014-2017 Groupon, Inc
* Copyright 2014-2017 The Billing Project, LLC
*
* The Billing Project 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.killbill.xmlloader;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.JarURLConnection;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Scanner;
import com.google.common.io.Resources;
public class UriAccessor {
private static final String URI_SCHEME_FOR_ARCHIVE_FILE = "jar:file";
private static final String URI_SCHEME_FOR_CLASSPATH = "jar";
private static final String URI_SCHEME_FOR_FILE = "file";
public static URL toURL(final String uri) throws IOException, URISyntaxException {
return toURL(new URI(uri));
}
public static URL toURL(final URI inputURI) throws IOException, URISyntaxException {
final String scheme = inputURI.getScheme();
final URI uri;
if (scheme == null) {
uri = new URI(Resources.getResource(inputURI.toString()).toExternalForm());
} else if (scheme.equals(URI_SCHEME_FOR_FILE) &&
!inputURI.getSchemeSpecificPart().startsWith("/")) { // interpret URIs of this form as relative path uris
uri = new File(inputURI.getSchemeSpecificPart()).toURI();
} else {
uri = inputURI;
}
return uri.toURL();
}
public static InputStream accessUri(final String uri) throws IOException, URISyntaxException {
return accessUri(new URI(uri));
}
public static InputStream accessUri(final URI uri) throws IOException, URISyntaxException {
final String scheme = uri.getScheme();
if (URI_SCHEME_FOR_CLASSPATH.equals(scheme)) {
if (uri.toString().startsWith(URI_SCHEME_FOR_ARCHIVE_FILE)) {
return getInputStreamFromJarFile(uri);
} else {
return UriAccessor.class.getResourceAsStream(uri.getPath());
}
}
final URL url = toURL(uri);
return url.openConnection().getInputStream();
}
/**
* @param uri of the form jar:file:/path!/resource
* @throws IOException if fail to extract InputStream
*/
private static InputStream getInputStreamFromJarFile(final URI uri) throws IOException {
final URL url = uri.toURL();
final JarURLConnection jarURLConnection = (JarURLConnection) url.openConnection();
return jarURLConnection.getJarFile().getInputStream(jarURLConnection.getJarEntry());
}
public static String accessUriAsString(final String uri) throws IOException, URISyntaxException {
return accessUriAsString(new URI(uri));
}
public static String accessUriAsString(final URI uri) throws IOException, URISyntaxException {
final InputStream stream = accessUri(uri);
return new Scanner(stream).useDelimiter("\\A").next();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy