/* * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.parser.stmt.rfc6020; import static org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator.MAX; import static org.opendaylight.yangtools.yang.parser.spi.meta.StmtContextUtils.firstAttributeOf; import com.google.common.base.Optional; import java.net.URI; import java.util.Date; import java.util.NavigableMap; import java.util.TreeMap; import org.opendaylight.yangtools.concepts.SemVer; import org.opendaylight.yangtools.yang.common.QNameModule; import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.ModuleIdentifier; import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.ModuleStatement; import org.opendaylight.yangtools.yang.model.api.stmt.NamespaceStatement; import org.opendaylight.yangtools.yang.model.api.stmt.PrefixStatement; import org.opendaylight.yangtools.yang.parser.builder.impl.ModuleIdentifierImpl; import org.opendaylight.yangtools.yang.parser.spi.ModuleNamespace; import org.opendaylight.yangtools.yang.parser.spi.NamespaceToModule; import org.opendaylight.yangtools.yang.parser.spi.PreLinkageModuleNamespace; import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator; import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport; import org.opendaylight.yangtools.yang.parser.spi.meta.SemanticVersionModuleNamespace; import org.opendaylight.yangtools.yang.parser.spi.meta.SemanticVersionNamespace; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext; import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext.Mutable; import org.opendaylight.yangtools.yang.parser.spi.source.ImpPrefixToModuleIdentifier; import org.opendaylight.yangtools.yang.parser.spi.source.ImpPrefixToNamespace; import org.opendaylight.yangtools.yang.parser.spi.source.ModuleCtxToModuleIdentifier; 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.ModuleNameToNamespace; 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.SourceException; import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.ModuleEffectiveStatementImpl; public class ModuleStatementSupport extends AbstractStatementSupport> { private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping .MODULE) .add(Rfc6020Mapping.ANYXML, 0, MAX) .add(Rfc6020Mapping.AUGMENT, 0, MAX) .add(Rfc6020Mapping.CHOICE, 0, MAX) .add(Rfc6020Mapping.CONTACT, 0, 1) .add(Rfc6020Mapping.CONTAINER, 0, MAX) .add(Rfc6020Mapping.DESCRIPTION, 0, 1) .add(Rfc6020Mapping.DEVIATION, 0, MAX) .add(Rfc6020Mapping.EXTENSION, 0, MAX) .add(Rfc6020Mapping.FEATURE, 0, MAX) .add(Rfc6020Mapping.GROUPING, 0, MAX) .add(Rfc6020Mapping.IDENTITY, 0, MAX) .add(Rfc6020Mapping.IMPORT, 0, MAX) .add(Rfc6020Mapping.INCLUDE, 0, MAX) .add(Rfc6020Mapping.LEAF, 0, MAX) .add(Rfc6020Mapping.LEAF_LIST, 0, MAX) .add(Rfc6020Mapping.LIST, 0, MAX) .add(Rfc6020Mapping.NAMESPACE, 1, 1) .add(Rfc6020Mapping.NOTIFICATION, 0, MAX) .add(Rfc6020Mapping.ORGANIZATION, 0, 1) .add(Rfc6020Mapping.PREFIX, 1, 1) .add(Rfc6020Mapping.REFERENCE, 0, 1) .add(Rfc6020Mapping.REVISION, 0, MAX) .add(Rfc6020Mapping.RPC, 0, MAX) .add(Rfc6020Mapping.TYPEDEF, 0, MAX) .add(Rfc6020Mapping.USES, 0, MAX) .add(Rfc6020Mapping.YANG_VERSION, 0, 1) .add(SupportedExtensionsMapping.SEMANTIC_VERSION, 0, 1) .build(); public ModuleStatementSupport() { super(Rfc6020Mapping.MODULE); } @Override public String parseArgumentValue(final StmtContext ctx, final String value) { return value; } @Override public ModuleStatement createDeclared(final StmtContext ctx) { return new ModuleStatementImpl(ctx); } @Override public EffectiveStatement createEffective( final StmtContext> ctx) { return new ModuleEffectiveStatementImpl(ctx); } @Override public void onPreLinkageDeclared(Mutable> stmt) { final String moduleName = stmt.getStatementArgument(); final URI moduleNs = firstAttributeOf(stmt.declaredSubstatements(), NamespaceStatement.class); SourceException.throwIfNull(moduleNs, stmt.getStatementSourceReference(), "Namespace of the module [%s] is missing", stmt.getStatementArgument()); stmt.addToNs(ModuleNameToNamespace.class, moduleName, moduleNs); final String modulePrefix = firstAttributeOf(stmt.declaredSubstatements(), PrefixStatement.class); SourceException.throwIfNull(modulePrefix, stmt.getStatementSourceReference(), "Prefix of the module [%s] is missing", stmt.getStatementArgument()); stmt.addToNs(ImpPrefixToNamespace.class, modulePrefix, moduleNs); stmt.addContext(PreLinkageModuleNamespace.class, moduleName, stmt); Optional revisionDate = Optional.fromNullable(Utils.getLatestRevision(stmt.declaredSubstatements ())); if (!revisionDate.isPresent()) { revisionDate = Optional.of(SimpleDateFormatUtil.DEFAULT_DATE_REV); } QNameModule qNameModule = QNameModule.create(moduleNs, revisionDate.orNull()).intern(); stmt.addToNs(ModuleCtxToModuleQName.class, stmt, qNameModule); }; @Override public void onLinkageDeclared(final Mutable> stmt) { Optional moduleNs = Optional.fromNullable(firstAttributeOf(stmt.declaredSubstatements(), NamespaceStatement.class)); SourceException.throwIf(!moduleNs.isPresent(), stmt.getStatementSourceReference(), "Namespace of the module [%s] is missing", stmt.getStatementArgument()); Optional revisionDate = Optional.fromNullable(Utils.getLatestRevision(stmt.declaredSubstatements())); if (!revisionDate.isPresent()) { revisionDate = Optional.of(SimpleDateFormatUtil.DEFAULT_DATE_REV); } QNameModule qNameModule = QNameModule.create(moduleNs.get(), revisionDate.orNull()).intern(); ModuleIdentifier moduleIdentifier = new ModuleIdentifierImpl(stmt.getStatementArgument(), Optional.absent(), revisionDate); stmt.addContext(ModuleNamespace.class, moduleIdentifier, stmt); stmt.addContext(ModuleNamespaceForBelongsTo.class, moduleIdentifier.getName(), stmt); stmt.addContext(NamespaceToModule.class, qNameModule, stmt); final String modulePrefix = firstAttributeOf(stmt.declaredSubstatements(), PrefixStatement.class); SourceException.throwIfNull(modulePrefix, stmt.getStatementSourceReference(), "Prefix of the module [%s] is missing", stmt.getStatementArgument()); stmt.addToNs(PrefixToModule.class, modulePrefix, qNameModule); stmt.addToNs(ModuleNameToModuleQName.class, stmt.getStatementArgument(), qNameModule); stmt.addToNs(ModuleCtxToModuleQName.class, stmt, qNameModule); // tu stmt.addToNs(ModuleCtxToModuleIdentifier.class, stmt, moduleIdentifier); stmt.addToNs(ModuleQNameToModuleName.class, qNameModule, stmt.getStatementArgument()); stmt.addToNs(ModuleIdentifierToModuleQName.class, moduleIdentifier, qNameModule); stmt.addToNs(ImpPrefixToModuleIdentifier.class, modulePrefix, moduleIdentifier); if (stmt.isEnabledSemanticVersioning()) { addToSemVerModuleNamespace(stmt); } } private void addToSemVerModuleNamespace( final Mutable> stmt) { final String moduleName = stmt.getStatementArgument(); NavigableMap> modulesMap = stmt.getFromNamespace( SemanticVersionModuleNamespace.class, moduleName); if (modulesMap == null) { modulesMap = new TreeMap>(); } SemVer moduleSemVer = stmt.getFromNamespace(SemanticVersionNamespace.class, stmt); if(moduleSemVer == null) { moduleSemVer = Module.DEFAULT_SEMANTIC_VERSION; } modulesMap.put(moduleSemVer, stmt); stmt.addToNs(SemanticVersionModuleNamespace.class, moduleName, modulesMap); } @Override public void onFullDefinitionDeclared(final Mutable> stmt) { super.onFullDefinitionDeclared(stmt); SUBSTATEMENT_VALIDATOR.validate(stmt); } }