using Cysharp.Text; using Humanizer; namespace VPLink.Common.Data; /// /// Represents a plain text message builder. /// public struct PlainTextMessageBuilder : IDisposable { private Utf8ValueStringBuilder _builder; /// /// Initializes a new instance of the struct. /// public PlainTextMessageBuilder() { _builder = ZString.CreateUtf8StringBuilder(); } /// /// Appends the specified word. /// /// The word. /// The trailing whitespace trivia. public void AddWord(ReadOnlySpan word, char whitespace = ' ') { _builder.Append(word); if (whitespace != '\0') _builder.Append(whitespace); } /// /// Appends the specified word. /// /// The timestamp. /// The format. /// The trailing whitespace trivia. public void AddTimestamp(DateTimeOffset timestamp, TimestampFormat format = TimestampFormat.None, char whitespace = ' ') { switch (format) { case TimestampFormat.Relative: AddWord(timestamp.Humanize(), whitespace); break; case TimestampFormat.None: AddWord(timestamp.ToString("d MMM yyyy HH:mm")); AddWord(" UTC", whitespace); break; case TimestampFormat.LongDate: AddWord(timestamp.ToString("dd MMMM yyyy")); AddWord(" UTC", whitespace); break; case TimestampFormat.ShortDate: AddWord(timestamp.ToString("dd/MM/yyyy")); AddWord(" UTC", whitespace); break; case TimestampFormat.ShortTime: AddWord(timestamp.ToString("HH:mm")); AddWord("UTC", whitespace); break; case TimestampFormat.LongTime: AddWord(timestamp.ToString("HH:mm:ss")); AddWord(" UTC", whitespace); break; case TimestampFormat.ShortDateTime: AddWord(timestamp.ToString("dd MMMM yyyy HH:mm")); AddWord(" UTC", whitespace); break; case TimestampFormat.LongDateTime: AddWord(timestamp.ToString("dddd, dd MMMM yyyy HH:mm")); AddWord(" UTC", whitespace); break; default: AddWord($"", whitespace); break; } } /// public void Dispose() { _builder.Dispose(); } /// public override string ToString() { return _builder.ToString().Trim(); } }