org.gradle.api.internal.StartParameterInternal 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 2017 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;
import org.gradle.StartParameter;
import org.gradle.initialization.BuildLayoutParameters;
import org.gradle.initialization.StartParameterBuildOptions.ConfigurationCacheProblemsOption;
import org.gradle.internal.buildoption.BuildOption;
import org.gradle.internal.buildtree.BuildModelParameters;
import org.gradle.internal.watch.vfs.WatchMode;
import javax.annotation.Nullable;
import java.io.File;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import static com.google.common.collect.Lists.newArrayList;
import static com.google.common.collect.Sets.newLinkedHashSet;
import static org.gradle.api.internal.SettingsInternal.BUILD_SRC;
import static org.gradle.internal.Cast.uncheckedCast;
public class StartParameterInternal extends StartParameter {
private WatchMode watchFileSystemMode = WatchMode.DEFAULT;
private boolean watchFileSystemDebugLogging;
private boolean vfsVerboseLogging;
private BuildOption.Value configurationCache = BuildOption.Value.defaultValue(false);
private BuildOption.Value isolatedProjects = BuildOption.Value.defaultValue(false);
private ConfigurationCacheProblemsOption.Value configurationCacheProblems = ConfigurationCacheProblemsOption.Value.FAIL;
private int configurationCacheMaxProblems = 512;
private boolean configurationCacheRecreateCache;
private boolean configurationCacheQuiet;
private boolean searchUpwards = true;
private boolean useEmptySettings = false;
public StartParameterInternal() {
}
protected StartParameterInternal(BuildLayoutParameters layoutParameters) {
super(layoutParameters);
}
@Override
public StartParameterInternal newInstance() {
return (StartParameterInternal) prepareNewInstance(new StartParameterInternal());
}
@Override
public StartParameterInternal newBuild() {
return prepareNewBuild(new StartParameterInternal());
}
@Override
protected StartParameterInternal prepareNewBuild(StartParameter startParameter) {
StartParameterInternal p = (StartParameterInternal) super.prepareNewBuild(startParameter);
p.watchFileSystemMode = watchFileSystemMode;
p.watchFileSystemDebugLogging = watchFileSystemDebugLogging;
p.vfsVerboseLogging = vfsVerboseLogging;
p.configurationCache = configurationCache;
p.isolatedProjects = isolatedProjects;
p.configurationCacheProblems = configurationCacheProblems;
p.configurationCacheMaxProblems = configurationCacheMaxProblems;
p.configurationCacheRecreateCache = configurationCacheRecreateCache;
p.configurationCacheQuiet = configurationCacheQuiet;
p.searchUpwards = searchUpwards;
p.useEmptySettings = useEmptySettings;
return p;
}
public File getGradleHomeDir() {
return gradleHomeDir;
}
public void setGradleHomeDir(File gradleHomeDir) {
this.gradleHomeDir = gradleHomeDir;
}
public boolean isSearchUpwards() {
return searchUpwards && !useLocationAsProjectRoot(getProjectDir(), getTaskNames());
}
public void doNotSearchUpwards() {
this.searchUpwards = false;
}
public boolean isUseEmptySettings() {
return useEmptySettings;
}
public void useEmptySettings() {
this.useEmptySettings = true;
}
public WatchMode getWatchFileSystemMode() {
return watchFileSystemMode;
}
public void setWatchFileSystemMode(WatchMode watchFileSystemMode) {
this.watchFileSystemMode = watchFileSystemMode;
}
public boolean isWatchFileSystemDebugLogging() {
return watchFileSystemDebugLogging;
}
public void setWatchFileSystemDebugLogging(boolean watchFileSystemDebugLogging) {
this.watchFileSystemDebugLogging = watchFileSystemDebugLogging;
}
public boolean isVfsVerboseLogging() {
return vfsVerboseLogging;
}
public void setVfsVerboseLogging(boolean vfsVerboseLogging) {
this.vfsVerboseLogging = vfsVerboseLogging;
}
/**
* Used by the Kotlin plugin, via reflection.
*/
@Deprecated
public boolean isConfigurationCache() {
return getConfigurationCache().get();
}
/**
* Is the configuration cache requested? Note: depending on the build action, this may not be the final value for this option.
*
* Consider querying {@link BuildModelParameters} instead.
*/
public BuildOption.Value getConfigurationCache() {
return configurationCache;
}
public void setConfigurationCache(BuildOption.Value configurationCache) {
this.configurationCache = configurationCache;
}
public BuildOption.Value getIsolatedProjects() {
return isolatedProjects;
}
public void setIsolatedProjects(BuildOption.Value isolatedProjects) {
this.isolatedProjects = isolatedProjects;
}
public ConfigurationCacheProblemsOption.Value getConfigurationCacheProblems() {
return configurationCacheProblems;
}
public void setConfigurationCacheProblems(ConfigurationCacheProblemsOption.Value configurationCacheProblems) {
this.configurationCacheProblems = configurationCacheProblems;
}
public int getConfigurationCacheMaxProblems() {
return configurationCacheMaxProblems;
}
public void setConfigurationCacheMaxProblems(int configurationCacheMaxProblems) {
this.configurationCacheMaxProblems = configurationCacheMaxProblems;
}
public boolean isConfigurationCacheRecreateCache() {
return configurationCacheRecreateCache;
}
public void setConfigurationCacheRecreateCache(boolean configurationCacheRecreateCache) {
this.configurationCacheRecreateCache = configurationCacheRecreateCache;
}
public boolean isConfigurationCacheQuiet() {
return configurationCacheQuiet;
}
public void setConfigurationCacheQuiet(boolean configurationCacheQuiet) {
this.configurationCacheQuiet = configurationCacheQuiet;
}
public boolean addTaskNames(Iterable taskPaths) {
Set allTasks = newLinkedHashSet(getTaskNames());
boolean added = allTasks.addAll(
taskPaths instanceof Collection
? uncheckedCast(taskPaths)
: newArrayList(taskPaths)
);
if (added) {
setTaskNames(allTasks);
}
return added;
}
/**
* The following special behavior wrt. how the build root is discovered, is implemented:
* - If the current folder is called 'buildSrc', we do not search upwards for a settings file
* - If the build runs the 'init' task, we do not search upwards for a settings file
*
* This has an influence on deciding which 'gradle.properties' to load (in the launcher) and which 'settings.gradle(.kts)' to use (in the daemon)
*/
public static boolean useLocationAsProjectRoot(@Nullable File potentialProjectLocation, List requestedTaskNames) {
return requestedTaskNames.contains("init")
|| (potentialProjectLocation != null && potentialProjectLocation.getName().equals(BUILD_SRC));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy