org.gradle.api.internal.tasks.compile.GroovyCompilerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2012 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.api.internal.ClassPathRegistry;
import org.gradle.api.internal.file.IdentityFileResolver;
import org.gradle.api.internal.project.ProjectInternal;
import org.gradle.api.internal.tasks.compile.daemon.DaemonGroovyCompiler;
import org.gradle.api.internal.tasks.compile.processing.AnnotationProcessorDetector;
import org.gradle.api.tasks.WorkResult;
import org.gradle.api.tasks.compile.GroovyCompileOptions;
import org.gradle.internal.file.PathToFileResolver;
import org.gradle.internal.jvm.inspection.JvmVersionDetector;
import org.gradle.language.base.internal.compile.Compiler;
import org.gradle.language.base.internal.compile.CompilerFactory;
import org.gradle.process.internal.DefaultExecActionFactory;
import org.gradle.process.internal.worker.child.WorkerDirectoryProvider;
import org.gradle.workers.internal.IsolatedClassloaderWorkerFactory;
import org.gradle.workers.internal.WorkerDaemonFactory;
import org.gradle.workers.internal.WorkerFactory;
import java.io.Serializable;
public class GroovyCompilerFactory implements CompilerFactory {
private final ProjectInternal project;
private final WorkerDaemonFactory workerDaemonFactory;
private final IsolatedClassloaderWorkerFactory inProcessWorkerFactory;
private final PathToFileResolver fileResolver;
private final AnnotationProcessorDetector processorDetector;
private final JvmVersionDetector jvmVersionDetector;
public GroovyCompilerFactory(ProjectInternal project, WorkerDaemonFactory workerDaemonFactory, IsolatedClassloaderWorkerFactory inProcessWorkerFactory, PathToFileResolver fileResolver, AnnotationProcessorDetector processorDetector, JvmVersionDetector jvmVersionDetector) {
this.project = project;
this.workerDaemonFactory = workerDaemonFactory;
this.inProcessWorkerFactory = inProcessWorkerFactory;
this.fileResolver = fileResolver;
this.processorDetector = processorDetector;
this.jvmVersionDetector = jvmVersionDetector;
}
@Override
public Compiler newCompiler(GroovyJavaJointCompileSpec spec) {
GroovyCompileOptions groovyOptions = spec.getGroovyCompileOptions();
WorkerFactory workerFactory;
if (groovyOptions.isFork()) {
workerFactory = workerDaemonFactory;
} else {
workerFactory = inProcessWorkerFactory;
}
Compiler groovyCompiler = new DaemonGroovyCompiler(project.getServices().get(WorkerDirectoryProvider.class).getWorkingDirectory(), new DaemonSideCompiler(), project.getServices().get(ClassPathRegistry.class), workerFactory, fileResolver, jvmVersionDetector);
return new AnnotationProcessorDiscoveringCompiler(new NormalizingGroovyCompiler(groovyCompiler), processorDetector);
}
private static class DaemonSideCompiler implements Compiler, Serializable {
@Override
public WorkResult execute(GroovyJavaJointCompileSpec spec) {
DefaultExecActionFactory execHandleFactory = new DefaultExecActionFactory(new IdentityFileResolver());
try {
Compiler javaCompiler;
if (CommandLineJavaCompileSpec.class.isAssignableFrom(spec.getClass())) {
javaCompiler = new CommandLineJavaCompiler(execHandleFactory);
} else {
javaCompiler = new JdkJavaCompiler(new JavaHomeBasedJavaCompilerFactory());
}
Compiler groovyCompiler = new ApiGroovyCompiler(javaCompiler);
return groovyCompiler.execute(spec);
} finally {
execHandleFactory.stop();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy