Class FileStore

  • All Implemented Interfaces:
    IFileStore, IAdaptable

    public abstract class FileStore
    extends PlatformObject
    implements IFileStore
    The abstract superclass of all IFileStore implementations. All file stores must subclass this base class, implementing all abstract methods according to their specification in the IFileStore API.

    Clients may subclass this class.

    Since:
    org.eclipse.core.filesystem 1.0
    • Field Detail

      • EMPTY_FILE_INFO_ARRAY

        protected static final IFileInfo[] EMPTY_FILE_INFO_ARRAY
        A file info array of size zero that can be used as a return value for methods that return IFileInfo[] to avoid creating garbage objects.
      • EMPTY_STRING_ARRAY

        protected static final String[] EMPTY_STRING_ARRAY
        A string array of size zero that can be used as a return value for methods that return String[] to avoid creating garbage objects.
    • Constructor Detail

      • FileStore

        public FileStore()
    • Method Detail

      • childInfos

        public IFileInfo[] childInfos​(int options,
                                      IProgressMonitor monitor)
                               throws CoreException
        The default implementation of IFileStore.childInfos(int, IProgressMonitor). Subclasses should override this method where a more efficient implementation is possible. This default implementation calls fetchInfo() on each child, which will result in a file system call for each child.
        Specified by:
        childInfos in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants (currently only EFS.NONE is applicable).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        An array of information about the children of this store, or an empty array if this store has no children.
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        See Also:
        IFileTree.getChildInfos(IFileStore)
      • childNames

        public abstract String[] childNames​(int options,
                                            IProgressMonitor monitor)
                                     throws CoreException
        Description copied from interface: IFileStore
        Returns the names of the files and directories contained within this store.
        Specified by:
        childNames in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants (currently only EFS.NONE is applicable).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        The names of the children of this store, or an empty array if this store has no children.
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
      • copy

        public void copy​(IFileStore destination,
                         int options,
                         IProgressMonitor monitor)
                  throws CoreException
        The default implementation of IFileStore.copy(IFileStore, int, IProgressMonitor). This implementation performs a copy by using other primitive methods. Subclasses may override this method.
        Specified by:
        copy in interface IFileStore
        Parameters:
        destination - The destination of the copy.
        options - bit-wise or of option flag constants ( EFS.OVERWRITE or EFS.SHALLOW).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        • The parent of the destination file store does not exist.
        • The OVERWRITE flag is not specified and a file of the same name already exists at the copy destination.
        • A file is being copied, but a directory of the same name already exists at the copy destination.
        • A directory is being copied, but a file of the same name already exists at the copy destination.
      • copyDirectory

        protected void copyDirectory​(IFileInfo sourceInfo,
                                     IFileStore destination,
                                     int options,
                                     IProgressMonitor monitor)
                              throws CoreException
        Recursively copies a directory as specified by IFileStore.copy(IFileStore, int, IProgressMonitor).
        Parameters:
        sourceInfo - The current file information for the source of the move
        destination - The destination of the copy.
        options - bit-wise or of option flag constants ( EFS.OVERWRITE or EFS.SHALLOW).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        • A file of the same name already exists at the copy destination.
      • copyFile

        protected void copyFile​(IFileInfo sourceInfo,
                                IFileStore destination,
                                int options,
                                IProgressMonitor monitor)
                         throws CoreException
        Parameters:
        sourceInfo - The current file information for the source of the move
        destination - The destination of the copy.
        options - bit-wise or of option flag constants ( EFS.OVERWRITE or EFS.SHALLOW).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        • The OVERWRITE flag is not specified and a file of the same name already exists at the copy destination.
        • A directory of the same name already exists at the copy destination.
      • delete

        public void delete​(int options,
                           IProgressMonitor monitor)
                    throws CoreException
        The default implementation of IFileStore.delete(int, IProgressMonitor). This implementation always throws an exception indicating that deletion is not supported by this file system. This method should be overridden for all file systems on which deletion is supported.
        Specified by:
        delete in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Throws:
        CoreException - if this method fails. Reasons include:
        • Files or directories could not be deleted.
        See Also:
        EFS.ATTRIBUTE_SYMLINK
      • equals

        public boolean equals​(Object obj)
        This implementation of Object.equals(Object) defines equality based on the file store's URI. Subclasses should override this method to return true if and only if the two file stores represent the same resource in the backing file system. Issues to watch out for include whether the file system is case-sensitive, and whether trailing slashes are considered significant. Subclasses that override this method should also override hashCode().
        Overrides:
        equals in class Object
        Parameters:
        obj - The object to compare with the receiver for equality
        Returns:
        true if this object is equal to the provided object, and false otherwise.
        Since:
        org.eclipse.core.filesystem 1.1
      • fetchInfo

        public abstract IFileInfo fetchInfo​(int options,
                                            IProgressMonitor monitor)
                                     throws CoreException
        Description copied from interface: IFileStore
        Fetches and returns information about this file from the underlying file system.

        This method succeeds regardless of whether a corresponding file currently exists in the underlying file system. In the case of a non-existent file, the returned info will include the file's name and will return false when IFileInfo#exists() is called, but all other information will assume default values.

        Specified by:
        fetchInfo in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants (currently only EFS.NONE is applicable).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        A structure containing information about this file.
        Throws:
        CoreException - if this method fails. Reasons include:
        • Problems occurred while contacting the file system.
        See Also:
        IFileTree.getFileInfo(IFileStore)
      • getChild

        @Deprecated
        public IFileStore getChild​(IPath path)
        Deprecated.
        Description copied from interface: IFileStore
        Returns a child of this store as specified by the provided path. The path is treated as relative to this store. This is equivalent to
            IFileStore result = this;
            for (int i = 0; i < path.segmentCount(); i++) {
               result = result.getChild(path.segment(i));
            return result;
         

        This is a handle-only method; a child is provided regardless of whether this store or the child store exists, or whether this store represents a directory or not.

        The provided path must not contain segments that are self references (".") or parent references ("..").

        Specified by:
        getChild in interface IFileStore
        Parameters:
        path - The path of the child store to return
        Returns:
        A child file store.
      • getChild

        public abstract IFileStore getChild​(String name)
        Description copied from interface: IFileStore
        Returns a child store with the provided name whose parent is this store. This is a handle-only method; a child is provided regardless of whether this store or the child store exists, or whether this store represents a directory or not.
        Specified by:
        getChild in interface IFileStore
        Parameters:
        name - The name of the child store to return
        Returns:
        A child file store.
      • getName

        public abstract String getName()
        Description copied from interface: IFileStore
        Returns the name of this store. This is a handle-only method; the name is returned regardless of whether this store exists.

        Note that when dealing with case-insensitive file systems, this name may differ in case from the name of the corresponding file in the file system. To obtain the exact name used in the file system, use fetchInfo().getName().

        Specified by:
        getName in interface IFileStore
        Returns:
        The name of this store
      • getParent

        public abstract IFileStore getParent()
        Description copied from interface: IFileStore
        Returns the parent of this store. This is a handle only method; the parent is returned regardless of whether this store or the parent store exists. This method returns null when this store represents the root directory of a file system.
        Specified by:
        getParent in interface IFileStore
        Returns:
        The parent store, or null if this store is the root of a file system.
      • hashCode

        public int hashCode()
        This implementation of Object.hashCode() uses a definition of equality based on equality of the file store's URI. Subclasses that override equals(Object) should also override this method to ensure the contract of Object.hashCode() is honored.
        Overrides:
        hashCode in class Object
        Returns:
        A hash code value for this file store
        Since:
        org.eclipse.core.filesystem 1.1
      • isParentOf

        public boolean isParentOf​(IFileStore other)
        The default implementation of IFileStore.isParentOf(IFileStore). This implementation performs parent calculation using other primitive methods. Subclasses may override this method.
        Specified by:
        isParentOf in interface IFileStore
        Parameters:
        other - The store to test for parentage.
        Returns:
        true if this store is a parent of the provided store, and false otherwise.
      • mkdir

        public IFileStore mkdir​(int options,
                                IProgressMonitor monitor)
                         throws CoreException
        The default implementation of IFileStore.mkdir(int, IProgressMonitor). This implementation always throws an exception indicating that this file system is read only. This method should be overridden for all writable file systems.
        Specified by:
        mkdir in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        This directory
        Throws:
        CoreException - if this method fails. Reasons include:
        • The directory could not be created
        • A file already exists with this name that is not a directory
        • The EFS.SHALLOW option flag was specified and the parent of this directory does not exist.
      • move

        public void move​(IFileStore destination,
                         int options,
                         IProgressMonitor monitor)
                  throws CoreException
        The default implementation of IFileStore.move(IFileStore, int, IProgressMonitor). This implementation performs a move by using other primitive methods. Subclasses may override this method.
        Specified by:
        move in interface IFileStore
        Parameters:
        destination - The destination of the move.
        options - bit-wise or of option flag constants (EFS.OVERWRITE).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        • The parent of the destination file store does not exist.
        • The EFS.OVERWRITE flag is not specified and a file of the same name already exists at the destination.
      • openInputStream

        public abstract InputStream openInputStream​(int options,
                                                    IProgressMonitor monitor)
                                             throws CoreException
        Description copied from interface: IFileStore
        Returns an open input stream on the contents of this file. The number of concurrently open streams depends on the implementation and can be limited. The caller is responsible for closing the provided stream when it is no longer needed.

        The returned stream is not guaranteed to be buffered efficiently. When reading large blocks of data from the stream, a BufferedInputStream wrapper should be used, or some other form of content buffering.

        It depends on the implementation how the limit of concurrently opened streams is handled. CoreException may be thrown, when the limit is exceeded.

        Specified by:
        openInputStream in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants (currently only EFS.NONE is applicable).
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        An input stream on the contents of this file.
        Throws:
        CoreException - if this method fails. The status code associated with exception reflects the cause of the failure. Reasons include:
      • openOutputStream

        public OutputStream openOutputStream​(int options,
                                             IProgressMonitor monitor)
                                      throws CoreException
        The default implementation of IFileStore.openOutputStream(int, IProgressMonitor). This implementation always throws an exception indicating that this file system is read only. This method should be overridden for all writable file systems.

        Implementations of this method are responsible for ensuring that the exact sequence of bytes written to the output stream are returned on a subsequent call to openInputStream(int, IProgressMonitor), unless there have been intervening modifications to the file in the file system. For example, the implementation of this method must not perform conversion of line terminator characters on text data in the stream.

        Specified by:
        openOutputStream in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        Returns:
        An output stream on the contents of this file.
        Throws:
        CoreException - if this method fails. The status code associated with exception reflects the cause of the failure. Reasons include:
      • putInfo

        public void putInfo​(IFileInfo info,
                            int options,
                            IProgressMonitor monitor)
                     throws CoreException
        The default implementation of IFileStore.putInfo(IFileInfo, int, IProgressMonitor). This implementation always throws an exception indicating that this file system is read only. This method should be overridden for all writable file systems.
        Specified by:
        putInfo in interface IFileStore
        Parameters:
        options - bit-wise or of option flag constants
        monitor - a progress monitor, or null if progress reporting and cancellation are not desired
        info - The file information instance containing the values to set.
        Throws:
        CoreException - if this method fails. Reasons include:
        • This store does not exist.
        See Also:
        EFS.createFileInfo()
      • toString

        public String toString()
        Default implementation of IFileStore.toString(). This default implementation returns a string equal to the one returned by #toURI().toString(). Subclasses may override to provide a more specific string representation of this store.
        Specified by:
        toString in interface IFileStore
        Overrides:
        toString in class Object
        Returns:
        A string representation of this store.
      • toURI

        public abstract URI toURI()
        Description copied from interface: IFileStore
        Returns a URI instance corresponding to this store. The resulting URI, when passed to EFS.getStore(URI), will return a store equal to this instance.
        Specified by:
        toURI in interface IFileStore
        Returns:
        A URI corresponding to this store.
        See Also:
        EFS.getStore(URI)