Proper way to implement IXmlSerializable?

前端 未结 5 473
逝去的感伤
逝去的感伤 2020-11-22 05:34

Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I\'ve heard that GetSchema() sh

相关标签:
5条回答
  • 2020-11-22 06:12

    Yes, GetSchema() should return null.

    IXmlSerializable.GetSchema Method This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return a null reference (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the XmlSchemaProviderAttribute to the class.

    For both read and write, the object element has already been written, so you don't need to add an outer element in write. For example, you can just start reading/writing attributes in the two.

    For write:

    The WriteXml implementation you provide should write out the XML representation of the object. The framework writes a wrapper element and positions the XML writer after its start. Your implementation may write its contents, including child elements. The framework then closes the wrapper element.

    And for read:

    The ReadXml method must reconstitute your object using the information that was written by the WriteXml method.

    When this method is called, the reader is positioned at the start of the element that wraps the information for your type. That is, just before the start tag that indicates the beginning of a serialized object. When this method returns, it must have read the entire element from beginning to end, including all of its contents. Unlike the WriteXml method, the framework does not handle the wrapper element automatically. Your implementation must do so. Failing to observe these positioning rules may cause code to generate unexpected runtime exceptions or corrupt data.

    I'll agree that is a little unclear, but it boils down to "it is your job to Read() the end-element tag of the wrapper".

    0 讨论(0)
  • 2020-11-22 06:15

    I wrote one article on the subject with samples as the MSDN documentation is by now quite unclear and the examples you can find on the web are most of the time incorrectly implemented.

    Pitfalls are handling of locales and empty elements beside what Marc Gravell already mentioned.

    http://www.codeproject.com/KB/XML/ImplementIXmlSerializable.aspx

    0 讨论(0)
  • 2020-11-22 06:30

    The interface implementation is covered by the other answers, but I wanted to toss in my 2-cents for the root element.

    I've learned in the past to prefer putting the root element as metadata. This has a few benefits:

    • If there is a null object, it can still serialize
    • From a code readability standpoint, it makes sense

    Below is an example of a serializable dictionary where the dictionary root element is defined in that way:

    using System.Collections.Generic;
    
    [System.Xml.Serialization.XmlRoot("dictionary")]
    public partial class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, System.Xml.Serialization.IXmlSerializable
    {
                public virtual System.Xml.Schema.XmlSchema GetSchema()
        {
            return null;
        }
    
        public virtual void ReadXml(System.Xml.XmlReader reader)
        {
            var keySerializer = new System.Xml.Serialization.XmlSerializer(typeof(TKey));
            var valueSerializer = new System.Xml.Serialization.XmlSerializer(typeof(TValue));
            bool wasEmpty = reader.IsEmptyElement;
            reader.Read();
            if (wasEmpty)
                return;
            while (reader.NodeType != System.Xml.XmlNodeType.EndElement)
            {
                reader.ReadStartElement("item");
                reader.ReadStartElement("key");
                TKey key = (TKey)keySerializer.Deserialize(reader);
                reader.ReadEndElement();
                reader.ReadStartElement("value");
                TValue value = (TValue)valueSerializer.Deserialize(reader);
                reader.ReadEndElement();
                Add(key, value);
                reader.ReadEndElement();
                reader.MoveToContent();
            }
    
            reader.ReadEndElement();
        }
    
        public virtual void WriteXml(System.Xml.XmlWriter writer)
        {
            var keySerializer = new System.Xml.Serialization.XmlSerializer(typeof(TKey));
            var valueSerializer = new System.Xml.Serialization.XmlSerializer(typeof(TValue));
            foreach (TKey key in Keys)
            {
                writer.WriteStartElement("item");
                writer.WriteStartElement("key");
                keySerializer.Serialize(writer, key);
                writer.WriteEndElement();
                writer.WriteStartElement("value");
                var value = this[key];
                valueSerializer.Serialize(writer, value);
                writer.WriteEndElement();
                writer.WriteEndElement();
            }
        }
    
        public SerializableDictionary() : base()
        {
        }
    
        public SerializableDictionary(IDictionary<TKey, TValue> dictionary) : base(dictionary)
        {
        }
    
        public SerializableDictionary(IDictionary<TKey, TValue> dictionary, IEqualityComparer<TKey> comparer) : base(dictionary, comparer)
        {
        }
    
        public SerializableDictionary(IEqualityComparer<TKey> comparer) : base(comparer)
        {
        }
    
        public SerializableDictionary(int capacity) : base(capacity)
        {
        }
    
        public SerializableDictionary(int capacity, IEqualityComparer<TKey> comparer) : base(capacity, comparer)
        {
        }
    
    }
    
    0 讨论(0)
  • 2020-11-22 06:32

    Yes, the whole thing is a bit of a minefield, isn't it? Marc Gravell's answer pretty much covers it, but I'd like to add that in a project I worked on we found it quite awkward to have to manually write the outer XML element. It also resulted in inconsistent XML element names for objects of the same type.

    Our solution was to define our own IXmlSerializable interface, derived from the system one, which added a method called WriteOuterXml(). As you can guess, this method would simply write the outer element, then call WriteXml(), then write the end of the element. Of course, the system XML serializer wouldn't call this method, so it was only useful when we did our own serialization, so that may or may not be helpful in your case. Similarly, we added a ReadContentXml() method, which didn't read the outer element, only its content.

    0 讨论(0)
  • 2020-11-22 06:34

    If you already have an XmlDocument representation of your class or prefer the XmlDocument way of working with XML structures, a quick and dirty way of implementing IXmlSerializable is to just pass this xmldoc to the various functions.

    WARNING: XmlDocument (and/or XDocument) is an order of magnitude slower than xmlreader/writer, so if performance is an absolute requirement, this solution is not for you!

    class ExampleBaseClass : IXmlSerializable { 
        public XmlDocument xmlDocument { get; set; }
        public XmlSchema GetSchema()
        {
            return null;
        }
        public void ReadXml(XmlReader reader)
        {
            xmlDocument.Load(reader);
        }
    
        public void WriteXml(XmlWriter writer)
        {
            xmlDocument.WriteTo(writer);
        }
    }
    
    0 讨论(0)
提交回复
热议问题