20103be894be302a7201bec1ea9d3380645e0351
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / ModuleEffectiveStatementImpl.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 java.util.Objects;
11 import org.opendaylight.yangtools.yang.common.QNameModule;
12 import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.ModuleStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
16 import org.opendaylight.yangtools.yang.parser.spi.source.ModuleCtxToModuleQName;
17
18 public final class ModuleEffectiveStatementImpl extends AbstractEffectiveModule<ModuleStatement> {
19     private final QNameModule qNameModule;
20
21     public ModuleEffectiveStatementImpl(
22             final StmtContext<String, ModuleStatement, EffectiveStatement<String, ModuleStatement>> ctx) {
23         super(ctx);
24
25         final QNameModule module = ctx.getFromNamespace(ModuleCtxToModuleQName.class, ctx);
26         if (module.getRevision() == null) {
27             qNameModule = QNameModule.cachedReference(
28                 QNameModule.create(module.getNamespace(), SimpleDateFormatUtil.DEFAULT_DATE_REV));
29         } else {
30             qNameModule = module;
31         }
32     }
33
34     @Override
35     public QNameModule getQNameModule() {
36         return qNameModule;
37     }
38
39     @Override
40     public int hashCode() {
41         final int prime = 31;
42         int result = 1;
43         result = prime * result + Objects.hashCode(getName());
44         result = prime * result + Objects.hashCode(getYangVersion());
45         result = prime * result + Objects.hashCode(qNameModule);
46         return result;
47     }
48
49     @Override
50     public boolean equals(final Object obj) {
51         if (this == obj) {
52             return true;
53         }
54         if (!(obj instanceof ModuleEffectiveStatementImpl)) {
55             return false;
56         }
57         ModuleEffectiveStatementImpl other = (ModuleEffectiveStatementImpl) obj;
58         if (!Objects.equals(getName(), other.getName())) {
59             return false;
60         }
61         if (!qNameModule.equals(other.qNameModule)) {
62             return false;
63         }
64         if (!Objects.equals(getYangVersion(), other.getYangVersion())) {
65             return false;
66         }
67         return true;
68     }
69
70 }