Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / key / KeyStatementSupport.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.key;
9
10 import com.google.common.base.Splitter;
11 import com.google.common.collect.ImmutableSet;
12 import com.google.common.collect.ImmutableSet.Builder;
13 import java.util.Collection;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.common.QNameModule;
16 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.model.api.stmt.KeyStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.QNameCacheNamespace;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
23 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContextUtils;
24 import org.opendaylight.yangtools.yang.parser.spi.meta.SubstatementValidator;
25 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
26
27 public final class KeyStatementSupport
28         extends AbstractStatementSupport<Collection<SchemaNodeIdentifier>, KeyStatement,
29                 EffectiveStatement<Collection<SchemaNodeIdentifier>, KeyStatement>> {
30     private static final Splitter LIST_KEY_SPLITTER = Splitter.on(' ').omitEmptyStrings().trimResults();
31     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(
32         YangStmtMapping.KEY)
33         .build();
34
35     public KeyStatementSupport() {
36         super(YangStmtMapping.KEY);
37     }
38
39     @Override
40     public Collection<SchemaNodeIdentifier> parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
41         final Builder<SchemaNodeIdentifier> builder = ImmutableSet.builder();
42         int tokens = 0;
43         for (String keyToken : LIST_KEY_SPLITTER.split(value)) {
44             builder.add(SchemaNodeIdentifier.SAME.createChild(StmtContextUtils.qnameFromArgument(ctx, keyToken)));
45             tokens++;
46         }
47
48         // Throws NPE on nulls, retains first inserted value, cannot be modified
49         final Collection<SchemaNodeIdentifier> ret = builder.build();
50         SourceException.throwIf(ret.size() != tokens, ctx.getStatementSourceReference(),
51                 "Key argument '%s' contains duplicates", value);
52         return ret;
53     }
54
55     @Override
56     public Collection<SchemaNodeIdentifier> adaptArgumentValue(
57             final StmtContext<Collection<SchemaNodeIdentifier>, KeyStatement,
58                 EffectiveStatement<Collection<SchemaNodeIdentifier>, KeyStatement>> ctx,
59             final QNameModule targetModule) {
60         final Builder<SchemaNodeIdentifier> builder = ImmutableSet.builder();
61         boolean replaced = false;
62         for (final SchemaNodeIdentifier arg : ctx.getStatementArgument()) {
63             final QName qname = arg.getLastComponent();
64             if (!targetModule.equals(qname.getModule())) {
65                 final QName newQname = ctx.getFromNamespace(QNameCacheNamespace.class,
66                         QName.create(targetModule, qname.getLocalName()));
67                 builder.add(SchemaNodeIdentifier.SAME.createChild(newQname));
68                 replaced = true;
69             } else {
70                 builder.add(arg);
71             }
72         }
73
74         // This makes sure we reuse the collection when a grouping is
75         // instantiated in the same module
76         return replaced ? builder.build() : ctx.getStatementArgument();
77     }
78
79     @Override
80     public KeyStatement createDeclared(final StmtContext<Collection<SchemaNodeIdentifier>, KeyStatement, ?> ctx) {
81         return new KeyStatementImpl(ctx);
82     }
83
84     @Override
85     public EffectiveStatement<Collection<SchemaNodeIdentifier>, KeyStatement> createEffective(
86             final StmtContext<Collection<SchemaNodeIdentifier>, KeyStatement,
87                     EffectiveStatement<Collection<SchemaNodeIdentifier>, KeyStatement>> ctx) {
88         return new KeyEffectiveStatementImpl(ctx);
89     }
90
91     @Override
92     protected SubstatementValidator getSubstatementValidator() {
93         return SUBSTATEMENT_VALIDATOR;
94     }
95 }