public class CopyProcessor extends java.lang.Object implements Processor
Processor
implementation is used to copy logs from a given
source directory--specified in the configuration--to a given destination.
This is useful when you need to use the same logs for different Sawmill
profiles.Modifier and Type | Field and Description |
---|---|
java.io.File |
inputDirectory |
static java.lang.String |
OUTPUT_DIR_NAME |
Constructor and Description |
---|
CopyProcessor() |
Modifier and Type | Method and Description |
---|---|
void |
configure(java.util.Properties props)
Configure the Processor, providing the details needed to process logs.
|
java.lang.String |
getDirName()
Get the name of the directory where the output of the processor is
placed.
|
java.lang.String |
getOutputFileName(java.lang.String inputFileName)
Get the name that will be assigned to an output file, given the input
file name.
|
void |
process(java.io.File in,
java.io.File out)
Process the files in the input directory and place them in the output
directory.
|
void |
process(java.util.List<java.io.File> in,
java.io.File out)
Process the files in the given list and place them in the output
directory.
|
protected void |
processFileList(java.util.List<java.io.File> in,
java.io.File out) |
boolean |
verifyConfiguration()
Verify that the Processor has been properly configured.
|
public static final java.lang.String OUTPUT_DIR_NAME
public java.io.File inputDirectory
public void process(java.io.File in, java.io.File out) throws ProcessingException
Processor
process
in interface Processor
in
- The directory containing the input filesout
- The directory where output is placedProcessingException
- If an error occurs.public void process(java.util.List<java.io.File> in, java.io.File out) throws ProcessingException
Processor
process
in interface Processor
in
- A List
of File
objects
pointing to files that will be processedout
- The directory where output is placedProcessingException
- If an error occurs.public java.lang.String getDirName()
Processor
getDirName
in interface Processor
public java.lang.String getOutputFileName(java.lang.String inputFileName)
Processor
getOutputFileName
in interface Processor
inputFileName
- The name of the input filepublic void configure(java.util.Properties props) throws ProcessingException
Processor
configure
in interface Processor
props
- A Properties
containing the needed
configuration values.ProcessingException
- If the provided Properties do not contain
the needed configuration values.public boolean verifyConfiguration()
Processor
verifyConfiguration
in interface Processor
protected void processFileList(java.util.List<java.io.File> in, java.io.File out) throws ProcessingException
ProcessingException
Copyright © 2010-2019 Planetary Data System. All Rights Reserved.