3276981af2c83e49576c22850e52bb4fcee26355
[yangtools.git] / yang / yang-parser-reactor / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / reactor / EffectiveSchemaContext.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.reactor;
9
10 import com.google.common.annotations.Beta;
11 import com.google.common.annotations.VisibleForTesting;
12 import com.google.common.base.Verify;
13 import com.google.common.collect.ImmutableList;
14 import java.util.HashSet;
15 import java.util.List;
16 import java.util.Set;
17 import org.opendaylight.yangtools.yang.model.api.Module;
18 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
19 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
20 import org.opendaylight.yangtools.yang.model.api.stmt.ModuleStatement;
21 import org.opendaylight.yangtools.yang.model.util.SimpleSchemaContext;
22
23 @VisibleForTesting
24 public final class EffectiveSchemaContext extends SimpleSchemaContext {
25     private final ImmutableList<DeclaredStatement<?>> rootDeclaredStatements;
26     private final ImmutableList<EffectiveStatement<?, ?>> rootEffectiveStatements;
27
28     private EffectiveSchemaContext(final Set<Module> modules, final List<DeclaredStatement<?>> rootDeclaredStatements,
29             final List<EffectiveStatement<?, ?>> rootEffectiveStatements) {
30         super(modules);
31         this.rootDeclaredStatements = ImmutableList.copyOf(rootDeclaredStatements);
32         this.rootEffectiveStatements = ImmutableList.copyOf(rootEffectiveStatements);
33     }
34
35     static EffectiveSchemaContext create(final List<DeclaredStatement<?>> rootDeclaredStatements,
36             final List<EffectiveStatement<?, ?>> rootEffectiveStatements) {
37         final Set<Module> modules = new HashSet<>();
38         for (EffectiveStatement<?, ?> stmt : rootEffectiveStatements) {
39             if (stmt.getDeclared() instanceof ModuleStatement) {
40                 Verify.verify(stmt instanceof Module);
41                 modules.add((Module) stmt);
42             }
43         }
44
45         return new EffectiveSchemaContext(modules, rootDeclaredStatements, rootEffectiveStatements);
46     }
47
48     @VisibleForTesting
49     public List<DeclaredStatement<?>> getRootDeclaredStatements() {
50         return rootDeclaredStatements;
51     }
52
53     @Beta
54     public List<EffectiveStatement<?, ?>> getRootEffectiveStatements() {
55         return rootEffectiveStatements;
56     }
57 }