3 * Copyright © 2014 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package cz.frantovo.alt2xml.out.xpath;
20 import cz.frantovo.alt2xml.out.AbstractDOMAction;
21 import cz.frantovo.alt2xml.out.ActionContext;
22 import cz.frantovo.alt2xml.out.OutputActionException;
23 import java.io.PrintWriter;
24 import java.util.HashMap;
25 import java.util.List;
27 import javax.xml.transform.dom.DOMResult;
28 import javax.xml.xpath.XPath;
29 import javax.xml.xpath.XPathExpression;
30 import javax.xml.xpath.XPathExpressionException;
31 import javax.xml.xpath.XPathFactory;
35 * @author Ing. František Kučera (frantovo.cz)
37 public class XPathAction extends AbstractDOMAction {
39 public static final String PARAMETER_TYPED_PARAMETERS = "typed-parameters";
40 private final XPathFactory xpathFactory;
41 private final XPath xpath;
42 private final String expressionString;
43 private final XPathExpression xpathExpression;
45 public XPathAction(ActionContext actionContext) throws OutputActionException {
47 xpathFactory = XPathFactory.newInstance();
48 xpath = xpathFactory.newXPath();
50 final List<String> actionData = getActionContext().getActionData();
52 if (actionData.size() < 1) {
53 throw new OutputActionException("Please specify the XPath expression as action data");
56 boolean typedParameters = Boolean.parseBoolean(actionContext.getActionProperties().getProperty(PARAMETER_TYPED_PARAMETERS));
58 Map<String, Object> xpathParameters = new HashMap<>();
60 for (int i = 1; i < actionData.size(); i++) {
61 String parameterName = actionData.get(i++);
62 String parameterType = typedParameters ? actionData.get(i++) : "string";
63 Object parameterValue = parseParameterValue(parameterType, actionData.get(i));
64 xpathParameters.put(parameterName, parameterValue);
67 xpath.setXPathVariableResolver(new PropertiesVariableResolver(xpathParameters));
69 expressionString = actionData.get(0);
71 xpathExpression = xpath.compile(expressionString);
72 } catch (XPathExpressionException e) {
73 throw new OutputActionException("Unable to compile XPath: " + expressionString, e);
79 private static Object parseParameterValue(String type, String value) {
80 // TODO: support more types
85 public void run(DOMResult domResult) throws OutputActionException {
87 String result = xpathExpression.evaluate(domResult.getNode());
88 try (PrintWriter out = new PrintWriter(getActionContext().getOutputStream())) {
91 } catch (XPathExpressionException e) {
92 throw new OutputActionException("Unable to evaluate XPath: " + xpathExpression, e);