X-Git-Url: https://juplo.de/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fde%2Fjuplo%2Fkafka%2FSumBusinessLogic.java;h=a767aea9456e11ab80243c8c2d9e33746195caeb;hb=43be1c56d6205a70bc2740ef105f329d5e7461cc;hp=cea533fa4db597f18b8156d5b4f82ff5d252b6e0;hpb=e9f30aead5b4456b51944436961891d9a4962612;p=demos%2Fkafka%2Ftraining diff --git a/src/main/java/de/juplo/kafka/SumBusinessLogic.java b/src/main/java/de/juplo/kafka/SumBusinessLogic.java index cea533f..a767aea 100644 --- a/src/main/java/de/juplo/kafka/SumBusinessLogic.java +++ b/src/main/java/de/juplo/kafka/SumBusinessLogic.java @@ -2,15 +2,59 @@ package de.juplo.kafka; import java.util.HashMap; import java.util.Map; +import java.util.Optional; public class SumBusinessLogic { + private final Map state; + + public SumBusinessLogic() { + this(new HashMap<>()); + } + + public SumBusinessLogic(Map state) + { + this.state = state; } + public synchronized void startSum(String user) { + if (state.containsKey(user)) + throw new IllegalStateException("Sumation for " + user + " already in progress, state: " + state.get(user)); + + state.put(user, 0l); + } + + public synchronized Optional getSum(String user) + { + return Optional.ofNullable(state.get(user)); + } + + public synchronized void addToSum(String user, Integer value) + { + if (!state.containsKey(user)) + throw new IllegalStateException("No sumation for " + user + " in progress"); + if (value == null || value < 1) + throw new IllegalArgumentException("Not a positive number: " + value); + + long result = state.get(user) + value; + state.put(user, result); + } + + public synchronized Long endSum(String user) + { + if (!state.containsKey(user)) + throw new IllegalStateException("No sumation for " + user + " in progress"); + + return state.remove(user); + } + + protected Map getState() + { + return state; } }