mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.9 KiB
89 lines
2.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Threading;
|
|
|
|
namespace ZeroLevel.Services.FileSystem
|
|
{
|
|
public class BigFileParser<T>
|
|
{
|
|
private readonly string _filePath;
|
|
private readonly Func<string, T> _parser;
|
|
private readonly int _bufferSize;
|
|
|
|
public BigFileParser(string filePath, Func<string, T> parser, int bufferSize = 1024 * 1024 * 32)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(filePath))
|
|
{
|
|
throw new ArgumentNullException(nameof(filePath));
|
|
}
|
|
if (parser == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(parser));
|
|
}
|
|
if (!File.Exists(filePath))
|
|
{
|
|
throw new FileNotFoundException(filePath);
|
|
}
|
|
_filePath = filePath;
|
|
_parser = parser;
|
|
_bufferSize = bufferSize;
|
|
|
|
}
|
|
|
|
public IEnumerable<T[]> ReadBatches(int batchSize)
|
|
{
|
|
var buffer = new T[batchSize];
|
|
var buffer_index = 0;
|
|
using (FileStream fs = File.Open(_filePath, FileMode.Open, FileAccess.Read, FileShare.None))
|
|
{
|
|
using (BufferedStream bs = new BufferedStream(fs, _bufferSize))
|
|
{
|
|
using (StreamReader sr = new StreamReader(bs))
|
|
{
|
|
string line;
|
|
while ((line = sr.ReadLine()) != null)
|
|
{
|
|
buffer[buffer_index] = _parser.Invoke(line);
|
|
buffer_index++;
|
|
if (buffer_index >= batchSize)
|
|
{
|
|
buffer_index = 0;
|
|
Thread.MemoryBarrier();
|
|
yield return buffer;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (buffer_index > 0)
|
|
{
|
|
if (buffer_index < batchSize)
|
|
{
|
|
var bias = new T[buffer_index];
|
|
Array.Copy(buffer, 0, bias, 0, buffer_index);
|
|
yield return bias;
|
|
}
|
|
}
|
|
}
|
|
|
|
public IEnumerable<T> Read(int batchSize)
|
|
{
|
|
using (FileStream fs = File.Open(_filePath, FileMode.Open, FileAccess.Read, FileShare.None))
|
|
{
|
|
using (BufferedStream bs = new BufferedStream(fs, _bufferSize))
|
|
{
|
|
using (StreamReader sr = new StreamReader(bs))
|
|
{
|
|
string line;
|
|
while ((line = sr.ReadLine()) != null)
|
|
{
|
|
yield return _parser.Invoke(line);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|