io.micronaut.annotation.processing.test.Parser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-inject-java-test Show documentation
Show all versions of micronaut-inject-java-test Show documentation
Core components supporting the Micronaut Framework
/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.annotation.processing.test;
import javax.lang.model.element.Element;
import javax.tools.JavaFileObject;
import java.io.File;
import static java.lang.Boolean.TRUE;
/**
* Methods to parse Java source files.
* NOTE: Forked from Google Compile Testing Project
*
**/
@SuppressWarnings("all")
public final class Parser {
/**
* Parses {@code sources} into {@linkplain com.sun.source.tree.CompilationUnitTree} compilation units. This method
* does not compile the sources.
*
* @param sources The sources
* @return parsed {@link com.sun.source.tree.CompilationUnitTree} iterable object
*/
public static Iterable extends Element> parse(JavaFileObject... sources) {
JavaParser javaParser = new JavaParser();
try {
return javaParser.parse(sources);
} finally {
javaParser.close();
}
}
/**
* Parses {@code sources} into {@linkplain com.sun.source.tree.CompilationUnitTree} compilation units. This method
* does not compile the sources.
*
* @param className the fully qualified name class name
* @param lines The source
* @return parsed {@link com.sun.source.tree.CompilationUnitTree} iterable object
*/
public static Iterable extends Element> parseLines(String className, String... lines) {
return parse(JavaFileObjects.forSourceLines(className.replace('.', File.separatorChar) + ".java", lines));
}
/**
* Parses {@code sources} into {@linkplain com.sun.source.tree.CompilationUnitTree} compilation units. This method
* does not compile the sources.
*
* @param className the fully qualified name class name
* @param code The source
* @return parsed {@link com.sun.source.tree.CompilationUnitTree} iterable object
*/
public static Iterable extends JavaFileObject> generate(String className, String code) {
return generate(JavaFileObjects.forSourceString(className, code));
}
/**
* Parses {@code sources} into {@linkplain com.sun.source.tree.CompilationUnitTree} compilation units. This method
* does not compile the sources.
*
* @param sources The sources
* @return parsed {@link com.sun.source.tree.CompilationUnitTree} iterable object
*/
public static Iterable extends JavaFileObject> generate(JavaFileObject... sources) {
final JavaParser javaParser = new JavaParser();
try {
return javaParser.generate(sources);
} finally {
javaParser.close();
}
}
private static boolean isTrue(Boolean p) {
return TRUE.equals(p);
}
}