Package net.sf.saxon.trace
Class AbstractTraceListener
java.lang.Object
net.sf.saxon.lib.StandardDiagnostics
net.sf.saxon.trace.AbstractTraceListener
- All Implemented Interfaces:
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.
-
Field Summary
FieldsFields inherited from class net.sf.saxon.lib.StandardDiagnostics
MAX_MESSAGE_LENGTH, MAX_MESSAGE_LINE_LENGTH, MIN_MESSAGE_LINE_LENGTH, TARGET_MESSAGE_LINE_LENGTH
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionMethod called immediately after theenter(net.sf.saxon.trace.Traceable, java.util.Map<java.lang.String, java.lang.Object>, net.sf.saxon.expr.XPathContext)
method corresponding to anxsl:try
instruction (or XQuery try/catch).void
close()
Called at end of a transformationvoid
endCurrentItem
(Item item) Called after a node of the source tree got processedvoid
endRuleSearch
(Object rule, Mode mode, Item item) Method called when a rule search has completed.void
Called when an instruction in the stylesheet gets processedEscape a string for XML output (in an attribute delimited by double quotes).static Location
getLocation
(Traceable info) Get the location information for the traceble expression or instruction.protected String
Get the output destinationprotected boolean
isApplicable
(Traceable info) void
Called after an instruction of the stylesheet got processedprotected int
void
open
(Controller controller) Called at start of a transformationvoid
recover
(Object checkpoint, XPathException error) Method called when an error is caught by anxsl:catch
(or XQuery try/catch).void
setLevelOfDetail
(int level) Set the level of detail requiredvoid
setOutputDestination
(Logger stream) Set the output destination (default is System.err)protected static String
spaces
(int n) Get n spacesvoid
startCurrentItem
(Item item) Called when an item becomes the context itemvoid
Method called when a search for a template rule is about to startprotected String
Get the trace element tagname to be used for a particular construct.Methods inherited from class net.sf.saxon.lib.StandardDiagnostics
abbreviateLocationURI, abbreviateLocationURIDefault, expandSpecialCharacters, formatListOfOffendingNodes, getInstructionName, getInstructionNameDefault, getLocationMessageText, logStackTrace, showOriginator, wordWrap
-
Field Details
-
Constructor Details
-
Method Details
-
setLevelOfDetail
public void setLevelOfDetail(int level) Set the level of detail required- Parameters:
level
- One ofTraceLevel.NONE
,TraceLevel.LOW
(function and template calls),TraceLevel.NORMAL
(instructions),TraceLevel.HIGH
(expressions)
-
open
Called at start of a transformation- Specified by:
open
in interfaceTraceListener
- Parameters:
controller
- identifies the transformation controller, and provides the listener with access to context and configuration information
-
getOpeningAttributes
-
close
public void close()Called at end of a transformation- 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.properties
- extra information about the instruction to be included in the tracecontext
- the XPath evaluation context
-
getLocation
Get the location information for the traceble expression or instruction. This method adjusts the location for XPath expressions contained in attributes of XSLT instructions, to give the location of the containing element, which supplies a simple line number and column number.- Parameters:
info
- the traceable whose location is required- Returns:
- a sanitised Location object
-
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).- Parameters:
in
- the input string- Returns:
- the escaped string
-
leave
Called after an instruction of the stylesheet got processed- Specified by:
leave
in interfaceTraceListener
- Parameters:
info
- trace information
-
isApplicable
-
tag
Get the trace element tagname to be used for a particular construct. Return null for trace events that are ignored by this trace listener.- Parameters:
info
- trace information
-
level
-
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.
-
spaces
Get n spaces- Parameters:
n
- the requested number of spaces- Returns:
- a string containing the requested number of spaces
-
setOutputDestination
Set the output destination (default is System.err)- Specified by:
setOutputDestination
in interfaceTraceListener
- Parameters:
stream
- the output destination for tracing output
-
getOutputDestination
Get the output destination- Returns:
- the output destination for tracing output
-
checkpoint
Method called immediately after theenter(net.sf.saxon.trace.Traceable, java.util.Map<java.lang.String, java.lang.Object>, net.sf.saxon.expr.XPathContext)
method corresponding to anxsl:try
instruction (or XQuery try/catch). The method may return an object containing checkpoint information, which will be passed to therecover(java.lang.Object, net.sf.saxon.trans.XPathException)
method if an error occurs and is caught.- Specified by:
checkpoint
in interfaceTraceListener
- Returns:
- arbitrary checkpoint information, or null. This implementation returns the size of the stack.
-
recover
Method called when an error is caught by anxsl:catch
(or XQuery try/catch).- Specified by:
recover
in interfaceTraceListener
- Parameters:
checkpoint
- A checkpoint object returned by a previous call to thecheckpoint()
method.error
- The error that was caught
-
endRuleSearch
Method called when a rule search has completed.- Specified by:
endRuleSearch
in interfaceTraceListener
- Parameters:
rule
- the rule (or possible built-in ruleset) that has been selectedmode
- the mode in operationitem
- the item that was checked against
-
startRuleSearch
public void startRuleSearch()Method called when a search for a template rule is about to start- Specified by:
startRuleSearch
in interfaceTraceListener
-