|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.crsh.console.Plugin
org.crsh.console.ProcessHandler
class ProcessHandler
A process execution state machine.
Nested Class Summary | |
---|---|
(package private) class |
ProcessHandler.Reader A thread reading a line. |
Field Summary | |
---|---|
(package private) Console |
console . |
(package private) AtomicReference<ProcessHandler.Reader> |
editor Weather or not a thread is reading a line callback. |
(package private) ShellProcess |
process . |
Constructor Summary | |
---|---|
ProcessHandler(Console console, ShellProcess process) |
Method Summary | |
---|---|
Screenable |
append(char c) |
Screenable |
append(CharSequence s) |
Screenable |
append(CharSequence csq, int start, int end) |
Screenable |
append(Style style) |
Screenable |
cls() |
void |
end(ShellResponse response) This method is invoked when the process ends. |
void |
flush() Flush the stream. |
int |
getHeight() Returns the screen height in chars. |
String |
getProperty(String propertyName) Returns a generic property, usually this property is resolved by the shell client. |
int |
getWidth() Returns the screen width in chars. |
String |
readLine(String msg, boolean echo) Display a message and read a line on the console, this method call can be blocking until the user provides a value. |
boolean |
releaseAlternateBuffer() Release control of the alternate buffer. |
boolean |
takeAlternateBuffer() Take control of the alternate buffer. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
final Console console
final ShellProcess process
final AtomicReference<ProcessHandler.Reader> editor
Constructor Detail |
---|
ProcessHandler(Console console, ShellProcess process)
Method Detail |
---|
public boolean takeAlternateBuffer() throws IOException
InteractionContext
ScreenContext.flush()
method is invoked.
takeAlternateBuffer
in interface InteractionContext
IOException
public boolean releaseAlternateBuffer() throws IOException
InteractionContext
ScreenContext.flush()
method is invoked.
releaseAlternateBuffer
in interface InteractionContext
IOException
public String getProperty(String propertyName)
InteractionContext
getProperty
in interface InteractionContext
propertyName
- the property namepublic String readLine(String msg, boolean echo) throws IOException, InterruptedException
InteractionContext
readLine
in interface InteractionContext
msg
- the message to display before reading a lineecho
- wether or not the line read should be echoed when typingIOException
- any io exceptionInterruptedException
- the thread was interrupted while waiting for the user valuepublic int getWidth()
ScreenContext
getWidth
in interface ScreenContext
public int getHeight()
ScreenContext
getHeight
in interface ScreenContext
public Screenable append(CharSequence s) throws IOException
append
in interface Appendable
IOException
public Screenable append(char c) throws IOException
append
in interface Appendable
IOException
public Screenable append(CharSequence csq, int start, int end) throws IOException
append
in interface Appendable
IOException
public Screenable append(Style style) throws IOException
append
in interface Screenable
IOException
public Screenable cls() throws IOException
cls
in interface Screenable
IOException
public void flush() throws IOException
ScreenContext
flush
in interface ScreenContext
IOException
- any io exceptionpublic void end(ShellResponse response)
ShellProcessContext
end
in interface ShellProcessContext
response
- the shell response
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |