コード例 #1
0
        public XmlElement serializeNode(TreeElement instanceNode)
        {
            XmlElement e = theXmlDoc.CreateElement(instanceNode.getName());//TODO Name

            //don't serialize template nodes or non-relevant nodes
            if (!instanceNode.isRelevant() || instanceNode.getMult() == TreeReference.INDEX_TEMPLATE)
            {
                return(null);
            }

            if (instanceNode.getValue() != null)
            {
                Object serializedAnswer = serializer.serializeAnswerData(instanceNode.getValue(), instanceNode.dataType);

                if (serializedAnswer is XmlElement)
                {
                    e = (XmlElement)serializedAnswer;
                }
                else if (serializedAnswer is String)
                {
                    e = e.OwnerDocument.CreateElement(instanceNode.getName());

                    XmlText xmlText = theXmlDoc.CreateTextNode((String)serializedAnswer);  //TODO name
                    e.AppendChild(xmlText);
                }
                else
                {
                    throw new SystemException("Can't handle serialized output for" + instanceNode.getValue().ToString() + ", " + serializedAnswer);
                }

                if (serializer.containsExternalData(instanceNode.getValue()))
                {
                    IDataPointer[] pointer = serializer.retrieveExternalDataPointer(instanceNode.getValue());
                    for (int i = 0; i < pointer.Length; ++i)
                    {
                        dataPointers.Add(pointer[i]);
                    }
                }
            }
            else
            {
                //make sure all children of the same tag name are written en bloc
                ArrayList childNames = new ArrayList();
                for (int i = 0; i < instanceNode.getNumChildren(); i++)
                {
                    String childName = instanceNode.getChildAt(i).getName();
                    Console.WriteLine("CHILDNAME: " + childName);
                    if (!childNames.Contains(childName))
                    {
                        childNames.Add(childName);
                    }
                }

                for (int i = 0; i < childNames.Count; i++)
                {
                    String childName = (String)childNames[i];
                    int    mult      = instanceNode.getChildMultiplicity(childName);
                    for (int j = 0; j < mult; j++)
                    {
                        XmlElement child = serializeNode(instanceNode.getChild(childName, j));
                        if (child != null)
                        {
                            e.AppendChild(child);
                        }
                    }
                }
            }

            XmlElement e1 = e.OwnerDocument.CreateElement(instanceNode.getName());

            e.ParentNode.ReplaceChild(e1, e);

            // add hard-coded attributes
            for (int i = 0; i < instanceNode.getAttributeCount(); i++)
            {
                String namespace_ = instanceNode.getAttributeNamespace(i);
                String name       = instanceNode.getAttributeName(i);
                String val        = instanceNode.getAttributeValue(i);
                e.SetAttribute(name, namespace_, val);
            }

            return(e);
        }