org.opendaylight.yangtools.yang2sources.plugin.ContextHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yang-maven-plugin Show documentation
Show all versions of yang-maven-plugin Show documentation
This plugin is a wrapper for "yang to source code" generation.
It can be configured by a set of third-party code generators and resource providers.
For further info see available goals.
Sample usage:
TODO: add sample usage when finished
/*
* Copyright (c) 2013 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.yang2sources.plugin;
import static java.util.Objects.requireNonNull;
import com.google.common.collect.ImmutableSet;
import java.util.Optional;
import java.util.Set;
import org.opendaylight.yangtools.concepts.Immutable;
import org.opendaylight.yangtools.yang.model.api.Module;
import org.opendaylight.yangtools.yang.model.api.SchemaContext;
import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
final class ContextHolder implements Immutable {
private final SchemaContext context;
private final Set modules;
private final Set sources;
ContextHolder(final SchemaContext context, final Set modules, final Set sources) {
this.context = requireNonNull(context);
this.modules = ImmutableSet.copyOf(modules);
this.sources = ImmutableSet.copyOf(sources);
}
SchemaContext getContext() {
return context;
}
Set getYangModules() {
return modules;
}
Optional moduleToResourcePath(final Module mod) {
final SourceIdentifier id = Util.moduleToIdentifier(mod);
return sources.contains(id)
? Optional.of("/" + YangToSourcesProcessor.META_INF_YANG_STRING_JAR + "/" + id.toYangFilename())
: Optional.empty();
}
}