Initial code drop of yang model driven configuration system
[controller.git] / opendaylight / config / yang-jmx-generator / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / attribute / SimpleTypeResolver.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.controller.config.yangjmxgenerator.attribute;
9
10 import java.math.BigDecimal;
11 import java.math.BigInteger;
12 import java.util.Date;
13 import java.util.Map;
14
15 import javax.management.openmbean.SimpleType;
16
17 import org.opendaylight.yangtools.sal.binding.model.api.Type;
18
19 import com.google.common.base.Preconditions;
20 import com.google.common.collect.Maps;
21
22 public class SimpleTypeResolver {
23
24     public static SimpleType<?> getSimpleType(Type type) {
25         SimpleType<?> expectedSimpleType = JAVA_TYPE_TO_SIMPLE_TYPE.get(type
26                 .getFullyQualifiedName());
27         Preconditions.checkState(expectedSimpleType != null,
28                 "Cannot find simple type for " + type.getFullyQualifiedName());
29         return expectedSimpleType;
30     }
31
32     public static SimpleType<?> getSimpleType(String fullyQualifiedName) {
33         SimpleType<?> expectedSimpleType = JAVA_TYPE_TO_SIMPLE_TYPE
34                 .get(fullyQualifiedName);
35         Preconditions.checkState(expectedSimpleType != null,
36                 "Cannot find simple type for " + fullyQualifiedName);
37         return expectedSimpleType;
38     }
39
40     private static final Map<String, SimpleType<?>> JAVA_TYPE_TO_SIMPLE_TYPE = Maps
41             .newHashMap();
42     static {
43         // TODO add all
44         JAVA_TYPE_TO_SIMPLE_TYPE.put(Integer.class.getName(),
45                 SimpleType.INTEGER);
46         JAVA_TYPE_TO_SIMPLE_TYPE.put(int.class.getName(), SimpleType.INTEGER);
47         JAVA_TYPE_TO_SIMPLE_TYPE.put(Short.class.getName(), SimpleType.SHORT);
48         JAVA_TYPE_TO_SIMPLE_TYPE.put(short.class.getName(), SimpleType.SHORT);
49         JAVA_TYPE_TO_SIMPLE_TYPE.put(Long.class.getName(), SimpleType.LONG);
50         JAVA_TYPE_TO_SIMPLE_TYPE.put(long.class.getName(), SimpleType.LONG);
51         JAVA_TYPE_TO_SIMPLE_TYPE.put(String.class.getName(), SimpleType.STRING);
52         JAVA_TYPE_TO_SIMPLE_TYPE.put(Boolean.class.getName(),
53                 SimpleType.BOOLEAN);
54         JAVA_TYPE_TO_SIMPLE_TYPE.put(boolean.class.getName(),
55                 SimpleType.BOOLEAN);
56         JAVA_TYPE_TO_SIMPLE_TYPE.put(BigInteger.class.getName(),
57                 SimpleType.BIGINTEGER);
58         JAVA_TYPE_TO_SIMPLE_TYPE.put(BigDecimal.class.getName(),
59                 SimpleType.BIGDECIMAL);
60         JAVA_TYPE_TO_SIMPLE_TYPE.put(Byte.class.getName(), SimpleType.BYTE);
61         JAVA_TYPE_TO_SIMPLE_TYPE.put(byte.class.getName(), SimpleType.BYTE);
62         JAVA_TYPE_TO_SIMPLE_TYPE.put(Date.class.getName(), SimpleType.DATE);
63         JAVA_TYPE_TO_SIMPLE_TYPE.put(Double.class.getName(), SimpleType.DOUBLE);
64         JAVA_TYPE_TO_SIMPLE_TYPE.put(double.class.getName(), SimpleType.DOUBLE);
65     }
66
67 }