com.github.simy4.xpath.effects.PutValueEffect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpath-to-xml-core Show documentation
Show all versions of xpath-to-xml-core Show documentation
Convenient utility to build XML models by evaluating XPath expressions
package com.github.simy4.xpath.effects;
import com.github.simy4.xpath.XmlBuilderException;
import com.github.simy4.xpath.expr.Expr;
import com.github.simy4.xpath.navigator.Navigator;
import com.github.simy4.xpath.navigator.Node;
import com.github.simy4.xpath.view.AbstractViewVisitor;
import com.github.simy4.xpath.view.IterableNodeView;
import com.github.simy4.xpath.view.NodeView;
import com.github.simy4.xpath.view.View;
import com.github.simy4.xpath.view.ViewContext;
public class PutValueEffect implements Effect {
private final Expr expr;
private final String value;
public PutValueEffect(Expr expr, Object value) {
this.expr = expr;
this.value = String.valueOf(value);
}
@Override
public void perform(Navigator navigator, N xml) throws XmlBuilderException {
final ViewContext context = new ViewContext(navigator, new NodeView(xml), true);
final View view = expr.resolve(context);
view.visit(new PutValueVisitor(navigator, value));
}
private static final class PutValueVisitor extends AbstractViewVisitor {
private final Navigator navigator;
private final String value;
private PutValueVisitor(Navigator navigator, String value) {
this.navigator = navigator;
this.value = value;
}
@Override
public Void visit(IterableNodeView nodeSet) throws XmlBuilderException {
for (NodeView node : nodeSet) {
navigator.setText(node.getNode(), value);
}
return null;
}
@Override
protected Void returnDefault(View view) throws XmlBuilderException {
throw new XmlBuilderException("Failed to put value into XML. Read-only view was resolved: " + view);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy