Propagate EffectiveModelContext to more places
[yangtools.git] / yang / yang-parser-api / src / main / java / org / opendaylight / yangtools / yang / model / parser / api / YangParser.java
index 02db3878dff77cfd87662db901e81efeb78a2a92..805efb6037fa7bdd02a51a8de77cbda94cf17daf 100644 (file)
@@ -13,22 +13,21 @@ import java.io.IOException;
 import java.util.Collection;
 import java.util.List;
 import java.util.Set;
-import javax.annotation.Nonnull;
-import javax.annotation.concurrent.NotThreadSafe;
+import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.yangtools.yang.common.QName;
 import org.opendaylight.yangtools.yang.common.QNameModule;
+import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
 import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation;
 
 /**
  * Configurable single-use YANG parser. Each instance can be configured to use a different set of models after
- * which it is built. Models once added cannot be removed.
+ * which it is built. Models once added cannot be removed. Implementations are expected to be NOT thread-safe.
  *
  * @author Robert Varga
  */
 @Beta
-@NotThreadSafe
 public interface YangParser {
     /**
      * Return enumeration of concrete types of {@link SchemaSourceRepresentation} parsers created from this factory
@@ -37,36 +36,34 @@ public interface YangParser {
      *
      * @return Enumeration of supported schema source representations.
      */
-    Collection<Class<? extends SchemaSourceRepresentation>> supportedSourceRepresentations();
+    @NonNull Collection<Class<? extends SchemaSourceRepresentation>> supportedSourceRepresentations();
 
     /**
      * Return the set of all YANG statements semantically supported by this parser instance.
      *
      * @return Set of all YANG statements semantically supported by this parser instance.
      */
-    Set<QName> supportedStatements();
+    @NonNull Set<QName> supportedStatements();
 
     /**
      * Add main source. All main sources are present in resulting SchemaContext.
      *
-     * @param source
-     *            which should be added into main sources
+     * @param source which should be added into main sources
      * @throws YangSyntaxErrorException when one of the sources fails syntactic analysis
      * @throws IOException when an IO error occurs
      * @throws IllegalArgumentException if the representation is not supported
      */
-    YangParser addSource(final SchemaSourceRepresentation source) throws IOException, YangSyntaxErrorException;
+    @NonNull YangParser addSource(SchemaSourceRepresentation source) throws IOException, YangSyntaxErrorException;
 
     /**
      * Add main sources. All main sources are present in resulting SchemaContext.
      *
-     * @param sources
-     *            which should be added into main sources
+     * @param sources which should be added into main sources
      * @throws YangSyntaxErrorException when one of the sources fails syntactic analysis
      * @throws IOException when an IO error occurs
      * @throws IllegalArgumentException if the representation is not supported
      */
-    default YangParser addSources(final SchemaSourceRepresentation... sources) throws IOException,
+    default @NonNull YangParser addSources(final SchemaSourceRepresentation... sources) throws IOException,
         YangSyntaxErrorException {
         for (SchemaSourceRepresentation source : sources) {
             addSource(source);
@@ -74,8 +71,8 @@ public interface YangParser {
         return this;
     }
 
-    default YangParser addSources(final Collection<? extends SchemaSourceRepresentation> sources) throws IOException,
-        YangSyntaxErrorException {
+    default @NonNull YangParser addSources(final Collection<? extends SchemaSourceRepresentation> sources)
+            throws IOException, YangSyntaxErrorException {
         for (SchemaSourceRepresentation source : sources) {
             addSource(source);
         }
@@ -91,13 +88,12 @@ public interface YangParser {
      * <p>
      * Note: Library sources are not supported in semantic version mode currently.
      *
-     * @param sources
-     *            YANG sources which should be added into library sources
+     * @param sources YANG sources which should be added into library sources
      * @throws YangSyntaxErrorException when one of the sources fails syntactic analysis
      * @throws IOException when an IO error occurs
      * @throws IllegalArgumentException if the representation is not supported
      */
-    default YangParser addLibSources(final SchemaSourceRepresentation... sources) throws IOException,
+    default @NonNull YangParser addLibSources(final SchemaSourceRepresentation... sources) throws IOException,
             YangSyntaxErrorException {
         for (SchemaSourceRepresentation source : sources) {
             addLibSource(source);
@@ -105,7 +101,7 @@ public interface YangParser {
         return this;
     }
 
-    default YangParser addLibSources(final Collection<SchemaSourceRepresentation> sources) throws IOException,
+    default @NonNull YangParser addLibSources(final Collection<SchemaSourceRepresentation> sources) throws IOException,
             YangSyntaxErrorException {
         for (SchemaSourceRepresentation source : sources) {
             addLibSource(source);
@@ -114,38 +110,52 @@ public interface YangParser {
     }
 
     /**
-     * Set supported features based on which all if-feature statements in the
-     * parsed YANG modules will be resolved. If this method is not invoked, all features will be supported.
+     * Set supported features based on which all if-feature statements in the parsed YANG modules will be resolved. If
+     * this method is not invoked, all features will be supported.
      *
-     * @param supportedFeatures
-     *            Set of supported features in the final SchemaContext.
-     *            If the set is empty, no features encountered will be supported.
+     * @param supportedFeatures Set of supported features in the final SchemaContext. If the set is empty, no features
+     *                          encountered will be supported.
      */
-    YangParser setSupportedFeatures(@Nonnull final Set<QName> supportedFeatures);
+    @NonNull YangParser setSupportedFeatures(@NonNull Set<QName> supportedFeatures);
 
     /**
-     * Set YANG modules which can be deviated by specified modules during the parsing process.
-     * Map key (QNameModule) denotes a module which can be deviated by the modules in the Map value.
+     * Set YANG modules which can be deviated by specified modules during the parsing process. Map key (QNameModule)
+     * denotes a module which can be deviated by the modules in the Map value.
      *
-     * @param modulesDeviatedByModules
-     *            Map of YANG modules (Map key) which can be deviated by specified modules (Map value) in the final
-     *            SchemaContext. If the map is empty, no deviations encountered will be supported.
+     * @param modulesDeviatedByModules Map of YANG modules (Map key) which can be deviated by specified modules (Map
+     *                                 value) in the final SchemaContext. If the map is empty, no deviations encountered
+     *                                 will be supported.
      */
-    YangParser setModulesWithSupportedDeviations(
-            @Nonnull SetMultimap<QNameModule, QNameModule> modulesDeviatedByModules);
+    @NonNull YangParser setModulesWithSupportedDeviations(
+            @NonNull SetMultimap<QNameModule, QNameModule> modulesDeviatedByModules);
 
     /**
      * Build the declared view of a combined view of declared statements.
      *
      * @return Ordered collection of declared statements from requested sources.
+     * @throws YangSyntaxErrorException When a syntactic error is encountered.
+     */
+    @NonNull List<DeclaredStatement<?>> buildDeclaredModel() throws YangParserException;
+
+    /**
+     * Build the effective view of a combined view of effective statements. Note that this representation, unlike
+     * {@link #buildDeclaredModel()} does not expose submodules as top-level contracts. These are available from their
+     * respective parent modules.
+     *
+     * @return Effective module statements indexed by their QNameModule.
+     * @throws YangSyntaxErrorException When a syntactic error is encountered.
      */
-    List<DeclaredStatement<?>> buildDeclaredModel() throws YangParserException;
+    @NonNull EffectiveModelContext buildEffectiveModel() throws YangParserException;
 
     /**
-     * Build effective {@link SchemaContext}
+     * Build effective {@link SchemaContext}.
      *
      * @return An effective schema context comprised of configured models.
      * @throws YangSyntaxErrorException When a syntactic error is encountered.
+     * @deprecated Use {@link #buildEffectiveModel()} instead.
      */
-    SchemaContext buildSchemaContext() throws YangParserException;
+    @Deprecated(forRemoval = true)
+    default @NonNull SchemaContext buildSchemaContext() throws YangParserException {
+        return buildEffectiveModel();
+    }
 }