All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.simy4.xpath.effects.PutEffect Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
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