vote up 0 vote down star

Ok, I am trying to use Tail to monitor a log file, but I cannot get the same behavior programatically as when I manually run it through cmd prompt using the same parameters.

When run through cmd prompt it displays the new lines instantly. Programatically though, I have to wait for about 75+ new lines in log file before the 'buffer' unleashes all the lines.

Here's the code I have now.

private const string tailExecutable = @"C:\tail.exe";
private const string logFile = @"C:\test.log";

private static void ReadStdOut()
{
    var psi = new ProcessStartInfo
    {
        FileName = tailExecutable,
        Arguments = String.Format("-f \"{0}\"", logFile),
        UseShellExecute = false,
        RedirectStandardOutput = true
    };

    // Running same exe -args through cmd.exe 
    // works perfectly, but not programmatically.
    Console.WriteLine("{0} {1}", psi.FileName, psi.Arguments);

    var tail = new Process();
    tail.StartInfo = psi;
    tail.OutputDataReceived += tail_OutputDataReceived;
    tail.Start();
    tail.BeginOutputReadLine();
}

static void tail_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
    Console.WriteLine(e.Data);
}

I have used the OutputDataReceived event before but never had these buffering/spamming problems.

I am so confused with about right now.

* Edit *

I found this wintail project on CodeProject and am going to be switching to that because the buffer makes this solution way too slow.

Thanks for the answers.

flag

3 Answers

vote up 1 vote down check

Process.StandardOutput, when redirected, defaults to a StreamReader with a 4096-byte buffer, so the answer is yes.

link|flag
There's no way to manually flush it? – sieben Oct 26 '08 at 12:33
Never needed it, but you can access the underlying stream using the BaseStream property, and thus theoretically you can Flush() that. – Alan Oct 26 '08 at 13:24
i tried that, but it didn't seem to do anything. – sieben Oct 26 '08 at 13:30
vote up 0 vote down

Console mode programs typically check if their output is redirected. If it is, they switch from "flush after every write" to "flush when output buffer is full". Much more efficient. That output buffer is typically a few kilobytes long. Check the CRT library functions _isatty() and setvbuf(). This was a long way to say: you'll need another tail.

link|flag
vote up 0 vote down

In most languages and operating systems the standard stream is usually buffered, but the error stream is not.

Try using: System.Console.Error

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.