BUG-2453 Enable nested enums in configuration
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / resolving / CompositeAttributeResolvingStrategy.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
9 package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.resolving;
10
11 import com.google.common.base.Optional;
12 import com.google.common.base.Preconditions;
13 import com.google.common.collect.Maps;
14 import java.util.Map;
15 import javax.management.openmbean.CompositeDataSupport;
16 import javax.management.openmbean.CompositeType;
17 import javax.management.openmbean.OpenDataException;
18 import javax.management.openmbean.OpenType;
19 import javax.management.openmbean.SimpleType;
20 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
21 import org.opendaylight.controller.netconf.confignetconfconnector.util.Util;
22 import org.slf4j.Logger;
23 import org.slf4j.LoggerFactory;
24
25 class CompositeAttributeResolvingStrategy extends
26         AbstractAttributeResolvingStrategy<CompositeDataSupport, CompositeType> {
27     private final Map<String, AttributeResolvingStrategy<?, ? extends OpenType<?>>> innerTypes;
28     private final Map<String, String> yangToJavaAttrMapping;
29
30     private static final Logger LOG = LoggerFactory.getLogger(CompositeAttributeResolvingStrategy.class);
31
32     CompositeAttributeResolvingStrategy(Map<String, AttributeResolvingStrategy<?, ? extends OpenType<?>>> innerTypes,
33             CompositeType openType, Map<String, String> yangToJavaAttrMapping) {
34         super(openType);
35         this.innerTypes = innerTypes;
36         this.yangToJavaAttrMapping = yangToJavaAttrMapping;
37     }
38
39     @Override
40     public String toString() {
41         return "ResolvedCompositeAttribute [" + innerTypes + "]";
42     }
43
44     @Override
45     public Optional<CompositeDataSupport> parseAttribute(String attrName, Object value) throws NetconfDocumentedException {
46
47         if (value == null) {
48             return Optional.absent();
49         }
50
51         Util.checkType(value, Map.class);
52         Map<?, ?> valueMap = (Map<?, ?>) value;
53         valueMap = preprocessValueMap(valueMap);
54
55         Map<String, Object> items = Maps.newHashMap();
56         Map<String, OpenType<?>> openTypes = Maps.newHashMap();
57
58         final String[] names = new String[getOpenType().keySet().size()];
59         OpenType<?>[] itemTypes = new OpenType[names.length];
60         int i = 0;
61
62         for (Object innerAttrName : innerTypes.keySet()) {
63             Preconditions.checkState(innerAttrName instanceof String, "Attribute name must be string");
64             String innerAttrNameStr = (String) innerAttrName;
65
66             AttributeResolvingStrategy<?, ? extends OpenType<?>> attributeResolvingStrategy = innerTypes
67                     .get(innerAttrName);
68
69             Object valueToParse = valueMap.get(innerAttrName);
70
71             Optional<?> parsedInnerValue = attributeResolvingStrategy.parseAttribute(innerAttrNameStr, valueToParse);
72
73             if(attributeResolvingStrategy instanceof EnumAttributeResolvingStrategy) {
74                 // Open type for enum contain the class name necessary for its resolution, however in a DTO
75                 // the open type need to be just SimpleType.STRING so that JMX is happy
76                 // After the enum attribute is resolved, change its open type back to STRING
77                 openTypes.put(innerAttrNameStr, SimpleType.STRING);
78             } else {
79                 openTypes.put(innerAttrNameStr, attributeResolvingStrategy.getOpenType());
80             }
81
82             items.put(yangToJavaAttrMapping.get(innerAttrNameStr),
83                     parsedInnerValue.isPresent() ? parsedInnerValue.get() : null);
84
85             // fill names + item types in order to reconstruct the open type for current attribute
86             names[i] = yangToJavaAttrMapping.get(innerAttrNameStr);
87             itemTypes[i] = openTypes.get(innerAttrNameStr);
88             i++;
89         }
90
91         CompositeDataSupport parsedValue;
92         try {
93             LOG.trace("Attribute {} with open type {}. Reconstructing open type.", attrName, getOpenType());
94             setOpenType(new CompositeType(getOpenType().getTypeName(), getOpenType().getDescription(), names, names, itemTypes));
95             LOG.debug("Attribute {} with open type {}. Open type reconstructed to {}", attrName, getOpenType(), getOpenType());
96             parsedValue = new CompositeDataSupport(getOpenType(), items);
97         } catch (OpenDataException e) {
98             throw new IllegalStateException("An error occurred during restoration of composite type " + this
99                     + " for attribute " + attrName + " from value " + value, e);
100         }
101
102         LOG.debug("Attribute {} : {} parsed to type {} as {}", attrName, value, getOpenType(), parsedValue);
103
104         return Optional.of(parsedValue);
105     }
106
107
108     protected Map<?, ?> preprocessValueMap(Map<?, ?> valueMap) {
109         return valueMap;
110     }
111
112
113 }