| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CdataDirective |
|
| 1.6666666666666667;1.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 lombok.EqualsAndHashCode; | |
| 33 | import org.w3c.dom.Document; | |
| 34 | import org.w3c.dom.Node; | |
| 35 | ||
| 36 | /** | |
| 37 | * CDATA directive. | |
| 38 | * | |
| 39 | * <p>The class is immutable and thread-safe. | |
| 40 | * | |
| 41 | * @author Yegor Bugayenko (yegor256@gmail.com) | |
| 42 | * @version $Id: ed1e0a43ac42cab755ab638c25efdb93e7a78cb9 $ | |
| 43 | * @since 0.17 | |
| 44 | */ | |
| 45 | 0 | @EqualsAndHashCode(of = "value") |
| 46 | final class CdataDirective implements Directive { | |
| 47 | ||
| 48 | /** | |
| 49 | * Text value to set. | |
| 50 | */ | |
| 51 | private final transient Arg value; | |
| 52 | ||
| 53 | /** | |
| 54 | * Public ctor. | |
| 55 | * @param val Text value to set | |
| 56 | * @throws XmlContentException If invalid input | |
| 57 | */ | |
| 58 | 1 | CdataDirective(final String val) throws XmlContentException { |
| 59 | 1 | this.value = new Arg(val); |
| 60 | 1 | } |
| 61 | ||
| 62 | @Override | |
| 63 | public String toString() { | |
| 64 | 0 | return String.format("CDATA %s", this.value); |
| 65 | } | |
| 66 | ||
| 67 | @Override | |
| 68 | public Directive.Cursor exec(final Node dom, | |
| 69 | final Directive.Cursor cursor, final Directive.Stack stack) { | |
| 70 | final Document doc; | |
| 71 | 1 | if (dom.getOwnerDocument() == null) { |
| 72 | 1 | doc = Document.class.cast(dom); |
| 73 | } else { | |
| 74 | 0 | doc = dom.getOwnerDocument(); |
| 75 | } | |
| 76 | 1 | final String val = this.value.raw(); |
| 77 | 1 | for (final Node node : cursor) { |
| 78 | 1 | final Node cdata = doc.createCDATASection(val); |
| 79 | 1 | node.appendChild(cdata); |
| 80 | 1 | } |
| 81 | 1 | return cursor; |
| 82 | } | |
| 83 | ||
| 84 | } |