/* * Copyright (c) 2013 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.yangtools.yang.data.impl.schema.nodes; import com.google.common.base.MoreObjects.ToStringHelper; import com.google.common.collect.ImmutableMap; import java.util.Map; import java.util.Objects; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.AttributesContainer; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; public abstract class AbstractImmutableNormalizedValueAttrNode<K extends PathArgument,V> extends AbstractImmutableNormalizedValueNode<K, V> implements AttributesContainer { private final Map<QName, String> attributes; protected AbstractImmutableNormalizedValueAttrNode(final K nodeIdentifier, final V value, final Map<QName, String> attributes) { super(nodeIdentifier, value); this.attributes = ImmutableMap.copyOf(attributes); } @Override public final Map<QName, String> getAttributes() { return attributes; } @Override public final Object getAttributeValue(final QName value) { return attributes.get(value); } @Override protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { return super.addToStringAttributes(toStringHelper).add("attributes", attributes); } @Override protected int valueHashCode() { final int result = getValue() != null ? getValue().hashCode() : 1; // FIXME: are attributes part of hashCode/equals? return result; } @Override protected boolean valueEquals(final AbstractImmutableNormalizedNode<?, ?> other) { // We can not call directly getValue.equals because of Empty Type // Definition leaves which allways have NULL value if (!Objects.deepEquals(getValue(), other.getValue())) { return false; } // FIXME: are attributes part of hashCode/equals? return true; } }