Files
ICD.Common.Utils/ICD.Common/Utils/Xml/XmlReaderExtensions.cs
2017-06-21 22:41:54 -04:00

316 lines
7.9 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
#if SIMPLSHARP
using Crestron.SimplSharp.CrestronXml;
#else
using System.Xml;
#endif
using ICD.Common.EventArguments;
using ICD.Common.Properties;
namespace ICD.Common.Utils.Xml
{
public static class XmlReaderExtensions
{
#region Attributes
/// <summary>
/// Returns true if the attribute exists.
/// </summary>
/// <param name="extends"></param>
/// <param name="name"></param>
/// <returns></returns>
[PublicAPI]
public static bool HasAttribute(this IcdXmlReader extends, string name)
{
if (extends == null)
throw new ArgumentNullException("extends");
return extends.GetAttribute(name) != null;
}
/// <summary>
/// Gets the attributes for the current element without moving the reader.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static IEnumerable<IcdXmlAttribute> GetAttributes(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
if (!extends.HasAttributes)
return new IcdXmlAttribute[0];
List<IcdXmlAttribute> attributes = new List<IcdXmlAttribute>();
while (extends.MoveToNextAttribute())
attributes.Add(new IcdXmlAttribute(extends.Name, extends.Value));
// Move back to element.
extends.MoveToElement();
return attributes.ToArray();
}
/// <summary>
/// Gets the value of the attribute with the given name.
/// </summary>
/// <param name="extends"></param>
/// <param name="name"></param>
/// <returns></returns>
[PublicAPI]
public static string GetAttributeAsString(this IcdXmlReader extends, string name)
{
if (extends == null)
throw new ArgumentNullException("extends");
string output = extends.GetAttribute(name);
if (output == null)
throw new FormatException(string.Format("Missing attribute \"{0}\"", name));
return output;
}
/// <summary>
/// Gets the value of the attribute with the given name and returns as an integer.
/// </summary>
/// <param name="extends"></param>
/// <param name="name"></param>
/// <returns></returns>
[PublicAPI]
public static int GetAttributeAsInt(this IcdXmlReader extends, string name)
{
if (extends == null)
throw new ArgumentNullException("extends");
string value = extends.GetAttributeAsString(name);
return int.Parse(value);
}
/// <summary>
/// Gets the value of the attribute with the given name and returns as a bool.
/// </summary>
/// <param name="extends"></param>
/// <param name="name"></param>
/// <returns></returns>
[PublicAPI]
public static bool GetAttributeAsBool(this IcdXmlReader extends, string name)
{
if (extends == null)
throw new ArgumentNullException("extends");
string value = extends.GetAttributeAsString(name);
return bool.Parse(value);
}
#endregion
#region Recurse
/// <summary>
/// Recurses through the entire XML, calling the callback for each Element/Text node.
/// </summary>
/// <param name="extends"></param>
/// <param name="callback"></param>
[PublicAPI]
public static void Recurse(this IcdXmlReader extends, Action<XmlRecursionEventArgs> callback)
{
if (extends == null)
throw new ArgumentNullException("extends");
XmlUtils.Recurse(extends.ReadString(), callback);
}
#endregion
#region Skip
/// <summary>
/// Skips over insignificant whitespace.
/// </summary>
/// <param name="extends"></param>
[PublicAPI]
public static void SkipInsignificantWhitespace(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
while (extends.NodeType == XmlNodeType.Whitespace && extends.Read())
{
}
}
/// <summary>
/// Skips the current node to the next element.
/// </summary>
/// <param name="extends"></param>
[PublicAPI]
public static bool SkipToNextElement(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
while (extends.Read() && extends.NodeType != XmlNodeType.Element)
{
}
return extends.NodeType == XmlNodeType.Element;
}
#endregion
#region Get Child Element
/// <summary>
/// Returns true if the current node has child elements.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
public static bool HasChildElements(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
while (extends.Read() && extends.NodeType != XmlNodeType.EndElement)
{
if (extends.NodeType == XmlNodeType.Element)
return true;
}
return false;
}
/// <summary>
/// Gets the child elements for the current element.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
public static IEnumerable<IcdXmlReader> GetChildElements(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
foreach (IcdXmlReader output in extends.GetChildElementsAsString().Select(child => new IcdXmlReader(child)))
{
output.SkipToNextElement();
yield return output;
}
}
/// <summary>
/// Gets the child elements for the current element.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static IEnumerable<string> GetChildElementsAsString(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
// Step into the first child.
extends.SkipToNextElement();
while (extends.NodeType == XmlNodeType.Element || extends.NodeType == XmlNodeType.Comment)
{
switch (extends.NodeType)
{
case XmlNodeType.Comment:
extends.Skip();
break;
case XmlNodeType.Element:
yield return extends.ReadOuterXml();
break;
}
extends.SkipInsignificantWhitespace();
}
}
#endregion
#region Read Element Content
/// <summary>
/// Parses the element content in the format 0xXX as a byte.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static byte ReadElementContentAsByte(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
string content = extends.ReadElementContentAsString();
return (byte)Convert.ToInt64(content, 16);
}
/// <summary>
/// Parses the element content as a uint.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static uint ReadElementContentAsUint(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
string content = extends.ReadElementContentAsString();
return uint.Parse(content);
}
/// <summary>
/// Parses the element content as a uint.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static int ReadElementContentAsInt(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
string content = extends.ReadElementContentAsString();
return int.Parse(content);
}
/// <summary>
/// Parses the element content as a ushort.
/// </summary>
/// <param name="extends"></param>
/// <returns></returns>
[PublicAPI]
public static ushort ReadElementContentAsUShort(this IcdXmlReader extends)
{
if (extends == null)
throw new ArgumentNullException("extends");
string content = extends.ReadElementContentAsString();
return ushort.Parse(content);
}
/// <summary>
/// Parses the element content as an enum.
/// </summary>
/// <param name="extends"></param>
/// <param name="ignoreCase"></param>
/// <returns></returns>
[PublicAPI]
public static T ReadElementContentAsEnum<T>(this IcdXmlReader extends, bool ignoreCase)
{
if (extends == null)
throw new ArgumentNullException("extends");
string content = extends.ReadElementContentAsString();
return EnumUtils.Parse<T>(content, ignoreCase);
}
#endregion
}
}