Bug 3874: Support of yang modeled AnyXML - XML deserialization
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / YangInferencePipeline.java
index c16cd191acc975d40ac539d33ff936bfb4cc4bd1..4d3889680341b395dd4afad053a469a4ee38f287 100644 (file)
@@ -9,45 +9,177 @@ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020;
 
 import static org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.global;
 import static org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.sourceLocal;
+import static org.opendaylight.yangtools.yang.parser.spi.meta.NamespaceBehaviour.treeScoped;
 
 import com.google.common.collect.ImmutableMap;
 import java.util.Map;
+import org.opendaylight.yangtools.yang.parser.spi.ExtensionNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.GroupingNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.IdentityNamespace;
 import org.opendaylight.yangtools.yang.parser.spi.ModuleNamespace;
 import org.opendaylight.yangtools.yang.parser.spi.NamespaceToModule;
+import org.opendaylight.yangtools.yang.parser.spi.SubmoduleNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.TypeNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.meta.DerivedIdentitiesNamespace;
 import org.opendaylight.yangtools.yang.parser.spi.meta.ModelProcessingPhase;
+import org.opendaylight.yangtools.yang.parser.spi.meta.QNameCacheNamespace;
 import org.opendaylight.yangtools.yang.parser.spi.meta.StatementSupportBundle;
+import org.opendaylight.yangtools.yang.parser.spi.source.AnyxmlSchemaLocationNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.source.BelongsToModuleContext;
+import org.opendaylight.yangtools.yang.parser.spi.source.BelongsToPrefixToModuleIdentifier;
+import org.opendaylight.yangtools.yang.parser.spi.source.BelongsToPrefixToModuleName;
+import org.opendaylight.yangtools.yang.parser.spi.source.ImpPrefixToModuleIdentifier;
+import org.opendaylight.yangtools.yang.parser.spi.source.IncludedSubmoduleNameToIdentifier;
+import org.opendaylight.yangtools.yang.parser.spi.source.ModuleCtxToModuleQName;
+import org.opendaylight.yangtools.yang.parser.spi.source.ModuleIdentifierToModuleQName;
+import org.opendaylight.yangtools.yang.parser.spi.source.ModuleNameToModuleQName;
+import org.opendaylight.yangtools.yang.parser.spi.source.ModuleNamespaceForBelongsTo;
+import org.opendaylight.yangtools.yang.parser.spi.source.ModuleQNameToModuleName;
+import org.opendaylight.yangtools.yang.parser.spi.source.PrefixToModule;
+import org.opendaylight.yangtools.yang.parser.spi.source.QNameToStatementDefinition;
+import org.opendaylight.yangtools.yang.parser.spi.source.StmtOrderingNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.validation.ValidationBundlesNamespace;
+import org.opendaylight.yangtools.yang.parser.spi.validation.ValidationBundlesNamespace.ValidationBundleType;
 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
 
 public final class YangInferencePipeline {
 
-    public static final StatementSupportBundle LINKAGE_BUNDLE = StatementSupportBundle.builder()
+    public static final StatementSupportBundle INIT_BUNDLE = StatementSupportBundle
+            .builder().addSupport(global(ValidationBundlesNamespace.class))
+            .build();
+
+    public static final StatementSupportBundle LINKAGE_BUNDLE = StatementSupportBundle
+            .derivedFrom(INIT_BUNDLE)
             .addSupport(new ModuleStatementSupport())
+            .addSupport(new SubmoduleStatementImpl.Definition())
             .addSupport(new NamespaceStatementImpl.Definition())
             .addSupport(new ImportStatementDefinition())
+            .addSupport(new IncludeStatementImpl.Definition())
             .addSupport(new PrefixStatementImpl.Definition())
+            .addSupport(new YangVersionStatementImpl.Definition())
+            .addSupport(new DescriptionStatementImpl.Definition())
+            .addSupport(new RevisionStatementImpl.Definition())
+            .addSupport(new RevisionDateStatementImpl.Definition())
+            .addSupport(new ReferenceStatementImpl.Definition())
+            .addSupport(new ContactStatementImpl.Definition())
+            .addSupport(new OrganizationStatementImpl.Definition())
+            .addSupport(new BelongsToStatementImpl.Definition())
             .addSupport(global(ModuleNamespace.class))
+            .addSupport(global(ModuleNamespaceForBelongsTo.class))
+            .addSupport(global(SubmoduleNamespace.class))
             .addSupport(global(NamespaceToModule.class))
+            .addSupport(global(ModuleNameToModuleQName.class))
+            .addSupport(global(ModuleCtxToModuleQName.class))
+            .addSupport(global(ModuleQNameToModuleName.class))
+            .addSupport(global(PrefixToModule.class))
+            .addSupport(global(ModuleIdentifierToModuleQName.class))
+            .addSupport(QNameCacheNamespace.getInstance())
             .addSupport(sourceLocal(ImportedModuleContext.class))
-            .build();
+            .addSupport(sourceLocal(IncludedModuleContext.class))
+            .addSupport(sourceLocal(IncludedSubmoduleNameToIdentifier.class))
+            .addSupport(sourceLocal(ImpPrefixToModuleIdentifier.class))
+            .addSupport(sourceLocal(BelongsToPrefixToModuleIdentifier.class))
+            .addSupport(sourceLocal(URIStringToImpPrefix.class))
+            .addSupport(sourceLocal(BelongsToModuleContext.class))
+            .addSupport(sourceLocal(QNameToStatementDefinition.class))
+            .addSupport(sourceLocal(BelongsToPrefixToModuleName.class)).build();
 
-    private static final StatementSupportBundle STMT_DEF_BUNDLE = StatementSupportBundle.derivedFrom(LINKAGE_BUNDLE).build();
 
-    private static final StatementSupportBundle FULL_DECL_BUNDLE = StatementSupportBundle.derivedFrom(STMT_DEF_BUNDLE).build();
+    private static final StatementSupportBundle STMT_DEF_BUNDLE = StatementSupportBundle
+            .derivedFrom(LINKAGE_BUNDLE)
+            .addSupport(new YinElementStatementImpl.Definition())
+            .addSupport(new ArgumentStatementImpl.Definition())
+            .addSupport(new ExtensionStatementImpl.Definition())
+            .addSupport(new ChildSchemaNodes<>())
+            .addSupport(new SchemaNodeIdentifierBuildNamespace())
+            .addSupport(global(ExtensionNamespace.class))
+            .addSupport(new TypedefStatementImpl.Definition())
+            .addSupport(treeScoped(TypeNamespace.class))
+            .addSupport(new IdentityStatementImpl.Definition())
+            .addSupport(global(IdentityNamespace.class))
+            .addSupport(new DefaultStatementImpl.Definition())
+            .addSupport(new StatusStatementImpl.Definition())
+            .addSupport(new TypeStatementImpl.Definition())
+            .addSupport(new UnitsStatementImpl.Definition())
+            .addSupport(new RequireInstanceStatementImpl.Definition())
+            .addSupport(new BitStatementImpl.Definition())
+            .addSupport(new PathStatementImpl.Definition())
+            .addSupport(new EnumStatementImpl.Definition())
+            .addSupport(new LengthStatementImpl.Definition())
+            .addSupport(new PatternStatementImpl.Definition())
+            .addSupport(new RangeStatementImpl.Definition())
+            .addSupport(new ContainerStatementImpl.Definition())
+            .addSupport(new GroupingStatementImpl.Definition())
+            .addSupport(new ListStatementImpl.Definition())
+            .addSupport(new UniqueStatementImpl.Definition())
+            .addSupport(new RpcStatementImpl.Definition())
+            .addSupport(new InputStatementImpl.Definition())
+            .addSupport(new OutputStatementImpl.Definition())
+            .addSupport(new NotificationStatementImpl.Definition())
+            .addSupport(new FractionDigitsStatementImpl.Definition())
+            .addSupport(new BaseStatementImpl.Definition())
+            .addSupport(global(DerivedIdentitiesNamespace.class))
+            .build();
+
+    private static final StatementSupportBundle FULL_DECL_BUNDLE = StatementSupportBundle
+            .derivedFrom(STMT_DEF_BUNDLE)
+            .addSupport(new LeafStatementImpl.Definition())
+            .addSupport(new ConfigStatementImpl.Definition())
+            .addSupport(new DeviationStatementImpl.Definition())
+            .addSupport(new DeviateStatementImpl.Definition())
+            .addSupport(new ChoiceStatementImpl.Definition())
+            .addSupport(new CaseStatementImpl.Definition())
+            .addSupport(new MustStatementImpl.Definition())
+            .addSupport(new MandatoryStatementImpl.Definition())
+            .addSupport(new AnyxmlStatementImpl.Definition())
+            .addSupport(new IfFeatureStatementImpl.Definition())
+            .addSupport(new UsesStatementImpl.Definition())
+            .addSupport(treeScoped(GroupingNamespace.class)) //treeScoped
+            .addSupport(new ErrorMessageStatementImpl.Definition())
+            .addSupport(new ErrorAppTagStatementImpl.Definition())
+            .addSupport(new LeafListStatementImpl.Definition())
+            .addSupport(new PresenceStatementImpl.Definition())
+            .addSupport(new KeyStatementImpl.Definition())
+            .addSupport(new MaxElementsStatementImpl.Definition())
+            .addSupport(new MinElementsStatementImpl.Definition())
+            .addSupport(new OrderedByStatementImpl.Definition())
+            .addSupport(new WhenStatementImpl.Definition())
+            .addSupport(new AugmentStatementImpl.Definition())
+            .addSupport(new RefineStatementImpl.Definition())
+            .addSupport(new FeatureStatementImpl.Definition())
+            .addSupport(new PositionStatementImpl.Definition())
+            .addSupport(new ValueStatementImpl.Definition())
+            .addSupport(new AnyxmlSchemaLocationStatementImpl.AnyxmlSchemaLocationSupport())
+            .addSupport(treeScoped(AnyxmlSchemaLocationNamespace.class))
+            .addSupport(global(StmtOrderingNamespace.class))
+            .build();
 
     public static final Map<ModelProcessingPhase, StatementSupportBundle> RFC6020_BUNDLES = ImmutableMap
             .<ModelProcessingPhase, StatementSupportBundle> builder()
-            .put(ModelProcessingPhase.SourceLinkage, LINKAGE_BUNDLE)
-            .put(ModelProcessingPhase.StatementDefinition,STMT_DEF_BUNDLE)
-            .put(ModelProcessingPhase.FullDeclaration,FULL_DECL_BUNDLE)
-            .put(ModelProcessingPhase.EffectiveModel,FULL_DECL_BUNDLE)
+            .put(ModelProcessingPhase.SOURCE_LINKAGE, LINKAGE_BUNDLE)
+            .put(ModelProcessingPhase.STATEMENT_DEFINITION, STMT_DEF_BUNDLE)
+            .put(ModelProcessingPhase.FULL_DECLARATION, FULL_DECL_BUNDLE)
+            .put(ModelProcessingPhase.EFFECTIVE_MODEL, FULL_DECL_BUNDLE)
             .build();
 
-    public static final CrossSourceStatementReactor RFC6020_REACTOR = CrossSourceStatementReactor.builder()
-            .setBundle(ModelProcessingPhase.SourceLinkage, LINKAGE_BUNDLE)
-            .setBundle(ModelProcessingPhase.StatementDefinition,STMT_DEF_BUNDLE)
-            .setBundle(ModelProcessingPhase.FullDeclaration,FULL_DECL_BUNDLE)
-            .setBundle(ModelProcessingPhase.EffectiveModel,FULL_DECL_BUNDLE)
-            .build();
+    public static final CrossSourceStatementReactor RFC6020_REACTOR = CrossSourceStatementReactor
+            .builder()
+            .setBundle(ModelProcessingPhase.INIT, INIT_BUNDLE)
+            .setBundle(ModelProcessingPhase.SOURCE_LINKAGE, LINKAGE_BUNDLE)
+            .setBundle(ModelProcessingPhase.STATEMENT_DEFINITION,
+                    STMT_DEF_BUNDLE)
+            .setBundle(ModelProcessingPhase.FULL_DECLARATION, FULL_DECL_BUNDLE)
+            .setBundle(ModelProcessingPhase.EFFECTIVE_MODEL, FULL_DECL_BUNDLE)
+            .setValidationBundle(
+                    ValidationBundleType.SUPPORTED_REFINE_SUBSTATEMENTS,
+                    YangValidationBundles.SUPPORTED_REFINE_SUBSTATEMENTS)
+            .setValidationBundle(ValidationBundleType.SUPPORTED_AUGMENT_TARGETS,
+                    YangValidationBundles.SUPPORTED_AUGMENT_TARGETS)
+            .setValidationBundle(ValidationBundleType.SUPPORTED_CASE_SHORTHANDS,
+                    YangValidationBundles.SUPPORTED_CASE_SHORTHANDS)
+            .setValidationBundle(ValidationBundleType.SUPPORTED_DATA_NODES,
+                    YangValidationBundles.SUPPORTED_DATA_NODES)
+             .build();
 
     private YangInferencePipeline() {
         throw new UnsupportedOperationException("Utility class");