hprose.server.HproseWebSocketService Maven / Gradle / Ivy
/**********************************************************\
| |
| hprose |
| |
| Official WebSite: http://www.hprose.com/ |
| http://www.hprose.org/ |
| |
\**********************************************************/
/**********************************************************\
* *
* HproseWebSocketService.java *
* *
* hprose websocket service class for Java. *
* *
* LastModified: Jul 7, 2016 *
* Author: Ma Bingyao *
* *
\**********************************************************/
package hprose.server;
import hprose.common.HproseContext;
import hprose.common.HproseMethods;
import hprose.io.ByteBufferStream;
import hprose.util.concurrent.Action;
import java.io.IOException;
import java.lang.reflect.Type;
import java.nio.ByteBuffer;
import javax.websocket.EndpointConfig;
import javax.websocket.RemoteEndpoint;
import javax.websocket.Session;
public class HproseWebSocketService extends HproseService {
private final static ThreadLocal currentContext = new ThreadLocal();
private EndpointConfig config = null;
public static WebSocketContext getCurrentContext() {
return currentContext.get();
}
@Override
public HproseMethods getGlobalMethods() {
if (globalMethods == null) {
globalMethods = new HproseWebSocketMethods();
}
return globalMethods;
}
@Override
public void setGlobalMethods(HproseMethods methods) {
if (methods instanceof HproseWebSocketMethods) {
this.globalMethods = methods;
}
else {
throw new ClassCastException("methods must be a HproseWebSocketMethods instance");
}
}
@Override
protected Object[] fixArguments(Type[] argumentTypes, Object[] arguments, ServiceContext context) {
int count = arguments.length;
WebSocketContext wsContext = (WebSocketContext)context;
if (argumentTypes.length != count) {
Object[] args = new Object[argumentTypes.length];
System.arraycopy(arguments, 0, args, 0, count);
Class> argType = (Class>) argumentTypes[count];
if (argType.equals(HproseContext.class) || argType.equals(ServiceContext.class)) {
args[count] = context;
}
else if (argType.equals(WebSocketContext.class)) {
args[count] = wsContext;
}
else if (argType.equals(EndpointConfig.class)) {
args[count] = wsContext.getConfig();
}
else if (argType.equals(Session.class)) {
args[count] = wsContext.getSession();
}
return args;
}
return arguments;
}
public void setConfig(EndpointConfig config) {
this.config = config;
}
@SuppressWarnings("unchecked")
public void handle(final ByteBuffer buf, final Session session) throws IOException {
WebSocketContext context = new WebSocketContext(this, session, config);
final int id = buf.getInt();
currentContext.set(context);
handle(buf.slice(), context).then(new Action() {
public void call(ByteBuffer value) throws Throwable {
try {
ByteBuffer buffer = ByteBuffer.allocate(4 + value.remaining());
buffer.putInt(id);
buffer.put(value);
buffer.flip();
final RemoteEndpoint.Async remote = session.getAsyncRemote();
remote.sendBinary(buffer);
}
finally {
ByteBufferStream.free(value);
}
}
}).whenComplete(new Runnable() {
public void run() {
currentContext.remove();
ByteBufferStream.free(buf);
}
});
}
public void handleError(Session session, Throwable error) {
WebSocketContext context = new WebSocketContext(this, session, config);
fireErrorEvent(error, context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy