Search in sources :

Example 21 with AbstractReceiveListener

use of io.undertow.websockets.core.AbstractReceiveListener in project actframework by actframework.

the class UndertowWebSocketConnectionHandler method handle.

@Override
public void handle(final ActionContext context) {
    if (logger.isTraceEnabled()) {
        logger.trace("handle websocket connection request to %s", context.req().url());
    }
    final UndertowRequest req = (UndertowRequest) context.req();
    HttpServerExchange exchange = req.exchange();
    try {
        Handlers.websocket(new WebSocketConnectionCallback() {

            @Override
            public void onConnect(WebSocketHttpExchange exchange, WebSocketChannel channel) {
                final WebSocketConnection connection = new UndertowWebSocketConnection(channel, context.session());
                channel.setAttribute("act_conn", connection);
                connectionManager.registerNewConnection(connection, context);
                final WebSocketContext wsCtx = new WebSocketContext(req.url(), connection, connectionManager, context, connectionManager.app());
                if (logger.isTraceEnabled()) {
                    logger.trace("websocket context[%s] created for %s", connection.sessionId(), context.req().url());
                }
                channel.getReceiveSetter().set(new AbstractReceiveListener() {

                    @Override
                    protected void onFullTextMessage(WebSocketChannel channel, BufferedTextMessage message) throws IOException {
                        WebSocketContext.current(wsCtx);
                        String payload = message.getData();
                        if (logger.isTraceEnabled()) {
                            logger.trace("websocket message received: %s", payload);
                        }
                        wsCtx.messageReceived(payload);
                        invoke(wsCtx);
                    }

                    @Override
                    protected void onClose(WebSocketChannel webSocketChannel, StreamSourceFrameChannel channel) throws IOException {
                        if (logger.isTraceEnabled()) {
                            logger.trace("websocket closed: ", connection.sessionId());
                        }
                        WebSocketContext.current(wsCtx);
                        super.onClose(webSocketChannel, channel);
                        connection.destroy();
                        context.app().eventBus().emit(new WebSocketCloseEvent(wsCtx));
                    }
                });
                channel.resumeReceives();
                Act.eventBus().emit(new WebSocketConnectEvent(wsCtx));
            }
        }).handleRequest(exchange);
    } catch (RuntimeException e) {
        throw e;
    } catch (Exception e) {
        throw ActErrorResult.of(e);
    }
}
Also used : WebSocketCloseEvent(act.ws.WebSocketCloseEvent) WebSocketConnectEvent(act.ws.WebSocketConnectEvent) WebSocketConnection(act.xio.WebSocketConnection) WebSocketChannel(io.undertow.websockets.core.WebSocketChannel) IOException(java.io.IOException) BufferedTextMessage(io.undertow.websockets.core.BufferedTextMessage) IOException(java.io.IOException) WebSocketContext(act.ws.WebSocketContext) HttpServerExchange(io.undertow.server.HttpServerExchange) WebSocketHttpExchange(io.undertow.websockets.spi.WebSocketHttpExchange) StreamSourceFrameChannel(io.undertow.websockets.core.StreamSourceFrameChannel) AbstractReceiveListener(io.undertow.websockets.core.AbstractReceiveListener) WebSocketConnectionCallback(io.undertow.websockets.WebSocketConnectionCallback)

Aggregations

AbstractReceiveListener (io.undertow.websockets.core.AbstractReceiveListener)21 WebSocketChannel (io.undertow.websockets.core.WebSocketChannel)21 BufferedTextMessage (io.undertow.websockets.core.BufferedTextMessage)18 URI (java.net.URI)16 Test (org.junit.Test)15 IOException (java.io.IOException)14 CountDownLatch (java.util.concurrent.CountDownLatch)10 AtomicReference (java.util.concurrent.atomic.AtomicReference)10 WebSocketConnectionCallback (io.undertow.websockets.WebSocketConnectionCallback)9 BufferedBinaryMessage (io.undertow.websockets.core.BufferedBinaryMessage)9 WebSocketHttpExchange (io.undertow.websockets.spi.WebSocketHttpExchange)9 StringWriteChannelListener (io.undertow.util.StringWriteChannelListener)8 WebSocketProtocolHandshakeHandler (io.undertow.websockets.WebSocketProtocolHandshakeHandler)8 StreamSinkFrameChannel (io.undertow.websockets.core.StreamSinkFrameChannel)8 WebSocketClientNegotiation (io.undertow.websockets.client.WebSocketClientNegotiation)5 FrameChecker (io.undertow.websockets.utils.FrameChecker)5 WebSocketTestClient (io.undertow.websockets.utils.WebSocketTestClient)5 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)5 FutureResult (org.xnio.FutureResult)5 WebSocketExtension (io.undertow.websockets.WebSocketExtension)4