BankProject/Common/Streams.cs
GabrielTofvesson fc9bbb1d6b * Partially reworked key event system
* Reworked padding rendering (now handled natively by View)
* Fixed how ConsoleController renders dirty views
* Explicitly added padding to the LayoutMeta dimensions computation
* Added support for updating passwords in SessionContext
* Completed account display system
* Added many more resources
* Simplified internationalization
* Added clientside representations for accounts and transations
* MOAR COMMENTS!
* Optimized account serialization
* Corrected issue where copying a user simply copied references to the user accounts; not actually copying accounts (which caused jank)
* Fixed timestamp for TimeStampWriter
* Probably some other minor things
2018-05-14 22:43:03 +02:00

57 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace Tofvesson.Common
{
public sealed class TimeStampWriter : TextWriter
{
private readonly string dateFormat;
private readonly TextWriter underlying;
private bool triggered;
public TimeStampWriter(TextWriter underlying, string dateFormat, bool emulateNL = true)
{
this.dateFormat = dateFormat;
this.underlying = underlying;
triggered = emulateNL;
}
public TimeStampWriter(TextWriter underlying, string dateFormat, IFormatProvider formatProvider, bool emulateNL = true) : base(formatProvider)
{
this.dateFormat = dateFormat;
this.underlying = underlying;
triggered = emulateNL;
}
public override Encoding Encoding => underlying.Encoding;
public override void Write(char value)
{
if (triggered)
{
StringBuilder s = new StringBuilder();
s.Append('[').Append(DateTime.Now.ToString(dateFormat)).Append("] ");
foreach (var c in s.ToString()) underlying.Write(c);
}
underlying.Write(value);
triggered = value == '\n';
}
}
// A TextWriter wrapper for the Debug output
public sealed class DebugAdapterWriter : TextWriter
{
public override Encoding Encoding => throw new NotImplementedException();
public override void Write(char value)
{
Debug.Write(value);
}
}
}