Add RFC6643 parser support
[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 java.util.Objects;
11 import org.opendaylight.yangtools.rfc6643.model.api.SubIdEffectiveStatement;
12 import org.opendaylight.yangtools.rfc6643.model.api.SubIdSchemaNode;
13 import org.opendaylight.yangtools.rfc6643.model.api.SubIdStatement;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
16 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18
19 final class SubIdEffectiveStatementImpl extends UnknownEffectiveStatementBase<Integer, SubIdStatement>
20         implements SubIdEffectiveStatement, SubIdSchemaNode {
21
22     private final SchemaPath path;
23
24     SubIdEffectiveStatementImpl(final StmtContext<Integer, SubIdStatement, ?> ctx) {
25         super(ctx);
26         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
27     }
28
29     @Override
30     public int getArgument() {
31         return argument().intValue();
32     }
33
34     @Override
35     public QName getQName() {
36         return getNodeType();
37     }
38
39     @Override
40     public SchemaPath getPath() {
41         return path;
42     }
43
44     @Override
45     public int hashCode() {
46         return Objects.hash(path, getNodeType(), getNodeParameter());
47     }
48
49     @Override
50     public boolean equals(final Object obj) {
51         if (this == obj) {
52             return true;
53         }
54         if (obj == null) {
55             return false;
56         }
57         if (getClass() != obj.getClass()) {
58             return false;
59         }
60         final SubIdEffectiveStatementImpl other = (SubIdEffectiveStatementImpl) obj;
61         if (!Objects.equals(path, other.path)) {
62             return false;
63         }
64         if (!Objects.equals(getNodeType(), other.getNodeType())) {
65             return false;
66         }
67         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
68             return false;
69         }
70         return true;
71     }
72 }