123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Dynamic;
- using System.Xml.Linq;
- #pragma warning disable CS8601 // Possible null reference assignment.
- #pragma warning disable CS8602 // Dereference of a possibly null reference.
- #pragma warning disable CS8603 // Possible null reference return.
- #pragma warning disable CS8604 // Possible null reference argument.
- #pragma warning disable CS8605 // Unboxing a possibly null value.
- #pragma warning disable CS8618 // Non-nullable property 'Text' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
- #pragma warning disable CS8600 // Converting null literal or possible null value to non-nullable type.
- namespace EasyDevCore.Common.Wrapper
- {
- /// <summary>
- ///
- /// </summary>
- public class DynamicXml : DynamicObject
- {
- /// <summary>
- /// The _root
- /// </summary>
- XElement _root;
- /// <summary>
- /// Prevents a default instance of the <see cref="DynamicXml"/> class from being created.
- /// </summary>
- /// <param name="root">The root.</param>
- private DynamicXml(XElement root)
- {
- _root = root;
- }
- /// <summary>
- /// Parses the specified XML string.
- /// </summary>
- /// <param name="xmlString">The XML string.</param>
- /// <returns></returns>
- public static DynamicXml Parse(string xmlString)
- {
- return new DynamicXml(XDocument.Parse(xmlString).Root);
- }
- /// <summary>
- /// Loads the specified filename.
- /// </summary>
- /// <param name="filename">The filename.</param>
- /// <returns></returns>
- public static DynamicXml Load(string filename)
- {
- return new DynamicXml(XDocument.Load(filename).Root);
- }
- /// <summary>
- /// Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
- /// </summary>
- /// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- /// <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result" />.</param>
- /// <returns>
- /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
- /// </returns>
- public override bool TryGetMember(GetMemberBinder binder, out object result)
- {
- result = null;
- var att = _root.Attribute(binder.Name);
- if (att != null)
- {
- result = att.Value;
- return true;
- }
- var nodes = _root.Elements(binder.Name);
- if (nodes.Count() > 1)
- {
- result = nodes.Select(n => new DynamicXml(n)).ToList();
- return true;
- }
- var node = _root.Element(binder.Name);
- if (node != null)
- {
- if (node.HasElements)
- {
- result = new DynamicXml(node);
- }
- else
- {
- result = node.Value;
- }
- return true;
- }
- return true;
- }
- }
- /// <summary>
- ///
- /// </summary>
- public class DynamicXMLNode : DynamicObject
- {
- /// <summary>
- /// Gets or sets the node.
- /// </summary>
- /// <value>
- /// The node.
- /// </value>
- public XElement Node
- {
- private set;
- get;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="DynamicXMLNode"/> class.
- /// </summary>
- /// <param name="node">The node.</param>
- public DynamicXMLNode(XElement node)
- {
- this.Node = node;
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="DynamicXMLNode" /> class.
- /// </summary>
- public DynamicXMLNode()
- {
- }
- /// <summary>
- /// Initializes a new instance of the <see cref="DynamicXMLNode"/> class.
- /// </summary>
- /// <param name="name">The name.</param>
- public DynamicXMLNode(String name)
- {
- Node = new XElement(name);
- }
- /// <summary>
- /// Provides the implementation for operations that set member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as setting a value for a property.
- /// </summary>
- /// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- /// <param name="value">The value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, the <paramref name="value" /> is "Test".</param>
- /// <returns>
- /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
- /// </returns>
- public override bool TrySetMember(SetMemberBinder binder, object value)
- {
- XElement setNode = Node.Element(binder.Name);
- if (setNode != null)
- setNode.SetValue(value);
- else
- {
- if (value.GetType() == typeof(DynamicXMLNode))
- Node.Add(new XElement(binder.Name));
- else
- Node.Add(new XElement(binder.Name, value));
- }
- return true;
- }
- /// <summary>
- /// Provides the implementation for operations that get member values. Classes derived from the <see cref="T:System.Dynamic.DynamicObject" /> class can override this method to specify dynamic behavior for operations such as getting a value for a property.
- /// </summary>
- /// <param name="binder">Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the <see cref="T:System.Dynamic.DynamicObject" /> class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.</param>
- /// <param name="result">The result of the get operation. For example, if the method is called for a property, you can assign the property value to <paramref name="result" />.</param>
- /// <returns>
- /// true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.)
- /// </returns>
- public override bool TryGetMember(
- GetMemberBinder binder, out object result)
- {
- XElement getNode = Node.Element(binder.Name);
- if (getNode != null)
- {
- result = new DynamicXMLNode(getNode);
- return true;
- }
- else
- {
- result = null;
- return false;
- }
- }
- }
- }
|