refactor: Simplified `StorageStrategy`
authorKai Moritz <kai@juplo.de>
Tue, 20 Feb 2024 06:47:22 +0000 (07:47 +0100)
committerKai Moritz <kai@juplo.de>
Tue, 20 Feb 2024 09:28:35 +0000 (10:28 +0100)
* Reconfigurable success/error-logging was introduced for
  `NoStorageStorageStrategy`.
* But as it turns out, this strategy can simply apply its logging in the
  overwritten method, that disables the whole storing-logic.
* Hence, the interface was greatly simplified again, by removing this
  ununsed mechanism.

src/main/java/de/juplo/kafka/chat/backend/implementation/StorageStrategy.java

index 990d001..6108163 100644 (file)
@@ -8,8 +8,6 @@ import org.slf4j.LoggerFactory;
 import reactor.core.publisher.Flux;
 
 import java.util.UUID;
-import java.util.function.BiConsumer;
-import java.util.function.Consumer;
 
 
 public interface StorageStrategy
@@ -17,74 +15,25 @@ public interface StorageStrategy
   Logger log = LoggerFactory.getLogger(StorageStrategy.class.getCanonicalName());
 
   default Flux<ChatRoomInfo> write(ChatHomeService chatHomeService)
-  {
-    return write(
-        chatHomeService,
-        this::logSuccessChatHomeService,
-        this::logFailureChatHomeService);
-  }
-
-  default Flux<ChatRoomInfo> write(
-      ChatHomeService chatHomeService,
-      ChatHomeServiceWrittenSuccessCallback successCallback,
-      ChatHomeServiceWrittenFailureCallback failureCallback)
   {
     return writeChatRoomInfo(
         chatHomeService
             .getChatRoomInfo()
-            .doOnComplete(() -> successCallback.accept(chatHomeService))
-            .doOnError(throwable -> failureCallback.accept(chatHomeService, throwable))
+            .doOnComplete(() -> log.info("Stored {}", chatHomeService))
+            .doOnError(throwable -> log.error("Could not store {}: {}", chatHomeService, throwable))
             .doOnNext(chatRoomInfo ->
                 writeChatRoomData(
                     chatRoomInfo.getId(),
                     chatHomeService
                         .getChatRoomData(chatRoomInfo.getId())
-                        .flatMapMany(chatRoomData -> chatRoomData.getMessages()),
-
-                    this::logSuccessChatRoom,
-                    this::logFailureChatRoom).subscribe()));
+                        .flatMapMany(chatRoomData -> chatRoomData.getMessages())
+                        .doOnComplete(() -> log.info("Stored {}", chatRoomInfo))
+                        .doOnError(throwable -> log.error("Could not store {}: {}", chatRoomInfo, throwable)))
+                    .subscribe()));
   }
 
   Flux<ChatRoomInfo> writeChatRoomInfo(Flux<ChatRoomInfo> chatRoomInfoFlux);
   Flux<ChatRoomInfo> readChatRoomInfo();
-  default Flux<Message> writeChatRoomData(
-      UUID chatRoomId,
-      Flux<Message> messageFlux,
-      ChatRoomWrittenSuccessCallback successCallback,
-      ChatRoomWrittenFailureCallback failureCallback)
-  {
-    return writeChatRoomData(
-        chatRoomId,
-        messageFlux
-            .doOnComplete(() -> successCallback.accept(chatRoomId))
-            .doOnError(throwable -> failureCallback.accept(chatRoomId, throwable)));
-  }
   Flux<Message> writeChatRoomData(UUID chatRoomId, Flux<Message> messageFlux);
   Flux<Message> readChatRoomData(UUID chatRoomId);
-
-  interface ChatHomeServiceWrittenSuccessCallback extends Consumer<ChatHomeService> {}
-  interface ChatHomeServiceWrittenFailureCallback extends BiConsumer<ChatHomeService, Throwable> {}
-
-  default void logSuccessChatHomeService(ChatHomeService chatHomeService)
-  {
-    log.info("Successfully stored {}", chatHomeService);
-  }
-
-  default void logFailureChatHomeService(ChatHomeService chatHomeService, Throwable throwable)
-  {
-    log.error("Could not store {}: {}", chatHomeService, throwable);
-  }
-
-  interface ChatRoomWrittenSuccessCallback extends Consumer<UUID> {}
-  interface ChatRoomWrittenFailureCallback extends BiConsumer<UUID, Throwable> {}
-
-  default void logSuccessChatRoom(UUID chatRoomId)
-  {
-    log.info("Successfully stored chat-room {}", chatRoomId);
-  }
-
-  default void logFailureChatRoom(UUID chatRoomId, Throwable throwable)
-  {
-    log.error("Could not store chat-room {}: {}", chatRoomId, throwable);
-  }
 }