All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micronaut.annotation.processing.test.Parser Maven / Gradle / Ivy

There is a newer version: 4.7.5
Show newest version
/*
 * 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 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 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 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 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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy