| Package | Description |
|---|---|
| de.schlichtherle.truezip.fs |
Provides access to (possibly federated virtual) file systems.
|
| de.schlichtherle.truezip.fs.archive |
Provides acces to archive files as if they were just directories.
|
| Modifier and Type | Field and Description |
|---|---|
private FsEntryName |
FsPath.entryName |
(package private) FsEntryName |
FsFederatingController.Input.name |
(package private) FsEntryName |
FsFederatingController.Output.name |
(package private) FsEntryName |
FsCachingController.Input.name |
(package private) FsEntryName |
FsCachingController.Output.name |
(package private) FsEntryName |
FsCachingController.EntryController.name |
static FsEntryName |
FsEntryName.ROOT
The file system entry name of the root directory,
which is an empty URI.
|
| Modifier and Type | Field and Description |
|---|---|
private Map<FsEntryName,FsCachingController.EntryController> |
FsCachingController.controllers |
| Modifier and Type | Method and Description |
|---|---|
static FsEntryName |
FsEntryName.create(String uri)
Deprecated.
This method does not quote characters with a special meaning
in a URI - use the method variant with the URI parameter
instead.
|
static FsEntryName |
FsEntryName.create(String uri,
FsUriModifier modifier)
Deprecated.
This method does not quote characters with a special meaning
in a URI - use the method variant with the URI parameter
instead.
|
static FsEntryName |
FsEntryName.create(URI uri)
Equivalent to
create(uri, FsUriModifier.NULL). |
static FsEntryName |
FsEntryName.create(URI uri,
FsUriModifier modifier)
Constructs a new file system entry name by parsing the given URI.
|
FsEntryName |
FsPath.getEntryName()
Returns the entry name component.
|
private FsEntryName |
FsFederatingController.resolveParent(FsEntryName name) |
| Modifier and Type | Method and Description |
|---|---|
FsEntry |
FsSyncController.getEntry(FsEntryName name) |
FsEntry |
FsFederatingController.getEntry(FsEntryName name) |
FsEntry |
FsDecoratingController.getEntry(FsEntryName name) |
abstract FsEntry |
FsController.getEntry(FsEntryName name)
Returns a file system entry or
null if no file system entry
exists for the given name. |
FsEntry |
FsConcurrentController.getEntry(FsEntryName name) |
InputSocket<?> |
FsSyncController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
InputSocket<?> |
FsResourceController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
InputSocket<?> |
FsFederatingController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
InputSocket<?> |
FsDecoratingController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
abstract InputSocket<?> |
FsController.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.
|
InputSocket<?> |
FsConcurrentController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
InputSocket<?> |
FsCachingController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
OutputSocket<?> |
FsSyncController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
OutputSocket<?> |
FsResourceController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
OutputSocket<?> |
FsFederatingController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
OutputSocket<?> |
FsDecoratingController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
abstract OutputSocket<?> |
FsController.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.
|
OutputSocket<?> |
FsConcurrentController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
OutputSocket<?> |
FsCachingController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
boolean |
FsDecoratingController.isExecutable(FsEntryName name) |
boolean |
FsController.isExecutable(FsEntryName name)
Returns
false if the named file system entry is not executable. |
boolean |
FsSyncController.isReadable(FsEntryName name) |
boolean |
FsFederatingController.isReadable(FsEntryName name) |
boolean |
FsDecoratingController.isReadable(FsEntryName name) |
abstract boolean |
FsController.isReadable(FsEntryName name)
Returns
false if the named file system entry is not readable. |
boolean |
FsConcurrentController.isReadable(FsEntryName name) |
boolean |
FsSyncController.isWritable(FsEntryName name) |
boolean |
FsFederatingController.isWritable(FsEntryName name) |
boolean |
FsDecoratingController.isWritable(FsEntryName name) |
abstract boolean |
FsController.isWritable(FsEntryName name)
Returns
false if the named file system entry is not writable. |
boolean |
FsConcurrentController.isWritable(FsEntryName name) |
void |
FsSyncController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
void |
FsFederatingController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
void |
FsDecoratingController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
abstract void |
FsController.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 |
FsConcurrentController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
void |
FsCachingController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
FsPath |
FsPath.resolve(FsEntryName entryName)
Resolves the given entry name against this path.
|
FsPath |
FsMountPoint.resolve(FsEntryName entryName)
Resolves the given entry name against this mount point.
|
private FsEntryName |
FsFederatingController.resolveParent(FsEntryName name) |
void |
FsSyncController.setReadOnly(FsEntryName name) |
void |
FsFederatingController.setReadOnly(FsEntryName name) |
void |
FsDecoratingController.setReadOnly(FsEntryName name) |
abstract void |
FsController.setReadOnly(FsEntryName name) |
void |
FsConcurrentController.setReadOnly(FsEntryName name) |
boolean |
FsSyncController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
boolean |
FsFederatingController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
boolean |
FsDecoratingController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
abstract boolean |
FsController.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 |
FsConcurrentController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
boolean |
FsSyncController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
boolean |
FsFederatingController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
boolean |
FsDecoratingController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
boolean |
FsController.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.
|
boolean |
FsConcurrentController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
private static String |
FsPath.toDecodedUri(FsEntryName entryName) |
void |
FsSyncController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
void |
FsFederatingController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
void |
FsDecoratingController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
abstract void |
FsController.unlink(FsEntryName name,
BitField<FsOutputOption> options)
Removes the named file system entry from the file system.
|
void |
FsConcurrentController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
void |
FsCachingController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
private void |
FsCachingController.unlink0(FsEntryName name,
BitField<FsOutputOption> options) |
| Constructor and Description |
|---|
FsCachingController.EntryController(FsEntryName name) |
FsCachingController.Input(InputSocket<?> input,
FsEntryName name,
BitField<FsInputOption> options) |
FsCachingController.Output(OutputSocket<?> output,
FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
FsEntryName(FsEntryName parent,
FsEntryName member)
Constructs a new file system entry name by resolving the given member
file system entry name against the given parent file system entry name.
|
FsEntryNotFoundException(FsModel model,
FsEntryName name,
IOException cause) |
FsEntryNotFoundException(FsModel model,
FsEntryName name,
String msg) |
FsFederatingController.Input(InputSocket<?> input,
FsEntryName name,
BitField<FsInputOption> options) |
FsFederatingController.Output(OutputSocket<?> output,
FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
FsPath(FsMountPoint mountPoint,
FsEntryName entryName)
Constructs a new path by composing its URI from the given nullable mount
point and entry name.
|
| Modifier and Type | Field and Description |
|---|---|
(package private) FsEntryName |
FsArchiveController.Input.name |
(package private) FsEntryName |
FsArchiveController.Output.name |
private FsEntryName |
FsDefaultArchiveController.target |
| Modifier and Type | Method and Description |
|---|---|
(package private) void |
FsDefaultArchiveController.checkAccess(FsEntryName name,
Entry.Access intention) |
(package private) abstract void |
FsArchiveController.checkAccess(FsEntryName name,
Entry.Access intention)
Checks if the intended access to the named archive entry in the virtual
file system is possible without performing a
sync operation in
advance. |
FsEntry |
FsContextController.getEntry(FsEntryName name) |
(package private) FsCovariantEntry<E> |
FsArchiveFileSystem.getEntry(FsEntryName name)
Returns a covariant file system entry or
null if no file system
entry exists for the given name. |
FsEntry |
FsArchiveController.getEntry(FsEntryName name) |
InputSocket<?> |
FsArchiveDriver.getInputSocket(FsController<?> controller,
FsEntryName name,
BitField<FsInputOption> options)
Called to prepare reading an archive file artifact of this driver from
name in controller using options. |
InputSocket<?> |
FsContextController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
InputSocket<?> |
FsArchiveController.getInputSocket(FsEntryName name,
BitField<FsInputOption> options) |
OutputSocket<?> |
FsArchiveDriver.getOutputSocket(FsController<?> controller,
FsEntryName name,
BitField<FsOutputOption> options,
Entry template)
Called to prepare writing an archive file artifact of this driver to
name in controller using options and
template. |
OutputSocket<?> |
FsContextController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
OutputSocket<?> |
FsArchiveController.getOutputSocket(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
boolean |
FsContextController.isReadable(FsEntryName name) |
boolean |
FsArchiveController.isReadable(FsEntryName name) |
boolean |
FsContextController.isWritable(FsEntryName name) |
(package private) boolean |
FsArchiveFileSystem.isWritable(FsEntryName name) |
boolean |
FsArchiveController.isWritable(FsEntryName name) |
(package private) FsArchiveFileSystemOperation<E> |
FsReadOnlyArchiveFileSystem.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
void |
FsContextController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
(package private) FsArchiveFileSystemOperation<E> |
FsArchiveFileSystem.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template)
Begins a transaction to create or replace and finally link a
chain of one or more archive entries for the given
path into
this archive file system. |
void |
FsArchiveController.mknod(FsEntryName name,
Entry.Type type,
BitField<FsOutputOption> options,
Entry template) |
void |
FsContextController.setReadOnly(FsEntryName name) |
(package private) void |
FsArchiveFileSystem.setReadOnly(FsEntryName name) |
void |
FsArchiveController.setReadOnly(FsEntryName name) |
(package private) boolean |
FsReadOnlyArchiveFileSystem.setTime(FsEntryName path,
BitField<Entry.Access> types,
long value) |
(package private) boolean |
FsArchiveFileSystem.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value) |
boolean |
FsContextController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
boolean |
FsArchiveController.setTime(FsEntryName name,
BitField<Entry.Access> types,
long value,
BitField<FsOutputOption> options) |
(package private) boolean |
FsReadOnlyArchiveFileSystem.setTime(FsEntryName path,
Map<Entry.Access,Long> times) |
(package private) boolean |
FsArchiveFileSystem.setTime(FsEntryName name,
Map<Entry.Access,Long> times) |
boolean |
FsContextController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
boolean |
FsArchiveController.setTime(FsEntryName name,
Map<Entry.Access,Long> times,
BitField<FsOutputOption> options) |
(package private) void |
FsReadOnlyArchiveFileSystem.unlink(FsEntryName path) |
(package private) void |
FsArchiveFileSystem.unlink(FsEntryName name)
If this method returns, the file system entry identified by the given
path has been successfully deleted from this archive file
system. |
void |
FsContextController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
void |
FsArchiveController.unlink(FsEntryName name,
BitField<FsOutputOption> options) |
| Constructor and Description |
|---|
FsArchiveController.Input(FsEntryName name) |
FsArchiveController.Output(FsEntryName name,
BitField<FsOutputOption> options,
Entry template) |
Copyright © 2004-2011 Schlichtherle IT Services. All Rights Reserved.