Interface GFileSystem
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable,ExtensionPoint
- All Known Implementing Classes:
GFileSystemBase,LocalFileSystem,LocalFileSystemSub
public interface GFileSystem extends java.io.Closeable, ExtensionPoint
Interface that represents a filesystem that contains files.Operations take a
TaskMonitorif they need to be cancel-able.Use a
FileSystemService instanceto discover and open instances of filesystems in files or to open a knownFSRLpath or to deal with creatingtemp files.NOTE:
ALL GFileSystem sub-CLASSES MUST END IN "FileSystem". If not, the ClassSearcher will not find them.
Also note that this interface came after the original abstract class GFileSystem and its many implementations, and usage is being migrated to this interface where possible and as time permits.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ByteProvidergetByteProvider(GFile file, TaskMonitor monitor)Returns aByteProviderthat contains the contents of the specifiedGFile.default java.lang.StringgetDescription()Returns a description of this file system.default FileAttributesgetFileAttributes(GFile file, TaskMonitor monitor)Returns a container ofFileAttributevalues.default intgetFileCount()Returns the number of files in the filesystem, if known, otherwise -1 if not known.FSRLRootgetFSRL()File system's FSRLdefault java.io.InputStreamgetInputStream(GFile file, TaskMonitor monitor)Returns anInputStreamthat contains the contents of the specifiedGFile.static java.io.InputStreamgetInputStreamHelper(GFile file, GFileSystem fs, TaskMonitor monitor)java.util.List<GFile>getListing(GFile directory)Returns a list offilesthat reside in the specified directory on this filesystem.java.lang.StringgetName()File system volume name.FileSystemRefManagergetRefManager()Returns theref managerthat is responsible for creating and releasingrefsto this filesystem.default java.lang.StringgetType()Returns the type of this file system.booleanisClosed()Returns true if the filesystem has beencloseddefault booleanisStatic()Indicates if this filesystem is a static snapshot or changes.GFilelookup(java.lang.String path)Retrieves aGFilefrom this filesystem based on its full path and filename.
-
-
-
Method Detail
-
getName
java.lang.String getName()
File system volume name.Typically the name of the container file, or a internally stored 'volume' name.
- Returns:
- string filesystem volume name.
-
getType
default java.lang.String getType()
Returns the type of this file system.This default implementation returns the type value in
FileSystemInfoannotation.- Returns:
- type string
-
getDescription
default java.lang.String getDescription()
Returns a description of this file system.This default implementation returns the description value in
FileSystemInfoannotation.- Returns:
- description string
-
isClosed
boolean isClosed()
Returns true if the filesystem has beenclosed- Returns:
- boolean true if the filesystem has been closed.
-
isStatic
default boolean isStatic()
Indicates if this filesystem is a static snapshot or changes.- Returns:
- boolean true if the filesystem is static or false if dynamic content.
-
getRefManager
FileSystemRefManager getRefManager()
Returns theref managerthat is responsible for creating and releasingrefsto this filesystem.- Returns:
FileSystemRefManagerthat manages references to this filesystem.
-
getFileCount
default int getFileCount()
Returns the number of files in the filesystem, if known, otherwise -1 if not known.- Returns:
- number of files in this filesystem, -1 if not known.
-
lookup
GFile lookup(java.lang.String path) throws java.io.IOException
Retrieves aGFilefrom this filesystem based on its full path and filename.- Parameters:
path- string path and filename of a file located in this filesystem. Usenullor "/" to retrieve the root directory- Returns:
GFileinstance of requested file, null if not found.- Throws:
java.io.IOException- if IO error when looking up file.
-
getInputStream
default java.io.InputStream getInputStream(GFile file, TaskMonitor monitor) throws java.io.IOException, CancelledException
Returns anInputStreamthat contains the contents of the specifiedGFile.The caller is responsible for closing the stream.
- Parameters:
file-GFileto get an InputStream formonitor-TaskMonitorto watch and update progress- Returns:
- new
InputStreamcontains the contents of the file or NULL if the file doesn't have data. - Throws:
java.io.IOException- if IO problemCancelledException- if user cancels.
-
getByteProvider
ByteProvider getByteProvider(GFile file, TaskMonitor monitor) throws java.io.IOException, CancelledException
Returns aByteProviderthat contains the contents of the specifiedGFile.The caller is responsible for closing the provider.
- Parameters:
file-GFileto get bytes formonitor-TaskMonitorto watch and update progress- Returns:
- new
ByteProviderthat contains the contents of the file, or NULL if file doesn't have data - Throws:
java.io.IOException- if errorCancelledException- if user cancels
-
getListing
java.util.List<GFile> getListing(GFile directory) throws java.io.IOException
Returns a list offilesthat reside in the specified directory on this filesystem.- Parameters:
directory- NULL means root of filesystem.- Returns:
ListofGFileinstances of file in the requested directory.- Throws:
java.io.IOException- if IO problem.
-
getFileAttributes
default FileAttributes getFileAttributes(GFile file, TaskMonitor monitor)
Returns a container ofFileAttributevalues.Implementors of this method are not required to add FSRL, NAME, or PATH values unless the values are non-standard.
- Parameters:
file-GFileto get the attributes formonitor-TaskMonitor- Returns:
FileAttributesinstance (possibly read-only), maybe empty but never null
-
getInputStreamHelper
static java.io.InputStream getInputStreamHelper(GFile file, GFileSystem fs, TaskMonitor monitor) throws CancelledException, java.io.IOException
- Parameters:
file-GFilefs- thefilesystemcontaining the filemonitor-TaskMonitorto allow canceling- Returns:
- new
InputStreamcontaining bytes of the file - Throws:
CancelledException- if canceledjava.io.IOException- if error
-
-