io.trino.tests.product.launcher.env.EnvironmentProvider Maven / Gradle / Ivy
/*
* 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 io.trino.tests.product.launcher.env;
import com.google.common.collect.ImmutableList;
import io.airlift.log.Logger;
import io.trino.tests.product.launcher.env.common.EnvironmentExtender;
import java.io.PrintStream;
import java.util.IdentityHashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import static com.google.common.collect.ImmutableMap.toImmutableMap;
import static java.util.Collections.newSetFromMap;
import static java.util.Objects.requireNonNull;
public abstract class EnvironmentProvider
implements EnvironmentExtender
{
private static final Logger log = Logger.get(EnvironmentProvider.class);
private final List bases;
protected EnvironmentProvider(EnvironmentExtender... bases)
{
this(ImmutableList.copyOf(requireNonNull(bases, "bases is null")));
}
protected EnvironmentProvider(List bases)
{
this.bases = ImmutableList.copyOf(requireNonNull(bases, "bases is null"));
}
public final Environment.Builder createEnvironment(String name, PrintStream printStream, EnvironmentConfig environmentConfig, Map extraOptions)
{
requireNonNull(environmentConfig, "environmentConfig is null");
requireNonNull(extraOptions, "extraOptions is null");
Environment.Builder builder = Environment.builder(name, printStream);
// Environment is created by applying bases, environment definition and environment config to builder
ImmutableList extenders = ImmutableList.builder()
.addAll(bases)
.add(this)
.add(environmentConfig)
.build();
Set seen = newSetFromMap(new IdentityHashMap<>());
extenders.forEach(extender -> extend(extender, builder, extraOptions, seen));
return builder;
}
private void extend(EnvironmentExtender extender, Environment.Builder builder, Map extraOptions, Set seen)
{
extender.getDependencies()
.forEach(dependencyExtender -> extend(dependencyExtender, builder, extraOptions, seen));
if (seen.add(extender)) {
Map extraOptionsForExtender;
if (extender.getExtraOptionsPrefix().isPresent()) {
String prefix = extender.getExtraOptionsPrefix().get();
extraOptionsForExtender = extraOptions.entrySet().stream()
.filter(entry -> entry.getKey().startsWith(prefix))
.collect(toImmutableMap(
// remove prefix
entry -> entry.getKey().substring(prefix.length()),
Map.Entry::getValue));
}
else {
extraOptionsForExtender = Map.of();
}
log.info("Building environment %s with extender: %s; options: %s", builder.getEnvironmentName(), extender.getClass().getSimpleName(), extraOptionsForExtender);
extender.extendEnvironment(builder, extraOptionsForExtender);
}
}
}