public class ReadLogFileCommand extends AsciiSelfResponderCommandBase implements ICommandParameters
LibraryCommandId
Constructor and Description |
---|
ReadLogFileCommand() |
Modifier and Type | Method and Description |
---|---|
protected void |
buildCommandLine(java.lang.StringBuilder line)
Builds the command line to send to the reader to execute the command
|
void |
clearLastResponse()
Clears the response ready to receive a new one
|
int |
getBlockOffset()
Get or set the offset for the log block to be read
|
TriState |
getCommandLoggingEnabled() |
DeleteConfirmation |
getDeleteFile() |
IFileLineReceivedDelegate |
getFileLineReceivedDelegate() |
TriState |
getIncludeLogLength()
Get or set the include Log Length state
|
int |
getLogLength()
Get the Log Length (in Bytes)
|
TriState |
getReadParameters()
Gets or sets a value indicating whether the command should include a list of supported parameters and their current values
|
TriState |
getResetParameters()
Gets or sets a value indicating whether the command should reset all its parameters to default values
|
TriState |
getTakeNoAction()
Gets or sets a value indicating whether the command primary action should not be performed
(e.g.
|
boolean |
implementsReadParameters()
Gets a value indicating whether the implementing command uses the ReadParameters property
|
boolean |
implementsResetParameters()
Gets a value indicating whether the implementing command uses the ResetParameters property
|
boolean |
implementsTakeNoAction()
Gets a value indicating whether the implementing command uses the TakeNoAction property
|
protected boolean |
processReceivedLine(java.lang.String fullLine,
java.lang.String header,
java.lang.String value,
boolean moreAvailable)
Each correctly terminated line from the device is passed to this method for processing
|
protected void |
responseDidFinish(boolean async)
The is called when the responder received a line with an OK: or an ER: header.
|
protected boolean |
responseDidReceiveParameter(java.lang.String parameter)
This method is called for each parameter in the parameters (PR:) list.
|
void |
setBlockOffset(int blockOffset) |
void |
setCommandLoggingEnabled(TriState commandLoggingEnabled) |
void |
setDeleteFile(DeleteConfirmation deleteFile) |
void |
setFileLineReceivedDelegate(IFileLineReceivedDelegate fileLineReceivedDelegate) |
void |
setIncludeLogLength(TriState includeLogLength) |
protected void |
setLogLength(int logLength) |
void |
setReadParameters(TriState value) |
void |
setResetParameters(TriState value) |
void |
setTakeNoAction(TriState value) |
static ReadLogFileCommand |
synchronousCommand()
Returns a new instance of the ReadLogFileCommand class that will execute synchronously (as its own responder)
|
getMaxSynchronousWaitTime, getSynchronousCommandResponder, setMaxSynchronousWaitTime, setSynchronousCommandResponder
captureNonLibraryResponses, setCaptureNonLibraryResponses
getCommandLine, getCommandName, getResponseLifecycleDelegate, getResponseStarted, isResponseFinished, parseParameters, processReceivedLine, responseDidStart, setCommandName, setResponseLifecycleDelegate, setResponseStarted, splitParameters
appendToMessages, appendToParameters, appendToResponse, getErrorCode, getMessages, getParameters, getResponse, isSuccessful, setErrorCode, setIsSuccessful, setResponse
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getCommandLine, getCommandName
public final boolean implementsReadParameters()
implementsReadParameters
in interface ICommandParameters
public final boolean implementsResetParameters()
implementsResetParameters
in interface ICommandParameters
public final boolean implementsTakeNoAction()
implementsTakeNoAction
in interface ICommandParameters
public final TriState getReadParameters()
ICommandParameters
getReadParameters
in interface ICommandParameters
public final void setReadParameters(TriState value)
setReadParameters
in interface ICommandParameters
public final TriState getResetParameters()
ICommandParameters
getResetParameters
in interface ICommandParameters
public final void setResetParameters(TriState value)
setResetParameters
in interface ICommandParameters
public final TriState getTakeNoAction()
ICommandParameters
getTakeNoAction
in interface ICommandParameters
public final void setTakeNoAction(TriState value)
setTakeNoAction
in interface ICommandParameters
public TriState getCommandLoggingEnabled()
public void setCommandLoggingEnabled(TriState commandLoggingEnabled)
commandLoggingEnabled
- set the command logging statepublic DeleteConfirmation getDeleteFile()
public void setDeleteFile(DeleteConfirmation deleteFile)
deleteFile
- the delete confirmation status to setpublic TriState getIncludeLogLength()
public void setIncludeLogLength(TriState includeLogLength)
public int getLogLength()
protected void setLogLength(int logLength)
public int getBlockOffset()
public void setBlockOffset(int blockOffset)
public IFileLineReceivedDelegate getFileLineReceivedDelegate()
public void setFileLineReceivedDelegate(IFileLineReceivedDelegate fileLineReceivedDelegate)
fileLineReceivedDelegate
- the fileLineReceivedDelegate to setpublic static ReadLogFileCommand synchronousCommand()
protected void buildCommandLine(java.lang.StringBuilder line)
buildCommandLine
in class AsciiSelfResponderCommandBase
line
- The command line to append to
When overriding this method call the base class to construct the command line as known to the base class and
then append the additional parameters to the end of the linepublic void clearLastResponse()
clearLastResponse
in interface IAsciiCommandResponder
clearLastResponse
in class AsciiCommandResponderBase
protected void responseDidFinish(boolean async)
responseDidFinish
in class AsciiCommandResponderBase
async
- True if the command finished asynchronouslyprotected boolean responseDidReceiveParameter(java.lang.String parameter)
responseDidReceiveParameter
in class AsciiCommandResponderBase
parameter
- A single parameter extracted from the PR: response, excluding the '-' and trimmed of leading and trailing whitespaceprotected boolean processReceivedLine(java.lang.String fullLine, java.lang.String header, java.lang.String value, boolean moreAvailable) throws java.lang.Exception
processReceivedLine
in class AsciiCommandLibraryResponderBase
fullLine
- The line to be processedheader
- The response line header excluding the colon e.g. 'CS' for a command started responsevalue
- The response line following the colon e.g. '.iv'moreAvailable
- When true indicates there are additional lines to be processed (and will also be passed to this method)java.lang.Exception