@ThreadSafe final class FsFalsePositiveController extends FsDecoratingController<FsModel,FsController<?>>
FsFalsePositiveExceptions thrown by the prospective file system
provided to its constructor.
Whenever the controller for the prospective file system throws a
FsFalsePositiveException, the method call is delegated to the
controller for its parent file system in order to resolve the requested
operation.
If this method call fails with a second exception, then the
IOException which is associated as the cause of the first exception
gets rethrown unless the second exception is an
FsControllerException.
In this case the FsControllerException gets rethrown as is in order
to enable the caller to resolve it.
This algorithm effectively achieves the following objectives:
FsControllerException.
They are excempt from this masquerade in order to support resolving them
by a more competent caller.
As an example consider accessing a RAES encrypted ZIP file:
With the default driver configuration of the module TrueZIP ZIP.RAES,
whenever a ZIP.RAES file gets mounted, the user is prompted for a password.
If the user cancels the password prompting dialog, then an appropriate
exception gets thrown.
The target archive controller would then catch this exception and flag the
archive file as a false positive by wrapping this exception in a
FsFalsePositiveException.
This class would then catch this false positive exception and try to resolve
the issue by using the parent file system controller.
Failing that, the initial exception would get rethrown in order to signal
to the caller that the user had cancelled password prompting.
FsFalsePositiveException| Modifier and Type | Class and Description |
|---|---|
private static class |
FsFalsePositiveController.GetClosedIcon |
private static class |
FsFalsePositiveController.GetEntry |
(package private) static class |
FsFalsePositiveController.GetOpenIcon |
private static interface |
FsFalsePositiveController.IOOperation<T> |
private static class |
FsFalsePositiveController.IsExecutable |
private static class |
FsFalsePositiveController.IsReadable |
private static class |
FsFalsePositiveController.IsReadOnly |
private static class |
FsFalsePositiveController.IsWritable |
private static class |
FsFalsePositiveController.SetReadOnly |
private static interface |
FsFalsePositiveController.State |
private class |
FsFalsePositiveController.TryChild |
private class |
FsFalsePositiveController.UseParent |
| Modifier and Type | Field and Description |
|---|---|
private FsController<?> |
parent |
private FsPath |
path |
private FsFalsePositiveController.State |
state |
delegate| Constructor and Description |
|---|
FsFalsePositiveController(FsController<?> controller)
Constructs a new false positive file system controller.
|
| Modifier and Type | Method and Description |
|---|---|
(package private) <T> T |
call(FsFalsePositiveController.IOOperation<T> operation,
FsEntryName name) |
Icon |
getClosedIcon()
Deprecated.
|
FsEntry |
getEntry(FsEntryName name)
Returns the file system entry for the given name or
null if it
doesn't exist. |
InputSocket<?> |
getInputSocket(FsEntryName name,
BitField<FsInputOption> options)
Returns an input socket for reading the contents of the file system
entry addressed by the given name from the file system.
|
Icon |
getOpenIcon()
Deprecated.
|
OutputSocket<?> |
getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template)
Returns an output socket for writing the contents of the entry addressed
by the given name to the file system.
|
FsController<?> |
getParent()
Returns the controller for the parent file system or
null if
and only if this file system is not federated, i.e. not a member of
another file system. |
private FsPath |
getPath() |
boolean |
isExecutable(FsEntryName name)
Returns
false if the named file system entry is not executable. |
boolean |
isReadable(FsEntryName name)
Returns
false if the named file system entry is not readable. |
boolean |
isReadOnly()
Returns
true if and only if the file system is read-only. |
boolean |
isWritable(FsEntryName name)
Returns
false if the named file system entry is not writable. |
void |
mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template)
Creates or replaces and finally links a chain of one or more entries
for the given entry
name into the file system. |
(package private) FsEntryName |
resolveParent(FsEntryName name) |
void |
setReadOnly(FsEntryName name)
Sets the named file system entry as read-only.
|
boolean |
setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options)
Makes an attempt to set the last access time of all types in the given
bit field for the file system entry with the given name.
|
boolean |
setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options)
Makes an attempt to set the last access time of all types in the given
map for the file system entry with the given name.
|
<X extends IOException> |
sync(BitField<FsSyncOption> options,
ExceptionHandler<? super FsSyncException,X> handler)
Commits all unsynchronized changes to the contents of this file system
to its parent file system,
releases the associated resources (e.g. target archive files) for
access by third parties (e.g. other processes), cleans up any temporary
allocated resources (e.g. temporary files) and purges any cached data.
|
void |
unlink(FsEntryName name,
BitField<FsOutputOption> options)
Removes the named file system entry from the file system.
|
private void |
unlinkRoot(FsFalsePositiveController.IOOperation<Void> operation) |
toStringgetModel, getMountPoint, isTouched, setTouchedequals, hashCode, sync, sync@CheckForNull private FsController<?> parent
@CheckForNull private FsPath path
private volatile FsFalsePositiveController.State state
FsFalsePositiveController(FsController<?> controller)
controller - the decorated file system controller.@Nullable <T> T call(FsFalsePositiveController.IOOperation<T> operation, FsEntryName name) throws IOException
IOException@Deprecated public Icon getClosedIcon() throws IOException
FsControllerJTree.getClosedIcon in class FsDecoratingController<FsModel,FsController<?>>IOException - on any I/O failure.public FsEntry getEntry(FsEntryName name) throws IOException
FsControllernull if it
doesn't exist.
Modifying the returned entry does not show any effect on the file system
and may result in an UnsupportedOperationException.getEntry in class FsDecoratingController<FsModel,FsController<?>>name - the name of the file system entry.null if no file system entry
exists for the given name.IOException - on any I/O failure.public InputSocket<?> getInputSocket(FsEntryName name, BitField<FsInputOption> options)
FsControllergetInputSocket in class FsDecoratingController<FsModel,FsController<?>>name - the file system entry name.options - the input options.InputSocket.@Deprecated public Icon getOpenIcon() throws IOException
FsControllerJTree.getOpenIcon in class FsDecoratingController<FsModel,FsController<?>>IOException - on any I/O failure.public OutputSocket<?> getOutputSocket(FsEntryName name, BitField<FsOutputOption> options, @CheckForNull Entry template)
FsControllertemplate is not null, then the output entry shall
have as many of its properties copied as reasonable, e.g. the last
modification time.getOutputSocket in class FsDecoratingController<FsModel,FsController<?>>name - a file system entry name.options - a bit field of output options.template - a nullable template for the properties of the output
entry.OutputSocket.public FsController<?> getParent()
FsControllernull if
and only if this file system is not federated, i.e. not a member of
another file system.
Multiple invocations must return the same object.getParent in class FsDecoratingController<FsModel,FsController<?>>private FsPath getPath()
public boolean isExecutable(FsEntryName name) throws IOException
FsControllerfalse if the named file system entry is not executable.
The implementation in the class FsController always returns
false.
isExecutable in class FsDecoratingController<FsModel,FsController<?>>name - the name of the file system entry.false if the named file system entry is not executable.IOException - on any I/O failure.public boolean isReadable(FsEntryName name) throws IOException
FsControllerfalse if the named file system entry is not readable.isReadable in class FsDecoratingController<FsModel,FsController<?>>name - the name of the file system entry.false if the named file system entry is not readable.IOException - on any I/O failure.public boolean isReadOnly()
throws IOException
FsControllertrue if and only if the file system is read-only.isReadOnly in class FsDecoratingController<FsModel,FsController<?>>true if and only if the file system is read-only.IOException - on any I/O failure.public boolean isWritable(FsEntryName name) throws IOException
FsControllerfalse if the named file system entry is not writable.isWritable in class FsDecoratingController<FsModel,FsController<?>>name - the name of the file system entry.false if the named file system entry is not writable.IOException - on any I/O failure.public void mknod(FsEntryName name, Entry.Type type, BitField<FsOutputOption> options, @CheckForNull Entry template) throws IOException
FsControllername into the file system.mknod in class FsDecoratingController<FsModel,FsController<?>>name - the file system entry name.type - the file system entry type.options - the file system output options.
If FsOutputOption.CREATE_PARENTS is set, any missing
parent directories will be created and linked into the file
system with its last modification time set to the system's
current time.template - if not null, then the file system entry
at the end of the chain shall inherit as much properties from
this entry as possible - with the exception of its name and type.IOException - on any I/O failure, including but not limited to
these reasons:
name contains characters which are not
supported by the file system.
FsOutputOption.EXCLUSIVE is set or the entry is a
directory.
createParents is
false.
FsEntryName resolveParent(FsEntryName name)
public void setReadOnly(FsEntryName name) throws IOException
FsControllersetReadOnly in class FsDecoratingController<FsModel,FsController<?>>name - the name of the file system entry.IOException - on any I/O failure or if this operation is not
supported.public boolean setTime(FsEntryName name, BitField<Entry.Access> types, long value, BitField<FsOutputOption> options) throws IOException
FsControllerfalse is returned or an IOException is thrown, then
still some of the last access times may have been set.
Whether or not this is an atomic operation is specific to the
implementation.setTime in class FsDecoratingController<FsModel,FsController<?>>name - the file system entry name.types - the access types.value - the last access time.options - the file system output options.true if and only if setting the access time for all
types in types succeeded.IOException - on any I/O failure.public boolean setTime(FsEntryName name, Map<Entry.Access,Long> times, BitField<FsOutputOption> options) throws IOException
FsControllerfalse is returned or an IOException is thrown, then
still some of the last access times may have been set.
Whether or not this is an atomic operation is specific to the
implementation.setTime in class FsDecoratingController<FsModel,FsController<?>>name - the file system entry name.times - the access times.options - the file system output options.true if and only if setting the access time for all
types in times succeeded.IOException - on any I/O failure.public <X extends IOException> void sync(BitField<FsSyncOption> options, ExceptionHandler<? super FsSyncException,X> handler) throws IOException
FsControllersync in class FsDecoratingController<FsModel,FsController<?>>X - The type of the IOException to throw at the
discretion of the exception handler.options - a bit field of synchronization options.handler - the exception handling strategy for consuming input
FsSyncExceptions and mapping them to output
IOExceptions.IOException - on any other (not necessarily I/O related) failure.public void unlink(FsEntryName name, BitField<FsOutputOption> options) throws IOException
FsControllerunlink in class FsDecoratingController<FsModel,FsController<?>>name - the file system entry name.options - output options for this operation.IOException - on any I/O failure.private void unlinkRoot(FsFalsePositiveController.IOOperation<Void> operation) throws IOException
IOExceptionCopyright © 2005-2012 Schlichtherle IT Services. All Rights Reserved.