blob: 7b8b8ba68096f2cccf71b4272776da97d66a32d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace Handbrake.Parsing
{
/// <summary>
/// A delegate to handle custom events regarding data being parsed from the buffer
/// </summary>
/// <param name="Sender">The object which raised this delegate</param>
/// <param name="Data">The data parsed from the stream</param>
public delegate void DataReadEventHandler(object Sender, string Data);
/// <summary>
/// A simple wrapper around a StreamReader to keep track of the entire output from a cli process
/// </summary>
internal class Parser : StreamReader
{
private string m_buffer;
/// <summary>
/// The output from the CLI process
/// </summary>
public string Buffer
{
get
{
return this.m_buffer;
}
}
/// <summary>
/// Raised upon a new line being read from stdout/stderr
/// </summary>
public static event DataReadEventHandler OnReadLine;
/// <summary>
/// Raised upon the entire stdout/stderr stream being read in a single call
/// </summary>
public static event DataReadEventHandler OnReadToEnd;
public Parser(Stream baseStream) : base(baseStream)
{
this.m_buffer = string.Empty;
}
public override string ReadLine()
{
string tmp = base.ReadLine();
this.m_buffer += tmp;
if (OnReadLine != null)
{
OnReadLine(this, tmp);
}
return tmp;
}
public override string ReadToEnd()
{
string tmp = base.ReadToEnd();
this.m_buffer += tmp;
if (OnReadToEnd != null)
{
OnReadToEnd(this, tmp);
}
return tmp;
}
}
}
|