0.2.1 • Published 3 months ago

xml-utils-processors-ts v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

xml-utils-processors-ts

Bun CI npm

Typescript wrapper over the Saxon-HE library to be used within the Connector Architecture. Currently this repository exposes 1 function:

js:XQueryProcessor

This processor is able to execute one or multiple predefined XQueries over as stream of XML documents. It relies on the Java-based Saxon-HE engine to execute the XQueries. This processor can be used within a Connector Architecture (CA) pipeline, by defining an input stream of XML documents (js:xmlInput), over which a set of XQueries (js:xquery) will be executed and output in a set of correspondent output streams (js:output). Each query shall be given a name which must correspond to the name of the output stream where the result will be expected. An example definition of the processor is shown next:

[ ] a js:XQueryProcessor; 
    js:xmlInput <xmlChannelReader>;
    js:xquery [
        js:name "Q1";
        js:query "<SomeXQuery>{}</SomeXQuery>"
    ], [
        js:name "Q2";
        js:query "<AnotherXQuery>{}</AnotherXQuery>"
    ];
    js:output [
        js:name "Q1";
        js:outputStream <outputChannelReader1> # This can be consumed by another CA processor
    ], [
        js:name "Q2";
        js:outputStream <outputChannelReader2> # This can be consumed by another CA processor
    ];
    js:saxonLocation <./SaxonHE12-3J.zip>. # Optional. If not given the latest release will be used
0.2.1

3 months ago

0.2.0

3 months ago

0.1.1

6 months ago

0.1.0

6 months ago