I have the following structure to XML file:

<INSTANCE>
  <Sections>
    <Section>
      <Forms>
        <Form>
          <Control id="GroupHeading1">
            <Property/>
            <Property/>
          </Control>
          <Control id="GroupHeading2">
           <Property/>
            <Control id="TextBox">
              <Property/>
              <Property/>
            </Control>
          </Control>
        </Form>
      </Forms>
    </Section>
  </Sections>
</INSTANCE>

I am trying to deserialize this into C# object, but I don't need to preserve the hierarchy (which is making it difficult for me to deserialize).

Is there XSL that can transform this to un-nest the Controls, and if possible add an attribute to any child Control with ParentId=""?

Thank you for any guidance!

link|improve this question

A bit duplicate : stackoverflow.com/questions/5025365/… – roadRunner Mar 26 '11 at 18:42
@user53885: Without desired output this is not a complete question. – user357812 Mar 26 '11 at 22:43
@user53885 - Given your comment on @harpo's answer -- "I was thinking of instead of having a control underneath any other control that for example TextBox would have an attribute of ParentId="GroupHeading2", and be at the same level as the GroupHeadings." -- I've added a solution in which all <Control> elements appear at the same level. – lwburk Mar 26 '11 at 22:57
@Alejandro - Explicit example output would be best, but OP does give more clues than others as to the desired output – lwburk Mar 26 '11 at 22:58
1  
@lwburk: There are four hours of comments describing requeriments... – user357812 Mar 26 '11 at 23:04
feedback

3 Answers

up vote 1 down vote accepted

This template should get you started. I ran it against .NET 2.0.

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes" method="xml"/>

    <xsl:template match="*">
        <xsl:element name="{name()}">
            <xsl:apply-templates select="@*"/>
            <xsl:apply-templates select="*"/>
        </xsl:element>
    </xsl:template>

    <xsl:template match="Form">
        <Form>
            <xsl:copy-of select="@*"/>
            <xsl:apply-templates select="//Control"/>
        </Form>
    </xsl:template>

    <xsl:template match="Control">
        <Control>
            <xsl:if test="ancestor::Control/@id">
                <xsl:attribute name="ParentID"><xsl:value-of select="ancestor::Control/@id"/></xsl:attribute>
            </xsl:if>
            <xsl:copy-of select="*|@*"/>
        </Control>
    </xsl:template>

</xsl:stylesheet>

This is the output (indented for readability).

<INSTANCE>
    <Sections>
        <Section>
            <Forms>
                <Form>
                    <Control id="GroupHeading1">
                        <Property />
                        <Property />
                    </Control>
                    <Control id="GroupHeading2">
                        <Property />
                        <Control id="TextBox">
                            <Property />
                            <Property />
                        </Control>
                    </Control>
                    <Control ParentID="GroupHeading2" id="TextBox">
                        <Property />
                        <Property />
                    </Control>
                </Form>
            </Forms>
        </Section>
    </Sections>
</INSTANCE>
link|improve this answer
It won't let me edit. But I was thinking of instead of having a control underneath any other control that for example TextBox would have an attribute of ParentId="GroupHeading2", and be at the same level as the GroupHeadings. – user53885 Mar 26 '11 at 19:00
What won't let you edit? If you mean you can't rewrite the template file in-place, you can always transform it in memory prior to deserialization. – harpo Mar 26 '11 at 19:08
Sorry I meant the question itself I posted here. It wont let me update as you requested I do. – user53885 Mar 26 '11 at 19:10
Look at the output again. That is what you get. The Control templates are wrapped inside of another Control element which has the ParentID element where appropriate. But all three controls from the source are at the same level. There are of course many ways to format the output, but without any specification, I just did what I thought was reasonable. Try the transform yourself and adjust it to your liking. Just about any kind of XSLT-based flattening solution is going to look something like this. – harpo Mar 26 '11 at 19:13
Thank you!!! I took the <Control> tag out of line 11 from what you sent, and it pretty much does exactly what I need - except none of the output has ParentId's in it. I will try and figure out how to get the ParentId part working. – user53885 Mar 26 '11 at 19:26
show 8 more comments
feedback

Given XML, the XmlSerializer can produce a graph of objects that hold the same instance data.
This is known as XML de-serialization

You need to look here :

link|improve this answer
feedback

The following stylesheet:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>
    <!-- first-level control elements -->
    <xsl:template match="Control">
        <Control>
            <xsl:copy-of select="@*|*[not(self::Control)]" />
        </Control>
        <xsl:apply-templates select="Control" />
    </xsl:template>
    <!-- nested control elements -->
    <xsl:template match="Control/Control">
        <Control ParentId="{../@id}">
            <xsl:copy-of select="@*|*[not(self::Control)]" />
        </Control>
        <xsl:apply-templates select="Control" />
    </xsl:template>
</xsl:stylesheet>

Applied to the following document (same as original with one additional level of nesting for demonstration purposes):

<INSTANCE>
    <Sections>
        <Section>
            <Forms>
                <Form>
                    <Control id="GroupHeading1">
                        <Property />
                        <Property />
                    </Control>
                    <Control id="GroupHeading2">
                        <Property />
                        <Control id="TextBox">
                            <Property />
                            <Property />
                            <Control id="Grandchild">
                                <Property />
                            </Control>
                        </Control>
                    </Control>
                </Form>
            </Forms>
        </Section>
    </Sections>
</INSTANCE>

Produces an output with no nested <Control> elements:

<INSTANCE>
    <Sections>
        <Section>
            <Forms>
                <Form>
                    <Control id="GroupHeading1">
                        <Property />
                        <Property />
                    </Control>
                    <Control id="GroupHeading2">
                        <Property />
                    </Control>
                    <Control ParentId="GroupHeading2" id="TextBox">
                        <Property />
                        <Property />
                    </Control>
                    <Control ParentId="TextBox" id="Grandchild">
                        <Property />
                    </Control>
                </Form>
            </Forms>
        </Section>
    </Sections>
</INSTANCE>
link|improve this answer
+1 Proper dehierarchization pattern. (push style) – user357812 Mar 26 '11 at 23:00
Cool, I didn't know about the xsl:copy template. – harpo Mar 26 '11 at 23:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.