/* * Copyright (c) 2014 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.rfc7950.repo; import static com.google.common.base.Preconditions.checkArgument; import static java.util.Objects.requireNonNull; import com.google.common.annotations.Beta; import com.google.common.base.Strings; import com.google.common.collect.ImmutableSet; import java.io.IOException; import java.util.HashSet; import java.util.Objects; import java.util.Optional; import java.util.Set; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yangtools.concepts.SemVer; import org.opendaylight.yangtools.openconfig.model.api.OpenConfigStatements; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.common.Revision; import org.opendaylight.yangtools.yang.model.api.ModuleImport; import org.opendaylight.yangtools.yang.model.api.YangStmtMapping; import org.opendaylight.yangtools.yang.model.api.stmt.ImportEffectiveStatement; import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier; import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource; import org.opendaylight.yangtools.yang.parser.api.YangSyntaxErrorException; import org.opendaylight.yangtools.yang.parser.rfc7950.ir.IRArgument; import org.opendaylight.yangtools.yang.parser.rfc7950.ir.IRKeyword; import org.opendaylight.yangtools.yang.parser.rfc7950.ir.IRKeyword.Unqualified; import org.opendaylight.yangtools.yang.parser.rfc7950.ir.IRSchemaSource; import org.opendaylight.yangtools.yang.parser.rfc7950.ir.IRStatement; import org.opendaylight.yangtools.yang.parser.spi.source.ExplicitStatement; import org.opendaylight.yangtools.yang.parser.spi.source.StatementSourceReference; /** * Helper transfer object which holds basic and dependency information for YANG * model. * *

* There are two concrete implementations of this interface: *

* * @see ModuleDependencyInfo * @see SubmoduleDependencyInfo */ public abstract class YangModelDependencyInfo { private static final String BELONGS_TO = YangStmtMapping.BELONGS_TO.getStatementName().getLocalName(); private static final String IMPORT = YangStmtMapping.IMPORT.getStatementName().getLocalName(); private static final String INCLUDE = YangStmtMapping.INCLUDE.getStatementName().getLocalName(); private static final String MODULE = YangStmtMapping.MODULE.getStatementName().getLocalName(); private static final String REVISION = YangStmtMapping.REVISION.getStatementName().getLocalName(); private static final String REVISION_DATE = YangStmtMapping.REVISION_DATE.getStatementName().getLocalName(); private static final String SUBMODULE = YangStmtMapping.SUBMODULE.getStatementName().getLocalName(); private static final String OPENCONFIG_VERSION = OpenConfigStatements.OPENCONFIG_VERSION.getStatementName() .getLocalName(); private final String name; private final Revision revision; private final SemVer semVer; private final ImmutableSet submoduleIncludes; private final ImmutableSet moduleImports; private final ImmutableSet dependencies; YangModelDependencyInfo(final String name, final String formattedRevision, final ImmutableSet imports, final ImmutableSet includes) { this(name, formattedRevision, imports, includes, Optional.empty()); } YangModelDependencyInfo(final String name, final String formattedRevision, final ImmutableSet imports, final ImmutableSet includes, final Optional semVer) { this.name = name; revision = Revision.ofNullable(formattedRevision).orElse(null); moduleImports = imports; submoduleIncludes = includes; dependencies = ImmutableSet.builder() .addAll(moduleImports).addAll(submoduleIncludes).build(); this.semVer = semVer.orElse(null); } /** * Returns immutable collection of all module imports. This collection contains both import statements * and include statements for submodules. * * @return Immutable collection of imports. */ public ImmutableSet getDependencies() { return dependencies; } /** * Returns model name. * * @return model name */ public String getName() { return name; } /** * Returns formatted revision string. * * @return formatted revision string */ public String getFormattedRevision() { return revision != null ? revision.toString() : null; } /** * Returns revision. * * @return revision, potentially null */ public Optional getRevision() { return Optional.ofNullable(revision); } /** * Returns semantic version of module. * * @return semantic version * @deprecated Semantic versioning is deprecated */ @Deprecated(since = "8.0.4", forRemoval = true) public Optional getSemanticVersion() { return Optional.ofNullable(semVer); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Objects.hashCode(name); result = prime * result + Objects.hashCode(revision); result = prime * result + Objects.hashCode(semVer); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof YangModelDependencyInfo)) { return false; } final YangModelDependencyInfo other = (YangModelDependencyInfo) obj; return Objects.equals(name, other.name) && Objects.equals(revision, other.revision) && Objects.equals(semVer, other.semVer); } /** * Extracts {@link YangModelDependencyInfo} from an intermediate representation root statement of a YANG model. * * @param source Schema source * @return {@link YangModelDependencyInfo} * @throws IllegalArgumentException If the root statement is not a valid YANG module/submodule */ public static @NonNull YangModelDependencyInfo forIR(final IRSchemaSource source) { return forIR(source.getRootStatement(), source.getIdentifier()); } /** * Extracts {@link YangModelDependencyInfo} from an intermediate representation root statement of a YANG model. * * @param source Source identifier * @param rootStatement root statement * @return {@link YangModelDependencyInfo} * @throws IllegalArgumentException If the root statement is not a valid YANG module/submodule */ static @NonNull YangModelDependencyInfo forIR(final IRStatement rootStatement, final SourceIdentifier source) { final IRKeyword keyword = rootStatement.keyword(); checkArgument(keyword instanceof Unqualified, "Invalid root statement %s", keyword); final String arg = keyword.identifier(); if (MODULE.equals(arg)) { return parseModuleContext(rootStatement, source); } if (SUBMODULE.equals(arg)) { return parseSubmoduleContext(rootStatement, source); } throw new IllegalArgumentException("Root of parsed AST must be either module or submodule"); } /** * Extracts {@link YangModelDependencyInfo} from a {@link YangTextSchemaSource}. This parsing does not * validate full YANG module, only parses header up to the revisions and imports. * * @param yangText {@link YangTextSchemaSource} * @return {@link YangModelDependencyInfo} * @throws YangSyntaxErrorException If the resource does not pass syntactic analysis * @throws IOException When the resource cannot be read */ public static YangModelDependencyInfo forYangText(final YangTextSchemaSource yangText) throws IOException, YangSyntaxErrorException { final YangStatementStreamSource source = YangStatementStreamSource.create(yangText); return forIR(source.rootStatement(), source.getIdentifier()); } private static @NonNull YangModelDependencyInfo parseModuleContext(final IRStatement module, final SourceIdentifier source) { final String name = safeStringArgument(source, module, "module name"); final String latestRevision = getLatestRevision(module, source); final Optional semVer = Optional.ofNullable(findSemanticVersion(module, source)); final ImmutableSet imports = parseImports(module, source); final ImmutableSet includes = parseIncludes(module, source); return new ModuleDependencyInfo(name, latestRevision, imports, includes, semVer); } private static ImmutableSet parseImports(final IRStatement module, final SourceIdentifier source) { final Set result = new HashSet<>(); for (final IRStatement substatement : module.statements()) { if (isBuiltin(substatement, IMPORT)) { final String importedModuleName = safeStringArgument(source, substatement, "imported module name"); final String revisionDateStr = getRevisionDateString(substatement, source); final Revision revisionDate = Revision.ofNullable(revisionDateStr).orElse(null); final SemVer importSemVer = findSemanticVersion(substatement, source); result.add(new ModuleImportImpl(importedModuleName, revisionDate, importSemVer)); } } return ImmutableSet.copyOf(result); } @Beta @Deprecated(since = "8.0.4", forRemoval = true) public static SemVer findSemanticVersion(final IRStatement statement, final SourceIdentifier source) { String semVerString = null; for (final IRStatement substatement : statement.statements()) { // FIXME: this should also check we are using a prefix if (OPENCONFIG_VERSION.equals(substatement.keyword().identifier())) { semVerString = safeStringArgument(source, substatement, "version string"); break; } } return Strings.isNullOrEmpty(semVerString) ? null : SemVer.valueOf(semVerString); } private static boolean isBuiltin(final IRStatement stmt, final String localName) { final IRKeyword keyword = stmt.keyword(); return keyword instanceof Unqualified && localName.equals(keyword.identifier()); } private static ImmutableSet parseIncludes(final IRStatement module, final SourceIdentifier source) { final Set result = new HashSet<>(); for (final IRStatement substatement : module.statements()) { if (isBuiltin(substatement, INCLUDE)) { final String revisionDateStr = getRevisionDateString(substatement, source); final String IncludeModuleName = safeStringArgument(source, substatement, "included submodule name"); final Revision revisionDate = Revision.ofNullable(revisionDateStr).orElse(null); result.add(new ModuleImportImpl(IncludeModuleName, revisionDate)); } } return ImmutableSet.copyOf(result); } private static String getRevisionDateString(final IRStatement importStatement, final SourceIdentifier source) { String revisionDateStr = null; for (final IRStatement substatement : importStatement.statements()) { if (isBuiltin(substatement, REVISION_DATE)) { revisionDateStr = safeStringArgument(source, substatement, "imported module revision-date"); } } return revisionDateStr; } public static String getLatestRevision(final IRStatement module, final SourceIdentifier source) { String latestRevision = null; for (final IRStatement substatement : module.statements()) { if (isBuiltin(substatement, REVISION)) { final String currentRevision = safeStringArgument(source, substatement, "revision date"); if (latestRevision == null || latestRevision.compareTo(currentRevision) < 0) { latestRevision = currentRevision; } } } return latestRevision; } private static @NonNull YangModelDependencyInfo parseSubmoduleContext(final IRStatement submodule, final SourceIdentifier source) { final String name = safeStringArgument(source, submodule, "submodule name"); final String belongsTo = parseBelongsTo(submodule, source); final String latestRevision = getLatestRevision(submodule, source); final ImmutableSet imports = parseImports(submodule, source); final ImmutableSet includes = parseIncludes(submodule, source); return new SubmoduleDependencyInfo(name, latestRevision, belongsTo, imports, includes); } private static String parseBelongsTo(final IRStatement submodule, final SourceIdentifier source) { for (final IRStatement substatement : submodule.statements()) { if (isBuiltin(substatement, BELONGS_TO)) { return safeStringArgument(source, substatement, "belongs-to module name"); } } return null; } static String safeStringArgument(final SourceIdentifier source, final IRStatement stmt, final String desc) { final StatementSourceReference ref = getReference(source, stmt); final IRArgument arg = stmt.argument(); if (arg == null) { throw new IllegalArgumentException("Missing " + desc + " at " + ref); } // TODO: we probably need to understand yang version first.... return ArgumentContextUtils.rfc6020().stringFromStringContext(arg, ref); } private static StatementSourceReference getReference(final SourceIdentifier source, final IRStatement stmt) { return ExplicitStatement.atPosition(source.getName(), stmt.startLine(), stmt.startColumn() + 1); } /** * Dependency information for YANG module. */ public static final class ModuleDependencyInfo extends YangModelDependencyInfo { ModuleDependencyInfo(final String name, final String latestRevision, final ImmutableSet imports, final ImmutableSet includes, final Optional semVer) { super(name, latestRevision, imports, includes, semVer); } @Override public String toString() { return "Module [name=" + getName() + ", revision=" + getRevision() + ", semanticVersion=" + getSemanticVersion().orElse(null) + ", dependencies=" + getDependencies() + "]"; } } /** * Dependency information for submodule, also provides name for parent module. */ public static final class SubmoduleDependencyInfo extends YangModelDependencyInfo { private final String belongsTo; private SubmoduleDependencyInfo(final String name, final String latestRevision, final String belongsTo, final ImmutableSet imports, final ImmutableSet includes) { super(name, latestRevision, imports, includes); this.belongsTo = belongsTo; } /** * Returns name of parent module. * * @return The module this info belongs to */ public String getParentModule() { return belongsTo; } @Override public String toString() { return "Submodule [name=" + getName() + ", revision=" + getRevision() + ", dependencies=" + getDependencies() + "]"; } } /** * Utility implementation of {@link ModuleImport} to be used by {@link YangModelDependencyInfo}. */ // FIXME: this is a rather nasty misuse of APIs :( private static final class ModuleImportImpl implements ModuleImport { private final Revision revision; private final SemVer semVer; private final String name; ModuleImportImpl(final @NonNull String moduleName, final @Nullable Revision revision) { this(moduleName, revision, null); } ModuleImportImpl(final @NonNull String moduleName, final @Nullable Revision revision, final @Nullable SemVer semVer) { name = requireNonNull(moduleName, "Module name must not be null."); this.revision = revision; this.semVer = semVer; } @Override public String getModuleName() { return name; } @Override public Optional getRevision() { return Optional.ofNullable(revision); } @Override @Deprecated(forRemoval = true) public Optional getSemanticVersion() { return Optional.ofNullable(semVer); } @Override public String getPrefix() { throw new UnsupportedOperationException(); } @Override public Optional getDescription() { return Optional.empty(); } @Override public Optional getReference() { return Optional.empty(); } @Override public ImportEffectiveStatement asEffectiveStatement() { throw new UnsupportedOperationException(); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + Objects.hashCode(name); result = prime * result + Objects.hashCode(revision); result = prime * result + Objects.hashCode(semVer); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (!(obj instanceof ModuleImportImpl)) { return false; } final ModuleImportImpl other = (ModuleImportImpl) obj; return name.equals(other.name) && Objects.equals(revision, other.revision) && Objects.equals(getSemanticVersion(), other.getSemanticVersion()); } @Override public String toString() { return "ModuleImportImpl [name=" + name + ", revision=" + QName.formattedRevision(Optional.ofNullable(revision)) + ", semanticVersion=" + semVer + "]"; } } }