discord4j.gateway.PayloadHandlers Maven / Gradle / Ivy
/*
* This file is part of Discord4J.
*
* Discord4J is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Discord4J is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Discord4J. If not, see .
*/
package discord4j.gateway;
import discord4j.discordjson.json.gateway.*;
import discord4j.discordjson.possible.Possible;
import discord4j.gateway.json.GatewayPayload;
import discord4j.gateway.retry.InvalidSessionException;
import discord4j.gateway.retry.ReconnectException;
import reactor.core.publisher.Mono;
import reactor.util.Logger;
import reactor.util.Loggers;
import java.time.Duration;
import java.util.HashMap;
import java.util.Map;
import static discord4j.common.LogUtil.format;
/**
* Registry for operating on gateway {@link PayloadData} objects, handling each lifecycle {@link Opcode}.
*/
public abstract class PayloadHandlers {
private static final Logger log = Loggers.getLogger(PayloadHandlers.class);
private static final Map, PayloadHandler>> handlerMap = new HashMap<>();
static {
addHandler(Opcode.DISPATCH, PayloadHandlers::handleDispatch);
addHandler(Opcode.HEARTBEAT, PayloadHandlers::handleHeartbeat);
addHandler(Opcode.RECONNECT, PayloadHandlers::handleReconnect);
addHandler(Opcode.INVALID_SESSION, PayloadHandlers::handleInvalidSession);
addHandler(Opcode.HELLO, PayloadHandlers::handleHello);
addHandler(Opcode.HEARTBEAT_ACK, PayloadHandlers::handleHeartbeatAck);
}
private static void addHandler(Opcode op, PayloadHandler handler) {
handlerMap.put(op, handler);
}
/**
* Process a {@link PayloadData} object together with its context, reacting to it.
*
* @param context the PayloadContext used with this PayloadData object
* @param the PayloadData type
* @return a {@link Mono} signaling completion of this payload handling
*/
@SuppressWarnings("unchecked")
public static Mono handle(PayloadContext context) {
PayloadHandler handler = (PayloadHandler) handlerMap.get(context.getPayload().getOp());
if (handler == null) {
log.warn("Handler not found from: {}", context.getPayload());
return Mono.empty();
}
return Mono.defer(() -> handler.handle(context))
.checkpoint("Dispatch handled for OP " + context.getPayload().getOp().getRawOp() +
" seq " + context.getPayload().getSequence() + " type " + context.getPayload().getType());
}
private static Mono handleDispatch(PayloadContext context) {
if (context.getData() instanceof Ready) {
String newSessionId = ((Ready) context.getData()).sessionId();
context.getClient().sessionId().set(newSessionId);
}
if (context.getData() != null) {
context.getClient().dispatchSink().next(context.getData());
}
return Mono.empty();
}
private static Mono handleHeartbeat(PayloadContext context) {
log.debug(format(context.getContext(), "Received heartbeat"));
context.getClient().sender().next(GatewayPayload.heartbeat(ImmutableHeartbeat.of(context.getClient().sequence().get())));
return Mono.empty();
}
private static Mono handleReconnect(PayloadContext> context) {
context.getHandler().error(new ReconnectException(context.getContext(),
"Reconnecting due to reconnect packet received"));
return Mono.empty();
}
private static Mono handleInvalidSession(PayloadContext context) {
DefaultGatewayClient client = context.getClient();
if (context.getData().resumable()) {
String token = client.token();
client.sender().next(GatewayPayload.resume(
ImmutableResume.of(token, client.getSessionId(), client.sequence().get())));
} else {
//client.allowResume().set(false);
context.getHandler().error(new InvalidSessionException(context.getContext(),
"Reconnecting due to non-resumable session invalidation"));
}
return Mono.empty();
}
private static Mono handleHello(PayloadContext context) {
Duration interval = Duration.ofMillis(context.getData().heartbeatInterval());
DefaultGatewayClient client = context.getClient();
client.heartbeat().start(Duration.ZERO, interval);
return client.stateEvents().next()
.doOnNext(state -> {
if (state == GatewayConnection.State.START_RESUMING || state == GatewayConnection.State.RESUMING) {
doResume(context);
} else {
doIdentify(context);
}
})
.then();
}
private static void doResume(PayloadContext context) {
DefaultGatewayClient client = context.getClient();
log.debug(format(context.getContext(), "Resuming Gateway session from {}"), client.sequence().get());
client.sender().next(GatewayPayload.resume(
ImmutableResume.of(client.token(), client.getSessionId(), client.sequence().get())));
}
private static void doIdentify(PayloadContext context) {
DefaultGatewayClient client = context.getClient();
IdentifyProperties props = ImmutableIdentifyProperties.of(System.getProperty("os.name"), "Discord4J",
"Discord4J");
IdentifyOptions options = client.identifyOptions();
Identify identify = Identify.builder()
.token(client.token())
.intents(options.getIntents().map(set -> Possible.of(set.getRawValue())).orElse(Possible.absent()))
.properties(props)
.compress(false)
.largeThreshold(options.getLargeThreshold())
.shard(options.getShardInfo().asArray())
.presence(options.getInitialStatus().map(Possible::of).orElse(Possible.absent()))
.guildSubscriptions(options.getGuildSubscriptions().map(Possible::of).orElse(Possible.absent()))
.build();
log.debug(format(context.getContext(), "Identifying to Gateway"), client.sequence().get());
client.sender().next(GatewayPayload.identify(identify));
}
private static Mono handleHeartbeatAck(PayloadContext> context) {
context.getClient().ackHeartbeat();
log.debug(format(context.getContext(), "Heartbeat acknowledged after {}"),
context.getClient().getResponseTime());
return Mono.empty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy