Delphi ActiveX
Delphi ActiveX
Peek at Buffered SSH Channel Text
See more SSH Examples
Demonstrates the Chilkat Ssh.PeekReceivedText method, which returns the text currently buffered for a channel, decoded with the given charset, without removing any bytes. The first argument is the channel number and the second is the charset.
Background: Every other retrieval method consumes the buffer, which is awkward when you only want to know whether the output you are waiting for has arrived yet. Because peeking is nondestructive, you can inspect, decide, and still retrieve the data normally afterward — the basis of a poll-and-check loop. Note that
StripColorCodes is not applied here, so terminal escape sequences appear exactly as buffered.Chilkat Delphi ActiveX Downloads
var
success: Integer;
ssh: TChilkatSsh;
sshPort: Integer;
password: WideString;
channelNum: Integer;
peeked: WideString;
output: WideString;
begin
success := 0;
// Demonstrates the Ssh.PeekReceivedText method, which returns the text currently buffered for a
// channel without removing any bytes. The 1st argument is the channel number and the 2nd is
// the charset.
ssh := TChilkatSsh.Create(Self);
sshPort := 22;
success := ssh.Connect('ssh.example.com',sshPort);
if (success = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
// Normally you would not hard-code the password in source. You should instead obtain it
// from an interactive prompt, environment variable, or a secrets vault.
password := 'mySshPassword';
success := ssh.AuthenticatePw('mySshLogin',password);
if (success = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
channelNum := ssh.OpenSessionChannel();
if (channelNum < 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
success := ssh.SendReqExec(channelNum,'ls -l /tmp');
if (success = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
// IMPORTANT: Set a read timeout. ReadTimeoutMs defaults to 0, which means no limit -- without
// it, this call waits forever if the server never sends channel close.
ssh.ReadTimeoutMs := 15000;
success := ssh.ChannelReceiveToClose(channelNum);
if (success = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
// Look at the buffered text without consuming it. This is useful for checking whether the
// expected output has arrived yet.
peeked := ssh.PeekReceivedText(channelNum,'utf-8');
if (ssh.LastMethodSuccess = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Peeked: ' + peeked);
// The bytes are still buffered, so retrieving them still returns the same text.
output := ssh.GetReceivedText(channelNum,'utf-8');
if (ssh.LastMethodSuccess = 0) then
begin
Memo1.Lines.Add(ssh.LastErrorText);
Exit;
end;
Memo1.Lines.Add('Retrieved: ' + output);
ssh.Disconnect();