org.onos.yangtools.yang.model.repo.api.SchemaResolutionException.java Source code

Java tutorial

Introduction

Here is the source code for org.onos.yangtools.yang.model.repo.api.SchemaResolutionException.java

Source

/*
 * 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.onos.yangtools.yang.model.repo.api;

import com.google.common.annotations.Beta;
import com.google.common.base.MoreObjects;
import com.google.common.base.MoreObjects.ToStringHelper;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Multimap;
import java.util.Collection;
import java.util.Collections;
import javax.annotation.Nonnull;
import org.onos.yangtools.yang.model.api.ModuleImport;

/**
 * Exception thrown when a Schema Source fails to resolve.
 */
@Beta
public class SchemaResolutionException extends SchemaSourceException {

    private static final String MESSAGE_BLUEPRINT = "%s, resolved sources: %s, unsatisfied imports: %s";

    private static final long serialVersionUID = 1L;
    private final Multimap<SourceIdentifier, ModuleImport> unsatisfiedImports;
    private final Collection<SourceIdentifier> resolvedSources;

    public SchemaResolutionException(@Nonnull final String message) {
        this(message, (Throwable) null);
    }

    public SchemaResolutionException(@Nonnull final String message, final Throwable cause) {
        this(message, cause, Collections.<SourceIdentifier>emptySet(),
                ImmutableMultimap.<SourceIdentifier, ModuleImport>of());
    }

    public SchemaResolutionException(@Nonnull final String message,
            final Collection<SourceIdentifier> resolvedSources,
            final @Nonnull Multimap<SourceIdentifier, ModuleImport> unsatisfiedImports) {
        this(message, null, resolvedSources, unsatisfiedImports);
    }

    public SchemaResolutionException(@Nonnull final String message, final Throwable cause,
            @Nonnull final Collection<SourceIdentifier> resolvedSources,
            @Nonnull final Multimap<SourceIdentifier, ModuleImport> unsatisfiedImports) {
        super(formatMessage(message, resolvedSources, unsatisfiedImports), cause);
        this.unsatisfiedImports = ImmutableMultimap.copyOf(unsatisfiedImports);
        this.resolvedSources = ImmutableList.copyOf(resolvedSources);
    }

    private static String formatMessage(final String message, final Collection<SourceIdentifier> resolvedSources,
            final Multimap<SourceIdentifier, ModuleImport> unsatisfiedImports) {
        return String.format(MESSAGE_BLUEPRINT, message, resolvedSources, unsatisfiedImports);
    }

    /**
     * Return the list of sources which failed to resolve along with reasons
     * why they were not resolved.
     *
     * @return Source/reason map.
     */
    public final Multimap<SourceIdentifier, ModuleImport> getUnsatisfiedImports() {
        return unsatisfiedImports;
    }

    // FIXME: should be leak actual mapping?
    public final Collection<SourceIdentifier> getResolvedSources() {
        return resolvedSources;
    }

    @Override
    public final String toString() {
        return addToStringAttributes(MoreObjects.toStringHelper(this).add("unsatisfiedImports", unsatisfiedImports))
                .toString();
    }

    protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) {
        return toStringHelper;
    }
}