f3a46b74175edf7a8ba733a2eb842379e7f5781c
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / SubIdEffectiveStatementImpl.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.SubIdEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.SubIdSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.SubIdStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.common.Uint32;
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 SubIdEffectiveStatementImpl extends UnknownEffectiveStatementBase<Uint32, SubIdStatement>
23         implements SubIdEffectiveStatement, SubIdSchemaNode {
24
25     private final SchemaPath path;
26
27     SubIdEffectiveStatementImpl(final Current<Uint32, SubIdStatement> 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 SubIdEffectiveStatement 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 SubIdEffectiveStatementImpl other = (SubIdEffectiveStatementImpl) 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 }