org.gradle.process.internal.DefaultProcessForkOptions 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 2010 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.process.internal;
import com.google.common.collect.Maps;
import org.gradle.internal.file.PathToFileResolver;
import org.gradle.process.ProcessForkOptions;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
public class DefaultProcessForkOptions implements ProcessForkOptions {
private final PathToFileResolver resolver;
private Object executable;
private File workingDir;
private Map environment;
public DefaultProcessForkOptions(PathToFileResolver resolver) {
this.resolver = resolver;
}
@Override
public String getExecutable() {
return executable == null ? null : executable.toString();
}
@Override
public void setExecutable(String executable) {
this.executable = executable;
}
@Override
public void setExecutable(Object executable) {
this.executable = executable;
}
@Override
public ProcessForkOptions executable(Object executable) {
setExecutable(executable);
return this;
}
@Override
public File getWorkingDir() {
if (workingDir == null) {
workingDir = resolver.resolve(".");
}
return workingDir;
}
@Override
public void setWorkingDir(File dir) {
this.workingDir = resolver.resolve(dir);
}
@Override
public void setWorkingDir(Object dir) {
this.workingDir = resolver.resolve(dir);
}
@Override
public ProcessForkOptions workingDir(Object dir) {
setWorkingDir(dir);
return this;
}
@Override
public Map getEnvironment() {
if (environment == null) {
setEnvironment(getInheritableEnvironment());
}
return environment;
}
protected Map getInheritableEnvironment() {
return System.getenv();
}
public Map getActualEnvironment() {
return getActualEnvironment(this);
}
public static Map getActualEnvironment(ProcessForkOptions forkOptions) {
Map actual = new HashMap<>();
for (Map.Entry entry : forkOptions.getEnvironment().entrySet()) {
actual.put(entry.getKey(), String.valueOf(entry.getValue()));
}
return actual;
}
@Override
public void setEnvironment(Map environmentVariables) {
environment = Maps.newHashMap(environmentVariables);
}
@Override
public ProcessForkOptions environment(String name, Object value) {
getEnvironment().put(name, value);
return this;
}
@Override
public ProcessForkOptions environment(Map environmentVariables) {
getEnvironment().putAll(environmentVariables);
return this;
}
@Override
public ProcessForkOptions copyTo(ProcessForkOptions target) {
target.setExecutable(executable);
target.setWorkingDir(getWorkingDir());
target.setEnvironment(getEnvironment());
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy