package client.net.sf.saxon.ce.style;
import client.net.sf.saxon.ce.expr.Expression;
import client.net.sf.saxon.ce.expr.instruct.Executable;
import client.net.sf.saxon.ce.om.*;
import client.net.sf.saxon.ce.trans.XPathException;
import client.net.sf.saxon.ce.value.Whitespace;
/**
* An xsl:namespace-alias element in the stylesheet. <br>
*/
public class XSLNamespaceAlias extends StyleElement {
private String stylesheetURI;
private NamespaceBinding resultNamespaceBinding;
/**
* Ask whether this node is a declaration, that is, a permitted child of xsl:stylesheet
* (including xsl:include and xsl:import).
* @return true for this element
*/
@Override
public boolean isDeclaration() {
return true;
}
public void prepareAttributes() throws XPathException {
String stylesheetPrefix=null;
String resultPrefix=null;
AttributeCollection atts = getAttributeList();
for (int a=0; a<atts.getLength(); a++) {
int nc = atts.getNameCode(a);
String f = getNamePool().getClarkName(nc);
if (f.equals(StandardNames.STYLESHEET_PREFIX)) {
stylesheetPrefix = Whitespace.trim(atts.getValue(a));
} else if (f.equals(StandardNames.RESULT_PREFIX)) {
resultPrefix = Whitespace.trim(atts.getValue(a));
} else {
checkUnknownAttribute(nc);
}
}
if (stylesheetPrefix==null) {
reportAbsence("stylesheet-prefix");
return;
}
if (stylesheetPrefix.equals("#default")) {
stylesheetPrefix="";
}
if (resultPrefix==null) {
reportAbsence("result-prefix");
return;
}
if (resultPrefix.equals("#default")) {
resultPrefix="";
}
stylesheetURI = getURIForPrefix(stylesheetPrefix, true);
if (stylesheetURI == null) {
compileError("stylesheet-prefix " + stylesheetPrefix + " has not been declared", "XTSE0812");
// recovery action
stylesheetURI = "";
resultNamespaceBinding = NamespaceBinding.DEFAULT_UNDECLARATION;
return;
}
String resultURI = getURIForPrefix(resultPrefix, true);
if (resultURI == null) {
compileError("result-prefix " + resultPrefix + " has not been declared", "XTSE0812");
// recovery action
stylesheetURI = "";
resultURI = "";
}
resultNamespaceBinding = new NamespaceBinding(resultPrefix, resultURI);
}
public void validate(Declaration decl) throws XPathException {
checkTopLevel(null);
}
public Expression compile(Executable exec, Declaration decl) throws XPathException {
return null;
}
protected void index(Declaration decl, PrincipalStylesheetModule top) throws XPathException {
top.addNamespaceAlias(decl);
}
public String getStylesheetURI() {
return stylesheetURI;
}
public NamespaceBinding getResultNamespaceBinding() {
return resultNamespaceBinding;
}
}
// 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.