Coverage Report - org.xembly.PiDirective
 
Classes in this File Line Coverage Branch Coverage Complexity
PiDirective
82%
14/17
19%
5/26
2
 
 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.Locale;
 33  
 import lombok.EqualsAndHashCode;
 34  
 import org.w3c.dom.Document;
 35  
 import org.w3c.dom.Node;
 36  
 
 37  
 /**
 38  
  * PI directive.
 39  
  *
 40  
  * <p>The class is immutable and thread-safe.
 41  
  *
 42  
  * @author Yegor Bugayenko (yegor256@gmail.com)
 43  
  * @version $Id: d8f934a8d8502ff2ea957265a3616b6dc55db76e $
 44  
  * @since 0.9
 45  
  */
 46  0
 @EqualsAndHashCode(of = { "target", "data" })
 47  
 final class PiDirective implements Directive {
 48  
 
 49  
     /**
 50  
      * Target name.
 51  
      */
 52  
     private final transient Arg target;
 53  
 
 54  
     /**
 55  
      * Data.
 56  
      */
 57  
     private final transient Arg data;
 58  
 
 59  
     /**
 60  
      * Public ctor.
 61  
      * @param tgt Target
 62  
      * @param dat Data
 63  
      * @throws XmlContentException If invalid input
 64  
      */
 65  
     PiDirective(final String tgt, final String dat)
 66  7
         throws XmlContentException {
 67  7
         this.target = new Arg(tgt.toLowerCase(Locale.ENGLISH));
 68  7
         this.data = new Arg(dat);
 69  7
     }
 70  
 
 71  
     @Override
 72  
     public String toString() {
 73  0
         return String.format("PI %s, %s", this.target, this.data);
 74  
     }
 75  
 
 76  
     @Override
 77  
     public Directive.Cursor exec(final Node dom,
 78  
         final Directive.Cursor cursor, final Directive.Stack stack) {
 79  
         final Document doc;
 80  7
         if (dom.getOwnerDocument() == null) {
 81  7
             doc = Document.class.cast(dom);
 82  
         } else {
 83  0
             doc = dom.getOwnerDocument();
 84  
         }
 85  14
         final Node instr = doc.createProcessingInstruction(
 86  7
             this.target.raw(), this.data.raw()
 87  
         );
 88  7
         if (cursor.isEmpty()) {
 89  1
             dom.insertBefore(instr, doc.getDocumentElement());
 90  
         } else {
 91  6
             for (final Node node : cursor) {
 92  6
                 node.appendChild(instr);
 93  6
             }
 94  
         }
 95  7
         return cursor;
 96  
     }
 97  
 
 98  
 }