blob: 5bb4fadfecc8b517d4010d6c71f4ca758f9c1fc0 [file] [log] [blame]
/*
* Copyright 2018 The Bazel Authors. All rights reserved.
*
* 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.bazel.ruleskotlin.workers;
import java.util.*;
import java.util.function.Consumer;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class Context {
private final EnumMap<Flags, String> args = new EnumMap<>(Flags.class);
private final Map<Meta<?>, Object> meta = new HashMap<>();
private static final Map<String, Flags> ALL_FIELDS_MAP = Arrays.stream(Flags.values()).collect(Collectors.toMap(x -> x.name, x -> x));
private static final Flags[] MANDATORY_FIELDS = Arrays.stream(Flags.values()).filter(x -> x.mandatory).toArray(Flags[]::new);
private Context(List<String> args) {
if (args.size() % 2 != 0) {
throw new RuntimeException("args should be k,v pairs");
}
for (int i = 0; i < args.size() / 2; i++) {
String flag = args.get(i * 2);
String value = args.get((i * 2) + 1);
Flags field = ALL_FIELDS_MAP.get(flag);
if (field == null) {
throw new RuntimeException("unrecognised arg: " + flag);
}
this.args.put(field, value);
}
for (Flags mandatoryField : MANDATORY_FIELDS) {
if (!this.args.containsKey(mandatoryField)) {
throw new RuntimeException("mandatory arg missing: " + mandatoryField.name);
}
}
}
public static Context from(List<String> args) {
return new Context(args);
}
public EnumMap<Flags, String> of(Flags... fields) {
EnumMap<Flags, String> result = new EnumMap<>(Flags.class);
for (Flags field : fields) {
String value = args.get(field);
if (value != null) {
result.put(field, value);
}
}
return result;
}
public interface Action extends Consumer<Context> {
}
public void apply(Action... consumers) {
Stream.of(consumers).forEach(c -> c.accept(this));
}
String get(Flags field) {
return args.get(field);
}
@SuppressWarnings("unchecked")
<T> T get(Meta<T> key) {
return (T) meta.get(key);
}
@SuppressWarnings("unchecked")
<T> T putIfAbsent(Meta<T> key, T value) {
return (T) meta.putIfAbsent(key, value);
}
}