Another round of checkstyle fixes
[yangtools.git] / yang / yang-parser-impl / 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.VisibleForTesting;
11 import com.google.common.base.Verify;
12 import com.google.common.collect.ImmutableList;
13 import java.util.HashSet;
14 import java.util.List;
15 import java.util.Set;
16 import org.opendaylight.yangtools.yang.model.api.Module;
17 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
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 List<DeclaredStatement<?>> rootDeclaredStatements;
26     private final List<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     /**
49      * Resolve SchemaContext for a set of modules.
50      *
51      * @deprecated Use {@link SimpleSchemaContext#forModules(Set)} instead.
52      */
53     @Deprecated
54     public static SchemaContext resolveSchemaContext(final Set<Module> modules) {
55         return SimpleSchemaContext.forModules(modules);
56     }
57
58     @VisibleForTesting
59     public List<DeclaredStatement<?>> getRootDeclaredStatements() {
60         return rootDeclaredStatements;
61     }
62
63     @VisibleForTesting
64     public List<EffectiveStatement<?, ?>> getRootEffectiveStatements() {
65         return rootEffectiveStatements;
66     }
67 }