/* * 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.builder.impl; import com.google.common.collect.Iterables; import java.util.Collection; import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; import java.util.Optional; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yangtools.util.UnmodifiableCollection; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode; import org.opendaylight.yangtools.yang.data.api.schema.LeafSetNode; import org.opendaylight.yangtools.yang.data.api.schema.OrderedLeafSetNode; import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.ListNodeBuilder; import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.NormalizedNodeContainerBuilder; import org.opendaylight.yangtools.yang.data.impl.schema.nodes.AbstractImmutableNormalizedNode; public class ImmutableOrderedLeafSetNodeBuilder implements ListNodeBuilder> { private Map> value; private NodeIdentifier nodeIdentifier; private boolean dirty; protected ImmutableOrderedLeafSetNodeBuilder() { value = new LinkedHashMap<>(); dirty = false; } protected ImmutableOrderedLeafSetNodeBuilder(final ImmutableOrderedLeafSetNode node) { nodeIdentifier = node.getIdentifier(); value = node.getChildren(); dirty = true; } public static @NonNull ListNodeBuilder> create() { return new ImmutableOrderedLeafSetNodeBuilder<>(); } public static @NonNull ListNodeBuilder> create(final LeafSetNode node) { if (!(node instanceof ImmutableOrderedLeafSetNode)) { throw new UnsupportedOperationException(String.format("Cannot initialize from class %s", node.getClass())); } return new ImmutableOrderedLeafSetNodeBuilder<>((ImmutableOrderedLeafSetNode) node); } private void checkDirty() { if (dirty) { value = new LinkedHashMap<>(value); dirty = false; } } @Override public ListNodeBuilder> withChild(final LeafSetEntryNode child) { checkDirty(); this.value.put(child.getIdentifier(), child); return this; } @Override public ListNodeBuilder> withoutChild(final PathArgument key) { checkDirty(); this.value.remove(key); return this; } @Override public OrderedLeafSetNode build() { dirty = true; return new ImmutableOrderedLeafSetNode<>(nodeIdentifier, value); } @Override public ListNodeBuilder> withNodeIdentifier(final NodeIdentifier withNodeIdentifier) { this.nodeIdentifier = withNodeIdentifier; return this; } @Override public ListNodeBuilder> withValue(final Collection> withValue) { checkDirty(); for (final LeafSetEntryNode leafSetEntry : withValue) { withChild(leafSetEntry); } return this; } @Override public ListNodeBuilder> withChildValue(final T childValue) { return withChild(ImmutableLeafSetEntryNodeBuilder.create() .withNodeIdentifier(new NodeWithValue<>(nodeIdentifier.getNodeType(), childValue)) .withValue(childValue).build()); } protected static final class ImmutableOrderedLeafSetNode extends AbstractImmutableNormalizedNode>> implements OrderedLeafSetNode { private final Map> children; ImmutableOrderedLeafSetNode(final NodeIdentifier nodeIdentifier, final Map> children) { super(nodeIdentifier); this.children = children; } @Override public Optional> getChild(final NodeWithValue child) { return Optional.ofNullable(children.get(child)); } @Override public LeafSetEntryNode getChild(final int position) { return Iterables.get(children.values(), position); } @Override protected int valueHashCode() { return children.hashCode(); } private Map> getChildren() { return Collections.unmodifiableMap(children); } @Override protected boolean valueEquals(final AbstractImmutableNormalizedNode other) { return children.equals(((ImmutableOrderedLeafSetNode) other).children); } @Override public int getSize() { return children.size(); } @Override public Collection> getValue() { return UnmodifiableCollection.create(children.values()); } } @Override public NormalizedNodeContainerBuilder, LeafSetNode> addChild( final LeafSetEntryNode child) { return withChild(child); } @Override public NormalizedNodeContainerBuilder, LeafSetNode> removeChild(final PathArgument key) { return withoutChild(key); } }