Bug 6867: Rename of Rfc6020Mapping to YangStmtMapping
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / 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
9 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
10
11 import javax.annotation.Nonnull;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.TypeEffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
15 import org.opendaylight.yangtools.yang.model.api.type.InstanceIdentifierTypeDefinition;
16 import org.opendaylight.yangtools.yang.model.util.type.InstanceIdentifierTypeBuilder;
17 import org.opendaylight.yangtools.yang.model.util.type.RestrictedTypes;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.TypeUtils;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeclaredEffectiveStatementBase;
21 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.RequireInstanceEffectiveStatementImpl;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementImpl;
23
24 public final class InstanceIdentifierTypeEffectiveStatementImpl extends DeclaredEffectiveStatementBase<String, TypeStatement>
25         implements TypeEffectiveStatement<TypeStatement> {
26     private final InstanceIdentifierTypeDefinition typeDefinition;
27
28     public InstanceIdentifierTypeEffectiveStatementImpl(
29             final StmtContext<String, TypeStatement, EffectiveStatement<String, TypeStatement>> ctx,
30             final InstanceIdentifierTypeDefinition baseType) {
31         super(ctx);
32
33         final InstanceIdentifierTypeBuilder builder =
34                 RestrictedTypes.newInstanceIdentifierBuilder(baseType, TypeUtils.typeEffectiveSchemaPath(ctx));
35
36         for (EffectiveStatement<?, ?> stmt : effectiveSubstatements()) {
37             if (stmt instanceof RequireInstanceEffectiveStatementImpl) {
38                 builder.setRequireInstance(((RequireInstanceEffectiveStatementImpl)stmt).argument());
39             }
40             if (stmt instanceof UnknownEffectiveStatementImpl) {
41                 builder.addUnknownSchemaNode((UnknownEffectiveStatementImpl)stmt);
42             }
43         }
44
45         typeDefinition = builder.build();
46     }
47
48     @Nonnull
49     @Override
50     public InstanceIdentifierTypeDefinition getTypeDefinition() {
51         return typeDefinition;
52     }
53 }