All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.wicket.protocol.ws.javax.JavaxWebSocketConnection Maven / Gradle / Ivy

Go to download

Provides the common code needed for the different integrations with web container's WebSocket implementations

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.wicket.protocol.ws.javax;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.concurrent.Future;

import jakarta.websocket.CloseReason;
import jakarta.websocket.RemoteEndpoint;
import jakarta.websocket.Session;

import org.apache.wicket.protocol.ws.api.AbstractWebSocketConnection;
import org.apache.wicket.protocol.ws.api.AbstractWebSocketProcessor;
import org.apache.wicket.protocol.ws.api.IWebSocketConnection;
import org.apache.wicket.util.lang.Args;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * A wrapper around JSR 356's native Session.
 *
 * @since 7.0.0
 */
public class JavaxWebSocketConnection extends AbstractWebSocketConnection
{
	private static final Logger LOG = LoggerFactory.getLogger(JavaxWebSocketConnection.class);

	private final Session session;

	/**
	 * Constructor.
	 *
	 * @param session
	 *            the WebSocket session
	 */
	public JavaxWebSocketConnection(Session session, AbstractWebSocketProcessor webSocketProcessor)
	{
		super(webSocketProcessor);
		this.session = Args.notNull(session, "session");
	}

	@Override
	public boolean isOpen()
	{
		return session.isOpen();
	}

	@Override
	public synchronized void close(int code, String reason)
	{
		if (isOpen())
		{
			try
			{
				session.close(new CloseReason(new CloseCode(code), reason));
			} catch (IOException iox)
			{
				LOG.error("An error occurred while closing WebSocket session", iox);
			}
		}
	}

	@Override
	public synchronized IWebSocketConnection sendMessage(String message) throws IOException
	{
		checkClosed();

		session.getBasicRemote().sendText(message);
		return this;
	}

    @Override
    public Future sendMessageAsync(String message)
    {
        checkClosed();

        return session.getAsyncRemote().sendText(message);
    }

    @Override
    public Future sendMessageAsync(String message, long timeOut)
    {
        checkClosed();

        RemoteEndpoint.Async remoteEndpoint  = session.getAsyncRemote();
        remoteEndpoint.setSendTimeout(timeOut);
        return remoteEndpoint.sendText(message);
    }

    @Override
	public synchronized IWebSocketConnection sendMessage(byte[] message, int offset, int length)
		throws IOException
	{
		checkClosed();

		ByteBuffer buf = ByteBuffer.wrap(message, offset, length);
		session.getBasicRemote().sendBinary(buf);
		return this;
	}

    @Override
    public Future sendMessageAsync(byte[] message, int offset, int length)
    {
        checkClosed();

        ByteBuffer buf = ByteBuffer.wrap(message, offset, length);
        return session.getAsyncRemote().sendBinary(buf);
    }

    @Override

    public Future sendMessageAsync(byte[] message, int offset, int length, long timeOut)
    {
        checkClosed();

        RemoteEndpoint.Async remoteEndpoint  = session.getAsyncRemote();
        remoteEndpoint.setSendTimeout(timeOut);
        ByteBuffer buf = ByteBuffer.wrap(message, offset, length);
        return remoteEndpoint.sendBinary(buf);
    }

    private void checkClosed()
	{
		if (!isOpen())
		{
			throw new IllegalStateException("The connection is closed.");
		}
	}

	private static class CloseCode implements CloseReason.CloseCode
	{
		private final int code;

		private CloseCode(int code)
		{
			this.code = code;
		}

		@Override
		public int getCode()
		{
			return code;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy