Package org.apache.tika.batch.fs
Class FSFileResource
java.lang.Object
org.apache.tika.batch.fs.FSFileResource
- All Implemented Interfaces:
FileResource
FileSystem(FS)Resource wraps a file name.
This class automatically sets the following keys in Metadata:
- TikaCoreProperties.RESOURCE_NAME_KEY (file name)
- Metadata.CONTENT_LENGTH
- FSProperties.FS_REL_PATH
- FileResource.FILE_EXTENSION
-
Field Summary
Fields inherited from interface org.apache.tika.batch.FileResource
FILE_EXTENSION
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionThis gets the metadata available before the parsing of the file.This is only used in logging to identify which file may have caused problems.
-
Constructor Details
-
FSFileResource
Constructor- Parameters:
inputRoot
- the input root for the filefullPath
- the full path to the file- Throws:
IllegalArgumentException
- if the fullPath is not a child of inputRoot
-
-
Method Details
-
getResourceId
Description copied from interface:FileResource
This is only used in logging to identify which file may have caused problems. While it is probably best to use unique ids for the sake of debugging, it is not necessary that the ids be unique. This id is never used as a hashkey by the batch processors, for example.- Specified by:
getResourceId
in interfaceFileResource
- Returns:
- file's relativePath
-
getMetadata
Description copied from interface:FileResource
This gets the metadata available before the parsing of the file. This will typically be "external" metadata: file name, file size, file location, data stream, etc. That is, things that are known about the file from outside information, not file-internal metadata.- Specified by:
getMetadata
in interfaceFileResource
- Returns:
- Metadata
-
openInputStream
- Specified by:
openInputStream
in interfaceFileResource
- Returns:
- an InputStream for the FileResource
- Throws:
IOException
-