Add generalized FileGenerator interface
[yangtools.git] / plugin / plugin-generator-api / src / main / java / org / opendaylight / yangtools / plugin / generator / api / ModuleResourceResolver.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.plugin.generator.api;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Optional;
12 import org.opendaylight.yangtools.yang.model.api.ModuleLike;
13 import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation;
14 import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
15
16 /**
17  * An SPI-level interface to find the schema source for a particular YANG module, as packaged in the final artifact.
18  * The module must be part of the current resolution context.
19  */
20 @Beta
21 public interface ModuleResourceResolver {
22     /**
23      * Find the path of the packaged resource which corresponds to the specified module in the specified representation.
24      *
25      * @param module Requested module
26      * @param representation Requested representation
27      * @return Path to packaged resource
28      * @throws NullPointerException if any argument is null
29      * @throws IllegalArgumentException if the requested representation is not supported by this resolver
30      */
31     Optional<String> findModuleResourcePath(ModuleLike module,
32         Class<? extends SchemaSourceRepresentation> representation);
33
34     default Optional<String> findModuleYangTextResourcePath(final ModuleLike module) {
35         return findModuleResourcePath(module, YangTextSchemaSource.class);
36     }
37 }