net.sf.saxon.trace.TraceEventMulticaster Maven / Gradle / Ivy
package net.sf.saxon.trace;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.om.Item;
import java.util.EventListener;
/**
* A class which implements efficient and thread-safe multi-cast event
* dispatching for the TraceListener evants.
*
* Grabbed from java.awt.AWTEventMulticaster
*/
public class TraceEventMulticaster implements TraceListener {
protected final EventListener a, b;
/**
* Creates an event multicaster instance which chains listener-a
* with listener-b.
*
* @param a listener-a
* @param b listener-b
*/
protected TraceEventMulticaster(EventListener a, EventListener b) {
this.a = a;
this.b = b;
}
/**
* Removes a listener from this multicaster and returns the
* resulting multicast listener.
*
* @param oldl the listener to be removed
*/
protected EventListener remove(EventListener oldl) {
if (oldl == a) {
return b;
}
if (oldl == b) {
return a;
}
EventListener a2 = removeInternal(a, oldl);
EventListener b2 = removeInternal(b, oldl);
if (a2 == a && b2 == b) {
return this; // it's not here
}
return addInternal(a2, b2);
}
/**
* Called at start
*/
public void open() {
((TraceListener)a).open();
((TraceListener)b).open();
}
/**
* Called at end
*/
public void close() {
((TraceListener)a).close();
((TraceListener)b).close();
}
/**
* Called when an element of the stylesheet gets processed
*/
public void enter(InstructionInfo element, XPathContext context) {
((TraceListener)a).enter(element, context);
((TraceListener)b).enter(element, context);
}
/**
* Called after an element of the stylesheet got processed
*/
public void leave(InstructionInfo element) {
((TraceListener)a).leave(element);
((TraceListener)b).leave(element);
}
/**
* Called when an item becomes current
*/
public void startCurrentItem(Item item) {
((TraceListener)a).startCurrentItem(item);
((TraceListener)b).startCurrentItem(item);
}
/**
* Called when an item ceases to be the current item
*/
public void endCurrentItem(Item item) {
((TraceListener)a).endCurrentItem(item);
((TraceListener)b).endCurrentItem(item);
}
/**
* Adds trace-listener-a with trace-listener-b and
* returns the resulting multicast listener.
*
* @param a trace-listener-a
* @param b trace-listener-b
*/
public static TraceListener add(TraceListener a, TraceListener b) {
return (TraceListener)addInternal(a, b);
}
/**
* Removes the old trace-listener from trace-listener-l and
* returns the resulting multicast listener.
*
* @param l trace-listener-l
* @param oldl the trace-listener being removed
*/
public static TraceListener remove(TraceListener l, TraceListener oldl) {
return (TraceListener)removeInternal(l, oldl);
}
/**
* Returns the resulting multicast listener from adding listener-a
* and listener-b together.
* If listener-a is null, it returns listener-b;
* If listener-b is null, it returns listener-a
* If neither are null, then it creates and returns
* a new EventMulticaster instance which chains a with b.
*
* @param a event listener-a
* @param b event listener-b
*/
protected static EventListener addInternal(EventListener a, EventListener b) {
if (a == null) {
return b;
}
if (b == null) {
return a;
}
return new TraceEventMulticaster(a, b);
}
/**
* Returns the resulting multicast listener after removing the
* old listener from listener-l.
* If listener-l equals the old listener OR listener-l is null,
* returns null.
* Else if listener-l is an instance of SaxonEventMulticaster,
* then it removes the old listener from it.
* Else, returns listener l.
*
* @param l the listener being removed from
* @param oldl the listener being removed
*/
protected static EventListener removeInternal(EventListener l, EventListener oldl) {
if (l == oldl || l == null) {
return null;
} else if (l instanceof TraceEventMulticaster) {
return ((TraceEventMulticaster)l).remove(oldl);
} else {
return l; // it's not here
}
}
}
//
// The contents of this file are subject to the Mozilla Public License Version 1.0 (the "License");
// you may not use this file except in compliance with the License. You may obtain a copy of the
// License at http://www.mozilla.org/MPL/
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied.
// See the License for the specific language governing rights and limitations under the License.
//
// The Original Code is: all this file.
//
// The Initial Developer of the Original Code is Edwin Glaser ([email protected])
//
// Portions created by (your name) are Copyright (C) (your legal entity). All Rights Reserved.
//
// Contributor(s): Modified by Michael Kay for Saxon 6.1 to remove "throws SAXException" from all methods
//
© 2015 - 2025 Weber Informatics LLC | Privacy Policy