Clean up DataTreeIdentifier a bit
[mdsal.git] / binding / mdsal-binding-api / src / main / java / org / opendaylight / mdsal / binding / api / DataTreeIdentifier.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.api;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.base.MoreObjects;
13 import org.eclipse.jdt.annotation.NonNull;
14 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
15 import org.opendaylight.yangtools.concepts.HierarchicalIdentifier;
16 import org.opendaylight.yangtools.yang.binding.DataObject;
17 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
18
19 /**
20  * A unique identifier for a particular subtree. It is composed of the logical
21  * data store type and the instance identifier of the root node.
22  */
23 public final class DataTreeIdentifier<T extends DataObject> implements HierarchicalIdentifier<DataTreeIdentifier<?>> {
24     @java.io.Serial
25     private static final long serialVersionUID = 1L;
26
27     private final @NonNull InstanceIdentifier<T> rootIdentifier;
28     private final @NonNull LogicalDatastoreType datastoreType;
29
30     private DataTreeIdentifier(final @NonNull LogicalDatastoreType datastoreType,
31             final @NonNull InstanceIdentifier<T> rootIdentifier) {
32         this.datastoreType = requireNonNull(datastoreType);
33         this.rootIdentifier = requireNonNull(rootIdentifier);
34     }
35
36     public static <T extends DataObject> @NonNull DataTreeIdentifier<T> create(
37             final @NonNull LogicalDatastoreType datastoreType, final @NonNull InstanceIdentifier<T> rootIdentifier) {
38         return new DataTreeIdentifier<>(datastoreType, rootIdentifier);
39     }
40
41     /**
42      * Return the logical data store type.
43      *
44      * @return Logical data store type. Guaranteed to be non-null.
45      */
46     public @NonNull LogicalDatastoreType getDatastoreType() {
47         return datastoreType;
48     }
49
50     /**
51      * Return the {@link InstanceIdentifier} of the root node.
52      *
53      * @return Instance identifier corresponding to the root node.
54      */
55     public @NonNull InstanceIdentifier<T> getRootIdentifier() {
56         return rootIdentifier;
57     }
58
59     @Override
60     public boolean contains(final DataTreeIdentifier<?> other) {
61         return datastoreType == other.datastoreType && rootIdentifier.contains(other.rootIdentifier);
62     }
63
64     @Override
65     public int hashCode() {
66         return datastoreType.hashCode() * 31 + rootIdentifier.hashCode();
67     }
68
69     @Override
70     public boolean equals(final Object obj) {
71         return this == obj || obj instanceof DataTreeIdentifier<?> other && datastoreType == other.datastoreType
72             && rootIdentifier.equals(other.rootIdentifier);
73     }
74
75     @Override
76     public String toString() {
77         return MoreObjects.toStringHelper(this).add("datastore", datastoreType).add("root", rootIdentifier).toString();
78     }
79 }