org.atmosphere.cache.UUIDBroadcasterCache Maven / Gradle / Ivy
/*
* Copyright 2013 Jeanfrancois Arcand
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.atmosphere.cache;
import org.atmosphere.cpr.ApplicationConfig;
import org.atmosphere.cpr.AtmosphereResource;
import org.atmosphere.cpr.AtmosphereResourceImpl;
import org.atmosphere.cpr.BroadcasterCache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
/**
* An improved {@link BroadcasterCache} implementation.
*
* @author Paul Khodchenkov
* @author Jeanfrancois Arcand
*/
public class UUIDBroadcasterCache implements BroadcasterCache, CleanUpMemory {
private final static Logger logger = LoggerFactory.getLogger(UUIDBroadcasterCache.class);
private final Map messages = new HashMap();
private final Map activeClients = new HashMap();
private ScheduledFuture scheduledFuture;
protected ScheduledExecutorService taskScheduler = Executors.newSingleThreadScheduledExecutor();
private long clientIdleTime = TimeUnit.MINUTES.toMillis(2);//2 minutes
private long invalidateCacheInterval = TimeUnit.MINUTES.toMillis(1);//1 minute
public final static class ClientQueue implements Serializable {
private static final long serialVersionUID = -126253550299206646L;
private final ConcurrentLinkedQueue queue = new ConcurrentLinkedQueue();
private final Set ids = Collections.synchronizedSet(new HashSet());
public ConcurrentLinkedQueue getQueue() {
return queue;
}
public Set getIds() {
return ids;
}
@Override
public String toString() {
return queue.toString();
}
}
public static class CacheMessage {
private final Object message;
private final String id;
public CacheMessage(String id, Object message) {
this.id = id;
this.message = message;
}
public Object getMessage() {
return message;
}
public String getId() {
return id;
}
public String toString() {
return message.toString();
}
}
public void setInvalidateCacheInterval(long invalidateCacheInterval) {
this.invalidateCacheInterval = invalidateCacheInterval;
scheduledFuture.cancel(true);
start();
}
public void setClientIdleTime(long clientIdleTime) {
this.clientIdleTime = clientIdleTime;
}
/**
* {@inheritDoc}
*/
@Override
public void setExecutorService(ScheduledExecutorService reaper) {
if (taskScheduler != null) {
stop();
}
this.taskScheduler = reaper;
}
@Override
public void start() {
scheduledFuture = taskScheduler.scheduleWithFixedDelay(new Runnable() {
@Override
public void run() {
invalidateExpiredEntries();
}
}, 0, invalidateCacheInterval, TimeUnit.MILLISECONDS);
}
protected void invalidateExpiredEntries() {
long now = System.currentTimeMillis();
synchronized (messages) {
Set inactiveClients = new HashSet();
for (Map.Entry entry : activeClients.entrySet()) {
if (now - entry.getValue() > clientIdleTime) {
logger.debug("Invalidate client {}", entry.getKey());
inactiveClients.add(entry.getKey());
}
}
for (String clientId : inactiveClients) {
activeClients.remove(clientId);
messages.remove(clientId);
}
}
}
@Override
public void stop() {
cleanup();
taskScheduler.shutdown();
}
@Override
public void cleanup() {
if (scheduledFuture != null) {
scheduledFuture.cancel(false);
scheduledFuture = null;
}
}
@Override
public void addToCache(String broadcasterId, AtmosphereResource r, Object e) {
addCacheCandidate(broadcasterId, r, e);
}
/**
* For backward compatibility with 1.0.9 and lower, use the method above.
*
* @param broadcasterId
* @param r
* @param e
* @return
*/
public CacheMessage addCacheCandidate(String broadcasterId, AtmosphereResource r, Object e) {
if (logger.isTraceEnabled()) {
logger.trace("Adding for AtmosphereResource {} cached messages {} for Broadcaster " + broadcasterId, r != null ? r.uuid() : "null", e);
logger.trace("Active clients {}", activeClients());
}
long now = System.currentTimeMillis();
String messageId = UUID.randomUUID().toString();
CacheMessage cacheMessage = new CacheMessage(messageId, e);
synchronized (messages) {
if (r == null) {
//no clients are connected right now, caching message for all active clients
for (Map.Entry entry : activeClients.entrySet()) {
addMessageIfNotExists(entry.getKey(), cacheMessage);
}
} else {
String clientId = uuid(r);
activeClients.put(clientId, now);
addMessageIfNotExists(clientId, cacheMessage);
}
}
return cacheMessage;
}
private String uuid(AtmosphereResource r) {
return r.transport() == AtmosphereResource.TRANSPORT.WEBSOCKET
? (String) r.getRequest().getAttribute(ApplicationConfig.SUSPENDED_ATMOSPHERE_RESOURCE_UUID) : r.uuid();
}
private void addMessageIfNotExists(String clientId, CacheMessage message) {
if (!hasMessage(clientId, message.getId())) {
addMessage(clientId, message);
} else {
logger.debug("Duplicate message {} for client {}", clientId, message);
}
}
private void addMessage(String clientId, CacheMessage message) {
ClientQueue clientQueue = messages.get(clientId);
if (clientQueue == null) {
clientQueue = new ClientQueue();
messages.put(clientId, clientQueue);
}
clientQueue.getQueue().offer(message);
clientQueue.getIds().add(message.getId());
}
private boolean hasMessage(String clientId, String messageId) {
ClientQueue clientQueue = messages.get(clientId);
return clientQueue != null && clientQueue.getIds().contains(messageId);
}
@Override
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy