File: extensionslib.md

package info (click to toggle)
xalan 1.12-12
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,368 kB
  • sloc: cpp: 145,645; xml: 1,523; ansic: 434; sh: 27; makefile: 17
file content (149 lines) | stat: -rw-r--r-- 5,928 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Xalan-C++ extensions library

## Introduction

Extension functions provide a powerful mechanism for extending and
simplifying what you can do with an XLST processor like Xalan. With
input and contributions from the XML open-source developer community,
we are working on placing the most useful extensions in an extensions
library distributed with Xalan-C++. If you have ideas and/or
contributions you would like to make, please email the Xalan
Development Mailing List.

## EXSLT extensions

Xalan-C++ supports the [EXSLT](http://exslt.org/) initiative to provide
a set of standard extension functions to XSLT users. Xalan-C++ includes
beta implementations for functions in four of the EXSLT namespaces
(some are calls to extension already in the Xalan namespace).

The source files for the implementations are in the XalanEXSLT
subdirectory of the source tree. See

* [*XalanEXSLTCommonImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTCommonImpl.hpp)
* [*XalanEXSLTMathImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTMathImpl.hpp)
* [*XalanEXSLTSetImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTSetImpl.hpp)
* [*XalanEXSLTStringImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTStringImpl.hpp)
* [*XalanEXSLTDynamicImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTDynamicImpl.hpp)
* [*XalanEXSLTDateTimeImpl.hpp*](https://github.com/apache/xalan-c/blob/master/src/xalanc/XalanEXSLT/XalanEXSLTDateTimeImpl.hpp)

For the function specifications, see:

* [EXSLT common functions](http://www.exslt.org/exsl/exsl.html)
* [EXSLT math functions](http://www.exslt.org/math/math.html)
* [EXSLT set functions](http://www.exslt.org/set/set.html)
* [EXSLT string functions](http://www.exslt.org/str/str.html)
* [EXSLT dynamic functions](http://www.exslt.org/dyn/dyn.html)
* [EXSLT date-time functions](http://www.exslt.org/date/date.html)

Anyone who would like to participate in the Xalan-C++ initiative to
support EXSLT by testing these implementations or implementing other
EXSLT functions is more than welcome.  Please email the Xalan
Development Mailing List.

## Xalan namespace

We are placing the Xalan extension functions in the `XalanExtensions`
module and we have defined a namespace for this module: `http://xml.apache.org/xalan`

If you are calling Xalan-C++-supplied extensions, we recommend that you
define this namespace in your stylesheet element, and call the
extension using the namespace prefix that you have associated with that
namespace. That way, if we later reorganize how the Xalan-C++-supplied
extensions are stored, you won't have to modify your stylesheet.

For an example that uses this namespace, see
[Example with the nodeset extension function](#example-with-the-nodeset-extension-function).

## nodeset

Implemented in `FunctionNodeSet`, `nodeset (result-tree-fragment)`
casts a result tree fragment into a `node-set`.

Note: When you bind a variable to a template, rather than to the value
generated by a select expression, the data type of the variable is
result tree fragment. For more information, see
[Result Tree Fragments](http://www.w3.org/TR/xslt#section-Result-Tree-Fragments).

### Example with the nodeset extension function

The following stylesheet uses the `nodeset` extension function to cast
a result tree fragment into a `node-set` that can then be navigated in
standard XPath manner.  It uses the `http://xml.apache.org/xalan`
namespace to provide access to the `nodeset()` method in
`xml.apache.xalan.lib.Extensions`.

```xml
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                   version="1.0"
                   xmlns:xalan="http://xml.apache.org/xalan"
                   exclude-result-prefixes="xalan">
<xsl:template match="/">
  <out>
	  <xsl:variable name="rtf">
      <docelem>
        <elem1>
          <elem1a>ELEMENT1A</elem1a>
          <elem1b>,ELEMENT1B</elem1b>
        </elem1>
        <elem2>
          <elem2a>ELEMENT2A</elem2a>
        </elem2>
      </docelem>
    </xsl:variable>
      <xsl:for-each select="xalan:nodeset($rtf)/docelem//*">
        <xsl:value-of select="name(.)"/><xsl:text>,</xsl:text>
      </xsl:for-each>
  </out>
</xsl:template>
</xsl:stylesheet>
```

The output of running this stylesheet (with any XML input source) is a
comma-delimited list of the element names in the `node-set`

```xml
<out>elem1,elem1a,elem1b,elem2,elem2a</out>
```

Note: For illustration purposes, the preceding stylesheet pays no
attention to the structure and content of the XML input document.
Instead, it processes the template (in the stylesheet) bound to the
variable named *rtf*.

## intersection

Implemented in `FunctionIntersection`,
`intersection (node-set1, node-set2)`
returns a `node-set` with all nodes that are in *node-set1* and in
*node-set2*.

## difference

Implemented in `FunctionDifference`, `difference(node-set1, node-set2)`
returns a `node-set` with the nodes in *node-set1* and not in
*node-set2*.

## distinct

Implemented in `FunctionDistinct`, `distinct (node-set)` returns a
`node-set` containing nodes with distinct string values. If more than
one node in the *node-set* contains the same text node value, distinct
only returns the first of these nodes that it finds.

## evaluate

Implemented in `FunctionEvaluate`, `evaluate (xpath-expression)`
returns the result of evaluating the *xpath-expression* in the current
XPath expression context (automatically passed in by the extension
mechanism).

Use the evaluation extension function when the value of the expression
is not known until run time.

## hasSameNodes

Implemented in `FunctionHasSameNodes`, `hasSameNodes(node-set1, node-set2)`
returns true if both *node-set1* and *node-set2* contain exactly the
same set of nodes.