net.sf.saxon.option.sql.SQLClose 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.option.sql;
import net.sf.saxon.expr.Expression;
import net.sf.saxon.expr.SimpleExpression;
import net.sf.saxon.expr.StaticProperty;
import net.sf.saxon.expr.XPathContext;
import net.sf.saxon.expr.instruct.Executable;
import net.sf.saxon.om.Item;
import net.sf.saxon.om.Sequence;
import net.sf.saxon.style.Declaration;
import net.sf.saxon.style.ExtensionInstruction;
import net.sf.saxon.trans.SaxonErrorCode;
import net.sf.saxon.trans.XPathException;
import net.sf.saxon.value.EmptySequence;
import net.sf.saxon.value.ObjectValue;
import java.sql.Connection;
import java.sql.SQLException;
/**
* An sql:close element in the stylesheet.
*/
public class SQLClose extends ExtensionInstruction {
/*@Nullable*/ Expression connection = null;
public void prepareAttributes() throws XPathException {
String connectAtt = getAttributeList().getValue("", "connection");
if (connectAtt==null) {
reportAbsence("connection");
} else {
connection = makeExpression(connectAtt);
}
}
public void validate(Declaration decl) throws XPathException {
super.validate(decl);
connection = typeCheck("connection", connection);
}
public Expression compile(Executable exec, Declaration decl) throws XPathException {
return new CloseInstruction(connection);
}
private static class CloseInstruction extends SimpleExpression {
public static final int CONNECTION = 0;
public CloseInstruction(Expression connect) {
Expression[] sub = {connect};
setArguments(sub);
}
/**
* A subclass must provide one of the methods evaluateItem(), iterate(), or process().
* This method indicates which of the three is provided.
*/
public int getImplementationMethod() {
return Expression.EVALUATE_METHOD;
}
public String getExpressionType() {
return "sql:close";
}
public int computeCardinality() {
return StaticProperty.ALLOWS_ZERO_OR_ONE;
}
public Sequence call(XPathContext context, Sequence[] arguments) throws XPathException {
Item conn = arguments[CONNECTION].head();
if (!(conn instanceof ObjectValue && ((ObjectValue)conn).getObject() instanceof Connection) ) {
dynamicError("Value of connection expression is not a JDBC Connection", SaxonErrorCode.SXSQ0001, context);
}
Connection connection = (Connection)((ObjectValue)conn).getObject();
try {
connection.close();
} catch (SQLException ex) {
dynamicError("(SQL) Failed to close connection: " + ex.getMessage(), SaxonErrorCode.SXSQ0002, context);
}
return EmptySequence.getInstance();
}
}
}