|
|||||||||
| 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 | |
|---|---|
static String |
CHANNEL_TYPE
|
| Fields inherited from class com.maverick.sshd.Channel |
|---|
connection, localwindow, localWindowLock, state |
| Constructor Summary | |
|---|---|
SessionChannel()
|
|
SessionChannel(int packetsize,
long maxWindowSpace,
long minWindowSpace)
|
|
| Method Summary | |
|---|---|
protected abstract boolean |
allocatePseudoTerminal(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()
Called when the channel is being created. |
protected void |
evaluateWindowSpace(long remaining)
Called to evaluate the window space available. |
protected abstract boolean |
executeCommand(String cmd)
Invoked when the user wants to execute a command |
String |
getSessionIdentifier()
Get the session id for the current connection. |
void |
haltIncomingData()
|
protected void |
idle(org.apache.mina.core.session.IdleStatus status)
|
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(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(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 |
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(String name,
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 |
|---|
public static final String CHANNEL_TYPE
| Constructor Detail |
|---|
public SessionChannel()
public SessionChannel(int packetsize,
long maxWindowSpace,
long minWindowSpace)
| Method Detail |
|---|
protected final byte[] createChannel()
throws IOException
Channel
createChannel in class ChannelIOException
protected abstract boolean allocatePseudoTerminal(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(String signal)
signal -
protected abstract boolean setEnvironmentVariable(String name,
String value)
name - value -
protected abstract boolean startShell()
protected abstract boolean executeCommand(String cmd)
cmd -
protected abstract void processStdinData(byte[] data)
data - protected abstract void onSessionOpen()
protected void onChannelOpen()
onChannelOpen in class Channelprotected void idle(org.apache.mina.core.session.IdleStatus status)
idle in class Channel
protected void onChannelRequest(String type,
boolean wantreply,
byte[] requestdata)
onChannelRequest in class Channeltype - Stringwantreply - booleanrequestdata - byte[]public 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 sendStdoutData(byte[] data)
data -
public void sendStderrData(byte[] data,
int off,
int len)
data - off - len - public void sendStderrData(byte[] data)
data - public void sendExitStatus(int exitcode)
exitcode - protected final void evaluateWindowSpace(long remaining)
Channel
evaluateWindowSpace in class Channelpublic void haltIncomingData()
public void resumeIncomingData()
protected final byte[] openChannel(byte[] data)
throws WriteOperationRequest,
com.maverick.ssh.common.ChannelOpenException
Channel
openChannel in class ChannelWriteOperationRequest
com.maverick.ssh.common.ChannelOpenException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||