YANGTOOLS-706: Split up base utility classes into rfc6020.util
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / BitEffectiveStatementImpl.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.type;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.ArrayList;
12 import java.util.List;
13 import java.util.Objects;
14 import javax.annotation.Nonnull;
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.UnknownSchemaNode;
18 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.BitEffectiveStatement;
20 import org.opendaylight.yangtools.yang.model.api.stmt.BitStatement;
21 import org.opendaylight.yangtools.yang.model.api.stmt.PositionEffectiveStatement;
22 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
23 import org.opendaylight.yangtools.yang.parser.rfc6020.util.AbstractEffectiveDocumentedNode;
24 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
25
26 public class BitEffectiveStatementImpl extends AbstractEffectiveDocumentedNode<QName, BitStatement>
27         implements BitEffectiveStatement {
28
29     private final QName qname;
30     private final SchemaPath schemaPath;
31     private final Long declaredPosition;
32     private final List<UnknownSchemaNode> unknownSchemaNodes;
33
34     public BitEffectiveStatementImpl(final StmtContext<QName, BitStatement, ?> ctx) {
35         super(ctx);
36
37         qname = ctx.getStatementArgument();
38         schemaPath = ctx.getSchemaPath().get();
39
40         final List<UnknownSchemaNode> unknownSchemaNodesInit = new ArrayList<>();
41         Long declaredPositionInit = null;
42         for (final EffectiveStatement<?, ?> effectiveStatement : effectiveSubstatements()) {
43             if (effectiveStatement instanceof PositionEffectiveStatement) {
44                 declaredPositionInit = ((PositionEffectiveStatement) effectiveStatement).argument();
45             }
46             if (effectiveStatement instanceof UnknownSchemaNode) {
47                 unknownSchemaNodesInit.add((UnknownSchemaNode) effectiveStatement);
48             }
49         }
50
51         declaredPosition = declaredPositionInit;
52         unknownSchemaNodes = ImmutableList.copyOf(unknownSchemaNodesInit);
53     }
54
55     public Long getDeclaredPosition() {
56         return declaredPosition;
57     }
58
59     public String getName() {
60         return qname.getLocalName();
61     }
62
63     public QName getQName() {
64         return qname;
65     }
66
67     public SchemaPath getPath() {
68         return schemaPath;
69     }
70
71     @Nonnull
72     @Override
73     public List<UnknownSchemaNode> getUnknownSchemaNodes() {
74         return unknownSchemaNodes;
75     }
76
77     @Override
78     public int hashCode() {
79         final int prime = 31;
80         int result = 1;
81         result = prime * result + qname.hashCode();
82         result = prime * result + schemaPath.hashCode();
83         result = prime * result + Objects.hashCode(declaredPosition);
84         result = prime * result + Objects.hashCode(unknownSchemaNodes);
85         return result;
86     }
87
88     @Override
89     public boolean equals(final Object obj) {
90         if (this == obj) {
91             return true;
92         }
93         if (obj == null) {
94             return false;
95         }
96         if (getClass() != obj.getClass()) {
97             return false;
98         }
99         final BitsTypeDefinition.Bit other = (BitsTypeDefinition.Bit) obj;
100         return Objects.equals(qname, other.getQName()) && Objects.equals(schemaPath, other.getPath());
101     }
102
103     @Override
104     public String toString() {
105         return BitEffectiveStatementImpl.class.getSimpleName() + "[name=" + qname.getLocalName() + ", position="
106                 + declaredPosition + "]";
107     }
108 }