[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Best way to represent an item and its context?

Subject: Re: Best way to represent an item and its context?
From: Michael Kay <mike@xxxxxxxxxxxx>
Date: Thu, 15 Sep 2011 18:11:54 +0100
Re:  Best way to represent an item and its context?
In the XPath 2.0 data model there are very limited ways to represent complex or composite information of this kind. You could use a sequence with two items, attaching conventional meanings to the two items, but it's not very satisfactory.

In XPath 3.0 with higher-order functions you have a lot more flexibility. We're trying to get support for maps into the language too, so you will be able to return a map with two components, "item" and "context" (both of which might be composite values represented by further maps). At present we've defined this for XSLT 3.0 but there's strong resistance to putting it into XQuery 3.0, which is creating some tensions.

Michael Kay
Saxonica

On 15/09/2011 17:47, Costello, Roger L. wrote:
Hi Folks,

Consider this XML document:

<?xml version="1.0"?>
<Book>
       <title>GML</title>
       <author>Ron Lake</author>
       <date>2004</date>
</Book>

Suppose that while processing that XML document I get to the author element:

<author>Ron Lake</author>

I want to store this element and its context in a variable. The context of author is the entire document.

So I want a function that takes as input the author element and the Book element and returns a representation of the element and its context:

item-in-context :: Item -> Context -> Item-in-Context

Read as: "The function item-in-context has two arguments -- an item (element) and a context -- and it returns a representation of the element and its context."

Here I invoke that function and store the result into a variable:

<xsl:template match="/">

<xsl:variable name="v1" select="f:item-in-context(Book/author, Book)" />

</xsl:template>

I have various functions which operate on that Item-in-Context variable. For example, one function returns the item's parent:

parent :: Item-in-Context -> Item

Here I invoke the parent function and store the result into a second variable:

<xsl:template match="/">

<xsl:variable name="v1" select="f:item-in-context(Book/author, Book)" />

<xsl:variable name="v2" select="f:parent($v1)" />

</xsl:template>

What's the best way to represent an item and its context?

/Roger

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.