Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions RecordParser.Test/TextFindHelperFieldTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
using FluentAssertions;
using RecordParser.Engines;
using RecordParser.Engines.Reader;
using Xunit;

namespace RecordParser.Test
{
public class TextFindHelperFieldTest : TestSetup
{
[Fact]
public void TextFindHelper_GetField_Unordered()
{
// Arrage

var record = """"
foo bar baz , 2020.05.23 , " billy is ""the guy""", 0123.45, LightBlue
"""";

var finder = new TextFindHelperField(record, ",", QuoteHelper.Quote,
stackalloc (int start, int count, bool quoted)[5],
stackalloc char[1024]);

// Act

var e = finder.GetField(4);
var b = finder.GetField(1);
var d = finder.GetField(3);
var a = finder.GetField(0);
var c = finder.GetField(2);

// Assert

a.ToString().Should().Be("foo bar baz ");
b.ToString().Should().Be(" 2020.05.23 ");
c.ToString().Should().Be(" billy is \"the guy\"");
d.ToString().Should().Be(" 0123.45");
e.ToString().Should().Be(" LightBlue");
}
}
}
176 changes: 176 additions & 0 deletions RecordParser/Engines/Reader/TextFindFieldHelper.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
using System;
using System.Buffers;

namespace RecordParser.Engines.Reader
{
public ref struct TextFindHelperField
{
private readonly ReadOnlySpan<char> line;
private readonly string delimiter;
private readonly (char ch, string str) quote;

private int scanned;
private int position;
private int currentIndex;
private ReadOnlySpan<char> currentValue;

private char[] buffer;

private Span<(int start, int count, bool quoted)> fields;
private Span<char> cheapBuffer;

internal TextFindHelperField(ReadOnlySpan<char> source, string delimiter, (char ch, string str) quote, Span<(int start, int count, bool quoted)> fields, Span<char> cheapBuffer)
{
this.line = source;
this.delimiter = delimiter;
this.quote = quote;

scanned = -delimiter.Length;
position = 0;
currentIndex = -1;
currentValue = default;
this.fields = fields;
this.cheapBuffer = cheapBuffer;
buffer = null;
}

internal void Dispose()
{
if (buffer != null)
{
ArrayPool<char>.Shared.Return(buffer);
buffer = null;
}
}

public ReadOnlySpan<char> GetField(int index)
{
while (currentIndex < index)
{
GetValue(currentIndex + 1);
}

var x = fields[index];
var text = line.Slice(x.start, x.count);

if (x.quoted == false)
return text;


// line.length - soma de count de todos campos onde x.quoted == false
// com isso consigo remover tamanho que será alocado
Span<char> temp = buffer ?? (text.Length > cheapBuffer.Length
? ArrayPool<char>.Shared.Rent(text.Length)
: cheapBuffer);

var j = 0;
for (var i = 0; i < text.Length; i++)
{
temp[j++] = text[i];

if (text[i + 1] == quote.ch)
{
i++;
}
}

return temp.Slice(0, j);
}

private ReadOnlySpan<char> GetValue(int index)
{
if (index <= currentIndex)
{
if (index == currentIndex)
return currentValue;
else
throw new Exception("can only be forward");
}

while (currentIndex <= index)
{
var match = index == ++currentIndex;
currentValue = ParseChunk(match);

if (match)
{
return currentValue;
}
}

throw new Exception("invalid index for line");
}

private ReadOnlySpan<char> ParseChunk(bool match)
{
scanned += position + delimiter.Length;

var unlook = line.Slice(scanned);
var isQuotedField = unlook.TrimStart().StartsWith(quote.str);

if (isQuotedField)
{
var value = ParseQuotedChuck(match);
fields[currentIndex] = (scanned, position, true);
return value;
}

position = unlook.IndexOf(delimiter);
if (position < 0)
{
position = line.Length - scanned;
}

fields[currentIndex] = (scanned, position, false);
return line.Slice(scanned, position);
}

private ReadOnlySpan<char> ParseQuotedChuck(bool match)
{
const string corruptFieldError = "Double quote is not escaped or there is extra data after a quoted field.";

var unlook = line.Slice(scanned);
scanned += unlook.IndexOf(quote.ch) + 1;
unlook = line.Slice(scanned);
position = 0;

for (int i = 0; i < unlook.Length; i++)
{
if (unlook[i] == quote.ch)
{
var next = unlook.Slice(i + 1);
if (next.TrimStart().IsEmpty)
{
position += i;
return default;
}
if (next[0] == quote.ch)
{
i++;
continue;
}

for (var t = 0; t < next.Length; t++)
if (next.Slice(t).StartsWith(delimiter))
{
position += i + 1 + t;
return default;
}
else if (char.IsWhiteSpace(next[t]) is false)
{
break;
}

throw new Exception(corruptFieldError);

}
else
{
continue;
}
}

throw new Exception("Quoted field is missing closing quote.");
}
}
}