8cd9d4efc0ccb6520619cb4b6f6e57d66b865337
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / type / AbstractLeafrefSpecificationSupport.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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 com.google.common.collect.ImmutableList;
11 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.PathEffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.RequireInstanceEffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.LeafrefSpecification;
17 import org.opendaylight.yangtools.yang.model.ri.type.BaseTypes;
18 import org.opendaylight.yangtools.yang.model.ri.type.LeafrefTypeBuilder;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStringStatementSupport;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.CommonStmtCtx;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
23 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
24
25 abstract class AbstractLeafrefSpecificationSupport extends AbstractStringStatementSupport<LeafrefSpecification,
26             EffectiveStatement<String, LeafrefSpecification>> {
27     AbstractLeafrefSpecificationSupport() {
28         super(YangStmtMapping.TYPE, StatementPolicy.exactReplica());
29     }
30
31     @Override
32     protected final LeafrefSpecification createDeclared(final StmtContext<String, LeafrefSpecification, ?> ctx,
33             final ImmutableList<? extends DeclaredStatement<?>> substatements) {
34         if (substatements.isEmpty()) {
35             throw noPath(ctx);
36         }
37         return new LeafrefSpecificationImpl(ctx.getRawArgument(), substatements);
38     }
39
40     @Override
41     protected EffectiveStatement<String, LeafrefSpecification> createEffective(
42             final Current<String, LeafrefSpecification> stmt,
43             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
44         if (substatements.isEmpty()) {
45             throw noPath(stmt);
46         }
47
48         final LeafrefTypeBuilder builder = BaseTypes.leafrefTypeBuilder(stmt.argumentAsTypeQName());
49
50         for (final EffectiveStatement<?, ?> subStmt : substatements) {
51             if (subStmt instanceof PathEffectiveStatement) {
52                 builder.setPathStatement(((PathEffectiveStatement) subStmt).argument());
53             } else if (subStmt instanceof RequireInstanceEffectiveStatement) {
54                 builder.setRequireInstance(((RequireInstanceEffectiveStatement)subStmt).argument());
55             }
56         }
57
58         return new TypeEffectiveStatementImpl<>(stmt.declared(), substatements, builder);
59     }
60
61     private static SourceException noPath(final CommonStmtCtx stmt) {
62         /*
63          *  https://tools.ietf.org/html/rfc7950#section-9.12
64          *
65          *     When the type is "union", the "type" statement (Section 7.4) MUST be
66          *     present.
67          */
68         return new SourceException("A path statement has to be present", stmt);
69     }
70 }