Coverage Report - org.xembly.AddIfDirective
 
Classes in this File Line Coverage Branch Coverage Complexity
AddIfDirective
92%
23/25
40%
9/22
2.667
 
 1  
 /**
 2  
  * Copyright (c) 2013-2017, xembly.org
 3  
  * All rights reserved.
 4  
  *
 5  
  * Redistribution and use in source and binary forms, with or without
 6  
  * modification, are permitted provided that the following conditions
 7  
  * are met: 1) Redistributions of source code must retain the above
 8  
  * copyright notice, this list of conditions and the following
 9  
  * disclaimer. 2) Redistributions in binary form must reproduce the above
 10  
  * copyright notice, this list of conditions and the following
 11  
  * disclaimer in the documentation and/or other materials provided
 12  
  * with the distribution. 3) Neither the name of the xembly.org nor
 13  
  * the names of its contributors may be used to endorse or promote
 14  
  * products derived from this software without specific prior written
 15  
  * permission.
 16  
  *
 17  
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 18  
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
 19  
  * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 20  
  * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
 21  
  * THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 22  
  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 23  
  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 24  
  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 25  
  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 26  
  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 27  
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 28  
  * OF THE POSSIBILITY OF SUCH DAMAGE.
 29  
  */
 30  
 package org.xembly;
 31  
 
 32  
 import java.util.ArrayList;
 33  
 import java.util.Collection;
 34  
 import lombok.EqualsAndHashCode;
 35  
 import org.w3c.dom.Document;
 36  
 import org.w3c.dom.Node;
 37  
 import org.w3c.dom.NodeList;
 38  
 
 39  
 /**
 40  
  * ADDIF directive.
 41  
  *
 42  
  * <p>The class is immutable and thread-safe.
 43  
  *
 44  
  * @author Yegor Bugayenko (yegor256@gmail.com)
 45  
  * @version $Id: 8887586b14ec41e558140626669b6da5fba07c6e $
 46  
  * @since 0.1
 47  
  */
 48  0
 @EqualsAndHashCode(of = "name")
 49  
 final class AddIfDirective implements Directive {
 50  
 
 51  
     /**
 52  
      * Name of node to add.
 53  
      */
 54  
     private final transient Arg name;
 55  
 
 56  
     /**
 57  
      * Public ctor.
 58  
      * @param node Name of node to add
 59  
      * @throws XmlContentException If invalid input
 60  
      */
 61  6
     AddIfDirective(final String node) throws XmlContentException {
 62  6
         this.name = new Arg(node);
 63  6
     }
 64  
 
 65  
     @Override
 66  
     public String toString() {
 67  1
         return String.format("ADDIF %s", this.name);
 68  
     }
 69  
 
 70  
     @Override
 71  
     public Directive.Cursor exec(final Node dom,
 72  
         final Directive.Cursor cursor, final Directive.Stack stack) {
 73  5
         final Collection<Node> targets = new ArrayList<Node>(cursor.size());
 74  5
         final String label = this.name.raw();
 75  5
         for (final Node node : cursor) {
 76  5
             final NodeList kids = node.getChildNodes();
 77  5
             Node target = null;
 78  5
             final int len = kids.getLength();
 79  12
             for (int idx = 0; idx < len; ++idx) {
 80  8
                 if (kids.item(idx).getNodeName()
 81  8
                     .compareToIgnoreCase(label) == 0) {
 82  1
                     target = kids.item(idx);
 83  1
                     break;
 84  
                 }
 85  
             }
 86  5
             if (target == null) {
 87  
                 final Document doc;
 88  4
                 if (dom.getOwnerDocument() == null) {
 89  4
                     doc = Document.class.cast(dom);
 90  
                 } else {
 91  0
                     doc = dom.getOwnerDocument();
 92  
                 }
 93  4
                 target = doc.createElement(this.name.raw());
 94  4
                 node.appendChild(target);
 95  
             }
 96  5
             targets.add(target);
 97  5
         }
 98  5
         return new DomCursor(targets);
 99  
     }
 100  
 
 101  
 }