package client.net.sf.saxon.ce.expr.sort;
import client.net.sf.saxon.ce.om.NodeInfo;
/**
* A Comparer used for comparing nodes in document order. This
* comparer is used when there is no guarantee that the nodes being compared
* come from the same document
*
* @author Michael H. Kay
*
*/
public final class GlobalOrderComparer implements NodeOrderComparer {
private static GlobalOrderComparer instance = new GlobalOrderComparer();
/**
* Get an instance of a GlobalOrderComparer. The class maintains no state
* so this returns the same instance every time.
*/
public static GlobalOrderComparer getInstance() {
return instance;
}
public int compare(NodeInfo a, NodeInfo b) {
if (a==b) {
return 0;
}
long d1 = a.getDocumentNumber();
long d2 = b.getDocumentNumber();
if (d1 == d2) {
return a.compareOrder(b);
}
return Long.signum(d1 - d2);
}
}
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0.