/* * Copyright 2009 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Sun designates this * particular file as subject to the "Classpath" exception as provided * by Sun in the LICENSE file that accompanied this code. * * This code 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. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, * CA 95054 USA or visit www.sun.com if you need additional information or * have any questions. */ package com.sun.tools.javac.nio; import java.io.FilterInputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.Writer; import java.net.URI; import java.nio.ByteBuffer; import java.nio.CharBuffer; import java.nio.charset.CharsetDecoder; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.attribute.Attributes; import java.nio.file.attribute.BasicFileAttributes; import javax.lang.model.element.Modifier; import javax.lang.model.element.NestingKind; import javax.tools.JavaFileObject; /** * Implementation of JavaFileObject using java.nio.file API. * *

This is NOT part of any API supported by Sun Microsystems. If * you write code that depends on this, you do so at your own risk. * This code and its internal interfaces are subject to change or * deletion without notice. */ abstract class PathFileObject implements JavaFileObject { private JavacPathFileManager fileManager; private Path path; static PathFileObject createDirectoryPathFileObject(JavacPathFileManager fileManager, final Path path, final Path dir) { return new PathFileObject(fileManager, path) { @Override String inferBinaryName(Iterable paths) { return toBinaryName(dir.relativize(path)); } }; } static PathFileObject createJarPathFileObject(JavacPathFileManager fileManager, final Path path) { return new PathFileObject(fileManager, path) { @Override String inferBinaryName(Iterable paths) { return toBinaryName(path.relativize(path)); } }; } static PathFileObject createSiblingPathFileObject(JavacPathFileManager fileManager, final Path path, final String relativePath) { return new PathFileObject(fileManager, path) { @Override String inferBinaryName(Iterable paths) { return toBinaryName(relativePath, "/"); } }; } static PathFileObject createSimplePathFileObject(JavacPathFileManager fileManager, final Path path) { return new PathFileObject(fileManager, path) { @Override String inferBinaryName(Iterable paths) { Path absPath = path.toAbsolutePath(); for (Path p: paths) { Path ap = p.toAbsolutePath(); if (absPath.startsWith(ap)) { try { Path rp = ap.relativize(absPath); if (rp != null) // maybe null if absPath same as ap return toBinaryName(rp); } catch (IllegalArgumentException e) { // ignore this p if cannot relativize path to p } } } return null; } }; } protected PathFileObject(JavacPathFileManager fileManager, Path path) { fileManager.getClass(); // null check path.getClass(); // null check this.fileManager = fileManager; this.path = path; } abstract String inferBinaryName(Iterable paths); /** * Return the Path for this object. * @return the Path for this object. */ Path getPath() { return path; } @Override public Kind getKind() { String name = path.getName().toString(); if (name.endsWith(Kind.CLASS.extension)) return Kind.CLASS; else if (name.endsWith(Kind.SOURCE.extension)) return Kind.SOURCE; else if (name.endsWith(Kind.HTML.extension)) return Kind.HTML; else return Kind.OTHER; } @Override public boolean isNameCompatible(String simpleName, Kind kind) { simpleName.getClass(); // null check if (kind == Kind.OTHER && getKind() != kind) { return false; } String sn = simpleName + kind.extension; String pn = path.getName().toString(); if (pn.equals(sn)) { return true; } if (pn.equalsIgnoreCase(sn)) { try { // allow for Windows return path.toRealPath(false).getName().toString().equals(sn); } catch (IOException e) { } } return false; } @Override public NestingKind getNestingKind() { return null; } @Override public Modifier getAccessLevel() { return null; } @Override public URI toUri() { return path.toUri(); } @Override public String getName() { return path.toString(); } @Override public InputStream openInputStream() throws IOException { InputStream in = path.newInputStream(); //return path.newInputStream(); // Currently, the stream obtained from path.newInputStream returns 0 // for available(), which causes downstream problems for javac. return new FilterInputStream(in) { @Override public int available() throws IOException { return ((int) size()); } }; } @Override public OutputStream openOutputStream() throws IOException { ensureParentDirectoriesExist(); return path.newOutputStream(); } @Override public Reader openReader(boolean ignoreEncodingErrors) throws IOException { CharsetDecoder decoder = fileManager.getDecoder(fileManager.getEncodingName(), ignoreEncodingErrors); return new InputStreamReader(openInputStream(), decoder); } @Override public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException { CharBuffer cb = fileManager.getCachedContent(this); if (cb == null) { InputStream in = openInputStream(); try { ByteBuffer bb = fileManager.makeByteBuffer(in); JavaFileObject prev = fileManager.log.useSource(this); try { cb = fileManager.decode(bb, ignoreEncodingErrors); } finally { fileManager.log.useSource(prev); } fileManager.recycleByteBuffer(bb); if (!ignoreEncodingErrors) { fileManager.cache(this, cb); } } finally { in.close(); } } return cb; } @Override public Writer openWriter() throws IOException { ensureParentDirectoriesExist(); return new OutputStreamWriter(path.newOutputStream(), fileManager.getEncodingName()); } @Override public long getLastModified() { try { BasicFileAttributes attrs = Attributes.readBasicFileAttributes(path); return attrs.lastModifiedTime().toMillis(); } catch (IOException e) { return -1; } } @Override public boolean delete() { try { path.delete(); return true; } catch (IOException e) { return false; } } public boolean isSameFile(PathFileObject other) { try { return path.isSameFile(other.path); } catch (IOException e) { return false; } } @Override public boolean equals(Object other) { return (other instanceof PathFileObject && path.equals(((PathFileObject) other).path)); } @Override public int hashCode() { return path.hashCode(); } @Override public String toString() { return getClass().getSimpleName() + "[" + path + "]"; } private void ensureParentDirectoriesExist() throws IOException { Path parent = path.getParent(); if (parent != null) Files.createDirectories(parent); } private long size() { try { BasicFileAttributes attrs = Attributes.readBasicFileAttributes(path); return attrs.size(); } catch (IOException e) { return -1; } } protected static String toBinaryName(Path relativePath) { return toBinaryName(relativePath.toString(), relativePath.getFileSystem().getSeparator()); } protected static String toBinaryName(String relativePath, String sep) { return removeExtension(relativePath).replaceAll(sep, "."); } protected static String removeExtension(String fileName) { int lastDot = fileName.lastIndexOf("."); return (lastDot == -1 ? fileName : fileName.substring(0, lastDot)); } }