Bug 309 : Fixed incorrect serialization of instance identifier
[yangtools.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     public static final String PACKAGE_PREFIX = "org.opendaylight.yang.gen.v1";
35
36     private static final Splitter SPACE_SPLITTER = Splitter.on(" ").omitEmptyStrings().trimResults();
37
38     public static final String getMethodName(QName name) {
39         checkArgument(name != null, "Name should not be null.");
40         return getMethodName(name.getLocalName());
41     }
42
43     public static final String getClassName(String localName) {
44         checkArgument(localName != null, "Name should not be null.");
45         return toFirstUpper(toCamelCase(localName));
46     }
47
48     public static final String getMethodName(String yangIdentifier) {
49         checkArgument(yangIdentifier != null,"Identifier should not be null");
50         return toFirstLower(toCamelCase(yangIdentifier));
51     }
52
53     public static final String getClassName(QName name) {
54         checkArgument(name != null, "Name should not be null.");
55         return toFirstUpper(toCamelCase(name.getLocalName()));
56     }
57
58     public static String getPropertyName(String yangIdentifier) {
59         final String potential = toFirstLower(toCamelCase(yangIdentifier));
60         if("class".equals(potential)) {
61             return "xmlClass";
62         }
63         return potential;
64     }
65
66     private static final String toCamelCase(String rawString) {
67         checkArgument(rawString != null, "String should not be null");
68         Iterable<String> components = SPACE_SPLITTER.split(rawString.replace('-', ' ').replace('_', ' '));
69         StringBuilder builder = new StringBuilder();
70         for (String comp : components) {
71             builder.append(toFirstUpper(comp));
72         }
73         return builder.toString();
74     }
75
76     /**
77      * Returns the {@link String} {@code s} with an
78      * {@link Character#isUpperCase(char) upper case} first character. This
79      * function is null-safe.
80      * 
81      * @param s
82      *            the string that should get an upper case first character. May
83      *            be <code>null</code>.
84      * @return the {@link String} {@code s} with an upper case first character
85      *         or <code>null</code> if the input {@link String} {@code s} was
86      *         <code>null</code>.
87      */
88     private static String toFirstUpper(String s) {
89         if (s == null || s.length() == 0)
90             return s;
91         if (Character.isUpperCase(s.charAt(0)))
92             return s;
93         if (s.length() == 1)
94             return s.toUpperCase();
95         return s.substring(0, 1).toUpperCase() + s.substring(1);
96     }
97
98     /**
99      * Returns the {@link String} {@code s} with an
100      * {@link Character#isLowerCase(char) lower case} first character. This
101      * function is null-safe.
102      * 
103      * @param s
104      *            the string that should get an lower case first character. May
105      *            be <code>null</code>.
106      * @return the {@link String} {@code s} with an lower case first character
107      *         or <code>null</code> if the input {@link String} {@code s} was
108      *         <code>null</code>.
109      */
110     private static String toFirstLower(String s) {
111         if (s == null || s.length() == 0)
112             return s;
113         if (Character.isLowerCase(s.charAt(0)))
114             return s;
115         if (s.length() == 1)
116             return s.toLowerCase();
117         return s.substring(0, 1).toLowerCase() + s.substring(1);
118     }
119 }