YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / type / InstanceIdentifierTypeEffectiveStatementImpl.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;
16 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
17 import org.opendaylight.yangtools.yang.model.util.type.InstanceIdentifierTypeBuilder;
18 import org.opendaylight.yangtools.yang.model.util.type.RestrictedTypes;
19 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.DeclaredEffectiveStatementBase;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
21
22 final class InstanceIdentifierTypeEffectiveStatementImpl
23         extends DeclaredEffectiveStatementBase<String, TypeStatement> implements TypeEffectiveStatement<TypeStatement> {
24     private final InstanceIdentifierTypeDefinition typeDefinition;
25
26     InstanceIdentifierTypeEffectiveStatementImpl(
27             final StmtContext<String, TypeStatement, EffectiveStatement<String, TypeStatement>> ctx,
28             final InstanceIdentifierTypeDefinition baseType) {
29         super(ctx);
30
31         final InstanceIdentifierTypeBuilder builder =
32                 RestrictedTypes.newInstanceIdentifierBuilder(baseType,
33                     AbstractTypeStatementSupport.typeEffectiveSchemaPath(ctx));
34
35         for (EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
36             if (stmt instanceof RequireInstanceEffectiveStatement) {
37                 builder.setRequireInstance(((RequireInstanceEffectiveStatement)stmt).argument());
38             }
39             if (stmt instanceof UnknownSchemaNode) {
40                 builder.addUnknownSchemaNode((UnknownSchemaNode)stmt);
41             }
42         }
43
44         typeDefinition = builder.build();
45     }
46
47     @Nonnull
48     @Override
49     public InstanceIdentifierTypeDefinition getTypeDefinition() {
50         return typeDefinition;
51     }
52 }