YANGTOOLS-706: Retrofit EffectiveStatement interfaces into parser
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / SubmoduleEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. 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.yang.parser.stmt.rfc6020.effective;
9
10 import static org.opendaylight.yangtools.yang.parser.spi.meta.StmtContextUtils.firstAttributeOf;
11
12 import java.util.Objects;
13 import org.opendaylight.yangtools.yang.common.QNameModule;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.BelongsToStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.SubmoduleEffectiveStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.SubmoduleStatement;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.spi.source.ModuleNameToModuleQName;
20
21 public final class SubmoduleEffectiveStatementImpl extends AbstractEffectiveModule<SubmoduleStatement>
22         implements SubmoduleEffectiveStatement {
23
24     private final QNameModule qnameModule;
25
26     public SubmoduleEffectiveStatementImpl(
27             final StmtContext<String, SubmoduleStatement, EffectiveStatement<String, SubmoduleStatement>> ctx) {
28         super(ctx);
29
30         final String belongsToModuleName = firstAttributeOf(ctx.declaredSubstatements(), BelongsToStatement.class);
31         final QNameModule belongsToModuleQName = ctx.getFromNamespace(ModuleNameToModuleQName.class,
32                 belongsToModuleName);
33         final RevisionEffectiveStatementImpl submoduleRevision = firstEffective(RevisionEffectiveStatementImpl.class);
34         this.qnameModule = QNameModule.create(belongsToModuleQName.getNamespace(),
35             submoduleRevision == null ? null : submoduleRevision.argument()).intern();
36     }
37
38     @Override
39     public QNameModule getQNameModule() {
40         return qnameModule;
41     }
42
43     @Override
44     public int hashCode() {
45         final int prime = 31;
46         int result = 1;
47         result = prime * result + Objects.hashCode(getName());
48         result = prime * result + Objects.hashCode(getYangVersion());
49         result = prime * result + Objects.hashCode(qnameModule);
50         return result;
51     }
52
53     @Override
54     public boolean equals(final Object obj) {
55         if (this == obj) {
56             return true;
57         }
58         if (obj == null) {
59             return false;
60         }
61         if (getClass() != obj.getClass()) {
62             return false;
63         }
64         SubmoduleEffectiveStatementImpl other = (SubmoduleEffectiveStatementImpl) obj;
65         if (!Objects.equals(getName(), other.getName())) {
66             return false;
67         }
68         if (!qnameModule.equals(other.qnameModule)) {
69             return false;
70         }
71         if (!Objects.equals(getYangVersion(), other.getYangVersion())) {
72             return false;
73         }
74         return true;
75     }
76
77 }