/* * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javax.tools; import java.io.File; import java.io.IOException; import java.util.*; /** * File manager based on {@linkplain File java.io.File}. 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)
*
* 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);
/**
* Gets 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 path with the given location. Any
* previous value will be discarded.
*
* @param location a location
* @param path a list of files, if {@code null} use the default
* path for this location
* @see #getLocation
* @throws IllegalArgumentException if location is an output
* location and path does not contain exactly one element
* @throws IOException if location is an output location and path
* does not represent an existing directory
*/
void setLocation(Location location, Iterable extends File> path)
throws IOException;
/**
* Gets the path associated with the given location.
*
* @param location a location
* @return a list of files or {@code null} if this location has no
* associated path
* @see #setLocation
*/
Iterable extends File> getLocation(Location location);
}