10#ifndef SAXON_XSLT_EXEC_H
11#define SAXON_XSLT_EXEC_H
13#include "saxonc_export.h"
14#include "saxonc/SaxonProcessor.h"
33class SAXONC_EXPORT XsltExecutable {
35 friend class Xslt30Processor;
48 void setcwd(
const char *cwd);
91 XsltExecutable *
clone();
189 void setProperty(
const char *name,
const char *value);
273 void deleteXdmValueArray(
XdmValue **arr,
int len);
284 void setSaveXslMessage(
bool show,
const char *filename =
nullptr);
300 void setCaptureResultDocuments(
bool flag,
bool rawResults =
false);
316 void exportStylesheet(
const char *filename);
326 void transformFileToFile(
const char *sourcefile,
const char *outputfile);
336 const char *transformFileToString(
const char *sourcefile);
346 XdmValue *transformFileToValue(
const char *sourcefile);
359 void applyTemplatesReturningFile(
const char *outfile);
372 const char *applyTemplatesReturningString();
384 XdmValue *applyTemplatesReturningValue();
400 void callTemplateReturningFile(
const char *templateName,
const char *outfile);
418 const char *callTemplateReturningString(
const char *templateName =
nullptr);
436 XdmValue *callTemplateReturningValue(
const char *templateName =
nullptr);
452 void callFunctionReturningFile(
const char *functionName,
XdmValue **arguments,
453 int argument_length,
const char *outfile);
471 const char *callFunctionReturningString(
const char *functionName,
473 int argument_length);
491 XdmValue *callFunctionReturningValue(
const char *functionName,
493 int argument_length);
506 const char *transformToString(
XdmNode *source =
nullptr);
528 void transformToFile(
XdmNode *source =
nullptr);
544 void clearXslMessages();
552 bool exceptionOccurred();
567 const char *getErrorMessage();
573 void exceptionClear();
593 XsltExecutable(int64_t procRef, int64_t exObject, std::string cwd,
594 std::string resources);
608 int64_t procRef, executableRef, selectionRef, saxonMessageListenerRef,
610 bool selectionStringFlag;
614 std::string resources_dir;
615 bool jitCompilation, rawResultsFlag, exceptionFound;
616 std::map<std::string, XdmValue *>
619 std::map<std::string, std::string>
622 std::map<std::string, XdmValue *> resultDocumentMap;
SAXONC_EXPORT void setParameter(sxnc_parameter **parameters, int *parLen, int *parCap, const char *name, sxnc_value *value)
Set a parameter.
Definition SaxonCGlue.c:194
SAXONC_EXPORT int64_t getParameter(sxnc_parameter *parameters, int parLen, const char *name)
Get a parameter from the list.
Definition SaxonCGlue.c:170
SAXONC_EXPORT void setProperty(sxnc_property **properties, int *propLen, int *propCap, const char *name, const char *value)
Set a property.
Definition SaxonCGlue.c:220
SAXONC_EXPORT char * getProperty(sxnc_property *properties, int propLen, const char *name)
Get a property from the list.
Definition SaxonCGlue.c:182
SaxonApiException.
Definition SaxonApiException.h:24
The SaxonProcessor class acts as a factory for generating XQuery, XPath, Schema and XSLT compilers.
Definition SaxonProcessor.h:117
The class XdmFunctionItem represents a function item.
Definition XdmFunctionItem.h:26
The class XdmItem represents an item in a sequence, as defined by the XDM data model.
Definition XdmItem.h:31
This class represents a node in the XDM data model.
Definition XdmNode.h:57
An XdmValue represents a value in the XDM data model.
Definition XdmValue.h:33
An Xslt30Processor represents a factory to compile, load and execute stylesheets.
Definition Xslt30Processor.h:29
An XsltExecutable represents the compiled form of a stylesheet.
Definition XsltExecutable.h:33
void setInitialMatchSelectionAsFile(const char *filename)
Set the initial match selection for the transformation to be a specified file.
Definition XsltExecutable.cpp:160
void clearParameters(bool deleteValues=false)
Clear stylesheet parameter values set.
Definition XsltExecutable.cpp:369
const char * getcwd()
Get the current working directory (cwd).
Definition XsltExecutable.cpp:420
void clearProperties()
Clear configuration property values set.
Definition XsltExecutable.cpp:388
void setInitialMatchSelection(XdmValue *selection)
Set the initial match selection for the transformation to be a specified XDM value.
Definition XsltExecutable.cpp:151
bool removeParameter(const char *name)
Remove a parameter (name, value) pair set for a stylesheet parameter.
Definition XsltExecutable.cpp:324
void setGlobalContextFromFile(const char *filename)
Supply the context item to be used when evaluating global variables and parameters.
Definition XsltExecutable.cpp:141
XsltExecutable * clone()
Create a clone of this XsltExecutable object.
Definition XsltExecutable.cpp:338
void setResultAsRawValue(bool option)
Specify how transformation results are returned.
Definition XsltExecutable.cpp:328
std::map< std::string, XdmValue * > & getResultDocuments()
Obtain the secondary result documents resulting from the execution of the stylesheet,...
Definition XsltExecutable.cpp:267
void setcwd(const char *cwd)
Set the current working directory (cwd).
Definition XsltExecutable.cpp:414
void setBaseOutputURI(const char *baseURI)
Set the base output URI.
Definition XsltExecutable.cpp:178
std::map< std::string, std::string > & getProperties()
Get all configuration properties specified on the processor as a std::map.
Definition XsltExecutable.cpp:403
void setOutputFile(const char *outfile)
Set the output file where the transformation result is sent.
Definition XsltExecutable.cpp:174
void setInitialMode(const char *modeName)
Set the initial mode for the transformation.
Definition XsltExecutable.cpp:184
char ** createCharArray(int len)
Utility method for working with SaxonC on Python - internal use only.
Definition XsltExecutable.h:265
std::map< std::string, XdmValue * > & getParameters()
Get all parameters as a std::map.
Definition XsltExecutable.cpp:398
void setGlobalContextItem(XdmItem *value)
Supply the context item to be used when evaluating global variables and parameters.
Definition XsltExecutable.cpp:131
void setInitialTemplateParameters(std::map< std::string, XdmValue * > parameters, bool tunnel)
Set parameters to be passed to the initial template.
Definition XsltExecutable.cpp:223
bool removeProperty(const char *name)
Remove a configuration property (name, value) pair specific to the processor in use.
Definition XsltExecutable.cpp:356