Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / type / InstanceIdentifierSpecificationEffectiveStatement.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.rfc7950.stmt.type;
9
10 import javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.UnknownSchemaNode;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.RequireInstanceEffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.InstanceIdentifierSpecification;
16 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
17 import org.opendaylight.yangtools.yang.model.util.type.BaseTypes;
18 import org.opendaylight.yangtools.yang.model.util.type.InstanceIdentifierTypeBuilder;
19 import org.opendaylight.yangtools.yang.model.util.type.RestrictedTypes;
20 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
22
23 final class InstanceIdentifierSpecificationEffectiveStatement
24         extends DeclaredEffectiveStatementBase<String, InstanceIdentifierSpecification>
25         implements TypeEffectiveStatement<InstanceIdentifierSpecification> {
26
27     private final InstanceIdentifierTypeDefinition typeDefinition;
28
29     InstanceIdentifierSpecificationEffectiveStatement(final StmtContext<String,
30             InstanceIdentifierSpecification, EffectiveStatement<String, InstanceIdentifierSpecification>> ctx) {
31         super(ctx);
32
33         final InstanceIdentifierTypeBuilder builder = RestrictedTypes.newInstanceIdentifierBuilder(
34             BaseTypes.instanceIdentifierType(), ctx.getSchemaPath().get());
35
36         for (EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
37             if (stmt instanceof RequireInstanceEffectiveStatement) {
38                 builder.setRequireInstance(((RequireInstanceEffectiveStatement)stmt).argument());
39             }
40             if (stmt instanceof UnknownSchemaNode) {
41                 builder.addUnknownSchemaNode((UnknownSchemaNode)stmt);
42             }
43         }
44
45         typeDefinition = builder.build();
46     }
47
48     @Nonnull
49     @Override
50     public InstanceIdentifierTypeDefinition getTypeDefinition() {
51         return typeDefinition;
52     }
53 }