/* * Copyright 2000-2017 JetBrains s.r.o. * * 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 jetbrains.buildServer.agent.rakerunner; import java.util.HashMap; import java.util.Map; import jetbrains.buildServer.RunBuildException; import jetbrains.buildServer.agent.BuildRunnerContext; import jetbrains.buildServer.agent.rakerunner.utils.EnvironmentPatchableMap; import jetbrains.buildServer.agent.rakerunner.utils.FileUtil2; import org.jetbrains.annotations.NotNull; /** * @author Vladislav.Rassokhin */ public class ModifiableRunnerContext { @NotNull private final Map myRunnerParameters; @NotNull private final Map myBuildParameters; @NotNull private final EnvironmentPatchableMap myEnvParameters; @NotNull private final String myCheckoutDirectory; @NotNull private final String myWorkingDirectory; public ModifiableRunnerContext(@NotNull final BuildRunnerContext origin) throws RunBuildException { myRunnerParameters = new HashMap(origin.getRunnerParameters()); myBuildParameters = new HashMap(origin.getBuildParameters().getAllParameters()); myEnvParameters = new EnvironmentPatchableMap(origin.getBuildParameters().getEnvironmentVariables()); myCheckoutDirectory = FileUtil2.getCanonicalPath(origin.getBuild().getCheckoutDirectory()); myWorkingDirectory = FileUtil2.getCanonicalPath(origin.getWorkingDirectory()); } @NotNull public Map getRunnerParameters() { return myRunnerParameters; } @NotNull public Map getBuildParameters() { return myBuildParameters; } @NotNull public EnvironmentPatchableMap getEnvParameters() { return myEnvParameters; } @NotNull public String getCheckoutDirectory() { return myCheckoutDirectory; } @NotNull public String getWorkingDirectory() { return myWorkingDirectory; } }