/* * Copyright (c) 1998-2015 Caucho Technology -- all rights reserved * * This file is part of Baratine(TM)(TM) * * Each copy or derived work must preserve the copyright notice and this * notice unmodified. * * Baratine is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Baratine is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty * of NON-INFRINGEMENT. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License * along with Baratine; if not, write to the * * Free Software Foundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * * @author Scott Ferguson */ package com.caucho.v5.io; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; import java.nio.file.AccessMode; import java.nio.file.LinkOption; import java.nio.file.OpenOption; import java.nio.file.Path; import java.nio.file.attribute.BasicFileAttributes; import java.nio.file.attribute.FileTime; import com.caucho.v5.util.L10N; /** * The classpath file provider */ public class FileProviderClasspath extends FileProviderBase { private static final L10N L = new L10N(FileProviderClasspath.class); private ClassLoader _loader; FileProviderClasspath() { _loader = Thread.currentThread().getContextClassLoader(); } @Override public String getScheme() { return "classpath"; } @Override public void checkAccess(Path path, AccessMode... modes) throws IOException { URL url = getURL(path); if (url == null) { throw new IOException(L.l("{0} does not exist", path)); } } private URL getURL(Path path) { PathBase pathBase = (PathBase) path; String pathName = pathBase.path(); while (pathName.startsWith("/")) { pathName = pathName.substring(1); } return _loader.getResource(pathName); } @Override public InputStream newInputStream(Path path, OpenOption ...options) { PathBase pathBase = (PathBase) path; String pathName = pathBase.path(); while (pathName.startsWith("/")) { pathName = pathName.substring(1); } return _loader.getResourceAsStream(pathName); } @Override public <A extends BasicFileAttributes> A readAttributes(Path path, Class<A> type, LinkOption... options) throws IOException { URL url = getURL(path); if (url == null) { throw new FileNotFoundException(L.l("{0} does not exist", path)); } if (! type.equals(BasicFileAttributes.class)) { throw new UnsupportedOperationException(type.getName()); } PathBase pathBase = (PathBase) path; return (A) new BasicFileAttributesImpl(pathBase.path(), url); } private class BasicFileAttributesImpl implements BasicFileAttributes { private String _path; private URL _url; BasicFileAttributesImpl(String path, URL url) { _path = path; _url = url; } @Override public FileTime lastModifiedTime() { throw new UnsupportedOperationException(); } @Override public FileTime lastAccessTime() { throw new UnsupportedOperationException(); } @Override public FileTime creationTime() { throw new UnsupportedOperationException(); } @Override public boolean isRegularFile() { ClassLoader loader = _loader; URL url = loader.getResource(_path); if (url != null) { return true; } else { return false; } } @Override public boolean isDirectory() { return false; } @Override public boolean isSymbolicLink() { return false; } @Override public boolean isOther() { return false; } @Override public long size() { ClassLoader loader = _loader; URL url = loader.getResource(_path); if (url == null) { return -1; } else { try { URLConnection conn = url.openConnection(); return conn.getContentLengthLong(); /* Path path = Paths.get(url.toURI()); return Files.size(path); */ } catch (Exception e) { throw new RuntimeException(e); } } } @Override public Object fileKey() { throw new UnsupportedOperationException(); } } }