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