com.github.twitch4j.pubsub.TwitchPubSubConnectionPool Maven / Gradle / Ivy
package com.github.twitch4j.pubsub;
import com.github.twitch4j.common.pool.TwitchModuleConnectionPool;
import com.github.twitch4j.common.util.CryptoUtils;
import com.github.twitch4j.pubsub.domain.PubSubRequest;
import com.github.twitch4j.pubsub.events.PubSubAuthRevokeEvent;
import com.github.twitch4j.pubsub.events.PubSubListenResponseEvent;
import com.github.twitch4j.util.IBackoffStrategy;
import lombok.Builder;
import lombok.experimental.SuperBuilder;
import org.apache.commons.lang3.RandomStringUtils;
import org.apache.commons.lang3.StringUtils;
import java.util.Collection;
import java.util.stream.StreamSupport;
/**
* A pool for PubSub connections to help navigate rate-limits.
*
* Warning: Passing a {@link java.util.concurrent.ScheduledThreadPoolExecutor} with too small corePoolSize can lead to
* connections in the pool not behaving properly. Not specifying an executor allows connections to create their own
* at will. If enough connections are made, this could pollute one's runtime environment.
*/
@SuperBuilder
public class TwitchPubSubConnectionPool extends TwitchModuleConnectionPool implements ITwitchPubSub {
private final String threadPrefix = "twitch4j-pool-" + RandomStringUtils.random(4, true, true) + "-pubsub-";
/**
* WebSocket Connection Backoff Strategy
*/
@Builder.Default
private IBackoffStrategy connectionBackoffStrategy = null;
@Override
public PubSubSubscription listenOnTopic(PubSubRequest request) {
return this.subscribe(request);
}
@Override
public boolean unsubscribeFromTopic(PubSubSubscription subscription) {
return this.unsubscribe(subscription);
}
@Override
public PubSubSubscription subscribe(PubSubRequest pubSubRequest) {
final int topics = getTopicCount(pubSubRequest);
if (topics <= 0) return null;
injectNonce(pubSubRequest);
return super.subscribe(pubSubRequest);
}
@Override
protected TwitchPubSub createConnection() {
if (closed.get()) throw new IllegalStateException("PubSub connection cannot be created after pool was closed!");
// Instantiate with configuration
TwitchPubSub client = advancedConfiguration.apply(
TwitchPubSubBuilder.builder()
.withEventManager(getConnectionEventManager())
.withScheduledThreadPoolExecutor(getExecutor(threadPrefix + RandomStringUtils.random(4, true, true), TwitchPubSub.REQUIRED_THREAD_COUNT))
.withProxyConfig(proxyConfig.get())
.withConnectionBackoffStrategy(connectionBackoffStrategy)
).build();
// Reclaim topic headroom upon a failed subscription
client.getEventManager().onEvent("twitch4j-pubsub-pool-nonce-tracker", PubSubListenResponseEvent.class, e -> {
if (e.hasError()) {
e.getListenRequest().map(PubSubSubscription::new).ifPresent(this::unsubscribe);
}
});
// Reclaim topic headroom upon revoked subscriptions
client.getEventManager().onEvent(threadPrefix + "revocation-tracker", PubSubAuthRevokeEvent.class, e -> {
// technically this causes warning logs because the underlying socket has already cleaned up
// but, we still want SubscriptionConnectionPool#decrementSubscriptions to be called (hence this call)
e.getRevokedListensByTopic().values()
.forEach(req -> unsubscribe(new PubSubSubscription(req)));
});
// Return pubsub client
return client;
}
@Override
protected void disposeConnection(TwitchPubSub connection) {
connection.close();
}
@Override
protected PubSubSubscription handleSubscription(TwitchPubSub twitchPubSub, PubSubRequest pubSubRequest) {
return twitchPubSub != null ? twitchPubSub.listenOnTopic(pubSubRequest) : null;
}
@Override
protected PubSubSubscription handleDuplicateSubscription(TwitchPubSub twitchPubSub, TwitchPubSub old, PubSubRequest pubSubRequest) {
final PubSubSubscription subscription = new PubSubSubscription(pubSubRequest);
return twitchPubSub != null && twitchPubSub != old && twitchPubSub.unsubscribeFromTopic(subscription) ? subscription : null;
}
@Override
protected Boolean handleUnsubscription(TwitchPubSub twitchPubSub, PubSubSubscription pubSubSubscription) {
return twitchPubSub != null ? twitchPubSub.unsubscribeFromTopic(pubSubSubscription) : null;
}
@Override
protected PubSubRequest getRequestFromSubscription(PubSubSubscription subscription) {
return subscription.getRequest();
}
@Override
protected int getSubscriptionSize(PubSubRequest pubSubRequest) {
return getTopicCount(pubSubRequest);
}
private static void injectNonce(PubSubRequest req) {
if (StringUtils.isBlank(req.getNonce()))
req.setNonce(CryptoUtils.generateNonce(30));
}
private static int getTopicCount(PubSubRequest req) {
Object topics = req.getData().get("topics");
if (topics instanceof Collection)
return ((Collection>) topics).size();
else if (topics instanceof Iterable)
return (int) StreamSupport.stream(((Iterable>) topics).spliterator(), false).count();
else if (topics instanceof Object[])
return ((Object[]) topics).length;
return -1;
}
@Override
public long getLatency() {
long sum = 0;
int count = 0;
for (TwitchPubSub connection : getConnections()) {
final long latency = connection.getLatency();
if (latency > 0) {
sum += latency;
count++;
}
}
return count > 0 ? sum / count : -1L;
}
}