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