Remove CSS code
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / resolving / ArrayAttributeResolvingStrategy.java
diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/ArrayAttributeResolvingStrategy.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/ArrayAttributeResolvingStrategy.java
deleted file mode 100644 (file)
index ec2b665..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (c) 2015, 2017 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.config.facade.xml.mapping.attributes.resolving;
-
-import com.google.common.base.Optional;
-import java.lang.reflect.Array;
-import java.util.List;
-import javax.management.openmbean.ArrayType;
-import javax.management.openmbean.CompositeDataSupport;
-import javax.management.openmbean.CompositeType;
-import javax.management.openmbean.OpenDataException;
-import javax.management.openmbean.OpenType;
-import org.opendaylight.controller.config.facade.xml.util.Util;
-import org.opendaylight.controller.config.util.xml.DocumentedException;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public final class ArrayAttributeResolvingStrategy extends AbstractAttributeResolvingStrategy<Object, ArrayType<?>> {
-
-    private final AttributeResolvingStrategy<?, ? extends OpenType<?>> innerTypeResolvingStrategy;
-
-    private static final Logger LOG = LoggerFactory.getLogger(ArrayAttributeResolvingStrategy.class);
-
-    public ArrayAttributeResolvingStrategy(final AttributeResolvingStrategy<?, ? extends OpenType<?>> innerTypeResolved,
-            final ArrayType<?> openType) {
-        super(openType);
-        this.innerTypeResolvingStrategy = innerTypeResolved;
-    }
-
-    @Override
-    public Optional<Object> parseAttribute(final String attrName, final Object value) throws DocumentedException {
-        if (value == null) {
-            return Optional.absent();
-        }
-
-        Util.checkType(value, List.class);
-        List<?> valueList = (List<?>) value;
-
-        Class<?> innerTypeClass = null;
-
-        if (innerTypeResolvingStrategy.getOpenType() instanceof CompositeType) {
-            innerTypeClass = CompositeDataSupport.class;
-        } else {
-            try {
-                innerTypeClass = Class.forName(getOpenType().getElementOpenType().getClassName());
-            } catch (final ClassNotFoundException e) {
-                throw new IllegalStateException(
-                        "Unable to locate class for " + getOpenType().getElementOpenType().getClassName(), e);
-            }
-        }
-
-        Object parsedArray = null;
-
-        if (getOpenType().isPrimitiveArray()) {
-            Class<?> primitiveType = getPrimitiveType(innerTypeClass);
-            parsedArray = Array.newInstance(primitiveType, valueList.size());
-        } else {
-            parsedArray = Array.newInstance(innerTypeClass, valueList.size());
-        }
-
-        int index = 0;
-        for (Object innerValue : valueList) {
-            Optional<?> parsedElement = innerTypeResolvingStrategy.parseAttribute(attrName + "_" + index, innerValue);
-            if (!parsedElement.isPresent()) {
-                continue;
-            }
-            Array.set(parsedArray, index, parsedElement.get());
-            index++;
-        }
-
-        // Rebuild open type. Underlying composite types might have changed
-        if (innerTypeResolvingStrategy.getOpenType() instanceof CompositeType) {
-            try {
-                final ArrayType<?> openType = new ArrayType<>(getOpenType().getDimension(),
-                        innerTypeResolvingStrategy.getOpenType());
-                setOpenType(openType);
-            } catch (final OpenDataException e) {
-                throw new IllegalStateException("An error occurred during restoration of array type " + this
-                        + " for attribute " + attrName + " from value " + value, e);
-            }
-        }
-
-        LOG.debug("Attribute {} : {} parsed to type {} as {}", attrName, value, getOpenType(),
-                toStringArray(parsedArray));
-
-        return Optional.of(parsedArray);
-    }
-
-    private static String toStringArray(final Object array) {
-        StringBuilder build = new StringBuilder(array.toString());
-        build.append(" [");
-        for (int i = 0; i < Array.getLength(array); i++) {
-            build.append(Array.get(array, i).toString());
-            build.append(",");
-        }
-        build.append("]]");
-        return build.toString();
-    }
-
-    private static Class<?> getPrimitiveType(final Class<?> innerTypeClass) {
-        try {
-            return (Class<?>) innerTypeClass.getField("TYPE").get(null);
-        } catch (final IllegalAccessException | IllegalArgumentException | NoSuchFieldException e) {
-            throw new IllegalStateException("Unable to determine primitive type to " + innerTypeClass, e);
-        }
-    }
-
-    @Override
-    public String toString() {
-        return "ResolvedArrayTypeAttributeType [innerTypeResolved=" + innerTypeResolvingStrategy + "]";
-    }
-}