/* * Copyright (c) 2006, 2017, Oracle and/or its affiliates. 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. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package javax.tools; import java.io.File; import java.io.IOException; import java.nio.file.Path; import java.util.Arrays; import java.util.Collection; import static javax.tools.FileManagerUtils.*; /** * File manager based on {@linkplain File java.io.File} and {@linkplain Path java.nio.file.Path}. * * A common way to obtain an instance of this class is using * {@linkplain JavaCompiler#getStandardFileManager getStandardFileManager}, for example: * *
* JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
* {@code DiagnosticCollector} diagnostics =
* new {@code DiagnosticCollector()};
* StandardJavaFileManager fm = compiler.getStandardFileManager(diagnostics, null, null);
*
*
* This file manager creates file objects representing regular
* {@linkplain File files},
* {@linkplain java.util.zip.ZipEntry zip file entries}, or entries in
* similar file system based containers. Any file object returned
* from a file manager implementing this interface must observe the
* following behavior:
*
* {@linkplain FileObject#delete()}
* is equivalent to {@linkplain File#delete()},
* {@linkplain FileObject#getLastModified()}
* is equivalent to {@linkplain File#lastModified()},
* {@linkplain FileObject#getCharContent(boolean)},
* {@linkplain FileObject#openInputStream()}, and
* {@linkplain FileObject#openReader(boolean)}
* must succeed if the following would succeed (ignoring
* encoding issues):
*
* new {@linkplain java.io.FileInputStream#FileInputStream(File) FileInputStream}(new {@linkplain File#File(java.net.URI) File}({@linkplain FileObject fileObject}.{@linkplain FileObject#toUri() toUri}()))
*
* {@linkplain FileObject#openOutputStream()}, and
* {@linkplain FileObject#openWriter()} must
* succeed if the following would succeed (ignoring encoding
* issues):
*
* new {@linkplain java.io.FileOutputStream#FileOutputStream(File) FileOutputStream}(new {@linkplain File#File(java.net.URI) File}({@linkplain FileObject fileObject}.{@linkplain FileObject#toUri() toUri}()))
*
* {@linkplain FileObject#toUri()}
* file:///C:/Documents%20and%20Settings/UncleBob/BobsApp/Test.java
* jar:///C:/Documents%20and%20Settings/UncleBob/lib/vendorA.jar!/com/vendora/LibraryClass.class
* file:BobsApp/Test.java (the file name is relative
* and depend on the current directory)
* jar:lib/vendorA.jar!/com/vendora/LibraryClass.class
* (the first half of the path depends on the current directory,
* whereas the component after ! is legal)
* Test.java (this URI depends on the current
* directory and does not have a schema)
* jar:///C:/Documents%20and%20Settings/UncleBob/BobsApp/../lib/vendorA.jar!com/vendora/LibraryClass.class
* (the path is not normalized)
* All implementations of this interface must support Path objects representing * files in the {@linkplain java.nio.file.FileSystems#getDefault() default file system.} * It is recommended that implementations should support Path objects from any filesystem.
* * * @apiNote * Some methods on this interface take a {@code Collection extends Path>} * instead of {@code Iterable extends Path>}. * This is to prevent the possibility of accidentally calling the method * with a single {@code Path} as such an argument, because although * {@code Path} implements {@code Iterable
* getJavaFileObjectsFromFiles({@linkplain java.util.Arrays#asList Arrays.asList}(files))
*
*
* @param files an array of files
* @return a list of file objects
* @throws IllegalArgumentException if the array of files includes
* a directory
* @throws NullPointerException if the given array contains null
* elements
*/
Iterable extends JavaFileObject> getJavaFileObjects(File... files);
/**
* Returns file objects representing the given paths.
* Convenience method equivalent to:
*
*
* getJavaFileObjectsFromPaths({@linkplain java.util.Arrays#asList Arrays.asList}(paths))
*
*
* @param paths an array of paths
* @return a list of file objects
* @throws IllegalArgumentException if the array of files includes
* a directory
* @throws NullPointerException if the given array contains null
* elements
*
* @since 9
*/
default Iterable extends JavaFileObject> getJavaFileObjects(Path... paths) {
return getJavaFileObjectsFromPaths(Arrays.asList(paths));
}
/**
* Returns file objects representing the given file names.
*
* @param names a list of file names
* @return a list of file objects
* @throws IllegalArgumentException if the list of file names
* includes a directory
*/
Iterable extends JavaFileObject> getJavaFileObjectsFromStrings(
Iterable
* getJavaFileObjectsFromStrings({@linkplain java.util.Arrays#asList Arrays.asList}(names))
*
*
* @param names a list of file names
* @return a list of file objects
* @throws IllegalArgumentException if the array of file names
* includes a directory
* @throws NullPointerException if the given array contains null
* elements
*/
Iterable extends JavaFileObject> getJavaFileObjects(String... names);
/**
* Associates the given search path with the given location. Any
* previous value will be discarded.
*
* If the location is a module-oriented or output location, any module-specific
* associations set up by {@linkplain #setLocationForModule setLocationForModule}
* will be cancelled.
*
* @param location a location
* @param files a list of files, if {@code null} use the default
* search path for this location
* @see #getLocation
* @throws IllegalArgumentException if {@code location} is an output
* location and {@code files} does not contain exactly one element
* @throws IOException if {@code location} is an output location and
* does not represent an existing directory
*/
void setLocation(Location location, Iterable extends File> files)
throws IOException;
/**
* Associates the given search path with the given location.
* Any previous value will be discarded.
*
* If the location is a module-oriented or output location, any module-specific
* associations set up by {@linkplain #setLocationForModule setLocationForModule}
* will be cancelled.
*
* @implSpec
* The default implementation converts each path to a file and calls
* {@link #getJavaFileObjectsFromFiles getJavaObjectsFromFiles}.
* {@linkplain IllegalArgumentException IllegalArgumentException}
* will be thrown if any of the paths cannot be converted to a file.
*
* @param location a location
* @param paths a list of paths, if {@code null} use the default
* search path for this location
* @see #getLocation
* @throws IllegalArgumentException if {@code location} is an output
* location and {@code paths} does not contain exactly one element
* or if this file manager does not support any of the given paths
* @throws IOException if {@code location} is an output location and
* {@code paths} does not represent an existing directory
*
* @since 9
*/
default void setLocationFromPaths(Location location, Collection extends Path> paths)
throws IOException {
setLocation(location, asFiles(paths));
}
/**
* Associates the given search path with the given module and location,
* which must be a module-oriented or output location.
* Any previous value will be discarded.
* This overrides any default association derived from the search path
* associated with the location itself.
*
* All such module-specific associations will be cancelled if a
* new search path is associated with the location by calling
* {@linkplain #setLocation setLocation } or
* {@linkplain #setLocationFromPaths setLocationFromPaths}.
*
* @throws IllegalStateException if the location is not a module-oriented
* or output location.
* @throws UnsupportedOperationException if this operation is not supported by
* this file manager.
* @throws IOException if {@code location} is an output location and
* {@code paths} does not represent an existing directory
*
* @param location the location
* @param moduleName the name of the module
* @param paths the search path to associate with the location and module.
*
* @see setLocation
* @see setLocationFromPaths
*
* @since 9
*/
default void setLocationForModule(Location location, String moduleName,
Collection extends Path> paths) throws IOException {
throw new UnsupportedOperationException();
}
/**
* Returns the search path associated with the given location.
*
* @param location a location
* @return a list of files or {@code null} if this location has no
* associated search path
* @throws IllegalStateException if any element of the search path
* cannot be converted to a {@linkplain File}, or if the search path
* cannot be represented as a simple series of files.
*
* @see #setLocation
* @see Path#toFile
*/
Iterable extends File> getLocation(Location location);
/**
* Returns the search path associated with the given location.
*
* @implSpec
* The default implementation calls {@link #getLocation getLocation}
* and then returns an {@code Iterable} formed by calling {@code toPath()}
* on each {@code File} returned from {@code getLocation}.
*
* @param location a location
* @return a list of paths or {@code null} if this location has no
* associated search path
* @throws IllegalStateException if the search path cannot be represented
* as a simple series of paths.
*
* @see #setLocationFromPaths
* @since 9
*/
default Iterable extends Path> getLocationAsPaths(Location location) {
return asPaths(getLocation(location));
}
/**
* Returns the path, if any, underlying this file object (optional operation).
* File objects derived from a {@link java.nio.file.FileSystem FileSystem},
* including the default file system, typically have a corresponding underlying
* {@link java.nio.file.Path Path} object. In such cases, this method may be
* used to access that object.
*
* @implSpec
* The default implementation throws {@link UnsupportedOperationException}
* for all files.
*
* @param file a file object
* @return a path representing the same underlying file system artifact
* @throws IllegalArgumentException if the file object does not have an underlying path
* @throws UnsupportedOperationException if the operation is not supported by this file manager
*
* @since 9
*/
default Path asPath(FileObject file) {
throw new UnsupportedOperationException();
}
/**
* Factory to create {@code Path} objects from strings.
*
* @since 9
*/
interface PathFactory {
/**
* Converts a path string, or a sequence of strings that when joined form a path string, to a Path.
*
* @param first the path string or initial part of the path string
* @param more additional strings to be joined to form the path string
* @return the resulting {@code Path}
*/
Path getPath(String first, String... more);
}
/**
* Specify a factory that can be used to generate a path from a string, or series of strings.
*
* If this method is not called, a factory whose {@code getPath} method is
* equivalent to calling
* {@link java.nio.file.Paths#get(String, String...) java.nio.file.Paths.get(first, more)}
* will be used.
*
* @implSpec
* The default implementation of this method ignores the factory that is provided.
*
* @param f the factory
*
* @since 9
*/
default void setPathFactory(PathFactory f) { }
}