- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 943
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please allow us to customize OutputStream
and ExtendedOutputStream
before executing an SSH command.
#1608
Comments
This works for me: using var command = client.CreateCommand("head -c 10000000 /dev/urandom | base64"); // 10MB of data please
await using Stream cout = Console.OpenStandardOutput();
await using Stream cerr = Console.OpenStandardError();
await Task.WhenAll(
command.ExecuteAsync(),
command.OutputStream.CopyToAsync(cout),
command.ExtendedOutputStream.CopyToAsync(cerr)); |
@Rob-Hague sorry I misunderstood your code before. I already tried copying the stream at the same time, the problem with that is that it affects the Also, the PipeStreams are disposed of as soon as the command finishes, leading to a tiny risk that the code you have would try to read a now-disposed stream. The copy could also complete during a pause in output, in which case it wouldn't record all the information. The solution I came up with is the only way to ensure that all the output is displayed to the console in real time and not risk accessing a disposed stream. |
PipeStream is safe to read from after disposal (it is documented as such). It also does not complete until the command is finished.
string? line;
using StreamReader sr = new(command.OutputStream);
while ((line = sr.ReadLine()) != null)
{
// Do what you want with `line`, or use sr.Read(char[], int, int) for more control
// e.g. Console.Write or build up a StringBuilder
} |
I have a use case where I want real time output from the console command to be printed to the console. Unfortunately, the streams that are written to cannot be customized with the existing public interface, even though the
PipeStream
class is extensible. The best solution I found to do what I need to do unfortunately requires reflection.A public interface (such as a callback) for this feature would be greatly appreciated.
The text was updated successfully, but these errors were encountered: