WIP
[demos/kafka/training] / src / main / java / de / juplo / kafka / SumBusinessLogic.java
index e662606..27ddebb 100644 (file)
@@ -2,6 +2,7 @@ package de.juplo.kafka;
 
 import java.util.HashMap;
 import java.util.Map;
+import java.util.Optional;
 
 
 public class SumBusinessLogic
@@ -27,4 +28,33 @@ public class SumBusinessLogic
 
     state.put(user, 0l);
   }
+
+  public synchronized Optional<Long> 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.get(user);
+  }
+
+  protected Map<String, Long> getState()
+  {
+    return state;
+  }
 }