1d12292edb2624ee12b7d1c469c44102ab617dfc
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / fromxml / ObjectNameAttributeReadingStrategy.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.netconf.confignetconfconnector.mapping.attributes.fromxml;
9
10 import com.google.common.base.Preconditions;
11
12 import com.google.common.base.Strings;
13 import java.util.List;
14 import java.util.Map;
15
16 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
17 import org.opendaylight.controller.netconf.api.xml.XmlNetconfConstants;
18 import org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.mapping.ObjectNameAttributeMappingStrategy;
19 import org.opendaylight.controller.netconf.util.xml.XmlElement;
20
21 public class ObjectNameAttributeReadingStrategy extends AbstractAttributeReadingStrategy {
22
23     private static final Object PREFIX_SEPARATOR = ":";
24
25     public ObjectNameAttributeReadingStrategy(String nullableDefault) {
26         super(nullableDefault);
27     }
28
29     @Override
30     AttributeConfigElement readElementHook(List<XmlElement> configNodes) throws NetconfDocumentedException {
31
32         XmlElement firstChild = configNodes.get(0);
33         Preconditions.checkState(configNodes.size() == 1, "This element should be present only once " + firstChild
34                 + " but was " + configNodes.size());
35
36         Preconditions.checkNotNull(firstChild, "Element %s should be present", firstChild);
37         return AttributeConfigElement.create(getNullableDefault(), resolve(firstChild));
38     }
39
40     private ObjectNameAttributeMappingStrategy.MappedDependency resolve(XmlElement firstChild) throws NetconfDocumentedException{
41         XmlElement typeElement = firstChild.getOnlyChildElementWithSameNamespace(XmlNetconfConstants.TYPE_KEY);
42         Map.Entry<String, String> prefixNamespace = typeElement.findNamespaceOfTextContent();
43
44         String serviceName = checkPrefixAndExtractServiceName(typeElement, prefixNamespace);
45
46         XmlElement nameElement = firstChild.getOnlyChildElementWithSameNamespace(XmlNetconfConstants.NAME_KEY);
47         String dependencyName = nameElement.getTextContent();
48
49         return new ObjectNameAttributeMappingStrategy.MappedDependency(prefixNamespace.getValue(), serviceName,
50                 dependencyName);
51     }
52
53     public static String checkPrefixAndExtractServiceName(XmlElement typeElement, Map.Entry<String, String> prefixNamespace) throws NetconfDocumentedException {
54         String serviceName = typeElement.getTextContent();
55         // FIXME: comparing Entry with String:
56         Preconditions.checkState(!Strings.isNullOrEmpty(prefixNamespace.getKey()), "Service %s value not prefixed with namespace",
57                 XmlNetconfConstants.TYPE_KEY);
58         String prefix = prefixNamespace.getKey() + PREFIX_SEPARATOR;
59         Preconditions.checkState(serviceName.startsWith(prefix),
60                 "Service %s not correctly prefixed, expected %s, but was %s", XmlNetconfConstants.TYPE_KEY, prefix,
61                 serviceName);
62         serviceName = serviceName.substring(prefix.length());
63         return serviceName;
64     }
65
66 }