Fixed bug when getter for YANG leaf named class colided with getClass()
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / 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.yangtools.yang.binding;
9
10 import java.util.Set;
11
12 import org.opendaylight.yangtools.yang.common.QName;
13
14 import com.google.common.base.Splitter;
15 import com.google.common.collect.ImmutableSet;
16
17 import static com.google.common.base.Preconditions.*;
18
19 public final class BindingMapping {
20
21     public static final String VERSION = "0.6";
22
23     public static final Set<String> JAVA_RESERVED_WORDS = ImmutableSet.of("abstract", "assert", "boolean", "break",
24             "byte", "case", "catch", "char", "class", "const", "continue", "default", "double", "do", "else", "enum",
25             "extends", "false", "final", "finally", "float", "for", "goto", "if", "implements", "import", "instanceof",
26             "int", "interface", "long", "native", "new", "null", "package", "private", "protected", "public", "return",
27             "short", "static", "strictfp", "super", "switch", "synchronized", "this", "throw", "throws", "transient",
28             "true", "try", "void", "volatile", "while");
29
30     public static final String DATA_ROOT_SUFFIX = "Data";
31     public static final String RPC_SERVICE_SUFFIX = "Service";
32     public static final String NOTIFICATION_LISTENER_SUFFIX = "Listener";
33     public static final String QNAME_STATIC_FIELD_NAME = "QNAME";
34
35     private static final Splitter SPACE_SPLITTER = Splitter.on(" ").omitEmptyStrings().trimResults();
36
37     public static final String getMethodName(QName name) {
38         checkArgument(name != null, "Name should not be null.");
39         return getMethodName(name.getLocalName());
40     }
41
42     public static final String getClassName(String localName) {
43         checkArgument(localName != null, "Name should not be null.");
44         return toFirstUpper(toCamelCase(localName));
45     }
46
47     public static final String getMethodName(String yangIdentifier) {
48         checkArgument(yangIdentifier != null,"Identifier should not be null");
49         return toFirstLower(toCamelCase(yangIdentifier));
50     }
51
52     public static final String getClassName(QName name) {
53         checkArgument(name != null, "Name should not be null.");
54         return toFirstUpper(toCamelCase(name.getLocalName()));
55     }
56
57     public static String getPropertyName(String yangIdentifier) {
58         final String potential = toFirstLower(toCamelCase(yangIdentifier));
59         if("class".equals(potential)) {
60             return "xmlClass";
61         }
62         return potential;
63     }
64
65     private static final String toCamelCase(String rawString) {
66         checkArgument(rawString != null, "String should not be null");
67         Iterable<String> components = SPACE_SPLITTER.split(rawString.replace('-', ' ').replace('_', ' '));
68         StringBuilder builder = new StringBuilder();
69         for (String comp : components) {
70             builder.append(toFirstUpper(comp));
71         }
72         return builder.toString();
73     }
74
75     /**
76      * Returns the {@link String} {@code s} with an
77      * {@link Character#isUpperCase(char) upper case} first character. This
78      * function is null-safe.
79      * 
80      * @param s
81      *            the string that should get an upper case first character. May
82      *            be <code>null</code>.
83      * @return the {@link String} {@code s} with an upper case first character
84      *         or <code>null</code> if the input {@link String} {@code s} was
85      *         <code>null</code>.
86      */
87     private static String toFirstUpper(String s) {
88         if (s == null || s.length() == 0)
89             return s;
90         if (Character.isUpperCase(s.charAt(0)))
91             return s;
92         if (s.length() == 1)
93             return s.toUpperCase();
94         return s.substring(0, 1).toUpperCase() + s.substring(1);
95     }
96
97     /**
98      * Returns the {@link String} {@code s} with an
99      * {@link Character#isLowerCase(char) lower case} first character. This
100      * function is null-safe.
101      * 
102      * @param s
103      *            the string that should get an lower case first character. May
104      *            be <code>null</code>.
105      * @return the {@link String} {@code s} with an lower case first character
106      *         or <code>null</code> if the input {@link String} {@code s} was
107      *         <code>null</code>.
108      */
109     private static String toFirstLower(String s) {
110         if (s == null || s.length() == 0)
111             return s;
112         if (Character.isLowerCase(s.charAt(0)))
113             return s;
114         if (s.length() == 1)
115             return s.toLowerCase();
116         return s.substring(0, 1).toLowerCase() + s.substring(1);
117     }
118 }