Package net.sf.saxon.trace
Class AbstractTraceListener
java.lang.Object
net.sf.saxon.trace.AbstractTraceListener
- All Implemented Interfaces:
EventListener
,TraceListener
- Direct Known Subclasses:
XQueryTraceListener
,XSLTTraceListener
This is the standard trace listener used when the -T option is specified on the command line.
There are two variants, represented by subclasses: one for XSLT, and one for XQuery. The two variants
differ in that they present the trace output in terms of constructs used in the relevant host language.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Called at endvoid
endCurrentItem
(Item item) Called after a node of the source tree got processedvoid
enter
(InstructionInfo info, XPathContext context) Called when an instruction in the stylesheet gets processedEscape a string for XML output (in an attribute delimited by double quotes).protected abstract String
Get the output destinationvoid
leave
(InstructionInfo info) Called after an instruction of the stylesheet got processedvoid
open()
Called at startvoid
setOutputDestination
(PrintStream stream) Set the output destination (default is System.err)void
startCurrentItem
(Item item) Called when an item becomes the context itemprotected abstract String
tag
(int construct)
-
Constructor Details
-
AbstractTraceListener
public AbstractTraceListener()
-
-
Method Details
-
open
public void open()Called at start- Specified by:
open
in interfaceTraceListener
-
getOpeningAttributes
-
close
public void close()Called at end- Specified by:
close
in interfaceTraceListener
-
enter
Called when an instruction in the stylesheet gets processed- Specified by:
enter
in interfaceTraceListener
- Parameters:
info
- gives information about the instruction being executed, and about the context in which it is executed. This object is mutable, so if information from the InstructionInfo is to be retained, it must be copied.
-
escape
Escape a string for XML output (in an attribute delimited by double quotes). This method also collapses whitespace (since the value may be an XPath expression that was originally written over several lines). -
leave
Called after an instruction of the stylesheet got processed- Specified by:
leave
in interfaceTraceListener
- Parameters:
info
- gives the same information that was supplied to the enter method, though it is not necessarily the same object. Note that the line number of the instruction is that of the start tag in the source stylesheet, not the line number of the end tag.
-
tag
-
startCurrentItem
Called when an item becomes the context item- Specified by:
startCurrentItem
in interfaceTraceListener
- Parameters:
item
- the new current item. Item objects are not mutable; it is safe to retain a reference to the Item for later use.
-
endCurrentItem
Called after a node of the source tree got processed- Specified by:
endCurrentItem
in interfaceTraceListener
- Parameters:
item
- the item that was current, whose processing is now complete. This will represent the same underlying item as the corresponding startCurrentItem() call, though it will not necessarily be the same actual object.
-
setOutputDestination
Set the output destination (default is System.err)- Parameters:
stream
- the output destination for tracing output
-
getOutputDestination
Get the output destination
-