M - the type of the file system model.@ThreadSafe public final class FsSyncController<M extends FsModel> extends FsDecoratingController<M,FsController<? extends M>>
sync operation on the
file system if and only if any decorated file system controller throws an
FsNeedsSyncException.FsNeedsSyncException| Modifier and Type | Class and Description |
|---|---|
private class |
FsSyncController.Input |
private class |
FsSyncController.Nio2Input |
private class |
FsSyncController.Nio2Output |
private class |
FsSyncController.Output |
private static class |
FsSyncController.SocketFactory |
private class |
FsSyncController.SyncInputStream |
private class |
FsSyncController.SyncOutputStream |
private class |
FsSyncController.SyncReadOnlyFile |
private class |
FsSyncController.SyncSeekableByteChannel |
| Modifier and Type | Field and Description |
|---|---|
private static FsSyncController.SocketFactory |
SOCKET_FACTORY |
delegate| Constructor and Description |
|---|
FsSyncController(FsController<? extends M> controller)
Constructs a new file system sync controller.
|
| Modifier and Type | Method and Description |
|---|---|
(package private) void |
close(Closeable closeable) |
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.
|
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. |
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.
|
void |
unlink(FsEntryName name,
BitField<FsOutputOption> options)
Removes the named file system entry from the file system.
|
getParent, sync, toStringgetModel, getMountPoint, isTouched, setTouchedequals, hashCode, sync, syncprivate static final FsSyncController.SocketFactory SOCKET_FACTORY
public FsSyncController(FsController<? extends M> controller)
controller - the decorated file system controller.void close(Closeable closeable) throws IOException
IOException@Deprecated public Icon getClosedIcon() throws IOException
FsControllerJTree.getClosedIcon in class FsDecoratingController<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>name - the file system entry name.options - the input options.InputSocket.@Deprecated public Icon getOpenIcon() throws IOException
FsControllerJTree.getOpenIcon in class FsDecoratingController<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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 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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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.
public void setReadOnly(FsEntryName name) throws IOException
FsControllersetReadOnly in class FsDecoratingController<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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<M extends FsModel,FsController<? extends M extends FsModel>>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 void unlink(FsEntryName name, BitField<FsOutputOption> options) throws IOException
FsControllerunlink in class FsDecoratingController<M extends FsModel,FsController<? extends M extends FsModel>>name - the file system entry name.options - output options for this operation.IOException - on any I/O failure.Copyright © 2005-2012 Schlichtherle IT Services. All Rights Reserved.