Remove an unneeded continue
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / repo / ArgumentContextUtils.java
1 /*
2  * Copyright (c) 2015 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.parser.rfc7950.repo;
9
10 import static com.google.common.base.Verify.verify;
11
12 import com.google.common.annotations.VisibleForTesting;
13 import com.google.common.base.CharMatcher;
14 import com.google.common.base.VerifyException;
15 import org.antlr.v4.runtime.Token;
16 import org.antlr.v4.runtime.tree.ParseTree;
17 import org.antlr.v4.runtime.tree.TerminalNode;
18 import org.eclipse.jdt.annotation.NonNull;
19 import org.opendaylight.yangtools.yang.common.YangVersion;
20 import org.opendaylight.yangtools.yang.parser.antlr.YangStatementParser;
21 import org.opendaylight.yangtools.yang.parser.antlr.YangStatementParser.ArgumentContext;
22 import org.opendaylight.yangtools.yang.parser.antlr.YangStatementParser.QuotedStringContext;
23 import org.opendaylight.yangtools.yang.parser.antlr.YangStatementParser.UnquotedStringContext;
24 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
25 import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference;
26
27 /**
28  * Utilities for dealing with YANG statement argument strings, encapsulated in ANTLR grammar's ArgumentContext.
29  */
30 abstract class ArgumentContextUtils {
31     /**
32      * YANG 1.0 version of strings, which were not completely clarified in
33      * <a href="https://tools.ietf.org/html/rfc6020#section-6.1.3">RFC6020</a>.
34      */
35     private static final class RFC6020 extends ArgumentContextUtils {
36         private static final @NonNull RFC6020 INSTANCE = new RFC6020();
37
38         @Override
39         void checkDoubleQuoted(final String str, final StatementSourceReference ref, final int backslash) {
40             // No-op
41         }
42
43         @Override
44         void checkUnquoted(final String str, final StatementSourceReference ref) {
45             // No-op
46         }
47     }
48
49     /**
50      * YANG 1.1 version of strings, which were clarified in
51      * <a href="https://tools.ietf.org/html/rfc7950#section-6.1.3">RFC7950</a>.
52      */
53     // NOTE: the differences clarified lead to a proper ability to delegate this to ANTLR lexer, but that does not
54     //       understand versions and needs to work with both.
55     private static final class RFC7950 extends ArgumentContextUtils {
56         private static final CharMatcher ANYQUOTE_MATCHER = CharMatcher.anyOf("'\"");
57         private static final @NonNull RFC7950 INSTANCE = new RFC7950();
58
59         @Override
60         void checkDoubleQuoted(final String str, final StatementSourceReference ref, final int backslash) {
61             if (backslash < str.length() - 1) {
62                 int index = backslash;
63                 while (index != -1) {
64                     switch (str.charAt(index + 1)) {
65                         case 'n':
66                         case 't':
67                         case '\\':
68                         case '\"':
69                             index = str.indexOf('\\', index + 2);
70                             break;
71                         default:
72                             throw new SourceException(ref, "YANG 1.1: illegal double quoted string (%s). In double "
73                                 + "quoted string the backslash must be followed by one of the following character "
74                                 + "[n,t,\",\\], but was '%s'.", str, str.charAt(index + 1));
75                     }
76                 }
77             }
78         }
79
80         @Override
81         void checkUnquoted(final String str, final StatementSourceReference ref) {
82             SourceException.throwIf(ANYQUOTE_MATCHER.matchesAnyOf(str), ref,
83                 "YANG 1.1: unquoted string (%s) contains illegal characters", str);
84         }
85     }
86
87     private static final CharMatcher WHITESPACE_MATCHER = CharMatcher.whitespace();
88
89     private ArgumentContextUtils() {
90         // Hidden on purpose
91     }
92
93     static @NonNull ArgumentContextUtils forVersion(final YangVersion version) {
94         switch (version) {
95             case VERSION_1:
96                 return RFC6020.INSTANCE;
97             case VERSION_1_1:
98                 return RFC7950.INSTANCE;
99             default:
100                 throw new IllegalStateException("Unhandled version " + version);
101         }
102     }
103
104     // TODO: teach the only caller about versions, or provide common-enough idioms for its use case
105     static @NonNull ArgumentContextUtils rfc6020() {
106         return RFC6020.INSTANCE;
107     }
108
109     /*
110      * NOTE: this method we do not use convenience methods provided by generated parser code, but instead are making
111      *       based on the grammar assumptions. While this is more verbose, it cuts out a number of unnecessary code,
112      *       such as intermediate List allocation et al.
113      */
114     final @NonNull String stringFromStringContext(final ArgumentContext context, final StatementSourceReference ref) {
115         // Get first child, which we fully expect to exist and be a lexer token
116         final ParseTree firstChild = context.getChild(0);
117         if (firstChild instanceof UnquotedStringContext) {
118             // Simple case, just grab the text, as ANTLR has done all the heavy lifting
119             final String str = firstChild.getText();
120             checkUnquoted(str, ref);
121             return str;
122         }
123
124         verify(firstChild instanceof QuotedStringContext, "Unexpected shape of %s", context);
125         if (context.getChildCount() == 1) {
126             // No concatenation needed, special-case
127             return unquoteString((QuotedStringContext) firstChild, ref);
128         }
129
130         // Potentially-complex case of string quoting, escaping and concatenation.
131         return concatStrings(context, ref);
132     }
133
134     private String unquoteString(final QuotedStringContext context, final StatementSourceReference ref) {
135         final ParseTree secondChild = context.getChild(1);
136         verify(secondChild instanceof TerminalNode, "Unexpected shape of %s", context);
137         final Token secondToken = ((TerminalNode) secondChild).getSymbol();
138         final int type = secondToken.getType();
139         switch (type) {
140             case YangStatementParser.DQUOT_END:
141             case YangStatementParser.SQUOT_END:
142                 // We are missing actual body, hence this is an empty string
143                 return "";
144             case YangStatementParser.SQUOT_STRING:
145                 return secondChild.getText();
146             case YangStatementParser.DQUOT_STRING:
147                 // We should be looking at the first token, which is DQUOT_START, but since it is a single-character
148                 // token, let's not bother.
149                 return normalizeDoubleQuoted(secondChild.getText(), secondToken.getCharPositionInLine() - 1, ref);
150             default:
151                 throw new VerifyException("Unhandled token type " + type);
152         }
153     }
154
155     private String concatStrings(final ArgumentContext context, final StatementSourceReference ref) {
156         /*
157          * We have multiple fragments. Just search the tree. This code is equivalent to
158          *
159          *    context.quotedString().forEach(stringNode -> sb.append(unquoteString(stringNode, ref))
160          *
161          * except we minimize allocations which that would do.
162          */
163         final StringBuilder sb = new StringBuilder();
164         for (ParseTree child : context.children) {
165             if (child instanceof TerminalNode) {
166                 final TerminalNode childNode = (TerminalNode) child;
167                 switch (childNode.getSymbol().getType()) {
168                     case YangStatementParser.SEP:
169                     case YangStatementParser.PLUS:
170                         // Operator, which we are handling by concat
171                         break;
172                     default:
173                         throw new VerifyException("Unexpected symbol in " + childNode);
174                 }
175             } else {
176                 verify(child instanceof QuotedStringContext, "Unexpected fragment component %s", child);
177                 sb.append(unquoteString((QuotedStringContext) child, ref));
178             }
179         }
180         return sb.toString();
181     }
182
183     private String normalizeDoubleQuoted(final String str, final int dquot, final StatementSourceReference ref) {
184         // Whitespace normalization happens irrespective of further handling and has no effect on the result
185         final String stripped = trimWhitespace(str, dquot);
186
187         // Now we need to perform some amount of unescaping. This serves as a pre-check before we dispatch
188         // validation and processing (which will reuse the work we have done)
189         final int backslash = stripped.indexOf('\\');
190         return backslash == -1 ? stripped : unescape(ref, stripped, backslash);
191     }
192
193     /*
194      * NOTE: Enforcement and transformation logic done by these methods should logically reside in the lexer and ANTLR
195      *       account the for it with lexer modes. We do not want to force a re-lexing phase in the parser just because
196      *       we decided to let ANTLR do the work.
197      */
198     abstract void checkDoubleQuoted(String str, StatementSourceReference ref, int backslash);
199
200     abstract void checkUnquoted(String str, StatementSourceReference ref);
201
202     /*
203      * Unescape escaped double quotes, tabs, new line and backslash in the inner string and trim the result.
204      */
205     private String unescape(final StatementSourceReference ref, final String str, final int backslash) {
206         checkDoubleQuoted(str, ref, backslash);
207         StringBuilder sb = new StringBuilder(str.length());
208         unescapeBackslash(sb, str, backslash);
209         return sb.toString();
210     }
211
212     @VisibleForTesting
213     static void unescapeBackslash(final StringBuilder sb, final String str, final int backslash) {
214         String substring = str;
215         int backslashIndex = backslash;
216         while (true) {
217             int nextIndex = backslashIndex + 1;
218             if (backslashIndex != -1 && nextIndex < substring.length()) {
219                 replaceBackslash(sb, substring, nextIndex);
220                 substring = substring.substring(nextIndex + 1);
221                 if (substring.length() > 0) {
222                     backslashIndex = substring.indexOf('\\');
223                 } else {
224                     break;
225                 }
226             } else {
227                 sb.append(substring);
228                 break;
229             }
230         }
231     }
232
233     private static void replaceBackslash(final StringBuilder sb, final String str, final int nextAfterBackslash) {
234         int backslash = nextAfterBackslash - 1;
235         sb.append(str, 0, backslash);
236         final char c = str.charAt(nextAfterBackslash);
237         switch (c) {
238             case '\\':
239             case '"':
240                 sb.append(c);
241                 break;
242             case 't':
243                 sb.append('\t');
244                 break;
245             case 'n':
246                 sb.append('\n');
247                 break;
248             default:
249                 sb.append(str, backslash, nextAfterBackslash + 1);
250         }
251     }
252
253     @VisibleForTesting
254     static String trimWhitespace(final String str, final int dquot) {
255         final int firstBrk = str.indexOf('\n');
256         if (firstBrk == -1) {
257             return str;
258         }
259
260         // Okay, we may need to do some trimming, set up a builder and append the first segment
261         final int length = str.length();
262         final StringBuilder sb = new StringBuilder(length);
263
264         // Append first segment, which needs only tail-trimming
265         sb.append(str, 0, trimTrailing(str, 0, firstBrk)).append('\n');
266
267         // With that out of the way, setup our iteration state. The string segment we are looking at is
268         // str.substring(start, end), which is guaranteed not to include any line breaks, i.e. end <= brk unless we are
269         // at the last segment.
270         int start = firstBrk + 1;
271         int brk = str.indexOf('\n', start);
272
273         // Loop over inner strings
274         while (brk != -1) {
275             trimLeadingAndAppend(sb, dquot, str, start, trimTrailing(str, start, brk)).append('\n');
276             start = brk + 1;
277             brk = str.indexOf('\n', start);
278         }
279
280         return trimLeadingAndAppend(sb, dquot, str, start, length).toString();
281     }
282
283     private static StringBuilder trimLeadingAndAppend(final StringBuilder sb, final int dquot, final String str,
284             final int start, final int end) {
285         int offset = start;
286         int pos = 0;
287
288         while (pos <= dquot) {
289             if (offset == end) {
290                 // We ran out of data, nothing to append
291                 return sb;
292             }
293
294             final char ch = str.charAt(offset);
295             if (ch == '\t') {
296                 // tabs are to be treated as 8 spaces
297                 pos += 8;
298             } else if (WHITESPACE_MATCHER.matches(ch)) {
299                 pos++;
300             } else {
301                 break;
302             }
303
304             offset++;
305         }
306
307         // We have expanded beyond double quotes, push equivalent spaces
308         while (pos - 1 > dquot) {
309             sb.append(' ');
310             pos--;
311         }
312
313         return sb.append(str, offset, end);
314     }
315
316     private static int trimTrailing(final String str, final int start, final int end) {
317         int ret = end;
318         while (ret > start) {
319             final int prev = ret - 1;
320             if (!WHITESPACE_MATCHER.matches(str.charAt(prev))) {
321                 break;
322             }
323             ret = prev;
324         }
325         return ret;
326     }
327 }