package de.juplo.kafka.chat.backend.domain;
+import de.juplo.kafka.chat.backend.domain.exceptions.ChatRoomInactiveException;
import de.juplo.kafka.chat.backend.domain.exceptions.InvalidUsernameException;
import de.juplo.kafka.chat.backend.domain.exceptions.MessageMutationException;
import lombok.extern.slf4j.Slf4j;
private final Clock clock;
private final int historyLimit;
private Sinks.Many<Message> sink;
+ private volatile boolean active = true;
public ChatRoomData(
// @RequiredArgsConstructor unfortunately not possible, because
// the `historyLimit` is not set, if `createSink()` is called
// from the variable declaration!
- this.sink = createSink();
}
sink.error(new MessageMutationException(existing, text));
}
})
- .switchIfEmpty(
- Mono
+ .switchIfEmpty(active
+ ? Mono
.defer(() -> service.persistMessage(key, LocalDateTime.now(clock), text))
.doOnNext(m ->
{
{
log.warn("Emitting of message failed with {} for {}", result.name(), m);
}
- }));
+ })
+ : Mono.error(new ChatRoomInactiveException(service.getChatRoomId())));
}
synchronized public Flux<Message> listen()
{
- return sink
- .asFlux()
- .doOnCancel(() -> sink = createSink()); // Sink hast to be recreated on auto-cancel!
+ return active
+ ? sink
+ .asFlux()
+ .doOnCancel(() -> sink = createSink()) // Sink hast to be recreated on auto-cancel!
+ : Flux
+ .error(new ChatRoomInactiveException(service.getChatRoomId()));
+
}
public Flux<Message> getMessages()
return service.getMessages(first, last);
}
- public void close()
+ public void activate()
+ {
+ log.info("{} is being activated", service.getChatRoomId());
+ this.sink = createSink();
+ active = true;
+ }
+
+ public void deactivate()
{
- log.info("{} is being closed", service.getChatRoomId());
+ log.info("{} is being deactivated", service.getChatRoomId());
+ active = false;
sink.emitComplete(Sinks.EmitFailureHandler.FAIL_FAST);
}
--- /dev/null
+package de.juplo.kafka.chat.backend.domain.exceptions;
+
+import lombok.Getter;
+
+import java.util.UUID;
+
+
+public class ChatRoomInactiveException extends IllegalStateException
+{
+ @Getter
+ private final UUID chatRoomId;
+
+
+ public ChatRoomInactiveException(UUID chatRoomId)
+ {
+ super("Chat-Room " + chatRoomId + " was closed.");
+ this.chatRoomId = chatRoomId;
+ }
+}
new InMemoryChatMessageService(chatRoomId);
chatRoomInfo.put(chatRoomId, info);
- chatRoomData.put(
- info.getId(),
+ ChatRoomData chatRoomData =
new ChatRoomData(
clock,
chatMessageService,
- historyLimit));
+ historyLimit);
+ chatRoomData.activate();
+ this.chatRoomData.put(info.getId(), chatRoomData);
return chatMessageService.restore(storageStrategy);
})
ChatRoomInfo chatRoomInfo = new ChatRoomInfo(id, name, shard);
this.chatRoomInfo.put(id, chatRoomInfo);
ChatRoomData chatRoomData = new ChatRoomData(clock, service, historyLimit);
+ chatRoomData.activate();
this.chatRoomData.put(id, chatRoomData);
return Mono.just(chatRoomInfo);
}
isShardOwned[partition] = true;
this.currentOffset[partition] = currentOffset;
+ chatRoomData[partition]
+ .values()
+ .forEach(chatRoomData -> chatRoomData.activate());
+
log.info(
"Partition assigned: {} - loading messages: next={} -> current={}",
partition,
partitions.forEach(topicPartition ->
{
int partition = topicPartition.partition();
- chatRoomData[partition]
- .values()
- .forEach(chatRoomData -> chatRoomData.close());
isShardOwned[partition] = false;
nextOffset[partition] = consumer.position(topicPartition);
+
log.info("Partition revoked: {} - next={}", partition, nextOffset[partition]);
+
+ chatRoomData[partition]
+ .values()
+ .forEach(chatRoomData -> chatRoomData.deactivate());
+
channelMediator.shardRevoked(partition);
});
}
void createChatRoomData(ChatRoomInfo chatRoomInfo)
{
- computeChatRoomData(chatRoomInfo.getId(), chatRoomInfo.getShard());
+ ChatRoomData chatRoomData = computeChatRoomData(
+ chatRoomInfo.getId(),
+ chatRoomInfo.getShard());
+ chatRoomData.activate();
}
Mono<ChatRoomData> getChatRoomData(int shard, UUID id)