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.

204 lines
6.0 KiB

//
// TextContainer.cs
//
// Author: Kees van Spelde <sicos2002@hotmail.com>
//
// Copyright (c) 2013-2018 Magic-Sessions. (www.magic-sessions.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
using System.Text;
namespace MsgReader.Rtf
{
/// <summary>
/// Rtf plain text container
/// </summary>
internal class TextContainer
{
#region Fields
private readonly ByteBuffer _byteBuffer = new ByteBuffer();
private StringBuilder _stringBuilder = new StringBuilder();
#endregion
#region Properties
/// <summary>
/// Owner document
/// </summary>
// ReSharper disable once MemberCanBePrivate.Global
public DomDocument Document { get; set; }
/// <summary>
/// Check if this container has some text
/// </summary>
public bool HasContent
{
get
{
CheckBuffer();
return _stringBuilder.Length > 0;
}
}
/// <summary>
/// text value
/// </summary>
public string Text
{
get
{
CheckBuffer();
return _stringBuilder.ToString();
}
}
public int Level { get; set; }
#endregion
#region Constructor
/// <summary>
/// Initialize instance
/// </summary>
/// <param name="document">owner document</param>
public TextContainer(DomDocument document)
{
Level = 0;
Document = document;
}
#endregion
#region Append
/// <summary>
/// Append text content
/// </summary>
/// <param name="text"></param>
public void Append(string text)
{
if (string.IsNullOrEmpty(text) == false)
{
CheckBuffer();
_stringBuilder.Append(text);
}
}
#endregion
#region Accept
/// <summary>
/// Accept rtf token
/// </summary>
/// <param name="token">RTF token</param>
/// <param name="reader"></param>
/// <returns>Is accept it?</returns>
public bool Accept(Token token, Reader reader)
{
if (token == null)
return false;
if (token.Type == RtfTokenType.Text)
{
if (reader != null)
{
if (token.Key[0] == '?')
{
if (reader.LastToken != null)
{
if (reader.LastToken.Type == RtfTokenType.Keyword
&& reader.LastToken.Key == "u"
&& reader.LastToken.HasParam)
{
if (token.Key.Length > 0)
CheckBuffer();
return true;
}
}
}
}
CheckBuffer();
_stringBuilder.Append(token.Key);
return true;
}
if (token.Type == RtfTokenType.Control && token.Key == "'" && token.HasParam)
{
if (reader.CurrentLayerInfo.CheckUcValueCount())
_byteBuffer.Add((byte) token.Param);
return true;
}
if (token.Key == Consts.U && token.HasParam)
{
// Unicode char
CheckBuffer();
_stringBuilder.Append((char) token.Param);
reader.CurrentLayerInfo.UcValueCount = reader.CurrentLayerInfo.UcValue;
return true;
}
if (token.Key == Consts.Tab)
{
CheckBuffer();
_stringBuilder.Append("\t");
return true;
}
if (token.Key == Consts.Emdash)
{
CheckBuffer();
_stringBuilder.Append('-');
return true;
}
if (token.Key == "")
{
CheckBuffer();
_stringBuilder.Append('-');
return true;
}
return false;
}
#endregion
#region Clear
/// <summary>
/// Clear value
/// </summary>
public void Clear()
{
_byteBuffer.Clear();
_stringBuilder = new StringBuilder();
}
#endregion
#region CheckBuffer
/// <summary>
/// Check if buffer still contains any text
/// </summary>
private void CheckBuffer()
{
if (_byteBuffer.Count > 0)
{
var text = _byteBuffer.GetString(Document.RuntimeEncoding);
_stringBuilder.Append(text);
_byteBuffer.Clear();
}
}
#endregion
}
}