Remove redundant string operations
[mdsal.git] / binding / mdsal-binding-spec-util / src / main / java / org / opendaylight / mdsal / binding / spec / naming / BindingMapping.java
1 /*
2  * Copyright (c) 2013 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.mdsal.binding.spec.naming;
9
10 import static com.google.common.base.Preconditions.checkArgument;
11
12 import com.google.common.annotations.Beta;
13 import com.google.common.base.CharMatcher;
14 import com.google.common.base.Splitter;
15 import com.google.common.collect.BiMap;
16 import com.google.common.collect.HashBiMap;
17 import com.google.common.collect.ImmutableSet;
18 import com.google.common.collect.Interner;
19 import com.google.common.collect.Interners;
20 import java.util.Collection;
21 import java.util.Locale;
22 import java.util.Optional;
23 import java.util.Set;
24 import java.util.regex.Matcher;
25 import java.util.regex.Pattern;
26 import org.opendaylight.yangtools.yang.binding.Augmentable;
27 import org.opendaylight.yangtools.yang.binding.Identifiable;
28 import org.opendaylight.yangtools.yang.common.QName;
29 import org.opendaylight.yangtools.yang.common.QNameModule;
30 import org.opendaylight.yangtools.yang.common.Revision;
31
32 @Beta
33 public final class BindingMapping {
34
35     public static final String VERSION = "0.6";
36
37     public static final Set<String> JAVA_RESERVED_WORDS = ImmutableSet.of(
38         // https://docs.oracle.com/javase/specs/jls/se9/html/jls-3.html#jls-3.9
39         "abstract", "assert", "boolean", "break", "byte", "case", "catch", "char", "class", "const", "continue",
40         "default", "do", "double", "else", "enum", "extends", "final", "finally", "float", "for", "goto", "if",
41         "implements", "import", "instanceof", "int", "interface", "long", "native", "new", "package", "private",
42         "protected", "public", "return", "short", "static", "strictfp", "super", "switch", "synchronized", "this",
43         "throw", "throws", "transient", "try", "void", "volatile", "while", "_",
44         // https://docs.oracle.com/javase/specs/jls/se9/html/jls-3.html#jls-3.10.3
45         "false", "true",
46         // https://docs.oracle.com/javase/specs/jls/se9/html/jls-3.html#jls-3.10.7
47         "null");
48
49     public static final String DATA_ROOT_SUFFIX = "Data";
50     public static final String RPC_SERVICE_SUFFIX = "Service";
51     public static final String NOTIFICATION_LISTENER_SUFFIX = "Listener";
52     public static final String QNAME_STATIC_FIELD_NAME = "QNAME";
53     public static final String PACKAGE_PREFIX = "org.opendaylight.yang.gen.v1";
54     public static final String AUGMENTATION_FIELD = "augmentation";
55
56     private static final Splitter CAMEL_SPLITTER = Splitter.on(CharMatcher.anyOf(" _.-/").precomputed())
57             .omitEmptyStrings().trimResults();
58     private static final Pattern COLON_SLASH_SLASH = Pattern.compile("://", Pattern.LITERAL);
59     private static final String QUOTED_DOT = Matcher.quoteReplacement(".");
60     private static final Splitter DOT_SPLITTER = Splitter.on('.');
61
62     public static final String MODULE_INFO_CLASS_NAME = "$YangModuleInfoImpl";
63     public static final String MODULE_INFO_QNAMEOF_METHOD_NAME = "qnameOf";
64     public static final String MODEL_BINDING_PROVIDER_CLASS_NAME = "$YangModelBindingProvider";
65
66     /**
67      * Name of {@link Augmentable#augmentation(Class)}.
68      */
69     public static final String AUGMENTABLE_AUGMENTATION_NAME = "augmentation";
70
71     /**
72      * Name of {@link Identifiable#key()}.
73      */
74     public static final String IDENTIFIABLE_KEY_NAME = "key";
75
76     public static final String RPC_INPUT_SUFFIX = "Input";
77     public static final String RPC_OUTPUT_SUFFIX = "Output";
78
79     private static final Interner<String> PACKAGE_INTERNER = Interners.newWeakInterner();
80
81     private BindingMapping() {
82         throw new UnsupportedOperationException("Utility class should not be instantiated");
83     }
84
85     public static String getRootPackageName(final QName module) {
86         return getRootPackageName(module.getModule());
87     }
88
89     public static String getRootPackageName(final QNameModule module) {
90         checkArgument(module != null, "Module must not be null");
91         checkArgument(module.getRevision() != null, "Revision must not be null");
92         checkArgument(module.getNamespace() != null, "Namespace must not be null");
93         final StringBuilder packageNameBuilder = new StringBuilder();
94
95         packageNameBuilder.append(BindingMapping.PACKAGE_PREFIX);
96         packageNameBuilder.append('.');
97
98         String namespace = module.getNamespace().toString();
99         namespace = COLON_SLASH_SLASH.matcher(namespace).replaceAll(QUOTED_DOT);
100
101         final char[] chars = namespace.toCharArray();
102         for (int i = 0; i < chars.length; ++i) {
103             switch (chars[i]) {
104                 case '/':
105                 case ':':
106                 case '-':
107                 case '@':
108                 case '$':
109                 case '#':
110                 case '\'':
111                 case '*':
112                 case '+':
113                 case ',':
114                 case ';':
115                 case '=':
116                     chars[i] = '.';
117                     break;
118                 default:
119                     // no-op
120             }
121         }
122
123         packageNameBuilder.append(chars);
124         if (chars[chars.length - 1] != '.') {
125             packageNameBuilder.append('.');
126         }
127
128         final Optional<Revision> optRev = module.getRevision();
129         if (optRev.isPresent()) {
130             // Revision is in format 2017-10-26, we want the output to be 171026, which is a matter of picking the
131             // right characters.
132             final String rev = optRev.get().toString();
133             checkArgument(rev.length() == 10, "Unsupported revision %s", rev);
134             packageNameBuilder.append("rev").append(rev, 2, 4).append(rev, 5, 7).append(rev.substring(8));
135         } else {
136             // No-revision packages are special
137             packageNameBuilder.append("norev");
138         }
139
140         return normalizePackageName(packageNameBuilder.toString());
141     }
142
143     public static String normalizePackageName(final String packageName) {
144         if (packageName == null) {
145             return null;
146         }
147
148         final StringBuilder builder = new StringBuilder();
149         boolean first = true;
150
151         for (String p : DOT_SPLITTER.split(packageName.toLowerCase())) {
152             if (first) {
153                 first = false;
154             } else {
155                 builder.append('.');
156             }
157
158             if (Character.isDigit(p.charAt(0)) || BindingMapping.JAVA_RESERVED_WORDS.contains(p)) {
159                 builder.append('_');
160             }
161             builder.append(p);
162         }
163
164         // Prevent duplication of input string
165         return PACKAGE_INTERNER.intern(builder.toString());
166     }
167
168     public static String getClassName(final String localName) {
169         checkArgument(localName != null, "Name should not be null.");
170         return toFirstUpper(toCamelCase(localName));
171     }
172
173     public static String getClassName(final QName name) {
174         checkArgument(name != null, "Name should not be null.");
175         return toFirstUpper(toCamelCase(name.getLocalName()));
176     }
177
178     public static String getMethodName(final String yangIdentifier) {
179         checkArgument(yangIdentifier != null,"Identifier should not be null");
180         return toFirstLower(toCamelCase(yangIdentifier));
181     }
182
183     public static String getMethodName(final QName name) {
184         checkArgument(name != null, "Name should not be null.");
185         return getMethodName(name.getLocalName());
186     }
187
188     public static String getGetterSuffix(final QName name) {
189         checkArgument(name != null, "Name should not be null.");
190         final String candidate = toFirstUpper(toCamelCase(name.getLocalName()));
191         return "Class".equals(candidate) ? "XmlClass" : candidate;
192     }
193
194     public static String getPropertyName(final String yangIdentifier) {
195         final String potential = toFirstLower(toCamelCase(yangIdentifier));
196         if ("class".equals(potential)) {
197             return "xmlClass";
198         }
199         return potential;
200     }
201
202     private static String toCamelCase(final String rawString) {
203         checkArgument(rawString != null, "String should not be null");
204         Iterable<String> components = CAMEL_SPLITTER.split(rawString);
205         StringBuilder builder = new StringBuilder();
206         for (String comp : components) {
207             builder.append(toFirstUpper(comp));
208         }
209         return checkNumericPrefix(builder.toString());
210     }
211
212     private static String checkNumericPrefix(final String rawString) {
213         if (rawString == null || rawString.isEmpty()) {
214             return rawString;
215         }
216         char firstChar = rawString.charAt(0);
217         if (firstChar >= '0' && firstChar <= '9') {
218             return "_" + rawString;
219         } else {
220             return rawString;
221         }
222     }
223
224     /**
225      * Returns the {@link String} {@code s} with an {@link Character#isUpperCase(char) upper case} first character. This
226      * function is null-safe.
227      *
228      * @param str the string that should get an upper case first character. May be <code>null</code>.
229      * @return the {@link String} {@code str} with an upper case first character or <code>null</code> if the input
230      *         {@link String} {@code str} was <code>null</code>.
231      */
232     public static String toFirstUpper(final String str) {
233         if (str == null || str.length() == 0) {
234             return str;
235         }
236         if (Character.isUpperCase(str.charAt(0))) {
237             return str;
238         }
239         if (str.length() == 1) {
240             return str.toUpperCase();
241         }
242         return str.substring(0, 1).toUpperCase() + str.substring(1);
243     }
244
245     /**
246      * Returns the {@link String} {@code s} with a {@link Character#isLowerCase(char) lower case} first character. This
247      * function is null-safe.
248      *
249      * @param str the string that should get an lower case first character. May be <code>null</code>.
250      * @return the {@link String} {@code str} with an lower case first character or <code>null</code> if the input
251      *         {@link String} {@code str} was <code>null</code>.
252      */
253     private static String toFirstLower(final String str) {
254         if (str == null || str.length() == 0) {
255             return str;
256         }
257         if (Character.isLowerCase(str.charAt(0))) {
258             return str;
259         }
260         if (str.length() == 1) {
261             return str.toLowerCase();
262         }
263         return str.substring(0, 1).toLowerCase() + str.substring(1);
264     }
265
266     /**
267      * Returns Java identifiers, conforming to JLS9 Section 3.8 to use for specified YANG assigned names
268      * (RFC7950 Section 9.6.4). This method considers two distinct encodings: one the pre-Fluorine mapping, which is
269      * okay and convenient for sane strings, and an escaping-based bijective mapping which works for all possible
270      * Unicode strings.
271      *
272      * @param assignedNames Collection of assigned names
273      * @return A BiMap keyed by assigned name, with Java identifiers as values
274      * @throws NullPointerException if assignedNames is null or contains null items
275      * @throws IllegalArgumentException if any of the names is empty
276      */
277     public static BiMap<String, String> mapEnumAssignedNames(final Collection<String> assignedNames) {
278         /*
279          * Original mapping assumed strings encountered are identifiers, hence it used getClassName to map the names
280          * and that function is not an injection -- this is evidenced in MDSAL-208 and results in a failure to compile
281          * generated code. If we encounter such a conflict or if the result is not a valid identifier (like '*'), we
282          * abort and switch the mapping schema to mapEnumAssignedName(), which is a bijection.
283          *
284          * Note that assignedNames can contain duplicates, which must not trigger a duplication fallback.
285          */
286         final BiMap<String, String> javaToYang = HashBiMap.create(assignedNames.size());
287         boolean valid = true;
288         for (String name : assignedNames) {
289             checkArgument(!name.isEmpty());
290             if (!javaToYang.containsValue(name)) {
291                 final String mappedName = getClassName(name);
292                 if (!isValidJavaIdentifier(mappedName) || javaToYang.forcePut(mappedName, name) != null) {
293                     valid = false;
294                     break;
295                 }
296             }
297         }
298
299         if (!valid) {
300             // Fall back to bijective mapping
301             javaToYang.clear();
302             for (String name : assignedNames) {
303                 javaToYang.put(mapEnumAssignedName(name), name);
304             }
305         }
306
307         return javaToYang.inverse();
308     }
309
310     // See https://docs.oracle.com/javase/specs/jls/se9/html/jls-3.html#jls-3.8
311     private static boolean isValidJavaIdentifier(final String str) {
312         return !str.isEmpty() && !JAVA_RESERVED_WORDS.contains(str)
313                 && Character.isJavaIdentifierStart(str.codePointAt(0))
314                 && str.codePoints().skip(1).allMatch(Character::isJavaIdentifierPart);
315     }
316
317     private static String mapEnumAssignedName(final String assignedName) {
318         checkArgument(!assignedName.isEmpty());
319
320         // Mapping rules:
321         // - if the string is a valid java identifier and does not contain '$', use it as-is
322         if (assignedName.indexOf('$') == -1 && isValidJavaIdentifier(assignedName)) {
323             return assignedName;
324         }
325
326         // - otherwise prefix it with '$' and replace any invalid character (including '$') with '$XX$', where XX is
327         //   hex-encoded unicode codepoint (including plane, stripping leading zeroes)
328         final StringBuilder sb = new StringBuilder().append('$');
329         assignedName.codePoints().forEachOrdered(codePoint -> {
330             if (codePoint == '$' || !Character.isJavaIdentifierPart(codePoint)) {
331                 sb.append('$').append(Integer.toHexString(codePoint).toUpperCase(Locale.ROOT)).append('$');
332             } else {
333                 sb.appendCodePoint(codePoint);
334             }
335         });
336         return sb.toString();
337     }
338 }