BUG-6316: Fix Bit and EnumPair's position/value types
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / BitsSpecificationEffectiveStatementImpl.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 org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
11 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.BitsSpecification;
13 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition;
14 import org.opendaylight.yangtools.yang.model.api.type.BitsTypeDefinition.Bit;
15 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
16 import org.opendaylight.yangtools.yang.model.util.type.BitBuilder;
17 import org.opendaylight.yangtools.yang.model.util.type.BitsTypeBuilder;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
21 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
22
23 public final class BitsSpecificationEffectiveStatementImpl extends
24         DeclaredEffectiveStatementBase<String, BitsSpecification> implements TypeEffectiveStatement<BitsSpecification> {
25
26     private final BitsTypeDefinition typeDefinition;
27
28     public BitsSpecificationEffectiveStatementImpl(
29             final StmtContext<String, BitsSpecification, EffectiveStatement<String, BitsSpecification>> ctx) {
30         super(ctx);
31
32         final BitsTypeBuilder builder = BaseTypes.bitsTypeBuilder(ctx.getSchemaPath().get());
33         Long highestPosition = null;
34         for (final EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
35             if (stmt instanceof BitEffectiveStatementImpl) {
36                 final BitEffectiveStatementImpl bitSubStmt = (BitEffectiveStatementImpl) stmt;
37
38                 final long effectivePos;
39                 if (bitSubStmt.getDeclaredPosition() == null) {
40                     if (highestPosition != null) {
41                         SourceException.throwIf(highestPosition == 4294967295L, ctx.getStatementSourceReference(),
42                                 "Bit %s must have a position statement", bitSubStmt);
43                         effectivePos = highestPosition + 1;
44                     } else {
45                         effectivePos = 0L;
46                     }
47                 } else {
48                     effectivePos = bitSubStmt.getDeclaredPosition();
49                 }
50
51                 final Bit b = BitBuilder.create(bitSubStmt.getPath(), effectivePos)
52                         .setDescription(bitSubStmt.getDescription()).setReference(bitSubStmt.getReference())
53                         .setStatus(bitSubStmt.getStatus()).setUnknownSchemaNodes(bitSubStmt.getUnknownSchemaNodes())
54                         .build();
55
56                 SourceException.throwIf(b.getPosition() < 0L && b.getPosition() > 4294967295L,
57                         ctx.getStatementSourceReference(), "Bit %s has illegal position", b);
58
59                 if (highestPosition == null || highestPosition < b.getPosition()) {
60                     highestPosition = b.getPosition();
61                 }
62
63                 builder.addBit(b);
64             }
65             if (stmt instanceof UnknownEffectiveStatementImpl) {
66                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl) stmt);
67             }
68         }
69
70         typeDefinition = builder.build();
71     }
72
73     @Override
74     public BitsTypeDefinition getTypeDefinition() {
75         return typeDefinition;
76     }
77 }