|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aragost.javahg.internals.AbstractCommand
public abstract class AbstractCommand
Base class for the command classes.
Each Mercurial command (e.g., "log", "commit", etc) is mapped to a command
class, which is a subclass of this class. The command classes will provide
methods for setting command line flags and for actually executing the
command.
Concurrency: Instances of this class should be accessed only on a single
thread. The only exception is cancel()
.
States: Normally: READY->QUEUED->RUNNING->READY. If cancelled: From READY,
QUEUED, or RUNNING -> CANCELLING -> READY. If cancelled the executing thread
will have a CancelledExecutionException thrown and state will be READY.
Nested Class Summary | |
---|---|
static class |
AbstractCommand.State
|
Constructor Summary | |
---|---|
protected |
AbstractCommand(Repository repository)
|
protected |
AbstractCommand(Repository repository,
String commandName)
|
Method Summary | |
---|---|
void |
cancel()
Cancel a running command. |
protected void |
clear()
|
void |
cmdAppend(String option)
|
void |
cmdAppend(String option,
DateTime date)
|
void |
cmdAppend(String option,
int arg)
|
void |
cmdAppend(String option,
String arg)
|
void |
cmdAppend(String option,
String[] args)
|
protected void |
doneHook()
This method is called when the processing of a command is finished. |
abstract String |
getCommandName()
|
String |
getErrorString()
|
Repository |
getRepository()
|
int |
getReturnCode()
|
protected boolean |
isSuccessful()
Check if the command ended with a zero return code. |
protected LineIterator |
launchIterator(String... args)
|
protected HgInputStream |
launchStream(String... args)
Launch the command and return stdout as a InputStream. |
protected String |
launchString(String... args)
Launch the command and return stdout as a String. |
boolean |
needsInputLine()
|
void |
reopenOutputChannelStream()
Open the output stream again after sending input to the command server. |
void |
sendLine(String s)
Send input line to command server in response to reading a block on the 'L' channel. |
String |
toString()
|
protected void |
withDebugAndChangesetStyle()
|
protected void |
withDebugFlag()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
protected AbstractCommand(Repository repository)
protected AbstractCommand(Repository repository, String commandName)
Method Detail |
---|
public abstract String getCommandName()
public void cmdAppend(String option)
public void cmdAppend(String option, String arg)
public void cmdAppend(String option, String[] args)
public void cmdAppend(String option, int arg)
public void cmdAppend(String option, DateTime date)
protected final String launchString(String... args)
args
- extra command line arguments (optional).
IOException
protected final HgInputStream launchStream(String... args)
args
- extra command line arguments (optional).
protected final LineIterator launchIterator(String... args)
public void reopenOutputChannelStream()
public void sendLine(String s)
s
- line of input.public boolean needsInputLine()
protected void clear()
protected boolean isSuccessful()
public String getErrorString()
public int getReturnCode()
public Repository getRepository()
Repository
associated with this command.public String toString()
toString
in class Object
protected void withDebugAndChangesetStyle()
protected void withDebugFlag()
public final void cancel()
CancelledExecutionException
thrown.
protected void doneHook()
It can be overridden in subclasses.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |