79077f21f92f8fb37d8ff895ad66f1e7cb9888c0
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / EffectiveStatementBase.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.stmt.rfc6020.effective;
9
10 import com.google.common.base.Optional;
11 import com.google.common.base.Predicates;
12 import com.google.common.collect.Collections2;
13 import com.google.common.collect.ImmutableList;
14 import com.google.common.collect.Iterables;
15 import java.util.ArrayList;
16 import java.util.Collection;
17 import java.util.List;
18 import java.util.Map;
19 import javax.annotation.Nonnull;
20 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
21 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
22 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
23 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
24 import org.opendaylight.yangtools.yang.model.api.meta.IdentifierNamespace;
25 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
26 import org.opendaylight.yangtools.yang.parser.stmt.reactor.StatementContextBase;
27
28 public abstract class EffectiveStatementBase<A, D extends DeclaredStatement<A>> implements EffectiveStatement<A, D> {
29     private final List<? extends EffectiveStatement<?, ?>> substatements;
30
31     /**
32      * Constructor.
33      *
34      * @param ctx
35      *            context of statement.
36      */
37     protected EffectiveStatementBase(final StmtContext<A, D, ?> ctx) {
38         final Collection<? extends StmtContext<?, ?, ?>> effectiveSubstatements = ctx.effectiveSubstatements();
39         final Collection<StmtContext<?, ?, ?>> substatementsInit = new ArrayList<>();
40
41         final Collection<? extends StmtContext<?, ?, ?>> supportedDeclaredSubStmts = Collections2.filter(
42                 ctx.declaredSubstatements(), StmtContext::isSupportedByFeatures);
43         for (final StmtContext<?, ?, ?> declaredSubstatement : supportedDeclaredSubStmts) {
44             if (YangStmtMapping.USES == declaredSubstatement.getPublicDefinition()) {
45                 substatementsInit.add(declaredSubstatement);
46                 substatementsInit.addAll(declaredSubstatement.getEffectOfStatement());
47                 ((StatementContextBase<?, ?, ?>) ctx).removeStatementsFromEffectiveSubstatements(declaredSubstatement
48                         .getEffectOfStatement());
49             } else {
50                 substatementsInit.add(declaredSubstatement);
51             }
52         }
53         substatementsInit.addAll(effectiveSubstatements);
54
55         this.substatements = ImmutableList.copyOf(initSubstatements(substatementsInit));
56     }
57
58     /**
59      * Create a set of substatements. This method is split out so it can be overridden in
60      * {@link ExtensionEffectiveStatementImpl} to leak a not-fully-initialized instance.
61      *
62      * @param substatementsInit proposed substatements
63      * @return Filtered substatements
64      */
65     Collection<? extends EffectiveStatement<?, ?>> initSubstatements(
66             final Collection<? extends StmtContext<?, ?, ?>> substatementsInit) {
67         return Collections2.transform(Collections2.filter(substatementsInit,
68             StmtContext::isSupportedToBuildEffective), StmtContext::buildEffective);
69     }
70
71     @Override
72     public final <K, V, N extends IdentifierNamespace<K, V>> V get(@Nonnull final Class<N> namespace,
73             @Nonnull final K identifier) {
74         throw new UnsupportedOperationException("Not implemented yet.");
75     }
76
77     @Override
78     public final <K, V, N extends IdentifierNamespace<K, V>> Map<K, V> getAll(@Nonnull final Class<N> namespace) {
79         throw new UnsupportedOperationException("Not implemented yet.");
80     }
81
82     @Nonnull
83     @Override
84     public final Collection<? extends EffectiveStatement<?, ?>> effectiveSubstatements() {
85         return substatements;
86     }
87
88     protected final <S extends EffectiveStatement<?, ?>> S firstEffective(final Class<S> type) {
89         final Optional<? extends EffectiveStatement<?, ?>> possible = Iterables.tryFind(substatements,
90                 Predicates.instanceOf(type));
91         return possible.isPresent() ? type.cast(possible.get()) : null;
92     }
93
94     protected final <S extends SchemaNode> S firstSchemaNode(final Class<S> type) {
95         final Optional<? extends EffectiveStatement<?, ?>> possible = Iterables.tryFind(substatements,
96                 Predicates.instanceOf(type));
97         return possible.isPresent() ? type.cast(possible.get()) : null;
98     }
99
100     @SuppressWarnings("unchecked")
101     protected final <T> Collection<T> allSubstatementsOfType(final Class<T> type) {
102         return Collection.class.cast(Collections2.filter(substatements, Predicates.instanceOf(type)));
103     }
104
105     protected final <T> T firstSubstatementOfType(final Class<T> type) {
106         final Optional<? extends EffectiveStatement<?, ?>> possible = Iterables.tryFind(substatements,
107                 Predicates.instanceOf(type));
108         return possible.isPresent() ? type.cast(possible.get()) : null;
109     }
110
111     protected final <R> R firstSubstatementOfType(final Class<?> type, final Class<R> returnType) {
112         final Optional<? extends EffectiveStatement<?, ?>> possible = Iterables.tryFind(substatements,
113                 Predicates.and(Predicates.instanceOf(type), Predicates.instanceOf(returnType)));
114         return possible.isPresent() ? returnType.cast(possible.get()) : null;
115     }
116
117     protected final EffectiveStatement<?, ?> firstEffectiveSubstatementOfType(final Class<?> type) {
118         return Iterables.tryFind(substatements, Predicates.instanceOf(type)).orNull();
119     }
120 }