Package com.logicaldoc.core.store
Class AbstractStorer
java.lang.Object
com.logicaldoc.core.store.AbstractStorer
- All Implemented Interfaces:
Storer
,Comparable<Storer>
- Direct Known Subclasses:
FSStorer
Common methods for all the Storer implementations.
- Since:
- 7.6.4
- Author:
- Marco Meschieri - LogicalDOC
-
Method Summary
Modifier and TypeMethodDescriptionint
void
destroy()
Destroy methodboolean
byte[]
Obtains the document's raw bytes for the specified resourceint
getId()
The unique identifierReturns the map of parametersgetResourceName
(long docId, String fileVersion, String suffix) Computes the resource name inside the containergetResourceName
(Document doc, String fileVersion, String suffix) Computes the resource name inside the containerRetrieves the storers definitions grouped by typeObtains the document's content as string for the specified resourceint
hashCode()
void
init()
Initialization methodboolean
Tests if the storer is enablednewStorer
(int id) Instantiate a new storer and fully configures it.void
setConfig
(ContextProperties config) void
setId
(int id) Sets the unique identifiervoid
Stores a fileboolean
test()
Tests if the storer can read and writetoString()
void
writeToFile
(long docId, String resource, File out) Writes the specified resource in a filevoid
writeToStream
(long docId, String resource, OutputStream output) Writes the specified resource in an output streamvoid
writeToStream
(long docId, String resource, OutputStream output, long start, long length) Writes the specified resource in an output streamMethods inherited from interface com.logicaldoc.core.store.Storer
delete, delete, exists, getBytes, getParameterNames, getStream, getTotalSize, listResources, moveResourcesToStore, size, store
-
Method Details
-
getConfig
-
setConfig
-
getId
public int getId()Description copied from interface:Storer
The unique identifier -
setId
public void setId(int id) Description copied from interface:Storer
Sets the unique identifier -
compareTo
- Specified by:
compareTo
in interfaceComparable<Storer>
-
hashCode
public int hashCode() -
equals
-
store
Description copied from interface:Storer
Stores a file- Specified by:
store
in interfaceStorer
- Parameters:
file
- the file to storedocId
- identifier of the documentresource
- name of the resource- Throws:
IOException
- the content cannot be stored- See Also:
-
getBytes
Description copied from interface:Storer
Obtains the document's raw bytes for the specified resource- Specified by:
getBytes
in interfaceStorer
- Parameters:
docId
- The document's identifierresource
- Name of the resource- Returns:
- The document file's bytes
- Throws:
IOException
- cannot open the resource to get the bytes
-
writeToStream
public void writeToStream(long docId, String resource, OutputStream output, long start, long length) throws IOException Description copied from interface:Storer
Writes the specified resource in an output stream- Specified by:
writeToStream
in interfaceStorer
- Parameters:
docId
- The document's identifierresource
- Name of the resourceoutput
- The output streamstart
- Index of the starting bytelength
- Total packet length- Throws:
IOException
- error writing the stream or reading the resource
-
writeToStream
Description copied from interface:Storer
Writes the specified resource in an output stream- Specified by:
writeToStream
in interfaceStorer
- Parameters:
docId
- The document's identifierresource
- Name of the resourceoutput
- The output stream- Throws:
IOException
- error writing the stream or reading the resource
-
writeToFile
Description copied from interface:Storer
Writes the specified resource in a file- Specified by:
writeToFile
in interfaceStorer
- 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
-
getString
Description copied from interface:Storer
Obtains the document's content as string for the specified resource -
getResourceName
Description copied from interface:Storer
Computes the resource name inside the container- Specified by:
getResourceName
in interfaceStorer
- Parameters:
doc
- The document representationfileVersion
- The file version (use null for the latest version)suffix
- The file suffix (use null if you want the exact document file)- Returns:
- The document's resource name
-
getResourceName
Description copied from interface:Storer
Computes the resource name inside the container- Specified by:
getResourceName
in interfaceStorer
- Parameters:
docId
- The document identifierfileVersion
- The file version (use null for the latest version)suffix
- The file suffix (use null if you want the exact document file)- Returns:
- The document's resource name
-
getParameters
Description copied from interface:Storer
Returns the map of parameters- Specified by:
getParameters
in interfaceStorer
- Returns:
- a map with settings setting_name - setting_value
-
test
public boolean test()Description copied from interface:Storer
Tests if the storer can read and write -
isEnabled
public boolean isEnabled()Description copied from interface:Storer
Tests if the storer is enabled -
toString
-
init
public void init()Description copied from interface:Storer
Initialization method -
destroy
public void destroy()Description copied from interface:Storer
Destroy method -
newStorer
Instantiate a new storer and fully configures it. -
getStorerDefinitions
Description copied from interface:Storer
Retrieves the storers definitions grouped by type- Specified by:
getStorerDefinitions
in interfaceStorer
- Returns:
- a map with definitions type - storer prototype
-