Package com.logicaldoc.core.store
Class FSStorer
- java.lang.Object
-
- com.logicaldoc.core.store.AbstractStorer
-
- com.logicaldoc.core.store.FSStorer
-
- All Implemented Interfaces:
Storer
,Comparable<Storer>
public class FSStorer extends AbstractStorer
This class is an implementation of the Storer interface to persist documents in the filesystem. From the root of the documents storage, this implementation saves all document's files into a defined directory using the following logic. The document's id is tokenized by three chars tokens, than the doc/ dir is appended, so if the docId=12345, the document's path will be:123/45/doc.- Since:
- 4.5
- Author:
- Marco Meschieri - LogicalDOC
-
-
Constructor Summary
Constructors Constructor Description FSStorer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
delete(long docId)
Deletes all resources of a document from the storage.void
delete(long docId, String resource)
Deletes a specific resource of a document from the storage.boolean
exists(long docId, String resource)
Checks if the passed resource exists in the document's containerbyte[]
getBytes(long docId, String resource, long start, long length)
Obtains the document's raw bytes for the specified resourceFile
getContainer(long docId)
Finds the container where all document's files are storedList<String>
getParameterNames()
Implementations should return the list of the required parameters.File
getRoot()
InputStream
getStream(long docId, String resource)
Obtains the document's content for the specified resourcelong
getTotalSize()
Computes the total size of the documents repository(in bytes)List<String>
listResources(long docId, String fileVersion)
Lists all resources in the document's containerlong
size(long docId, String resource)
Computed the size of a specific resource.void
store(File file, long docId, String resource)
Stores a filevoid
store(InputStream stream, long docId, String resource)
This method has to store a resource in the document's container.void
writeToFile(long docId, String resource, File out)
Writes the specified resource in a file-
Methods inherited from class com.logicaldoc.core.store.AbstractStorer
compareTo, destroy, equals, getBytes, getConfig, getId, getParameters, getResourceName, getResourceName, getString, hashCode, init, isEnabled, setConfig, setId, setManager, test, toString, writeToStream, writeToStream
-
-
-
-
Method Detail
-
delete
public void delete(long docId)
Description copied from interface:Storer
Deletes all resources of a document from the storage.- Parameters:
docId
- The document identifier
-
getContainer
public File getContainer(long docId)
Finds the container where all document's files are stored- Parameters:
docId
- The document identifier- Returns:
- The document's container
-
getRoot
public File getRoot()
-
store
public void store(File file, long docId, String resource) throws IOException
Description copied from interface:Storer
Stores a file- Specified by:
store
in interfaceStorer
- Overrides:
store
in classAbstractStorer
- Parameters:
file
- the file to storedocId
- identifier of the documentresource
- name of the resource- Throws:
IOException
- the content cannot be stored- See Also:
Storer.store(java.io.InputStream,long,java.lang.String)
-
store
public void store(InputStream stream, long docId, String resource) throws IOException
Description copied from interface:Storer
This method has to store a resource in the document's container. The location where (DBMS, Filesystem, other) the document should be stored is defined by the concrete implementation. It is possible to store a new document or a new version of an existing document.- Parameters:
stream
- Document as InputStreamdocId
- The document identifierresource
- Name of the resource to be stored- Throws:
IOException
- the content cannot be stored
-
writeToFile
public void writeToFile(long docId, String resource, File out) throws IOException
Description copied from interface:Storer
Writes the specified resource in a file- Specified by:
writeToFile
in interfaceStorer
- Overrides:
writeToFile
in classAbstractStorer
- Parameters:
docId
- The document identifierresource
- Name of the resourceout
- File that will receive the resource's content- Throws:
IOException
- error writing the file or reading the resource
-
getStream
public InputStream getStream(long docId, String resource) throws IOException
Description copied from interface:Storer
Obtains the document's content for the specified resource- Parameters:
docId
- The document's identifierresource
- Name of the resource- Returns:
- The document file's content
- Throws:
IOException
- cannot open the stream
-
getTotalSize
public long getTotalSize()
Description copied from interface:Storer
Computes the total size of the documents repository(in bytes)- Returns:
- sum of the sizes of all the documents expressed in bytes
-
getBytes
public byte[] getBytes(long docId, String resource, long start, long length) throws IOException
Description copied from interface:Storer
Obtains the document's raw bytes for the specified resource- Parameters:
docId
- The document's identifierresource
- Name of the resourcestart
- Index of the starting bytelength
- Total packet length- Returns:
- The document file's bytes
- Throws:
IOException
- cannot open the resource to get the bytes
-
delete
public void delete(long docId, String resource)
Description copied from interface:Storer
Deletes a specific resource of a document from the storage.- Parameters:
docId
- The document identifierresource
- Name of the resource to be deleted
-
listResources
public List<String> listResources(long docId, String fileVersion)
Description copied from interface:Storer
Lists all resources in the document's container- Parameters:
docId
- The document's identifierfileVersion
- If specified, lists the resources for that specific file version only- Returns:
- list of resource names
-
size
public long size(long docId, String resource)
Description copied from interface:Storer
Computed the size of a specific resource.- Parameters:
docId
- The document's identifierresource
- The resource- Returns:
- the size in bytes
-
exists
public boolean exists(long docId, String resource)
Description copied from interface:Storer
Checks if the passed resource exists in the document's container- Parameters:
docId
- ID of the documentresource
- Name of the resource- Returns:
- true only if the resource already exists
-
-