com.vaadin.data.util.
Class FilesystemContainer
java.lang.Object
com.vaadin.data.util.FilesystemContainer
All Implemented Interfaces:
- extends Object
- implements Container.Hierarchical
public class FilesystemContainer
A hierarchical container wrapper for a filesystem.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Nested Class Summary | |
---|---|
class |
FilesystemContainer.FileExtensionFilter
Generic file extension filter for displaying only files having certain extension. |
class |
FilesystemContainer.FileItem
A Item wrapper for files in a filesystem. |
Nested classes/interfaces inherited from interface com.vaadin.data.Container |
---|
Container.Editor, Container.Filter, Container.Filterable, Container.Hierarchical, Container.Indexed, Container.ItemSetChangeEvent, Container.ItemSetChangeListener, Container.ItemSetChangeNotifier, Container.Ordered, Container.PropertySetChangeEvent, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.SimpleFilterable, Container.Sortable, Container.Viewer |
Field Summary | |
---|---|
static Collection<String> |
FILE_PROPERTIES
List of the string identifiers for the available properties. |
static String |
PROPERTY_ICON
String identifier of a file's "icon" property. |
static String |
PROPERTY_LASTMODIFIED
String identifier of a file's "last modified" property. |
static String |
PROPERTY_NAME
String identifier of a file's "name" property. |
static String |
PROPERTY_SIZE
String identifier of a file's "size" property. |
Constructor Summary | |
---|---|
FilesystemContainer(File root)
Constructs a new FileSystemContainer with the specified file
as the root of the filesystem. |
|
FilesystemContainer(File root,
boolean recursive)
Constructs a new FileSystemContainer with the specified file
as the root of the filesystem. |
|
FilesystemContainer(File root,
FilenameFilter filter,
boolean recursive)
Constructs a new FileSystemContainer with the specified root
and recursivity status. |
|
FilesystemContainer(File root,
String extension,
boolean recursive)
Constructs a new FileSystemContainer with the specified file
as the root of the filesystem. |
Method Summary | |
---|---|
boolean |
addContainerProperty(Object propertyId,
Class<?> type,
Object defaultValue)
Adds a new Property to all Items in the Container. |
Object |
addItem()
Creates a new Item into the Container, and assign it an automatic ID. |
Item |
addItem(Object itemId)
Creates a new Item with the given ID in the Container. |
void |
addRoot(File root)
Adds new root file directory. |
boolean |
areChildrenAllowed(Object itemId)
Tests if the specified Item in the container may have children. |
boolean |
containsId(Object itemId)
Tests if the Container contains the specified Item. |
Collection<File> |
getChildren(Object itemId)
Gets the IDs of all Items that are children of the specified Item. |
Property |
getContainerProperty(Object itemId,
Object propertyId)
Gets the specified property of the specified file Item. |
Collection<String> |
getContainerPropertyIds()
Gets the collection of available file properties. |
FilenameFilter |
getFilter()
Returns the file filter used to limit the files in this container. |
Item |
getItem(Object itemId)
Gets the Item with the given Item ID from the Container. |
Collection<File> |
getItemIds()
Gets the ID's of all visible (after filtering and sorting) Items stored in the Container. |
Object |
getParent(Object itemId)
Gets the ID of the parent Item of the specified Item. |
Class<?> |
getType(Object propertyId)
Gets the specified property's data type. |
boolean |
hasChildren(Object itemId)
Tests if the Item specified with itemId has child Items
or if it is a leaf. |
boolean |
isRecursive()
Is this container recursive filesystem. |
boolean |
isRoot(Object itemId)
Tests if the Item specified with itemId is a root Item. |
boolean |
removeAllItems()
Removes all Items from the Container. |
boolean |
removeContainerProperty(Object propertyId)
Removes a Property specified by the given Property ID from the Container. |
boolean |
removeItem(Object itemId)
Removes the Item identified by ItemId from the Container. |
Collection<File> |
rootItemIds()
Gets the IDs of all Items in the container that don't have a parent. |
boolean |
setChildrenAllowed(Object itemId,
boolean areChildrenAllowed)
Returns false when conversion from files to directories is
not supported. |
void |
setFilter(FilenameFilter filter)
Sets the file filter used to limit the files in this container. |
void |
setFilter(String extension)
Sets the file filter used to limit the files in this container. |
boolean |
setParent(Object itemId,
Object newParentId)
Returns false when moving files around in the filesystem is
not supported. |
void |
setRecursive(boolean recursive)
Sets the container recursive property. |
int |
size()
Gets the number of Items in the container. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
PROPERTY_NAME
public static String PROPERTY_NAME
String identifier of a file's "name" property.
PROPERTY_SIZE
public static String PROPERTY_SIZE
String identifier of a file's "size" property.
PROPERTY_ICON
public static String PROPERTY_ICON
String identifier of a file's "icon" property.
PROPERTY_LASTMODIFIED
public static String PROPERTY_LASTMODIFIED
String identifier of a file's "last modified" property.
FILE_PROPERTIES
public static Collection<String> FILE_PROPERTIES
List of the string identifiers for the available properties.
Constructor Detail |
---|
FilesystemContainer
public FilesystemContainer(File root)
- Parameters:
root
- the root file for the new file-system container. Null values are ignored.
Constructs a new FileSystemContainer
with the specified file
as the root of the filesystem. The files are included recursively.
FilesystemContainer
public FilesystemContainer(File root,
boolean recursive)
- Parameters:
root
- the root file for the new file-system container.recursive
- should the container recursively contain subdirectories.
Constructs a new FileSystemContainer
with the specified file
as the root of the filesystem. The files are included recursively.
FilesystemContainer
public FilesystemContainer(File root,
String extension,
boolean recursive)
- Parameters:
root
- the root file for the new file-system container.extension
- the Filename extension (w/o separator) to limit the files in container.recursive
- should the container recursively contain subdirectories.
Constructs a new FileSystemContainer
with the specified file
as the root of the filesystem.
FilesystemContainer
public FilesystemContainer(File root,
FilenameFilter filter,
boolean recursive)
- Parameters:
root
- the root file for the new file-system container.filter
- the Filename filter to limit the files in container.recursive
- should the container recursively contain subdirectories.
Constructs a new FileSystemContainer
with the specified root
and recursivity status.
Method Detail |
---|
addRoot
public void addRoot(File root)
- Parameters:
root
- the File to be added as root directory. Null values are ignored.
Adds new root file directory. Adds a file to be included as root file
directory in the FilesystemContainer
.
areChildrenAllowed
public boolean areChildrenAllowed(Object itemId)
- Specified by:
areChildrenAllowed
in interfaceContainer.Hierarchical
- Parameters:
itemId
- the id of the item.- Returns:
true
if the specified Item is a directory,false
otherwise.
Tests if the specified Item in the container may have children. Since a
FileSystemContainer
contains files and directories, this
method returns true
for directory Items only.
getChildren
public Collection<File> getChildren(Object itemId)
- Specified by:
getChildren
in interfaceContainer.Hierarchical
- Parameters:
itemId
- ID of the Item whose children the caller is interested in- Returns:
- An unmodifiable
collection
containing the IDs of all other Items that are children in the container hierarchy
Description copied from interface: Container.Hierarchical
Gets the IDs of all Items that are children of the specified Item. The returned collection is unmodifiable.
getParent
public Object getParent(Object itemId)
- Specified by:
getParent
in interfaceContainer.Hierarchical
- Parameters:
itemId
- ID of the Item whose parent the caller wishes to find out.- Returns:
- the ID of the parent Item. Will be
null
if the specified Item is a root element.
Description copied from interface: Container.Hierarchical
Gets the ID of the parent Item of the specified Item.
hasChildren
public boolean hasChildren(Object itemId)
- Specified by:
hasChildren
in interfaceContainer.Hierarchical
- Parameters:
itemId
- ID of the Item to be tested- Returns:
true
if the specified Item has children,false
if not (is a leaf)
Description copied from interface: Container.Hierarchical
Tests if the Item specified with itemId
has child Items
or if it is a leaf. The Container.Hierarchical.getChildren(Object itemId)
method
always returns null
for leaf Items.
Note that being a leaf does not imply whether or not an Item is allowed to have children.
.
isRoot
public boolean isRoot(Object itemId)
- Specified by:
isRoot
in interfaceContainer.Hierarchical
- Parameters:
itemId
- ID of the Item whose root status is to be tested- Returns:
true
if the specified Item is a root,false
if not
Description copied from interface: Container.Hierarchical
Tests if the Item specified with itemId
is a root Item.
The hierarchical container can have more than one root and must have
at least one unless it is empty. The Container.Hierarchical.getParent(Object itemId)
method always returns null
for root Items.
rootItemIds
public Collection<File> rootItemIds()
- Specified by:
rootItemIds
in interfaceContainer.Hierarchical
- Returns:
- An unmodifiable
collection
containing IDs of all root elements of the container
Description copied from interface: Container.Hierarchical
Gets the IDs of all Items in the container that don't have a parent.
Such items are called root
Items. The returned
collection is unmodifiable.
setChildrenAllowed
public boolean setChildrenAllowed(Object itemId,
boolean areChildrenAllowed)
throws UnsupportedOperationException
- Specified by:
setChildrenAllowed
in interfaceContainer.Hierarchical
- Parameters:
itemId
- the ID of the item.areChildrenAllowed
- the boolean value specifying if the Item can have children or not.- Returns:
true
if the operaton is successful otherwisefalse
.- Throws:
UnsupportedOperationException
- if the setChildrenAllowed is not supported.
Returns false
when conversion from files to directories is
not supported.
setParent
public boolean setParent(Object itemId,
Object newParentId)
throws UnsupportedOperationException
- Specified by:
setParent
in interfaceContainer.Hierarchical
- Parameters:
itemId
- the ID of the item.newParentId
- the ID of the Item that's to be the new parent of the Item identified with itemId.- Returns:
true
if the operation is successful otherwisefalse
.- Throws:
UnsupportedOperationException
- if the setParent is not supported.
Returns false
when moving files around in the filesystem is
not supported.
containsId
public boolean containsId(Object itemId)
- Specified by:
containsId
in interfaceContainer
- Parameters:
itemId
- ID the of Item to be tested- Returns:
- boolean indicating if the Container holds the specified Item
Description copied from interface: Container
Tests if the Container contains the specified Item. Filtering can hide items so that they will not be visible through the container API, and this method should respect visibility of items (i.e. only indicate visible items as being in the container) if feasible for the container.
getItem
public Item getItem(Object itemId)
Description copied from interface: Container
Gets the Item
with the given Item ID from the Container. If the
Container does not contain the requested Item, null
is
returned.
Containers should not return Items that are filtered out.
getItemIds
public Collection<File> getItemIds()
- Specified by:
getItemIds
in interfaceContainer
- Returns:
- unmodifiable collection of Item IDs
Description copied from interface: Container
Gets the ID's of all visible (after filtering and sorting) Items stored
in the Container. The ID's cannot be modified through the returned
collection.
If the container is Container.Ordered
, the collection returned by this
method should follow that order. If the container is Container.Sortable
,
the items should be in the sorted order.
Calling this method for large lazy containers can be an expensive
operation and should be avoided when practical.
getContainerProperty
public Property getContainerProperty(Object itemId,
Object propertyId)
- Specified by:
getContainerProperty
in interfaceContainer
- Parameters:
itemId
- the ID of the file whose property is requested.propertyId
- the property's ID.- Returns:
- the requested property's value, or
null
Gets the specified property of the specified file Item. The available
file properties are "Name", "Size" and "Last Modified". If propertyId is
not one of those, null
is returned.
getContainerPropertyIds
public Collection<String> getContainerPropertyIds()
- Specified by:
getContainerPropertyIds
in interfaceContainer
- Returns:
- Unmodifiable collection containing all available file properties.
Gets the collection of available file properties.
getType
public Class<?> getType(Object propertyId)
- Parameters:
propertyId
- the ID of the property whose type is requested.- Returns:
- data type of the requested property, or
null
Gets the specified property's data type. "Name" is a String
,
"Size" is a Long
, "Last Modified" is a Date
. If
propertyId is not one of those, null
is returned.
size
public int size()
- Returns:
- Number of Items in the container.
Gets the number of Items in the container. In effect, this is the combined amount of files and directories.
getFilter
public FilenameFilter getFilter()
- Returns:
- Used filter instance or null if no filter is assigned.
Returns the file filter used to limit the files in this container.
setFilter
public void setFilter(FilenameFilter filter)
- Parameters:
filter
- The filter to set.null
disables filtering.
Sets the file filter used to limit the files in this container.
setFilter
public void setFilter(String extension)
- Parameters:
extension
- the Filename extension (w/o separator) to limit the files in container.
Sets the file filter used to limit the files in this container.
isRecursive
public boolean isRecursive()
- Returns:
true
if container is recursive,false
otherwise.
Is this container recursive filesystem.
setRecursive
public void setRecursive(boolean recursive)
- Parameters:
recursive
- the New value for recursive property.
Sets the container recursive property. Set this to false to limit the files directly under the root file.
Note : This is meaningful only if the root really is a directory.
addContainerProperty
public boolean addContainerProperty(Object propertyId,
Class<?> type,
Object defaultValue)
throws UnsupportedOperationException
- Specified by:
addContainerProperty
in interfaceContainer
- Parameters:
propertyId
- ID of the Propertytype
- Data type of the new PropertydefaultValue
- The value all created Properties are initialized to- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the container does not support explicitly adding container properties
Description copied from interface: Container
Adds a new Property to all Items in the Container. The Property ID, data type and default value of the new Property are given as parameters. This functionality is optional.
addItem
public Object addItem()
throws UnsupportedOperationException
- Returns:
- ID of the newly created Item, or
null
in case of a failure - Throws:
UnsupportedOperationException
- if adding an item without an explicit item ID is not supported by the container
Description copied from interface: Container
Creates a new Item into the Container, and assign it an automatic ID.
The new ID is returned, or null
if the operation fails.
After a successful call you can use the
method to fetch the Item.
getItem
This functionality is optional.
addItem
public Item addItem(Object itemId)
throws UnsupportedOperationException
- Parameters:
itemId
- ID of the Item to be created- Returns:
- Created new Item, or
null
in case of a failure - Throws:
UnsupportedOperationException
- if adding an item with an explicit item ID is not supported by the container
Description copied from interface: Container
Creates a new Item with the given ID in the Container.
The new Item is returned, and it is ready to have its Properties
modified. Returns null
if the operation fails or the
Container already contains a Item with the given ID.
This functionality is optional.
removeAllItems
public boolean removeAllItems()
throws UnsupportedOperationException
- Specified by:
removeAllItems
in interfaceContainer
- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the container does not support removing all items
Description copied from interface: Container
Removes all Items from the Container.
Note that Property ID and type information is preserved. This functionality is optional.
removeItem
public boolean removeItem(Object itemId)
throws UnsupportedOperationException
- Specified by:
removeItem
in interfaceContainer
- Specified by:
removeItem
in interfaceContainer.Hierarchical
- Parameters:
itemId
- ID of the Item to remove- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the container does not support removing individual items
Description copied from interface: Container
Removes the Item identified by ItemId
from the Container.
Containers that support filtering should also allow removing an item that is currently filtered out.
This functionality is optional.
removeContainerProperty
public boolean removeContainerProperty(Object propertyId)
throws UnsupportedOperationException
- Specified by:
removeContainerProperty
in interfaceContainer
- Parameters:
propertyId
- ID of the Property to remove- Returns:
true
if the operation succeeded,false
if not- Throws:
UnsupportedOperationException
- if the container does not support removing container properties
Description copied from interface: Container
Removes a Property specified by the given Property ID from the Container. Note that the Property will be removed from all Items in the Container. This functionality is optional.