ce8d0e45bade344b6c6285921bffd5ba34211ea3
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / YangInstanceIdentifier.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved.
3  * This program and the accompanying materials are made available under the
4  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/epl-v10.html
6  */
7 package org.opendaylight.yangtools.yang.data.api;
8
9 import com.google.common.base.Optional;
10 import com.google.common.base.Preconditions;
11 import com.google.common.collect.ImmutableMap;
12 import com.google.common.collect.ImmutableSet;
13 import com.google.common.collect.Iterables;
14 import java.io.Serializable;
15 import java.lang.reflect.Array;
16 import java.util.Arrays;
17 import java.util.Collection;
18 import java.util.Iterator;
19 import java.util.List;
20 import java.util.Map;
21 import java.util.Map.Entry;
22 import java.util.Objects;
23 import java.util.Set;
24 import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
25 import javax.annotation.Nonnull;
26 import javax.annotation.Nullable;
27 import org.opendaylight.yangtools.concepts.Builder;
28 import org.opendaylight.yangtools.concepts.Immutable;
29 import org.opendaylight.yangtools.concepts.Path;
30 import org.opendaylight.yangtools.util.HashCodeBuilder;
31 import org.opendaylight.yangtools.yang.common.QName;
32 import org.opendaylight.yangtools.yang.common.QNameModule;
33 import org.opendaylight.yangtools.yang.data.api.schema.LeafSetEntryNode;
34
35 /**
36  * Unique identifier of a particular node instance in the data tree.
37  *
38  * <p>
39  * Java representation of YANG Built-in type <code>instance-identifier</code>,
40  * which conceptually is XPath expression minimized to uniquely identify element
41  * in data tree which conforms to constraints maintained by YANG Model,
42  * effectively this makes Instance Identifier a path to element in data tree.
43  * <p>
44  * Constraints put in YANG specification on instance-identifier allowed it to be
45  * effectively represented in Java and it's evaluation does not require
46  * full-blown XPath processor.
47  * <p>
48  * <h3>Path Arguments</h3>
49  * Path to the node represented in instance identifier consists of
50  * {@link PathArgument} which carries necessary information to uniquely identify
51  * node on particular level in the subtree.
52  * <p>
53  * <ul>
54  * <li>{@link NodeIdentifier} - Identifier of node, which has cardinality
55  * <code>0..1</code> in particular subtree in data tree.</li>
56  * <li>{@link NodeIdentifierWithPredicates} - Identifier of node (list item),
57  * which has cardinality <code>0..n</code>.</li>
58  * <li>{@link NodeWithValue} - Identifier of instance <code>leaf</code> node or
59  * <code>leaf-list</code> node.</li>
60  * <li>{@link AugmentationIdentifier} - Identifier of instance of
61  * <code>augmentation</code> node.</li>
62  * </ul>
63  *
64  *
65  * @see <a href="http://tools.ietf.org/html/rfc6020#section-9.13">RFC6020</a>
66  */
67 public abstract class YangInstanceIdentifier extends CollectionPathArguments implements Path<YangInstanceIdentifier>, Immutable, Serializable {
68     /**
69      * An empty {@link YangInstanceIdentifier}. It corresponds to the path of the conceptual
70      * root of the YANG namespace.
71      */
72     public static final YangInstanceIdentifier EMPTY = FixedYangInstanceIdentifier.EMPTY_INSTANCE;
73
74     private static final AtomicReferenceFieldUpdater<YangInstanceIdentifier, String> TOSTRINGCACHE_UPDATER =
75             AtomicReferenceFieldUpdater.newUpdater(YangInstanceIdentifier.class, String.class, "toStringCache");
76     private static final long serialVersionUID = 4L;
77
78     private final int hash;
79     private transient volatile String toStringCache = null;
80
81     // Package-private to prevent outside subclassing
82     YangInstanceIdentifier(final int hash) {
83         this.hash = hash;
84     }
85
86     @Nonnull abstract YangInstanceIdentifier createRelativeIdentifier(int skipFromRoot);
87     @Nonnull abstract Collection<PathArgument> tryPathArguments();
88     @Nonnull abstract Collection<PathArgument> tryReversePathArguments();
89
90     /**
91      * Check if this instance identifier has empty path arguments, e.g. it is
92      * empty and corresponds to {@link #EMPTY}.
93      *
94      * @return True if this instance identifier is empty, false otherwise.
95      */
96     public abstract boolean isEmpty();
97
98     /**
99      * Return the conceptual parent {@link YangInstanceIdentifier}, which has
100      * one item less in {@link #getPathArguments()}.
101      *
102      * @return Parent {@link YangInstanceIdentifier}, or null if this is object is {@link #EMPTY}.
103      */
104     @Nullable public abstract YangInstanceIdentifier getParent();
105
106     /**
107      * Returns a list of path arguments.
108      *
109      * @deprecated Use {@link #getPathArguments()} instead.
110      * @return Immutable list of path arguments.
111      */
112     @Deprecated
113     public final List<PathArgument> getPath() {
114         return getPathArguments();
115     }
116
117     /**
118      * Returns an ordered iteration of path arguments.
119      *
120      * @return Immutable iteration of path arguments.
121      */
122     @Override
123     public abstract List<PathArgument> getPathArguments();
124
125     /**
126      * Returns an iterable of path arguments in reverse order. This is useful
127      * when walking up a tree organized this way.
128      *
129      * @return Immutable iterable of path arguments in reverse order.
130      */
131     @Override
132     public abstract List<PathArgument> getReversePathArguments();
133
134     /**
135      * Returns the last PathArgument. This is equivalent of iterating
136      * to the last element of the iterable returned by {@link #getPathArguments()}.
137      *
138      * @return The last past argument, or null if there are no PathArguments.
139      */
140     public abstract PathArgument getLastPathArgument();
141
142     public static YangInstanceIdentifier create(final Iterable<? extends PathArgument> path) {
143         if (Iterables.isEmpty(path)) {
144             return EMPTY;
145         }
146
147         final HashCodeBuilder<PathArgument> hash = new HashCodeBuilder<>();
148         for (PathArgument a : path) {
149             hash.addArgument(a);
150         }
151
152         return FixedYangInstanceIdentifier.create(path, hash.build());
153     }
154
155     public static YangInstanceIdentifier create(final PathArgument... path) {
156         // We are forcing a copy, since we cannot trust the user
157         return create(Arrays.asList(path));
158     }
159
160     @Override
161     public final int hashCode() {
162         /*
163          * The caching is safe, since the object contract requires
164          * immutability of the object and all objects referenced from this
165          * object.
166          * Used lists, maps are immutable. Path Arguments (elements) are also
167          * immutable, since the PathArgument contract requires immutability.
168          */
169         return hash;
170     }
171
172     boolean pathArgumentsEqual(final YangInstanceIdentifier other) {
173         return Iterables.elementsEqual(getPathArguments(), other.getPathArguments());
174     }
175
176     @Override
177     public boolean equals(final Object obj) {
178         if (this == obj) {
179             return true;
180         }
181         if (!(obj instanceof YangInstanceIdentifier)) {
182             return false;
183         }
184         YangInstanceIdentifier other = (YangInstanceIdentifier) obj;
185         if (this.hashCode() != obj.hashCode()) {
186             return false;
187         }
188
189         return pathArgumentsEqual(other);
190     }
191
192     /**
193      * Constructs a new Instance Identifier with new {@link NodeIdentifier} added to the end of path arguments
194      *
195      * @param name QName of {@link NodeIdentifier}
196      * @return Instance Identifier with additional path argument added to the end.
197      */
198     public final YangInstanceIdentifier node(final QName name) {
199         return node(new NodeIdentifier(name));
200     }
201
202     /**
203      *
204      * Constructs a new Instance Identifier with new {@link PathArgument} added to the end of path arguments
205      *
206      * @param arg Path argument which should be added to the end
207      * @return Instance Identifier with additional path argument added to the end.
208      */
209     public final YangInstanceIdentifier node(final PathArgument arg) {
210         return new StackedYangInstanceIdentifier(this, arg, HashCodeBuilder.nextHashCode(hash, arg));
211     }
212
213     /**
214      * Get the relative path from an ancestor. This method attempts to perform
215      * the reverse of concatenating a base (ancestor) and a path.
216      *
217      * @param ancestor
218      *            Ancestor against which the relative path should be calculated
219      * @return This object's relative path from parent, or Optional.absent() if
220      *         the specified parent is not in fact an ancestor of this object.
221      */
222     public Optional<YangInstanceIdentifier> relativeTo(final YangInstanceIdentifier ancestor) {
223         final Iterator<?> lit = getPathArguments().iterator();
224         final Iterator<?> oit = ancestor.getPathArguments().iterator();
225         int common = 0;
226
227         while (oit.hasNext()) {
228             // Ancestor is not really an ancestor
229             if (!lit.hasNext() || !lit.next().equals(oit.next())) {
230                 return Optional.absent();
231             }
232
233             ++common;
234         }
235
236         if (common == 0) {
237             return Optional.of(this);
238         }
239         if (!lit.hasNext()) {
240             return Optional.of(EMPTY);
241         }
242
243         return Optional.of(createRelativeIdentifier(common));
244     }
245
246     private static int hashCode(final Object value) {
247         if (value == null) {
248             return 0;
249         }
250
251         if (value.getClass().equals(byte[].class)) {
252             return Arrays.hashCode((byte[]) value);
253         }
254
255         if (value.getClass().isArray()) {
256             int hash = 0;
257             int length = Array.getLength(value);
258             for (int i = 0; i < length; i++) {
259                 hash += Objects.hashCode(Array.get(value, i));
260             }
261
262             return hash;
263         }
264
265         return Objects.hashCode(value);
266     }
267
268     // Static factories & helpers
269
270     /**
271      *
272      * Returns a new InstanceIdentifier with only one path argument of type {@link NodeIdentifier} with supplied QName
273      *
274      * @param name QName of first node identifier
275      * @return Instance Identifier with only one path argument of type {@link NodeIdentifier}
276      */
277     public static YangInstanceIdentifier of(final QName name) {
278         return create(new NodeIdentifier(name));
279     }
280
281     /**
282      *
283      * Returns new builder for InstanceIdentifier with empty path arguments.
284      *
285      * @return new builder for InstanceIdentifier with empty path arguments.
286      */
287     public static InstanceIdentifierBuilder builder() {
288         return new YangInstanceIdentifierBuilder();
289     }
290
291     /**
292      *
293      * Returns new builder for InstanceIdentifier with path arguments copied from original instance identifier.
294      *
295      * @param origin Instace Identifier from which path arguments are copied.
296      * @return new builder for InstanceIdentifier with path arguments copied from original instance identifier.
297      */
298     public static InstanceIdentifierBuilder builder(final YangInstanceIdentifier origin) {
299         return new YangInstanceIdentifierBuilder(origin.getPathArguments(), origin.hashCode());
300     }
301
302     /**
303      * Path argument / component of InstanceIdentifier
304      *
305      * Path argument uniquely identifies node in data tree on particular
306      * level.
307      * <p>
308      * This interface itself is used as common parent for actual
309      * path arguments types and should not be implemented by user code.
310      * <p>
311      * Path arguments SHOULD contain only minimum of information
312      * required to uniquely identify node on particular subtree level.
313      *
314      * For actual path arguments types see:
315      * <ul>
316      * <li>{@link NodeIdentifier} - Identifier of container or leaf
317      * <li>{@link NodeIdentifierWithPredicates} - Identifier of list entries, which have key defined
318      * <li>{@link AugmentationIdentifier} - Identifier of augmentation
319      * <li>{@link NodeWithValue} - Identifier of leaf-list entry
320      * </ul>
321      */
322     public interface PathArgument extends Comparable<PathArgument>, Immutable, Serializable {
323         /**
324          * If applicable returns unique QName of data node as defined in YANG
325          * Schema.
326          *
327          * This method may return null, if the corresponding schema node, does
328          * not have QName associated, such as in cases of augmentations.
329          *
330          * @return Node type
331          */
332         QName getNodeType();
333
334         /**
335          * Return the string representation of this object for use in context
336          * provided by a previous object. This method can be implemented in
337          * terms of {@link #toString()}, but implementations are encourage to
338          * reuse any context already emitted by the previous object.
339          *
340          * @param previous Previous path argument
341          * @return String representation
342          */
343         String toRelativeString(PathArgument previous);
344     }
345
346     private static abstract class AbstractPathArgument implements PathArgument {
347         private static final long serialVersionUID = -4546547994250849340L;
348         private final QName nodeType;
349         private transient int hashValue;
350         private volatile transient boolean hashGuard = false;
351
352         protected AbstractPathArgument(final QName nodeType) {
353             this.nodeType = Preconditions.checkNotNull(nodeType);
354         }
355
356         @Override
357         public final QName getNodeType() {
358             return nodeType;
359         }
360
361         @Override
362         public int compareTo(final PathArgument o) {
363             return nodeType.compareTo(o.getNodeType());
364         }
365
366         protected int hashCodeImpl() {
367             return 31 + getNodeType().hashCode();
368         }
369
370         @Override
371         public final int hashCode() {
372             if (!hashGuard) {
373                 hashValue = hashCodeImpl();
374                 hashGuard = true;
375             }
376
377             return hashValue;
378         }
379
380         @Override
381         public boolean equals(final Object obj) {
382             if (this == obj) {
383                 return true;
384             }
385             if (obj == null || this.getClass() != obj.getClass()) {
386                 return false;
387             }
388
389             return getNodeType().equals(((AbstractPathArgument)obj).getNodeType());
390         }
391
392         @Override
393         public String toString() {
394             return getNodeType().toString();
395         }
396
397         @Override
398         public String toRelativeString(final PathArgument previous) {
399             if (previous instanceof AbstractPathArgument) {
400                 final QNameModule mod = ((AbstractPathArgument)previous).getNodeType().getModule();
401                 if (getNodeType().getModule().equals(mod)) {
402                     return getNodeType().getLocalName();
403                 }
404             }
405
406             return getNodeType().toString();
407         }
408     }
409
410     /**
411      * Fluent Builder of Instance Identifier instances
412      */
413     public interface InstanceIdentifierBuilder extends Builder<YangInstanceIdentifier> {
414         /**
415          * Adds {@link NodeIdentifier} with supplied QName to path arguments of resulting instance identifier.
416          *
417          * @param nodeType QName of {@link NodeIdentifier} which will be added
418          * @return this builder
419          */
420         InstanceIdentifierBuilder node(QName nodeType);
421
422         /**
423          * Adds {@link NodeIdentifierWithPredicates} with supplied QName and key values to path arguments of resulting instance identifier.
424          *
425          * @param nodeType QName of {@link NodeIdentifierWithPredicates} which will be added
426          * @param keyValues Map of key components and their respective values for {@link NodeIdentifierWithPredicates}
427          * @return this builder
428          */
429         InstanceIdentifierBuilder nodeWithKey(QName nodeType, Map<QName, Object> keyValues);
430
431         /**
432          * Adds {@link NodeIdentifierWithPredicates} with supplied QName and key, value.
433          *
434          * @param nodeType QName of {@link NodeIdentifierWithPredicates} which will be added
435          * @param key QName of key which will be added
436          * @param value value of key which will be added
437          * @return this builder
438          */
439         InstanceIdentifierBuilder nodeWithKey(QName nodeType, QName key, Object value);
440
441         /**
442          *
443          * Builds an {@link YangInstanceIdentifier} with path arguments from this builder
444          *
445          * @return {@link YangInstanceIdentifier}
446          */
447         @Override
448         YangInstanceIdentifier build();
449
450         /*
451          * @deprecated use #build()
452          */
453         @Deprecated
454         YangInstanceIdentifier toInstance();
455     }
456
457     /**
458      * Simple path argument identifying a {@link org.opendaylight.yangtools.yang.data.api.schema.ContainerNode} or
459      * {@link org.opendaylight.yangtools.yang.data.api.schema.LeafNode} leaf in particular subtree.
460      */
461     public static final class NodeIdentifier extends AbstractPathArgument {
462         private static final long serialVersionUID = -2255888212390871347L;
463
464         public NodeIdentifier(final QName node) {
465             super(node);
466         }
467     }
468
469     /**
470      * Composite path argument identifying a {@link org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode} leaf
471      * overall data tree.
472      */
473     public static final class NodeIdentifierWithPredicates extends AbstractPathArgument {
474         private static final long serialVersionUID = -4787195606494761540L;
475
476         private final Map<QName, Object> keyValues;
477
478         public NodeIdentifierWithPredicates(final QName node, final Map<QName, Object> keyValues) {
479             super(node);
480             this.keyValues = ImmutableMap.copyOf(keyValues);
481         }
482
483         public NodeIdentifierWithPredicates(final QName node, final QName key, final Object value) {
484             this(node, ImmutableMap.of(key, value));
485         }
486
487         public Map<QName, Object> getKeyValues() {
488             return keyValues;
489         }
490
491         @Override
492         protected int hashCodeImpl() {
493             final int prime = 31;
494             int result = super.hashCodeImpl();
495             result = prime * result;
496
497             for (Entry<QName, Object> entry : keyValues.entrySet()) {
498                 result += Objects.hashCode(entry.getKey()) + YangInstanceIdentifier.hashCode(entry.getValue());
499             }
500             return result;
501         }
502
503         @Override
504         public boolean equals(final Object obj) {
505             if (!super.equals(obj)) {
506                 return false;
507             }
508
509             final Map<QName, Object> otherKeyValues = ((NodeIdentifierWithPredicates) obj).keyValues;
510             if (keyValues.size() != otherKeyValues.size()) {
511                 return false;
512             }
513
514             for (Entry<QName, Object> entry : keyValues.entrySet()) {
515                 if (!otherKeyValues.containsKey(entry.getKey())
516                         || !Objects.deepEquals(entry.getValue(), otherKeyValues.get(entry.getKey()))) {
517
518                     return false;
519                 }
520             }
521
522             return true;
523         }
524
525         @Override
526         public String toString() {
527             return super.toString() + '[' + keyValues + ']';
528         }
529
530         @Override
531         public String toRelativeString(final PathArgument previous) {
532             return super.toRelativeString(previous) + '[' + keyValues + ']';
533         }
534     }
535
536     /**
537      * Simple path argument identifying a {@link LeafSetEntryNode} leaf
538      * overall data tree.
539      */
540     public static final class NodeWithValue extends AbstractPathArgument {
541         private static final long serialVersionUID = -3637456085341738431L;
542
543         private final Object value;
544
545         public NodeWithValue(final QName node, final Object value) {
546             super(node);
547             this.value = value;
548         }
549
550         public Object getValue() {
551             return value;
552         }
553
554         @Override
555         protected int hashCodeImpl() {
556             final int prime = 31;
557             int result = super.hashCodeImpl();
558             result = prime * result + ((value == null) ? 0 : YangInstanceIdentifier.hashCode(value));
559             return result;
560         }
561
562         @Override
563         public boolean equals(final Object obj) {
564             if (!super.equals(obj)) {
565                 return false;
566             }
567             final NodeWithValue other = (NodeWithValue) obj;
568             return Objects.deepEquals(value, other.value);
569         }
570
571         @Override
572         public String toString() {
573             return super.toString() + '[' + value + ']';
574         }
575
576         @Override
577         public String toRelativeString(final PathArgument previous) {
578             return super.toRelativeString(previous) + '[' + value + ']';
579         }
580     }
581
582     /**
583      * Composite path argument identifying a {@link org.opendaylight.yangtools.yang.data.api.schema.AugmentationNode} node in
584      * particular subtree.
585      *
586      * Augmentation is uniquely identified by set of all possible child nodes.
587      * This is possible
588      * to identify instance of augmentation,
589      * since RFC6020 states that <code>augment</code> that augment
590      * statement must not add multiple nodes from same namespace
591      * / module to the target node.
592      *
593      *
594      * @see <a href="http://tools.ietf.org/html/rfc6020#section-7.15">RFC6020</a>
595      */
596     public static final class AugmentationIdentifier implements PathArgument {
597         private static final long serialVersionUID = -8122335594681936939L;
598         private final ImmutableSet<QName> childNames;
599
600         @Override
601         public QName getNodeType() {
602             // This should rather throw exception than return always null
603             throw new UnsupportedOperationException("Augmentation node has no QName");
604         }
605
606         /**
607          *
608          * Construct new augmentation identifier using supplied set of possible
609          * child nodes
610          *
611          * @param childNames
612          *            Set of possible child nodes.
613          */
614         public AugmentationIdentifier(final Set<QName> childNames) {
615             this.childNames = ImmutableSet.copyOf(childNames);
616         }
617
618         /**
619          * Returns set of all possible child nodes
620          *
621          * @return set of all possible child nodes.
622          */
623         public Set<QName> getPossibleChildNames() {
624             return childNames;
625         }
626
627         @Override
628         public String toString() {
629             final StringBuilder sb = new StringBuilder("AugmentationIdentifier{");
630             sb.append("childNames=").append(childNames).append('}');
631             return sb.toString();
632         }
633
634         @Override
635         public String toRelativeString(final PathArgument previous) {
636             return toString();
637         }
638
639         @Override
640         public boolean equals(final Object o) {
641             if (this == o) {
642                 return true;
643             }
644             if (!(o instanceof AugmentationIdentifier)) {
645                 return false;
646             }
647
648             AugmentationIdentifier that = (AugmentationIdentifier) o;
649             return childNames.equals(that.childNames);
650         }
651
652         @Override
653         public int hashCode() {
654             return childNames.hashCode();
655         }
656
657         @Override
658         public int compareTo(final PathArgument o) {
659             if (!(o instanceof AugmentationIdentifier)) {
660                 return -1;
661             }
662             AugmentationIdentifier other = (AugmentationIdentifier) o;
663             Set<QName> otherChildNames = other.getPossibleChildNames();
664             int thisSize = childNames.size();
665             int otherSize = otherChildNames.size();
666             if (thisSize == otherSize) {
667                 Iterator<QName> otherIterator = otherChildNames.iterator();
668                 for (QName name : childNames) {
669                     int c = name.compareTo(otherIterator.next());
670                     if (c != 0) {
671                         return c;
672                     }
673                 }
674                 return 0;
675             } else if (thisSize < otherSize) {
676                 return 1;
677             } else {
678                 return -1;
679             }
680         }
681     }
682
683     @Override
684     public final boolean contains(final YangInstanceIdentifier other) {
685         Preconditions.checkArgument(other != null, "other should not be null");
686
687         final Iterator<?> lit = getPathArguments().iterator();
688         final Iterator<?> oit = other.getPathArguments().iterator();
689
690         while (lit.hasNext()) {
691             if (!oit.hasNext()) {
692                 return false;
693             }
694
695             if (!lit.next().equals(oit.next())) {
696                 return false;
697             }
698         }
699
700         return true;
701     }
702
703     @Override
704     public final String toString() {
705         /*
706          * The toStringCache is safe, since the object contract requires
707          * immutability of the object and all objects referenced from this
708          * object.
709          * Used lists, maps are immutable. Path Arguments (elements) are also
710          * immutable, since the PathArgument contract requires immutability.
711          * The cache is thread-safe - if multiple computations occurs at the
712          * same time, cache will be overwritten with same result.
713          */
714         String ret = toStringCache;
715         if (ret == null) {
716             final StringBuilder builder = new StringBuilder("/");
717             PathArgument prev = null;
718             for (PathArgument argument : getPathArguments()) {
719                 if (prev != null) {
720                     builder.append('/');
721                 }
722                 builder.append(argument.toRelativeString(prev));
723                 prev = argument;
724             }
725
726             ret = builder.toString();
727             TOSTRINGCACHE_UPDATER.lazySet(this, ret);
728         }
729         return ret;
730     }
731 }