net.sf.saxon.trans.Rule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saxon-he Show documentation
Show all versions of saxon-he Show documentation
An OSGi bundle for Saxon-HE
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Saxonica Limited.
// 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.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.trans;
import net.sf.saxon.pattern.Pattern;
import java.io.Serializable;
/**
* Rule: a template rule, or a strip-space rule used to support the implementation
*/
public final class Rule implements Serializable {
/*@NotNull*/
private Pattern pattern; // The pattern that fires this rule
/*@NotNull*/
private RuleTarget action; // The action associated with this rule (usually a Template)
private int precedence; // The import precedence
private int minImportPrecedence;// The minimum import precedence to be considered by xsl:apply-imports
private double priority; // The priority of the rule
/*@Nullable*/ private Rule next; // The next rule after this one in the chain of rules
private int sequence; // The relative position of this rule, its position in declaration order
private boolean alwaysMatches; // True if the pattern does not need to be tested, because the rule
// is on a rule-chain such that the pattern is necessarily satisfied
private int rank; // Indicates the relative precedence/priority of a rule within a mode;
// used for quick comparison
/**
* Create a Rule.
*
* @param p the pattern that this rule matches
* @param o the object invoked by this rule (usually a Template)
* @param prec the precedence of the rule
* @param min the minumum import precedence for xsl:apply-imports
* @param prio the priority of the rule
* @param seq a sequence number for ordering of rules
*/
public Rule(/*@NotNull*/ Pattern p, /*@NotNull*/ RuleTarget o, int prec, int min, double prio, int seq) {
pattern = p;
action = o;
precedence = prec;
minImportPrecedence = min;
priority = prio;
next = null;
sequence = seq;
}
/**
* Copy a rule, including the chain of rules linked to it
* @param r the rule to be copied
*/
public Rule(Rule r) {
pattern = r.pattern;
action = r.action;
precedence = r.precedence;
minImportPrecedence = r.minImportPrecedence;
priority = r.priority;
sequence = r.sequence;
if (r.next == null) {
next = null;
} else {
next = new Rule(r.next);
}
}
public int getSequence() {
return sequence;
}
public void setAction(/*@NotNull*/ RuleTarget action) {
this.action = action;
}
/*@NotNull*/
public RuleTarget getAction() {
return action;
}
/*@Nullable*/
public Rule getNext() {
return next;
}
public void setNext( /*@Nullable*/Rule next) {
this.next = next;
}
/*@NotNull*/
public Pattern getPattern() {
return pattern;
}
public int getPrecedence() {
return precedence;
}
public int getMinImportPrecedence() {
return minImportPrecedence;
}
public double getPriority() {
return priority;
}
public void setAlwaysMatches(boolean matches) {
alwaysMatches = matches;
}
public boolean isAlwaysMatches() {
return alwaysMatches;
}
public void setRank(int rank) {
this.rank = rank;
}
public int getRank() {
return rank;
}
/**
* Rules have an ordering, based on their precedence and priority. This method compares
* them using the precomputed rank value.
* @param other Another rule whose ordering rank is to be compared with this one
* @return <0 if this rule has lower rank, that is if it has lower precedence or equal
* precedence and lower priority. 0 if the two rules have equal precedence and
* priority. >0 if this rule has higher rank in precedence/priority order
*/
public int compareRank(Rule other) {
return rank - other.rank;
}
/**
* Rules have an ordering, based on their precedence and priority.
* @param other Another rule whose ordering rank is to be compared with this one
* @return <0 if this rule has lower rank, that is if it has lower precedence or equal
* precedence and lower priority. 0 if the two rules have equal precedence and
* priority. >0 if this rule has higher rank in precedence/priority order
*/
public int compareComputedRank(Rule other) {
if (precedence == other.precedence) {
if (priority == other.priority) {
return 0;
} else if (priority < other.priority) {
return -1;
} else {
return +1;
}
} else if (precedence < other.precedence) {
return -1;
} else {
return +1;
}
}
}