/* * 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/eplv10.html */ package org.opendaylight.yangtools.yang.parser.impl.util; import com.google.common.base.Optional; import com.google.common.collect.ImmutableMap; import java.io.InputStream; import java.util.Map; import java.util.Map.Entry; import javax.annotation.concurrent.NotThreadSafe; import org.opendaylight.yangtools.yang.model.util.repo.AdvancedSchemaSourceProvider; import org.opendaylight.yangtools.yang.model.util.repo.SchemaSourceProvider; import org.opendaylight.yangtools.yang.model.util.repo.SourceIdentifier; /** * Resolver for YANG Schema Source which is based on DependencyInfo * * This resolver does not use {@link SchemaSourceProvider} but supplied map * of source identifiers and {@link YangModelDependencyInfo} to construct * {@link YangSourceContext}. * */ @Deprecated @NotThreadSafe public final class YangSourceFromDependencyInfoResolver extends YangSourceContextResolver { private final Map dependencyInfo; public YangSourceFromDependencyInfoResolver(final Map moduleDependencies, AdvancedSchemaSourceProvider sourceProvider) { super(sourceProvider); dependencyInfo = ImmutableMap.copyOf(moduleDependencies); } @Override public Optional getDependencyInfo(final SourceIdentifier identifier) { if (identifier.getRevision() != null) { return Optional.fromNullable(dependencyInfo.get(identifier)); } YangModelDependencyInfo potential = dependencyInfo.get(identifier); if (potential == null) { for (Entry newPotential : dependencyInfo.entrySet()) { String newPotentialName = newPotential.getKey().getName(); if (newPotentialName.equals(identifier.getName())) { String newPotentialRevision = newPotential.getKey().getRevision(); if (potential == null || 1 == newPotentialRevision.compareTo(potential.getFormattedRevision())) { potential = newPotential.getValue(); } } } } return Optional.fromNullable(potential); } @Override public YangSourceContext resolveContext() { for (SourceIdentifier source : dependencyInfo.keySet()) { resolveSource(source); } return createSourceContext(); } }