com.github.simy4.xpath.effects.PutEffect 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 PutEffect implements Effect {
private final Expr expr;
public PutEffect(Expr expr) {
this.expr = expr;
}
@Override
public void perform(Navigator navigator, N xml) throws XmlBuilderException {
final ViewContext context = new ViewContext(navigator, new NodeView(xml), true);
expr.resolve(context).visit(new EagerVisitor());
}
private static final class EagerVisitor extends AbstractViewVisitor {
@Override
@SuppressWarnings("StatementWithEmptyBody")
public Void visit(IterableNodeView nodeSet) throws XmlBuilderException {
for (NodeView ignored : nodeSet) { } // eagerly consume resolved iterable
return null;
}
@Override
protected Void returnDefault(View view) {
return null;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy