Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose TextReader and TextWriter methods #79

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
26 changes: 24 additions & 2 deletions src/FlatFile.Core/Base/FlatFileEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,18 @@ protected FlatFileEngine(Func<string, Exception, bool> handleEntryReadError = nu
public virtual IEnumerable<TEntity> Read<TEntity>(Stream stream) where TEntity : class, new()
{
var reader = new StreamReader(stream);
return Read<TEntity>(reader);
}

/// <summary>
/// Reads the specified text reader.
/// </summary>
/// <typeparam name="TEntity">The type of the t entity.</typeparam>
/// <param name="reader">The reader.</param>
/// <returns>IEnumerable&lt;TEntity&gt;.</returns>
/// <exception cref="ParseLineException">Impossible to parse line</exception>
public virtual IEnumerable<TEntity> Read<TEntity>(TextReader reader) where TEntity : class, new()
{
string line;
int lineNumber = 0;

Expand All @@ -68,7 +80,7 @@ protected FlatFileEngine(Func<string, Exception, bool> handleEntryReadError = nu
while ((line = reader.ReadLine()) != null)
{
if (string.IsNullOrEmpty(line) || string.IsNullOrEmpty(line.Trim())) continue;

bool ignoreEntry = false;
var entry = new TEntity();
try
Expand Down Expand Up @@ -104,7 +116,7 @@ protected FlatFileEngine(Func<string, Exception, bool> handleEntryReadError = nu
/// Processes the header.
/// </summary>
/// <param name="reader">The reader.</param>
protected virtual void ProcessHeader(StreamReader reader)
protected virtual void ProcessHeader(TextReader reader)
{
reader.ReadLine();
}
Expand Down Expand Up @@ -147,7 +159,17 @@ protected virtual void WriteEntry<TEntity>(TextWriter writer, int lineNumber, TE
public virtual void Write<TEntity>(Stream stream, IEnumerable<TEntity> entries) where TEntity : class, new()
{
TextWriter writer = new StreamWriter(stream);
Write(writer, entries);
}

/// <summary>
/// Writes to the specified text writer.
/// </summary>
/// <typeparam name="TEntity">The type of the t entity.</typeparam>
/// <param name="stream">The text writer.</param>
/// <param name="entries">The entries.</param>
public void Write<TEntity>(TextWriter writer, IEnumerable<TEntity> entries) where TEntity : class, new()
{
this.WriteHeader(writer);

int lineNumber = 0;
Expand Down
16 changes: 16 additions & 0 deletions src/FlatFile.Core/IFlatFileEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,28 @@ public interface IFlatFileEngine
/// <returns>IEnumerable&lt;TEntity&gt;.</returns>
IEnumerable<TEntity> Read<TEntity>(Stream stream) where TEntity : class, new();

/// <summary>
/// Reads from the specified text reader.
/// </summary>
/// <typeparam name="TEntity">The type of the t entity.</typeparam>
/// <param name="stream">The text reader.</param>
/// <returns>IEnumerable&lt;TEntity&gt;.</returns>
IEnumerable<TEntity> Read<TEntity>(TextReader reader) where TEntity : class, new();

/// <summary>
/// Writes to the specified stream.
/// </summary>
/// <typeparam name="TEntity">The type of the t entity.</typeparam>
/// <param name="stream">The stream.</param>
/// <param name="entries">The entries.</param>
void Write<TEntity>(Stream stream, IEnumerable<TEntity> entries) where TEntity : class, new();

/// <summary>
/// Writes to the specified text writer.
/// </summary>
/// <typeparam name="TEntity">The type of the t entity.</typeparam>
/// <param name="writer">The text writer.</param>
/// <param name="entries">The entries.</param>
void Write<TEntity>(TextWriter writer, IEnumerable<TEntity> entries) where TEntity : class, new();
}
}
8 changes: 8 additions & 0 deletions src/FlatFile.Core/IFlatFileMultiEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,20 @@ public interface IFlatFileMultiEngine : IFlatFileEngine
/// </summary>
/// <param name="stream">The stream.</param>
void Read(Stream stream);

/// <summary>
/// Reads the specified text reader.
/// </summary>
/// <param name="stream">The text reader.</param>
void Read(TextReader reader);

/// <summary>
/// Gets any records of type <typeparamref name="T"/> read by <see cref="Read"/>.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <returns>IEnumerable&lt;T&gt;.</returns>
IEnumerable<T> GetRecords<T>() where T : class, new();

/// <summary>
/// Gets or sets a value indicating whether this instance has a file header.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,16 @@ protected override bool TryParseLine<TEntity>(string line, int lineNumber, ref T
/// <exception cref="ParseLineException">Impossible to parse line</exception>
public void Read(Stream stream)
{
var reader = new StreamReader(stream);
Read(new StreamReader(stream));
}

/// <summary>
/// Reads from the specified text reader.
/// </summary>
/// <param name="stream">The text reader.</param>
/// <exception cref="ParseLineException">Impossible to parse line</exception>
public void Read(TextReader reader)
{
string line;
var lineNumber = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,22 +142,22 @@ public void Read(Stream stream)
}

/// <summary>
/// Reads the specified streamReader.
/// Reads from the specified text reader.
/// </summary>
/// <param name="reader">The stream reader configured as the user wants.</param>
/// <param name="reader">The text reader configured as the user wants.</param>
/// <exception cref="ParseLineException">Impossible to parse line</exception>
public void Read(StreamReader reader)
public void Read(TextReader reader)
{
ReadInternal(reader);
}

/// <summary>
/// Internal method (private) to read from streamreader instead of stream
/// Internal method (private) to read from a text reader instead of stream
/// This way the client code have a way to specify encoding.
/// </summary>
/// <param name="reader">The stream reader to read.</param>
/// <param name="reader">The text reader to read.</param>
/// <exception cref="ParseLineException">Impossible to parse line</exception>
private void ReadInternal(StreamReader reader)
private void ReadInternal(TextReader reader)
{
string line;
var lineNumber = 0;
Expand Down