public abstract class AbstractTraceListener extends StandardDiagnostics implements TraceListener
Modifier and Type | Field and Description |
---|---|
protected int |
indent |
protected Logger |
out |
MAX_MESSAGE_LENGTH, MAX_MESSAGE_LINE_LENGTH, MIN_MESSAGE_LINE_LENGTH, TARGET_MESSAGE_LINE_LENGTH
Constructor and Description |
---|
AbstractTraceListener() |
Modifier and Type | Method and Description |
---|---|
void |
close()
Called at end
|
void |
endCurrentItem(Item item)
Called after a node of the source tree got processed
|
void |
endRuleSearch(java.lang.Object rule,
Mode mode,
Item item)
Method called when a rule search has completed.
|
void |
enter(Traceable info,
java.util.Map<java.lang.String,java.lang.Object> properties,
XPathContext context)
Called when an instruction in the stylesheet gets processed
|
java.lang.String |
escape(java.lang.String in)
Escape a string for XML output (in an attribute delimited by double quotes).
|
CodeInjector |
getCodeInjector()
Get the associated CodeInjector to be used at compile time to generate the tracing calls
|
protected abstract java.lang.String |
getOpeningAttributes() |
Logger |
getOutputDestination()
Get the output destination
|
protected boolean |
isApplicable(Traceable info) |
void |
leave(Traceable info)
Called after an instruction of the stylesheet got processed
|
protected int |
level(Traceable info) |
void |
open(Controller controller)
Called at start
|
void |
setLevelOfDetail(int level)
Set the level of detail required
|
void |
setOutputDestination(Logger stream)
Set the output destination (default is System.err)
|
protected static java.lang.String |
spaces(int n)
Get n spaces
|
void |
startCurrentItem(Item item)
Called when an item becomes the context item
|
void |
startRuleSearch()
Method called when a search for a template rule is about to start
|
protected abstract java.lang.String |
tag(Traceable info) |
abbreviateLocationURI, abbreviateLocationURIDefault, expandSpecialCharacters, formatListOfOffendingNodes, getInstructionName, getInstructionNameDefault, getLocationMessageText, printStackTrace, showOriginator, wordWrap
protected int indent
protected Logger out
public CodeInjector getCodeInjector()
public void setLevelOfDetail(int level)
level
- 0=none, 1=low (function and template calls), 2=normal (instructions), 3=high (expressions)public void open(Controller controller)
open
in interface TraceListener
controller
- identifies the transformation controller, and provides the listener with
access to context and configuration informationprotected abstract java.lang.String getOpeningAttributes()
public void close()
close
in interface TraceListener
public void enter(Traceable info, java.util.Map<java.lang.String,java.lang.Object> properties, XPathContext context)
enter
in interface TraceListener
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 contextpublic java.lang.String escape(java.lang.String in)
public void leave(Traceable info)
leave
in interface TraceListener
info
- protected boolean isApplicable(Traceable info)
protected abstract java.lang.String tag(Traceable info)
protected int level(Traceable info)
public void startCurrentItem(Item item)
startCurrentItem
in interface TraceListener
item
- the new current item. Item objects are not mutable; it is safe to retain
a reference to the Item for later use.public void endCurrentItem(Item item)
endCurrentItem
in interface TraceListener
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.protected static java.lang.String spaces(int n)
public void setOutputDestination(Logger stream)
setOutputDestination
in interface TraceListener
stream
- the output destination for tracing outputpublic Logger getOutputDestination()
public void endRuleSearch(java.lang.Object rule, Mode mode, Item item)
endRuleSearch
in interface TraceListener
rule
- the rule (or possible built-in ruleset) that has been selectedmode
- the mode in operationitem
- the item that was checked againstpublic void startRuleSearch()
startRuleSearch
in interface TraceListener
Copyright (c) 2004-2020 Saxonica Limited. All rights reserved.