blob: d99f1dd25ca50c6f6c4aad7fd5213bff19c276a2 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
using System;
using System.IO;
using System.Text;
namespace StardewModdingAPI.Framework.Logging
{
/// <summary>A text writer which allows intercepting output.</summary>
internal class InterceptingTextWriter : TextWriter
{
/*********
** Fields
*********/
/// <summary>Prefixing a message with this character indicates that the console interceptor should write the string without intercepting it. (The character itself is not written.)</summary>
private readonly char IgnoreChar;
/*********
** Accessors
*********/
/// <summary>The underlying console output.</summary>
public TextWriter Out { get; }
/// <inheritdoc />
public override Encoding Encoding => this.Out.Encoding;
/// <summary>The event raised when a message is written to the console directly.</summary>
public event Action<string> OnMessageIntercepted;
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
/// <param name="output">The underlying output writer.</param>
/// <param name="ignoreChar">Prefixing a message with this character indicates that the console interceptor should write the string without intercepting it. (The character itself is not written.)</param>
public InterceptingTextWriter(TextWriter output, char ignoreChar)
{
this.Out = output;
this.IgnoreChar = ignoreChar;
}
/// <inheritdoc />
public override void Write(char[] buffer, int index, int count)
{
if (buffer.Length == 0)
this.Out.Write(buffer, index, count);
else if (buffer[0] == this.IgnoreChar)
this.Out.Write(buffer, index + 1, count - 1);
else if (this.IsEmptyOrNewline(buffer))
this.Out.Write(buffer, index, count);
else
this.OnMessageIntercepted?.Invoke(new string(buffer, index, count).TrimEnd('\r', '\n'));
}
/// <inheritdoc />
public override void Write(char ch)
{
this.Out.Write(ch);
}
/// <inheritdoc />
protected override void Dispose(bool disposing)
{
this.OnMessageIntercepted = null;
}
/*********
** Private methods
*********/
/// <summary>Get whether a buffer represents a line break.</summary>
/// <param name="buffer">The buffer to check.</param>
private bool IsEmptyOrNewline(char[] buffer)
{
foreach (char ch in buffer)
{
if (ch != '\n' && ch != '\r')
return false;
}
return true;
}
}
}
|