blob: 579f7766947cc3654cf1491dcc5e93607549db72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
package dev.isxander.yacl3.config.v2.impl.autogen;
import dev.isxander.yacl3.api.Option;
import dev.isxander.yacl3.config.v2.api.autogen.OptionAccess;
import dev.isxander.yacl3.impl.utils.YACLConstants;
import org.jetbrains.annotations.Nullable;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Consumer;
public class OptionAccessImpl implements OptionAccess {
private final Map<String, Option<?>> storage = new HashMap<>();
private final Map<String, Consumer<Option<?>>> scheduledOperations = new HashMap<>();
@Override
public @Nullable Option<?> getOption(String fieldName) {
return storage.get(fieldName);
}
@Override
public void scheduleOptionOperation(String fieldName, Consumer<Option<?>> optionConsumer) {
if (storage.containsKey(fieldName)) {
optionConsumer.accept(storage.get(fieldName));
} else {
scheduledOperations.merge(fieldName, optionConsumer, Consumer::andThen);
}
}
public void putOption(String fieldName, Option<?> option) {
storage.put(fieldName, option);
Consumer<Option<?>> consumer = scheduledOperations.remove(fieldName);
if (consumer != null) {
consumer.accept(option);
}
}
public void checkBadOperations() {
if (!scheduledOperations.isEmpty()) {
YACLConstants.LOGGER.warn("There are scheduled operations on the `OptionAccess` that tried to reference fields that do not exist. The following have been referenced that do not exist: " + String.join(", ", scheduledOperations.keySet()));
}
}
}
|