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

org.gradle.api.internal.tasks.compile.JavaHomeBasedJavaCompilerFactory Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2015 the original author or 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
 *
 *      http://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 org.gradle.api.internal.tasks.compile;

import org.gradle.internal.Factory;
import org.gradle.internal.SystemProperties;
import org.gradle.internal.jvm.Jvm;

import javax.tools.JavaCompiler;
import java.io.File;
import java.io.Serializable;

public class JavaHomeBasedJavaCompilerFactory implements Factory, Serializable {
    private final Factory currentJvmJavaHomeFactory;
    private final Factory systemPropertiesJavaHomeFactory;
    private final Factory systemJavaCompilerFactory;

    public JavaHomeBasedJavaCompilerFactory() {
        this(new CurrentJvmJavaHomeFactory(), new SystemPropertiesJavaHomeFactory(), new SystemJavaCompilerFactory());
    }

    JavaHomeBasedJavaCompilerFactory(Factory currentJvmJavaHomeFactory, Factory systemPropertiesJavaHomeFactory, Factory systemJavaCompilerFactory) {
        this.currentJvmJavaHomeFactory = currentJvmJavaHomeFactory;
        this.systemPropertiesJavaHomeFactory = systemPropertiesJavaHomeFactory;
        this.systemJavaCompilerFactory = systemJavaCompilerFactory;
    }

    @Override
    public JavaCompiler create() {
        JavaCompiler compiler = findCompiler();

        if (compiler == null) {
            throw new RuntimeException("Cannot find System Java Compiler. Ensure that you have installed a JDK (not just a JRE) and configured your JAVA_HOME system variable to point to the according directory.");
        }

        return compiler;
    }

    private JavaCompiler findCompiler() {
        File realJavaHome = currentJvmJavaHomeFactory.create();
        File javaHomeFromToolProvidersPointOfView = systemPropertiesJavaHomeFactory.create();
        if (realJavaHome.equals(javaHomeFromToolProvidersPointOfView)) {
            return systemJavaCompilerFactory.create();
        }

        return SystemProperties.getInstance().withJavaHome(realJavaHome, systemJavaCompilerFactory);
    }

    public static class CurrentJvmJavaHomeFactory implements Factory, Serializable {
        @Override
        public File create() {
            return Jvm.current().getJavaHome();
        }
    }

    public static class SystemPropertiesJavaHomeFactory implements Factory, Serializable {
        @Override
        public File create() {
            return SystemProperties.getInstance().getJavaHomeDir();
        }
    }

    public static class SystemJavaCompilerFactory implements Factory, Serializable {
        @Override
        public JavaCompiler create() {
            return JdkTools.current().getSystemJavaCompiler();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy