GRÜN: Neue Erwartungen umgesetzt
[demos/kafka/training] / src / main / java / de / juplo / kafka / AdderBusinessLogic.java
index 2e3d126..cbd500d 100644 (file)
@@ -1,13 +1,54 @@
 package de.juplo.kafka;
 
 
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Optional;
+
+
 public class AdderBusinessLogic
 {
+  private final Map<String, Long> state;
+
+
   public AdderBusinessLogic()
   {
+    this(new HashMap<>());
+  }
+
+  public AdderBusinessLogic(Map<String, Long> state)
+  {
+    this.state = state;
+  }
+
+
+  public synchronized Optional<Long> getSum(String user)
+  {
+    return Optional.ofNullable(state.get(user));
+  }
+
+  public synchronized void addToSum(String user, Integer value)
+  {
+    if (value == null || value < 1)
+      throw new IllegalArgumentException("Not a positive number: " + value);
+
+    long sum =
+        Optional
+            .ofNullable(state.get(user))
+            .orElse(0l);
+    state.put(user, sum + value);
+  }
+
+  public synchronized Long calculate(String user)
+  {
+    if (!state.containsKey(user))
+      throw new IllegalStateException("No sumation for " + user + " in progress");
+
+    return state.remove(user);
   }
 
-  public synchronized void startSum(String user)
+  protected Map<String, Long> getState()
   {
+    return state;
   }
 }