/* * 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.binding; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Verify.verify; import static java.util.Objects.requireNonNull; import com.google.common.base.MoreObjects; import com.google.common.base.MoreObjects.ToStringHelper; import com.google.common.base.VerifyException; import com.google.common.collect.ImmutableCollection; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; import java.io.ObjectStreamException; import java.io.Serializable; import java.util.Collections; import java.util.Iterator; import java.util.Objects; import java.util.Optional; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yangtools.concepts.Builder; import org.opendaylight.yangtools.concepts.Immutable; import org.opendaylight.yangtools.concepts.Path; import org.opendaylight.yangtools.util.HashCodeBuilder; /** * This instance identifier uniquely identifies a specific DataObject in the data tree modeled by YANG. * *

* For Example let's say you were trying to refer to a node in inventory which was modeled in YANG as follows, * *

*

 * module opendaylight-inventory {
 *      ....
 *
 *      container nodes {
 *        list node {
 *            key "id";
 *            ext:context-instance "node-context";
 *
 *            uses node;
 *        }
 *    }
 *
 * }
 * 
* *

* You can create an instance identifier as follows to get to a node with id "openflow:1": {@code * InstanceIdentifierBuilder.builder(Nodes.class).child(Node.class, new NodeKey(new NodeId("openflow:1")).build(); * } * *

* This would be the same as using a path like so, "/nodes/node/openflow:1" to refer to the openflow:1 node */ public class InstanceIdentifier implements Path>, Immutable, Serializable { private static final long serialVersionUID = 3L; /* * Protected to differentiate internal and external access. Internal access is required never to modify * the contents. References passed to outside entities have to be wrapped in an unmodifiable view. */ final Iterable pathArguments; private final @NonNull Class targetType; private final boolean wildcarded; private final int hash; InstanceIdentifier(final Class type, final Iterable pathArguments, final boolean wildcarded, final int hash) { this.pathArguments = requireNonNull(pathArguments); this.targetType = requireNonNull(type); this.wildcarded = wildcarded; this.hash = hash; } /** * Return the type of data which this InstanceIdentifier identifies. * * @return Target type */ public final @NonNull Class getTargetType() { return targetType; } /** * Perform a safe target type adaptation of this instance identifier to target type. This method is useful when * dealing with type-squashed instances. * * @return Path argument with target type * @throws VerifyException if this instance identifier cannot be adapted to target type * @throws NullPointerException if {@code target} is null */ @SuppressWarnings("unchecked") public final @NonNull InstanceIdentifier verifyTarget(final Class target) { verify(target.equals(targetType), "Cannot adapt %s to %s", this, target); return (InstanceIdentifier) this; } /** * Return the path argument chain which makes up this instance identifier. * * @return Path argument chain. Immutable and does not contain nulls. */ public final @NonNull Iterable getPathArguments() { return Iterables.unmodifiableIterable(pathArguments); } /** * Check whether an instance identifier contains any wildcards. A wildcard is an path argument which has a null key. * * @return true if any of the path arguments has a null key. */ public final boolean isWildcarded() { return wildcarded; } @Override public final int hashCode() { return hash; } @Override public final boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final InstanceIdentifier other = (InstanceIdentifier) obj; if (pathArguments == other.pathArguments) { return true; } /* * We could now just go and compare the pathArguments, but that * can be potentially expensive. Let's try to avoid that by * checking various things that we have cached from pathArguments * and trying to prove the identifiers are *not* equal. */ if (hash != other.hash) { return false; } if (wildcarded != other.wildcarded) { return false; } if (targetType != other.targetType) { return false; } if (fastNonEqual(other)) { return false; } // Everything checks out so far, so we have to do a full equals return Iterables.elementsEqual(pathArguments, other.pathArguments); } /** * Perform class-specific fast checks for non-equality. This allows subclasses to avoid iterating over the * pathArguments by performing quick checks on their specific fields. * * @param other The other identifier, guaranteed to be the same class * @return true if the other identifier cannot be equal to this one. */ protected boolean fastNonEqual(final InstanceIdentifier other) { return false; } @Override public final String toString() { return addToStringAttributes(MoreObjects.toStringHelper(this)).toString(); } /** * Add class-specific toString attributes. * * @param toStringHelper ToStringHelper instance * @return ToStringHelper instance which was passed in */ protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { return toStringHelper.add("targetType", targetType).add("path", Iterables.toString(pathArguments)); } /** * Return an instance identifier trimmed at the first occurrence of a specific component type. * *

* For example let's say an instance identifier was built like so, *

     *      identifier = InstanceIdentifierBuilder.builder(Nodes.class).child(Node.class,
     *                   new NodeKey(new NodeId("openflow:1")).build();
     * 
* *

* And you wanted to obtain the Instance identifier which represented Nodes you would do it like so, * *

*

     *      identifier.firstIdentifierOf(Nodes.class)
     * 
* * @param type component type * @return trimmed instance identifier, or null if the component type * is not present. */ public final @Nullable InstanceIdentifier firstIdentifierOf(final Class type) { int count = 1; for (final PathArgument a : pathArguments) { if (type.equals(a.getType())) { @SuppressWarnings("unchecked") final InstanceIdentifier ret = (InstanceIdentifier) internalCreate( Iterables.limit(pathArguments, count)); return ret; } ++count; } return null; } /** * Return the key associated with the first component of specified type in * an identifier. * * @param listItem component type * @return key associated with the component, or null if the component type * is not present. */ public final & DataObject, K extends Identifier> @Nullable K firstKeyOf( final Class listItem) { for (final PathArgument i : pathArguments) { if (listItem.equals(i.getType())) { @SuppressWarnings("unchecked") final K ret = ((IdentifiableItem)i).getKey(); return ret; } } return null; } /** * Check whether an identifier is contained in this identifier. This is a strict subtree check, which requires all * PathArguments to match exactly. * *

* The contains method checks if the other identifier is fully contained within the current identifier. It does this * by looking at only the types of the path arguments and not by comparing the path arguments themselves. * *

* To illustrate here is an example which explains the working of this API. Let's say you have two instance * identifiers as follows: * {@code * this = /nodes/node/openflow:1 * other = /nodes/node/openflow:2 * } * then this.contains(other) will return false. * * @param other Potentially-container instance identifier * @return True if the specified identifier is contained in this identifier. */ @Override public final boolean contains(final InstanceIdentifier other) { requireNonNull(other, "other should not be null"); final Iterator lit = pathArguments.iterator(); final Iterator oit = other.pathArguments.iterator(); while (lit.hasNext()) { if (!oit.hasNext()) { return false; } if (!lit.next().equals(oit.next())) { return false; } } return true; } /** * Check whether this instance identifier contains the other identifier after wildcard expansion. This is similar * to {@link #contains(InstanceIdentifier)}, with the exception that a wildcards are assumed to match the their * non-wildcarded PathArgument counterpart. * * @param other Identifier which should be checked for inclusion. * @return true if this identifier contains the other object */ public final boolean containsWildcarded(final InstanceIdentifier other) { requireNonNull(other, "other should not be null"); final Iterator lit = pathArguments.iterator(); final Iterator oit = other.pathArguments.iterator(); while (lit.hasNext()) { if (!oit.hasNext()) { return false; } final PathArgument la = lit.next(); final PathArgument oa = oit.next(); if (!la.getType().equals(oa.getType())) { return false; } if (la instanceof IdentifiableItem && oa instanceof IdentifiableItem && !la.equals(oa)) { return false; } } return true; } private @NonNull InstanceIdentifier childIdentifier(final AbstractPathArgument arg) { return trustedCreate(arg, Iterables.concat(pathArguments, Collections.singleton(arg)), HashCodeBuilder.nextHashCode(hash, arg), isWildcarded()); } /** * Create an InstanceIdentifier for a child container. This method is a more efficient equivalent to * {@code builder().child(container).build()}. * * @param container Container to append * @param Container type * @return An InstanceIdentifier. * @throws NullPointerException if {@code container} is null */ public final > @NonNull InstanceIdentifier child(final Class container) { return childIdentifier(Item.of(container)); } /** * Create an InstanceIdentifier for a child list item. This method is a more efficient equivalent to * {@code builder().child(listItem, listKey).build()}. * * @param listItem List to append * @param listKey List key * @param List type * @param Key type * @return An InstanceIdentifier. * @throws NullPointerException if any argument is null */ @SuppressWarnings("unchecked") public final & ChildOf, K extends Identifier> @NonNull KeyedInstanceIdentifier child(final Class listItem, final K listKey) { return (KeyedInstanceIdentifier) childIdentifier(IdentifiableItem.of(listItem, listKey)); } /** * Create an InstanceIdentifier for a child container. This method is a more efficient equivalent to * {@code builder().child(caze, container).build()}. * * @param caze Choice case class * @param container Container to append * @param Case type * @param Container type * @return An InstanceIdentifier. * @throws NullPointerException if any argument is null */ public final & DataObject, N extends ChildOf> @NonNull InstanceIdentifier child(final Class caze, final Class container) { return childIdentifier(Item.of(caze, container)); } /** * Create an InstanceIdentifier for a child list item. This method is a more efficient equivalent to * {@code builder().child(caze, listItem, listKey).build()}. * * @param caze Choice case class * @param listItem List to append * @param listKey List key * @param Case type * @param List type * @param Key type * @return An InstanceIdentifier. * @throws NullPointerException if any argument is null */ @SuppressWarnings("unchecked") public final & DataObject, K extends Identifier, N extends Identifiable & ChildOf> @NonNull KeyedInstanceIdentifier child( final Class caze, final Class listItem, final K listKey) { return (KeyedInstanceIdentifier) childIdentifier(IdentifiableItem.of(caze, listItem, listKey)); } /** * Create an InstanceIdentifier for a child augmentation. This method is a more efficient equivalent to * {@code builder().augmentation(container).build()}. * * @param container Container to append * @param Container type * @return An InstanceIdentifier. * @throws NullPointerException if {@code container} is null */ public final > @NonNull InstanceIdentifier augmentation( final Class container) { return childIdentifier(Item.of(container)); } /** * Create a builder rooted at this key. * * @return A builder instance */ public @NonNull InstanceIdentifierBuilder builder() { return new InstanceIdentifierBuilderImpl<>(Item.of(targetType), pathArguments, hash, isWildcarded()); } /** * Create an InstanceIdentifierBuilder for a specific type of InstanceIdentifier as specified by container. * * @param container Base container * @param Type of the container * @return A new {@link InstanceIdentifierBuilder} * @throws NullPointerException if {@code container} is null */ public static > @NonNull InstanceIdentifierBuilder builder( final Class container) { return new InstanceIdentifierBuilderImpl().addWildNode(Item.of(container)); } /** * Create an InstanceIdentifierBuilder for a specific type of InstanceIdentifier as specified by container in * a {@code grouping} used in the {@code case} statement. * * @param caze Choice case class * @param container Base container * @param Case type * @param Type of the container * @return A new {@link InstanceIdentifierBuilder} * @throws NullPointerException if any argument is null */ public static & DataObject, T extends ChildOf> @NonNull InstanceIdentifierBuilder builder(final Class caze, final Class container) { return new InstanceIdentifierBuilderImpl().addWildNode(Item.of(caze, container)); } /** * Create an InstanceIdentifierBuilder for a specific type of InstanceIdentifier which represents an * {@link IdentifiableItem}. * * @param listItem list item class * @param listKey key value * @param List type * @param List key * @return A new {@link InstanceIdentifierBuilder} * @throws NullPointerException if any argument is null */ public static & ChildOf, K extends Identifier> @NonNull InstanceIdentifierBuilder builder(final Class listItem, final K listKey) { return new InstanceIdentifierBuilderImpl().addNode(IdentifiableItem.of(listItem, listKey)); } /** * Create an InstanceIdentifierBuilder for a specific type of InstanceIdentifier which represents an * {@link IdentifiableItem} in a {@code grouping} used in the {@code case} statement. * * @param caze Choice case class * @param listItem list item class * @param listKey key value * @param Case type * @param List type * @param List key * @return A new {@link InstanceIdentifierBuilder} * @throws NullPointerException if any argument is null */ public static & DataObject, N extends Identifiable & ChildOf, K extends Identifier> @NonNull InstanceIdentifierBuilder builder(final Class caze, final Class listItem, final K listKey) { return new InstanceIdentifierBuilderImpl().addNode(IdentifiableItem.of(caze, listItem, listKey)); } /** * Create an instance identifier for a very specific object type. This method implements {@link #create(Iterable)} * semantics, except it is used by internal callers, which have assured that the argument is an immutable Iterable. * * @param pathArguments The path to a specific node in the data tree * @return InstanceIdentifier instance * @throws IllegalArgumentException if pathArguments is empty or contains a null element. * @throws NullPointerException if {@code pathArguments} is null */ private static @NonNull InstanceIdentifier internalCreate(final Iterable pathArguments) { final Iterator it = requireNonNull(pathArguments, "pathArguments may not be null") .iterator(); final HashCodeBuilder hashBuilder = new HashCodeBuilder<>(); boolean wildcard = false; PathArgument arg = null; while (it.hasNext()) { arg = it.next(); checkArgument(arg != null, "pathArguments may not contain null elements"); // TODO: sanity check ChildOf<>; hashBuilder.addArgument(arg); if (Identifiable.class.isAssignableFrom(arg.getType()) && !(arg instanceof IdentifiableItem)) { wildcard = true; } } checkArgument(arg != null, "pathArguments may not be empty"); return trustedCreate(arg, pathArguments, hashBuilder.build(), wildcard); } /** * Create an instance identifier for a very specific object type. * *

* Example: *

     *  List<PathArgument> path = Arrays.asList(new Item(Nodes.class))
     *  new InstanceIdentifier(path);
     * 
* * @param pathArguments The path to a specific node in the data tree * @return InstanceIdentifier instance * @throws IllegalArgumentException if pathArguments is empty or * contains a null element. */ public static @NonNull InstanceIdentifier create(final Iterable pathArguments) { if (pathArguments instanceof ImmutableCollection) { @SuppressWarnings("unchecked") final Iterable immutableArguments = (Iterable) pathArguments; return internalCreate(immutableArguments); } return internalCreate(ImmutableList.copyOf(pathArguments)); } /** * Create an instance identifier for a very specific object type. * *

* For example *

     *      new InstanceIdentifier(Nodes.class)
     * 
* would create an InstanceIdentifier for an object of type Nodes * * @param type The type of the object which this instance identifier represents * @return InstanceIdentifier instance */ @SuppressWarnings("unchecked") public static @NonNull InstanceIdentifier create(final Class type) { return (InstanceIdentifier) create(ImmutableList.of(Item.of(type))); } /** * Return the key associated with the last component of the specified identifier. * * @param id instance identifier * @return key associated with the last component * @throws IllegalArgumentException if the supplied identifier type cannot have a key. * @throws NullPointerException if id is null. */ public static & DataObject, K extends Identifier> K keyOf( final InstanceIdentifier id) { requireNonNull(id); checkArgument(id instanceof KeyedInstanceIdentifier, "%s does not have a key", id); @SuppressWarnings("unchecked") final K ret = ((KeyedInstanceIdentifier)id).getKey(); return ret; } @SuppressWarnings({ "unchecked", "rawtypes" }) static @NonNull InstanceIdentifier trustedCreate(final PathArgument arg, final Iterable pathArguments, final int hash, boolean wildcarded) { if (Identifiable.class.isAssignableFrom(arg.getType()) && !wildcarded) { Identifier key = null; if (arg instanceof IdentifiableItem) { key = ((IdentifiableItem)arg).getKey(); } else { wildcarded = true; } return new KeyedInstanceIdentifier(arg.getType(), pathArguments, wildcarded, hash, key); } return new InstanceIdentifier(arg.getType(), pathArguments, wildcarded, hash); } /** * Path argument of {@link InstanceIdentifier}. Interface which implementations are used as path components of the * path in overall data tree. */ public interface PathArgument extends Comparable { /** * Return the data object type backing this PathArgument. * * @return Data object type. */ @NonNull Class getType(); /** * Return an optional enclosing case type. This is used only when {@link #getType()} references a node defined * in a {@code grouping} which is reference inside a {@code case} statement in order to safely reference the * node. * * @return Optional case class. */ default Optional> getCaseType() { return Optional.empty(); } } private abstract static class AbstractPathArgument implements PathArgument, Serializable { private static final long serialVersionUID = 1L; private final @NonNull Class type; AbstractPathArgument(final Class type) { this.type = requireNonNull(type, "Type may not be null."); } @Override public final Class getType() { return type; } Object getKey() { return null; } @Override public final int hashCode() { return Objects.hash(type, getCaseType(), getKey()); } @Override public final boolean equals(final Object obj) { if (this == obj) { return true; } if (!(obj instanceof AbstractPathArgument)) { return false; } final AbstractPathArgument other = (AbstractPathArgument) obj; return type.equals(other.type) && Objects.equals(getKey(), other.getKey()) && getCaseType().equals(other.getCaseType()); } @Override public final int compareTo(final PathArgument arg) { final int cmp = compareClasses(type, arg.getType()); if (cmp != 0) { return cmp; } final Optional> caseType = getCaseType(); if (!caseType.isPresent()) { return arg.getCaseType().isPresent() ? -1 : 1; } final Optional> argCaseType = getCaseType(); return argCaseType.isPresent() ? compareClasses(caseType.get(), argCaseType.get()) : 1; } private static int compareClasses(final Class first, final Class second) { return first.getCanonicalName().compareTo(second.getCanonicalName()); } } /** * An Item represents an object that probably is only one of it's kind. For example a Nodes object is only one of * a kind. In YANG terms this would probably represent a container. * * @param Item type */ public static class Item extends AbstractPathArgument { private static final long serialVersionUID = 1L; Item(final Class type) { super(type); } /** * Return a PathArgument instance backed by the specified class. * * @param type Backing class * @param Item type * @return A new PathArgument * @throws NullPointerException if {@code} is null. */ public static @NonNull Item of(final Class type) { return new Item<>(type); } /** * Return a PathArgument instance backed by the specified class, which in turn is defined in a {@code grouping} * used in a corresponding {@code case} statement. * * @param caseType defining case class * @param type Backing class * @param Case type * @param Item type * @return A new PathArgument * @throws NullPointerException if any argument is null. */ public static & DataObject, T extends ChildOf> @NonNull Item of( final Class caseType, final Class type) { return new CaseItem<>(caseType, type); } @Override public String toString() { return getType().getName(); } } /** * An IdentifiableItem represents a object that is usually present in a collection and can be identified uniquely * by a key. In YANG terms this would probably represent an item in a list. * * @param An object that is identifiable by an identifier * @param The identifier of the object */ public static class IdentifiableItem & DataObject, T extends Identifier> extends AbstractPathArgument { private static final long serialVersionUID = 1L; private final @NonNull T key; IdentifiableItem(final Class type, final T key) { super(type); this.key = requireNonNull(key, "Key may not be null."); } /** * Return an IdentifiableItem instance backed by the specified class with specified key. * * @param type Backing class * @param key Key * @param List type * @param Key type * @return An IdentifiableItem * @throws NullPointerException if any argument is null. */ public static & DataObject, I extends Identifier> @NonNull IdentifiableItem of(final Class type, final I key) { return new IdentifiableItem<>(type, key); } /** * Return an IdentifiableItem instance backed by the specified class with specified key. The class is in turn * defined in a {@code grouping} used in a corresponding {@code case} statement. * * @param caseType defining case class * @param type Backing class * @param Case type * @param List type * @param Key type * @return A new PathArgument * @throws NullPointerException if any argument is null. */ public static & DataObject, T extends ChildOf & Identifiable, I extends Identifier> @NonNull IdentifiableItem of(final Class caseType, final Class type, final I key) { return new CaseIdentifiableItem<>(caseType, type, key); } /** * Return the data object type backing this PathArgument. * * @return Data object type. */ @Override public final @NonNull T getKey() { return key; } @Override public String toString() { return getType().getName() + "[key=" + key + "]"; } } private static final class CaseItem & DataObject, T extends ChildOf> extends Item { private static final long serialVersionUID = 1L; private final Class caseType; CaseItem(final Class caseType, final Class type) { super(type); this.caseType = requireNonNull(caseType); } @Override public Optional> getCaseType() { return Optional.of(caseType); } } private static final class CaseIdentifiableItem & DataObject, T extends ChildOf & Identifiable, K extends Identifier> extends IdentifiableItem { private static final long serialVersionUID = 1L; private final Class caseType; CaseIdentifiableItem(final Class caseType, final Class type, final K key) { super(type, key); this.caseType = requireNonNull(caseType); } @Override public Optional> getCaseType() { return Optional.of(caseType); } } public interface InstanceIdentifierBuilder extends Builder> { /** * Append the specified container as a child of the current InstanceIdentifier referenced by the builder. This * method should be used when you want to build an instance identifier by appending top-level elements, for * example *
         *     InstanceIdentifier.builder().child(Nodes.class).build();
         * 
* *

* NOTE :- The above example is only for illustration purposes InstanceIdentifier.builder() has been deprecated * and should not be used. Use InstanceIdentifier.builder(Nodes.class) instead * * @param container Container to append * @param Container type * @return this builder * @throws NullPointerException if {@code container} is null */ > @NonNull InstanceIdentifierBuilder child(Class container); /** * Append the specified container as a child of the current InstanceIdentifier referenced by the builder. This * method should be used when you want to build an instance identifier by appending a container node to the * identifier and the {@code container} is defined in a {@code grouping} used in a {@code case} statement. * * @param caze Choice case class * @param container Container to append * @param Case type * @param Container type * @return this builder * @throws NullPointerException if {@code container} is null */ & DataObject, N extends ChildOf> @NonNull InstanceIdentifierBuilder child(Class caze, Class container); /** * Append the specified listItem as a child of the current InstanceIdentifier referenced by the builder. This * method should be used when you want to build an instance identifier by appending a specific list element to * the identifier. * * @param listItem List to append * @param listKey List key * @param List type * @param Key type * @return this builder * @throws NullPointerException if any argument is null */ & ChildOf, K extends Identifier> @NonNull InstanceIdentifierBuilder child(Class listItem, K listKey); /** * Append the specified listItem as a child of the current InstanceIdentifier referenced by the builder. This * method should be used when you want to build an instance identifier by appending a specific list element to * the identifier and the {@code list} is defined in a {@code grouping} used in a {@code case} statement. * * @param caze Choice case class * @param listItem List to append * @param listKey List key * @param Case type * @param List type * @param Key type * @return this builder * @throws NullPointerException if any argument is null */ & DataObject, K extends Identifier, N extends Identifiable & ChildOf> @NonNull InstanceIdentifierBuilder child( Class caze, Class listItem, K listKey); /** * Build an identifier which refers to a specific augmentation of the current InstanceIdentifier referenced by * the builder. * * @param container augmentation class * @param augmentation type * @return this builder * @throws NullPointerException if {@code container} is null */ > @NonNull InstanceIdentifierBuilder augmentation( Class container); /** * Build the instance identifier. * * @return Resulting instance identifier. */ @Override InstanceIdentifier build(); } private Object writeReplace() throws ObjectStreamException { return new InstanceIdentifierV3<>(this); } }