/* * Copyright (c) 2015 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.util; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Iterables; import java.util.Optional; import java.util.Set; import java.util.stream.Collectors; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yangtools.concepts.AbstractSimpleIdentifiable; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.AugmentationIdentifier; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument; import org.opendaylight.yangtools.yang.model.api.AnydataSchemaNode; import org.opendaylight.yangtools.yang.model.api.AnyxmlSchemaNode; import org.opendaylight.yangtools.yang.model.api.AugmentationSchemaNode; import org.opendaylight.yangtools.yang.model.api.AugmentationTarget; import org.opendaylight.yangtools.yang.model.api.CaseSchemaNode; import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode; import org.opendaylight.yangtools.yang.model.api.ContainerLike; import org.opendaylight.yangtools.yang.model.api.DataNodeContainer; import org.opendaylight.yangtools.yang.model.api.DataSchemaNode; import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext; import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode; import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode; import org.opendaylight.yangtools.yang.model.api.ListSchemaNode; import org.opendaylight.yangtools.yang.model.api.SchemaNode; /** * Schema derived data providing necessary information for mapping between * {@link org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode} and serialization format defined in RFC6020, * since the mapping is not one-to-one. * * @param Path Argument type */ public abstract class DataSchemaContextNode extends AbstractSimpleIdentifiable { // FIXME: this can be null only for AugmentationContextNode and in that case the interior part is handled by a // separate field in DataContainerContextNode. We need to re-examine our base interface class hierarchy // so that the underlying (effective in augment's case) SchemaNode is always available. private final DataSchemaNode dataSchemaNode; DataSchemaContextNode(final T identifier, final DataSchemaNode schema) { super(identifier); this.dataSchemaNode = schema; } @Deprecated(forRemoval = true, since = "8.0.2") protected DataSchemaContextNode(final T identifier, final SchemaNode schema) { this(identifier, schema instanceof DataSchemaNode ? (DataSchemaNode) schema : null); } // FIXME: document this method public boolean isMixin() { return false; } // FIXME: document this method public boolean isKeyedEntry() { return false; } // FIXME: this is counter-intuitive: anydata/anyxml are considered non-leaf. This method needs a better name and // a proper description. public abstract boolean isLeaf(); protected Set getQNameIdentifiers() { return ImmutableSet.of(getIdentifier().getNodeType()); } /** * Find a child node identifier by its {@link PathArgument}. * * @param child Child path argument * @return A child node, or null if not found */ // FIXME: document PathArgument type mismatch public abstract @Nullable DataSchemaContextNode getChild(PathArgument child); // FIXME: document child == null public abstract @Nullable DataSchemaContextNode getChild(QName child); // FIXME: final public @Nullable DataSchemaNode getDataSchemaNode() { return dataSchemaNode; } /** * Find a child node as identified by a {@link YangInstanceIdentifier} relative to this node. * * @param path Path towards the child node * @return Child node if present, or empty when corresponding child is not found. * @throws NullPointerException if {@code path} is null */ public final @NonNull Optional<@NonNull DataSchemaContextNode> findChild( final @NonNull YangInstanceIdentifier path) { DataSchemaContextNode currentOp = this; for (PathArgument arg : path.getPathArguments()) { currentOp = currentOp.getChild(arg); if (currentOp == null) { return Optional.empty(); } } return Optional.of(currentOp); } static DataSchemaNode findChildSchemaNode(final DataNodeContainer parent, final QName child) { final DataSchemaNode potential = parent.dataChildByName(child); return potential == null ? findChoice(Iterables.filter(parent.getChildNodes(), ChoiceSchemaNode.class), child) : potential; } static DataSchemaContextNode fromSchemaAndQNameChecked(final DataNodeContainer schema, final QName child) { final DataSchemaNode result = findChildSchemaNode(schema, child); // We try to look up if this node was added by augmentation if (result != null && schema instanceof DataSchemaNode && result.isAugmenting()) { return fromAugmentation(schema, (AugmentationTarget) schema, result); } return lenientOf(result); } // FIXME: this looks like it should be a Predicate on a stream with findFirst() private static ChoiceSchemaNode findChoice(final Iterable choices, final QName child) { for (ChoiceSchemaNode choice : choices) { // FIXME: this looks weird: what are we looking for again? for (CaseSchemaNode caze : choice.getCases()) { if (findChildSchemaNode(caze, child) != null) { return choice; } } } return null; } /** * Create AugmentationIdentifier from an AugmentationSchemaNode. * * @param schema Augmentation schema * @return AugmentationIdentifier for the schema * @throws NullPointerException if {@code schema} is null */ public static AugmentationIdentifier augmentationIdentifierFrom(final AugmentationSchemaNode schema) { return new AugmentationIdentifier(schema.getChildNodes().stream().map(DataSchemaNode::getQName) .collect(Collectors.toSet())); } static @NonNull DataSchemaContextNode of(final @NonNull DataSchemaNode schema) { if (schema instanceof ContainerLike) { return new ContainerContextNode((ContainerLike) schema); } else if (schema instanceof ListSchemaNode) { return fromListSchemaNode((ListSchemaNode) schema); } else if (schema instanceof LeafSchemaNode) { return new LeafContextNode((LeafSchemaNode) schema); } else if (schema instanceof ChoiceSchemaNode) { return new ChoiceNodeContextNode((ChoiceSchemaNode) schema); } else if (schema instanceof LeafListSchemaNode) { return fromLeafListSchemaNode((LeafListSchemaNode) schema); } else if (schema instanceof AnydataSchemaNode) { return new AnydataContextNode((AnydataSchemaNode) schema); } else if (schema instanceof AnyxmlSchemaNode) { return new AnyXmlContextNode((AnyxmlSchemaNode) schema); } else { throw new IllegalStateException("Unhandled schema " + schema); } } // FIXME: do we tolerate null argument? do we tolerate unknown subclasses? static @Nullable DataSchemaContextNode lenientOf(final @Nullable DataSchemaNode schema) { if (schema instanceof ContainerLike) { return new ContainerContextNode((ContainerLike) schema); } else if (schema instanceof ListSchemaNode) { return fromListSchemaNode((ListSchemaNode) schema); } else if (schema instanceof LeafSchemaNode) { return new LeafContextNode((LeafSchemaNode) schema); } else if (schema instanceof ChoiceSchemaNode) { return new ChoiceNodeContextNode((ChoiceSchemaNode) schema); } else if (schema instanceof LeafListSchemaNode) { return fromLeafListSchemaNode((LeafListSchemaNode) schema); } else if (schema instanceof AnydataSchemaNode) { return new AnydataContextNode((AnydataSchemaNode) schema); } else if (schema instanceof AnyxmlSchemaNode) { return new AnyXmlContextNode((AnyxmlSchemaNode) schema); } else { return null; } } /** * Returns a DataContextNodeOperation for provided child node * *

* If supplied child is added by Augmentation this operation returns a DataSchemaContextNode for augmentation, * otherwise returns a DataSchemaContextNode for child as call for {@link #lenientOf(DataSchemaNode)}. */ static @Nullable DataSchemaContextNode fromAugmentation(final DataNodeContainer parent, final AugmentationTarget parentAug, final DataSchemaNode child) { for (AugmentationSchemaNode aug : parentAug.getAvailableAugmentations()) { if (aug.findDataChildByName(child.getQName()).isPresent()) { return new AugmentationContextNode(aug, parent); } } return lenientOf(child); } /** * Get a {@link DataSchemaContextNode} for a particular {@link DataSchemaNode}. * * @param potential Backing DataSchemaNode * @return A {@link DataSchemaContextNode}, or null if the input is {@code null} or of unhandled type */ @Deprecated(forRemoval = true, since = "8.0.2") public static @Nullable DataSchemaContextNode fromDataSchemaNode(final DataSchemaNode potential) { return lenientOf(potential); } private static @NonNull DataSchemaContextNode fromListSchemaNode(final ListSchemaNode potential) { var keyDefinition = potential.getKeyDefinition(); if (keyDefinition.isEmpty()) { return new UnkeyedListMixinContextNode(potential); } else if (potential.isUserOrdered()) { return new OrderedMapMixinContextNode(potential); } else { return new UnorderedMapMixinContextNode(potential); } } private static @NonNull DataSchemaContextNode fromLeafListSchemaNode(final LeafListSchemaNode potential) { if (potential.isUserOrdered()) { return new OrderedLeafListMixinContextNode(potential); } return new UnorderedLeafListMixinContextNode(potential); } /** * Return a DataSchemaContextNode corresponding to specified {@link EffectiveModelContext}. * * @param ctx EffectiveModelContext * @return A DataSchemaContextNode * @throws NullPointerException if {@code ctx} is null * @deprecated Use {@link DataSchemaContextTree#from(EffectiveModelContext)} and * {@link DataSchemaContextTree#getRoot()} instead. */ @Deprecated(forRemoval = true, since = "8.0.2") public static @NonNull DataSchemaContextNode from(final EffectiveModelContext ctx) { return new ContainerContextNode(ctx); } }