TelnetTestResponderpublic class TelnetTestResponder extends Object implements RunnableSimple stream responder.
Waits for strings on an input stream and answers
sending corresponfing strings on an output stream.
The reader runs in a separate thread.
|
Fields Summary |
---|
InputStream | _is | OutputStream | _os | String[] | _inputs | String[] | _outputs | long | _timeout |
Constructors Summary |
---|
public TelnetTestResponder(InputStream is, OutputStream os, String[] inputs, String[] outputs, long timeout)Constructor.
Starts a new thread for the reader.
_is = is;
_os = os;
_timeout = timeout;
_inputs = inputs;
_outputs = outputs;
Thread reader = new Thread (this);
reader.start();
|
Methods Summary |
---|
public void | run()Runs the responder
boolean result = false;
byte buffer[] = new byte[32];
long starttime = System.currentTimeMillis();
try
{
String readbytes = new String();
while(!result &&
((System.currentTimeMillis() - starttime) < _timeout))
{
if(_is.available() > 0)
{
int ret_read = _is.read(buffer);
readbytes = readbytes + new String(buffer, 0, ret_read);
for(int ii=0; ii<_inputs.length; ii++)
{
if(readbytes.indexOf(_inputs[ii]) >= 0)
{
Thread.sleep(1000 * ii);
_os.write(_outputs[ii].getBytes());
result = true;
}
}
}
else
{
Thread.sleep(500);
}
}
}
catch (Exception e)
{
System.err.println("Error while waiting endstring. " + e.getMessage());
}
|
|