-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathPositionAwareStreamReaderLegacy.cs
More file actions
136 lines (107 loc) · 3.28 KB
/
Copy pathPositionAwareStreamReaderLegacy.cs
File metadata and controls
136 lines (107 loc) · 3.28 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
using LogExpert.Core.Classes.Log.Buffers;
using LogExpert.Core.Entities;
using LogExpert.Core.Interfaces;
namespace LogExpert.Core.Classes.Log.Streamreaders;
public class PositionAwareStreamReaderLegacy (Stream stream, EncodingOptions encodingOptions, int maximumLineLength) : PositionAwareStreamReaderBase(stream, encodingOptions, maximumLineLength), ILogStreamReaderMemory
{
#region Fields
private readonly char[] _charBuffer = new char[maximumLineLength];
private int _charBufferPos;
private bool _crDetect;
public override bool IsDisposed { get; protected set; }
#endregion
#region Properties
public CharBlockAllocator BlockAllocator
{
get => field ??= new CharBlockAllocator();
private set;
}
#endregion
#region Public methods
public bool TryReadLine (out ReadOnlyMemory<char> lineMemory)
{
var line = ReadLine();
if (line is null)
{
lineMemory = default;
return false;
}
var target = BlockAllocator.Rent(line.Length);
line.AsSpan().CopyTo(target.Span);
lineMemory = target;
return true;
}
public void ReturnMemory (ReadOnlyMemory<char> memory)
{
// Bulk return via BlockAllocator.DetachBlocks() when the LogBuffer is evicted.
}
public override string ReadLine ()
{
int readInt;
while (-1 != (readInt = ReadChar()))
{
var readChar = (char)readInt;
switch (readChar)
{
case '\n':
{
_crDetect = false;
return GetLineAndResetCharBufferPos();
}
case '\r':
{
if (_crDetect)
{
return GetLineAndResetCharBufferPos();
}
_crDetect = true;
break;
}
default:
{
if (_crDetect)
{
_crDetect = false;
var line = GetLineAndResetCharBufferPos();
AppendToCharBuffer(readChar);
return line;
}
AppendToCharBuffer(readChar);
break;
}
}
}
var result = GetLineAndResetCharBufferPos();
if (readInt == -1 && result.Length == 0 && !_crDetect)
{
return null; // EOF
}
_crDetect = false;
return result;
}
protected override void ResetReader ()
{
ResetCharBufferPos();
base.ResetReader();
}
#endregion
#region Private Methods
private string GetLineAndResetCharBufferPos ()
{
string result = new(_charBuffer, 0, _charBufferPos);
ResetCharBufferPos();
return result;
}
private void AppendToCharBuffer (char readChar)
{
if (_charBufferPos < MaximumLineLength)
{
_charBuffer[_charBufferPos++] = readChar;
}
}
private void ResetCharBufferPos ()
{
_charBufferPos = 0;
}
#endregion
}