Copying and Modifying a Large Input Document

A user may be tempted to try to copy an input XML document by using the automap feature of the XSLT editor. However, automap generates specific XSLT statements for every node in the schema. On large schemas, this is not an efficient way to copy an input document. This can generate XSLT files that are many MBs in size, and these will be slow to load and difficult to edit. In addition, if the user’s mapping is sparse, generating thousands of lines of XSLT to execute against nodes that are defined in the schema, but will never exist at runtime is inefficient.

The 12c XSLT Editor now supports the creation of matched templates (template rules). In particular, you can now add an identity template that can copy all nodes in the source tree. Use the following steps:

  1. Switch to XSLT view.
  2. Select XSLT Templates from the Components Window.
  3. Drag and drop the Identity Template from the Miscellaneous Templates section to the left side of the xsl:stylesheet node. You will see a green highlight when the drop is in the correct position indicating that the template will be added as a child of the stylesheet node.

    Dragging and Dropping the Identity Template

  4. Delete the original root match=”/” template from the XSLT.

    Your display would look something like the following:

    XSLT Map Display

    Every node in the input document will be processed by the identity template. This is indicated by the bubble highlighting on each node of the source tree that indicates the context nodes for the selected template. When each node is processed, the xsl:copy statement will execute to copy the node to the output. The apply-templates statement tells the processor to continue processing any child nodes of the current context node being processed. This will then copy the entire input document.

    Additional templates can then be added to make modifications to the tree while it is being copied. For instance, suppose we need to simply remove a node from the input tree. We can do this by adding an empty template for the node we want to remove from the output. In other words, when we process this node, we will output nothing, which will effectively remove the node from the tree.

    To add an empty template for a node, right-click the source node and select New Template Rule.

    New Template Rule menu item

    Click OK on the New Template Dialog that follows. The template is added. Note the difference in the display for the node when the identity template is selected. It is no longer bubble highlighted, indicating it is no longer processed by the identity template.

    Display with no bubble highlight.

    Selecting the new empty template will now highlight this node, showing that this template will process the node and output nothing when it is processed.

    New empty template selected.

    Now, suppose we also want to upper-case some text in another node. We can create another template to explicitly process that node to perform the upper-case. We create a template with the New Template Rule option selected from the BrokenPlace node in the source tree. When the New Template Rule dialog appears, we select the node we want to create in the template.

    New Template Rule dialog

    Click OK and the template and the node will be created. We then assign an upper-case function to the node.

    upper-case function applied

    When this node is created in the output, its text will be upper-cased.

    In this manner, you can copy and modify a large input XML with very few XSLT statements.