e5faf48df9299163fc04ed78fcddf53db36255bf
[yangtools.git] / data / yang-data-util / src / main / java / org / opendaylight / yangtools / yang / data / util / AbstractStringInstanceIdentifierCodec.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.util;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11 import static java.util.Objects.requireNonNull;
12
13 import com.google.common.annotations.Beta;
14 import com.google.common.escape.Escaper;
15 import com.google.common.escape.Escapers;
16 import java.util.Set;
17 import javax.xml.XMLConstants;
18 import org.eclipse.jdt.annotation.NonNull;
19 import org.eclipse.jdt.annotation.Nullable;
20 import org.opendaylight.yangtools.yang.common.QName;
21 import org.opendaylight.yangtools.yang.common.QNameModule;
22 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
23 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
24 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
25 import org.opendaylight.yangtools.yang.data.api.codec.InstanceIdentifierCodec;
26 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
27 import org.opendaylight.yangtools.yang.model.util.LeafrefResolver;
28
29 /**
30  * Abstract utility class for representations which encode {@link YangInstanceIdentifier} as a
31  * prefix:name tuple. Typical uses are RESTCONF/JSON (module:name) and XML (prefix:name).
32  */
33 @Beta
34 public abstract class AbstractStringInstanceIdentifierCodec extends AbstractNamespaceCodec<YangInstanceIdentifier>
35         implements InstanceIdentifierCodec<String> {
36     // Escaper as per https://www.rfc-editor.org/rfc/rfc7950#section-6.1.3
37     private static final Escaper DQUOT_ESCAPER = Escapers.builder()
38         .addEscape('\n', "\\n")
39         .addEscape('\t', "\\t")
40         .addEscape('"', "\\\"")
41         .addEscape('\\', "\\\\")
42         .build();
43
44     @Override
45     protected final String serializeImpl(final YangInstanceIdentifier data) {
46         final StringBuilder sb = new StringBuilder();
47         DataSchemaContextNode<?> current = getDataContextTree().getRoot();
48         QNameModule lastModule = null;
49         for (var arg : data.getPathArguments()) {
50             current = current.getChild(arg);
51             checkArgument(current != null, "Invalid input %s: schema for argument %s (after %s) not found", data, arg,
52                     sb);
53
54             if (current.isMixin()) {
55                 /*
56                  * XML/YANG instance identifier does not have concept
57                  * of augmentation identifier, or list as whole which
58                  * identifies a mixin (same as the parent element),
59                  * so we can safely ignore it if it is part of path
60                  * (since child node) is identified in same fashion.
61                  */
62                 continue;
63             }
64
65             final var qname = arg.getNodeType();
66             sb.append('/');
67             appendQName(sb, qname, lastModule);
68             lastModule = qname.getModule();
69
70             if (arg instanceof NodeIdentifierWithPredicates nip) {
71                 for (var entry : nip.entrySet()) {
72                     final var keyName = entry.getKey();
73                     appendQName(sb.append('['), keyName, lastModule).append('=');
74                     appendValue(sb, keyName.getModule(), entry.getValue()).append(']');
75                 }
76             } else if (arg instanceof NodeWithValue<?> val) {
77                 appendValue(sb.append("[.="), lastModule, val.getValue()).append(']');
78             }
79         }
80         return sb.toString();
81     }
82
83     private StringBuilder appendValue(final StringBuilder sb, final QNameModule currentModule,
84             final Object value) {
85         if (value instanceof QName qname) {
86             // QName implies identity-ref, which can never be escaped
87             return appendQName(sb.append('\''), qname, currentModule).append('\'');
88         }
89         // FIXME: YANGTOOLS-1426: update once we have a dedicated type
90         if (value instanceof Set<?> bits) {
91             // Set implies bits, which can never be escaped and need to be serialized as space-separated items
92             sb.append('\'');
93
94             final var it = bits.iterator();
95             if (it.hasNext()) {
96                 sb.append(checkBitsItem(it.next()));
97                 while (it.hasNext()) {
98                     sb.append(' ').append(checkBitsItem(it.next()));
99                 }
100             }
101
102             return sb.append('\'');
103         }
104
105         final var str = value instanceof YangInstanceIdentifier id ? serialize(id) : String.valueOf(value);
106
107         // We have two specifications here: Section 6.1.3 of both RFC6020 and RFC7950:
108         //
109         // RFC6020 Section 6.1.3:
110         //        If a string contains any space or tab characters, a semicolon (";"),
111         //        braces ("{" or "}"), or comment sequences ("//", "/*", or "*/"), then
112         //        it MUST be enclosed within double or single quotes.
113         //
114         // RFC7950 Section 6.1.3:
115         //        An unquoted string is any sequence of characters that does not
116         //        contain any space, tab, carriage return, or line feed characters, a
117         //        single or double quote character, a semicolon (";"), braces ("{" or
118         //        "}"), or comment sequences ("//", "/*", or "*/").
119         //
120         // Plus the common part:
121         //        A single-quoted string (enclosed within ' ') preserves each character
122         //        within the quotes.  A single quote character cannot occur in a
123         //        single-quoted string, even when preceded by a backslash.
124         //
125         // Unquoted strings are not interesting, as we are embedding the value in a string, not a YANG document, hence
126         // we have to use quotes. Single-quoted case is simpler, as it does not involve any escaping. The only case
127         // where we cannot use it is when the value itself has a single-quote in itself -- then we call back to
128         // double-quoting.
129
130         return str.indexOf('\'') == -1
131             // No escaping needed, use single quotes
132             ? sb.append('\'').append(str).append('\'')
133             // Escaping needed: use double quotes
134             : sb.append('"').append(DQUOT_ESCAPER.escape(str)).append('"');
135     }
136
137     /**
138      * Returns DataSchemaContextTree associated with SchemaContext for which
139      * serialization / deserialization occurs.
140      *
141      * <p>
142      * Implementations MUST provide non-null Data Tree context, in order
143      * for correct serialization / deserialization of PathArguments,
144      * since XML representation does not have Augmentation arguments
145      * and does not provide path arguments for cases.
146      *
147      * <p>
148      * This effectively means same input XPath representation of Path Argument
149      * may result in different YangInstanceIdentifiers if models are different
150      * in uses of choices and cases.
151      *
152      * @return DataSchemaContextTree associated with SchemaContext for which
153      *         serialization / deserialization occurs.
154      */
155     protected abstract @NonNull DataSchemaContextTree getDataContextTree();
156
157     protected Object deserializeKeyValue(final DataSchemaNode schemaNode, final LeafrefResolver resolver,
158             final String value) {
159         return value;
160     }
161
162     @Override
163     protected final YangInstanceIdentifier deserializeImpl(final String data) {
164         return YangInstanceIdentifier.of(
165             new XpathStringParsingPathArgumentBuilder(this, requireNonNull(data)).build());
166     }
167
168     /**
169      * Create QName from unprefixed name, potentially taking last QNameModule encountered into account.
170      *
171      * @param lastModule last QNameModule encountered, potentially null
172      * @param localName Local name string
173      * @return A newly-created QName
174      */
175     protected QName createQName(final @Nullable QNameModule lastModule, final String localName) {
176         // This implementation handles both XML encoding, where we follow XML namespace rules and old JSON encoding,
177         // which is the same thing: always encode prefixes
178         return createQName(XMLConstants.DEFAULT_NS_PREFIX, localName);
179     }
180
181     // FIXME: YANGTOOLS-1426: this will not be necessary when we have dedicated bits type
182     private static @NonNull String checkBitsItem(final Object obj) {
183         if (obj instanceof String str) {
184             return str;
185         }
186         throw new IllegalArgumentException("Unexpected bits component " + obj);
187     }
188 }