/******************************************************************************* * Copyright (c) 2015 * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. *******************************************************************************/ package jsettlers.network.infrastructure.channel; import java.io.IOException; import java.net.UnknownHostException; import java.util.concurrent.LinkedBlockingQueue; import jsettlers.network.NetworkConstants.ENetworkKey; import jsettlers.network.infrastructure.channel.packet.Packet; import jsettlers.network.infrastructure.channel.socket.ISocket; /** * This is a {@link Channel} implementation with asynchronous sending. The packets that shall be send, will be buffered and send by an extra thread. * * @author Andreas Eberle * */ public class AsyncChannel extends Channel { private final LinkedBlockingQueue<PacketWithKey> sendBuffer = new LinkedBlockingQueue<PacketWithKey>(); private final Thread senderThread; public AsyncChannel(String host, int port) throws UnknownHostException, IOException { super(host, port); senderThread = createSenderThread(host + ":" + port); } public AsyncChannel(ISocket socket) throws IOException { super(socket); senderThread = createSenderThread(socket.toString()); } private Thread createSenderThread(String identifier) { return new Thread("AsyncChannelSenderThread(" + identifier + ")") { @Override public void run() { while (!isClosed()) { PacketWithKey packetWithKey = null; try { packetWithKey = sendBuffer.take(); } catch (InterruptedException e) { } if (packetWithKey != null) { sendPacket(packetWithKey.key, packetWithKey.packet); } } } }; } /** * Starts the message receiving and sending of this {@link AsnycChannel}. * <p /> * NOTE: This method may only be called once! * * @throws IllegalThreadStateException * If the thread was already started. * * @see <code>Thread.start()</code> */ @Override public void start() { super.start(); senderThread.start(); } /** * Sends the given packet asynchronously. * * @param packet * Packet to be sent. */ public synchronized void sendPacketAsync(ENetworkKey key, Packet packet) { sendBuffer.offer(new PacketWithKey(key, packet)); } @Override public void close() { super.close(); senderThread.interrupt(); } private class PacketWithKey { final ENetworkKey key; final Packet packet; PacketWithKey(ENetworkKey key, Packet packet) { this.key = key; this.packet = packet; } } }