|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectcom.maverick.sshd.Channel
com.maverick.sshd.SessionChannel
public abstract class SessionChannel
This class provides an abstract session, it handles all the requests defined in the SSH Connection protocol for a session channel and passes the request to the concrete implementation through its abstract methods.
When creating a session implementation your processStdinData(byte[])
will receive data from the client and process as session input. To send
stdout data for your session you should use the
sendStdoutData(byte[]) method and any sdterr output should be send
using sendStderrData(byte[]) method.
As the server uses an asynchronous framework expensive blocking operations SHOULD NOT be performed within your session as this will cause a deadlock on the server.
The basic process of establishing a session is this
sendExitStatus(int).
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class com.maverick.sshd.Channel |
|---|
Channel.QueuedData |
| Field Summary | |
|---|---|
protected int |
MAX_WINDOW_SPACE
|
protected int |
MIN_WINDOW_SPACE
|
| Fields inherited from class com.maverick.sshd.Channel |
|---|
connection, localwindow, localWindowLock |
| Constructor Summary | |
|---|---|
SessionChannel()
|
|
| Method Summary | |
|---|---|
protected abstract boolean |
allocatePseudoTerminal(java.lang.String term,
int cols,
int rows,
int width,
int height,
byte[] modes)
If the client requests a pseudo terminal for the session this method will be invoked before the shell, exec or subsystem is started. |
protected abstract void |
changeWindowDimensions(int cols,
int rows,
int width,
int height)
When the window (terminal) size changes on the client side, it MAY send notification in which case this method will be invoked to notify the session that a change has occurred. |
protected byte[] |
createChannel()
set the max window space as a multiple of the minimum window space. |
protected void |
evaluateWindowSpace(int remaining)
Called to evaluate the window space available. |
protected abstract boolean |
executeCommand(java.lang.String cmd)
Invoked when the user wants to execute a command |
java.lang.String |
getSessionIdentifier()
Get the session id for the current connection. |
void |
haltIncomingData()
|
boolean |
idle()
Process an idle event. |
protected void |
onChannelClosing()
Called when the channel is closing. |
protected void |
onChannelData(byte[] data)
Called when data arrives on the channel. |
protected void |
onChannelFree()
Free the session and its resources. |
protected void |
onChannelOpen()
Called once the channel has been opened. |
protected void |
onChannelOpenConfirmation()
Called when the channel is confirmed as open |
protected void |
onChannelRequest(java.lang.String type,
boolean wantreply,
byte[] requestdata)
Process session requests and invoke the relevant abstract methods of this class to handle the requests. |
protected void |
onExtendedData(byte[] data,
int type)
Called when extended data arrives on the channel - for a session channel this would not normally be called. |
protected void |
onRemoteEOF()
The remote side has reported EOF so no more data will be received. |
protected abstract void |
onSessionOpen()
Called once the session is open and data can be sent/received. |
protected byte[] |
openChannel(byte[] data)
Called when the channel is being opened. |
protected abstract void |
processSignal(java.lang.String signal)
A signal can be delivered to the process by the client. |
protected abstract void |
processStdinData(byte[] data)
Data has arrived on the session's stdin stream. |
void |
resumeIncomingData()
|
void |
sendChannelDataWithBuffering(byte[] data,
int off,
int len)
Send channel data to the remote side of the channel and block until the data has been sent. |
protected void |
sendExitStatus(int exitcode)
When a command or shell exits its possible to send the client the exit code of the process. |
void |
sendStderrData(byte[] data)
Send stderr data to the remote client. |
void |
sendStderrData(byte[] data,
int off,
int len)
Sends stderr data to the remote client. |
void |
sendStdoutData(byte[] data)
Sends stdout data to the remote client |
void |
sendStdoutData(byte[] data,
int off,
int len)
Sends stdout data to the remote client. |
protected abstract boolean |
setEnvironmentVariable(java.lang.String name,
java.lang.String value)
If the client requests that an environment variable be set this method will be invoked. |
protected abstract boolean |
startShell()
Invoked when the user wants to start a shell. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected int MAX_WINDOW_SPACE
protected int MIN_WINDOW_SPACE
| Constructor Detail |
|---|
public SessionChannel()
| Method Detail |
|---|
protected final byte[] createChannel()
throws java.io.IOException
createChannel in class ChannelminSizeMultiple -
java.io.IOException
protected abstract boolean allocatePseudoTerminal(java.lang.String term,
int cols,
int rows,
int width,
int height,
byte[] modes)
term - cols - rows - width - height - modes -
protected abstract void changeWindowDimensions(int cols,
int rows,
int width,
int height)
cols - rows - width - height - protected abstract void processSignal(java.lang.String signal)
signal -
protected abstract boolean setEnvironmentVariable(java.lang.String name,
java.lang.String value)
name - value -
protected abstract boolean startShell()
protected abstract boolean executeCommand(java.lang.String cmd)
cmd -
protected abstract void processStdinData(byte[] data)
data - protected abstract void onSessionOpen()
protected void onChannelOpen()
onChannelOpen in class Channelpublic boolean idle()
IdleStateListener
idle in interface IdleStateListener
protected void onChannelRequest(java.lang.String type,
boolean wantreply,
byte[] requestdata)
onChannelRequest in class Channeltype - Stringwantreply - booleanrequestdata - byte[]public java.lang.String getSessionIdentifier()
getSessionIdentifier in class Channelprotected void onChannelOpenConfirmation()
onChannelOpenConfirmation in class Channelprotected void onRemoteEOF()
onRemoteEOF in class Channelprotected void onChannelFree()
onChannelFree in class Channelprotected void onChannelClosing()
onChannelClosing in class Channelprotected void onChannelData(byte[] data)
onChannelData in class Channeldata - byte[]
protected void onExtendedData(byte[] data,
int type)
onExtendedData in class Channeldata - byte[]type - int
public void sendStdoutData(byte[] data,
int off,
int len)
data - off - len -
public void sendChannelDataWithBuffering(byte[] data,
int off,
int len)
sendChannelDataWithBuffering in class Channeldata - byte[]off - intlen - intpublic void sendStdoutData(byte[] data)
data -
public void sendStderrData(byte[] data,
int off,
int len)
data - off - len - public void sendStderrData(byte[] data)
data - protected void sendExitStatus(int exitcode)
exitcode - protected final void evaluateWindowSpace(int remaining)
Channel
evaluateWindowSpace in class Channelpublic void haltIncomingData()
public void resumeIncomingData()
protected final byte[] openChannel(byte[] data)
throws WriteOperationRequest,
ChannelOpenException
Channel
openChannel in class ChannelWriteOperationRequest
ChannelOpenException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||