0a85c9b2ca268c0c609fbc72b9e5f4cb6111ff99
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / OidEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016, 2020 PANTHEON.tech, s.r.o. 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.yangtools.rfc6643.parser;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Objects;
12 import org.opendaylight.yangtools.rfc6643.model.api.ObjectIdentifier;
13 import org.opendaylight.yangtools.rfc6643.model.api.OidEffectiveStatement;
14 import org.opendaylight.yangtools.rfc6643.model.api.OidSchemaNode;
15 import org.opendaylight.yangtools.rfc6643.model.api.OidStatement;
16 import org.opendaylight.yangtools.yang.common.QName;
17 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
18 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
19 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
21
22 final class OidEffectiveStatementImpl extends UnknownEffectiveStatementBase<ObjectIdentifier, OidStatement>
23         implements OidEffectiveStatement, OidSchemaNode {
24
25     private final SchemaPath path;
26
27     OidEffectiveStatementImpl(final Current<ObjectIdentifier, OidStatement> stmt,
28             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
29         super(stmt, substatements);
30         path = stmt.getEffectiveParent().getSchemaPath().createChild(getNodeType());
31     }
32
33     @Override
34     public QName getQName() {
35         return getNodeType();
36     }
37
38     @Override
39     @Deprecated
40     public SchemaPath getPath() {
41         return path;
42     }
43
44     @Override
45     public OidEffectiveStatement asEffectiveStatement() {
46         return this;
47     }
48
49     @Override
50     public int hashCode() {
51         return Objects.hash(path, getNodeType(), getNodeParameter());
52     }
53
54     @Override
55     public boolean equals(final Object obj) {
56         if (this == obj) {
57             return true;
58         }
59         if (obj == null) {
60             return false;
61         }
62         if (getClass() != obj.getClass()) {
63             return false;
64         }
65         final OidEffectiveStatementImpl other = (OidEffectiveStatementImpl) obj;
66         if (!Objects.equals(path, other.path)) {
67             return false;
68         }
69         if (!Objects.equals(getNodeType(), other.getNodeType())) {
70             return false;
71         }
72         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
73             return false;
74         }
75         return true;
76     }
77 }