Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2015 Async-IO.org
*
* 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.util;
import org.atmosphere.cpr.AtmosphereConfig;
import org.atmosphere.cpr.AtmosphereResource;
import org.atmosphere.cpr.AtmosphereResourceEvent;
import org.atmosphere.cpr.Broadcaster;
import org.atmosphere.cpr.BroadcasterFuture;
import org.atmosphere.cpr.DefaultBroadcaster;
import org.atmosphere.cpr.Deliver;
import org.atmosphere.cpr.FrameworkConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.lang.reflect.Method;
import java.net.URI;
import java.util.Set;
import java.util.concurrent.Future;
/**
* Abstract {@link org.atmosphere.cpr.Broadcaster} that delegates the internal processing to a proxy.
*
* @author Jeanfrancois Arcand
*/
public abstract class AbstractBroadcasterProxy extends DefaultBroadcaster {
private static final Logger logger = LoggerFactory.getLogger(AbstractBroadcasterProxy.class);
private Method jerseyBroadcast = null;
public AbstractBroadcasterProxy() {
try {
Class jerseyBroadcasterUtil = Class.forName("org.atmosphere.jersey.util.JerseyBroadcasterUtil");
jerseyBroadcast = jerseyBroadcasterUtil.getMethod("broadcast", new Class[]{AtmosphereResource.class, AtmosphereResourceEvent.class, Broadcaster.class});
} catch (Exception e) {
logger.trace("", e);
}
}
public Broadcaster initialize(String id, URI uri, AtmosphereConfig config) {
return super.initialize(id, uri, config);
}
/**
* Implement this method to broadcast message received from an external source like JGroups, Redis, etc.
*/
abstract public void incomingBroadcast();
/**
* Implement this method to broadcast message to external source like JGroups, Redis, etc.
*
* @param message outgoing message
*/
abstract public void outgoingBroadcast(Object message);
@Override
protected Runnable getBroadcastHandler() {
return new Runnable() {
public void run() {
try {
incomingBroadcast();
} catch (Throwable t) {
logger.warn("incomingBroadcast Exception. Broadcaster will be broken unless reconfigured", t);
destroy();
return;
}
}
};
}
protected void reconfigure() {
if (!started.get()) {
return;
}
logger.debug("Reconfiguring Broadcaster {}", getID());
spawnReactor();
}
@Override
protected void invokeOnStateChange(final AtmosphereResource r, final AtmosphereResourceEvent e) {
if (r.getRequest().getAttribute(FrameworkConfig.CONTAINER_RESPONSE) != null) {
try {
jerseyBroadcast.invoke(null, new Object[]{r, e, r.getBroadcaster()});
} catch (Throwable t) {
super.invokeOnStateChange(r, e);
}
} else {
super.invokeOnStateChange(r, e);
}
}
protected void broadcastReceivedMessage(Object message) {
try {
Object newMsg = filter(message);
// if newSgw == null, that means the message has been filtered.
if (newMsg != null) {
push(new Deliver(newMsg, new BroadcasterFuture