/* * -----------------------------------------------------------------------\ * PerfCake *   * Copyright (C) 2010 - 2016 the original author or authors. *   * 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.perfcake.message.sender; import org.perfcake.PerfCakeException; import org.perfcake.message.Message; import org.perfcake.reporting.MeasurementUnit; import java.io.IOException; import java.io.Serializable; import java.net.InetSocketAddress; import java.net.SocketAddress; import java.nio.channels.DatagramChannel; import java.nio.charset.Charset; import java.util.Properties; /** * Sends messages through NIO DatagramChannel. * * @author <a href="mailto:domin.hanak@gmail.com">Dominik Hanák</a> * @author <a href="mailto:marvenec@gmail.com">Martin Večeřa</a> */ public class ChannelSenderDatagram extends ChannelSender { /** * Sender's Datagram Channel. */ private DatagramChannel datagramChannel; /** * Encoded target address. */ private SocketAddress address; @Override public void doInit(final Properties messageAttributes) { final String[] parts = safeGetTarget(messageAttributes).split(":", 2); final String host = parts[0]; final int port = Integer.parseInt(parts[1]); address = new InetSocketAddress(host, port); } @Override public void preSend(final Message message, final Properties messageAttributes) throws Exception { super.preSend(message, messageAttributes); // Open the Datagram channel in blocking mode datagramChannel = DatagramChannel.open(); datagramChannel.configureBlocking(true); } @Override public Serializable doSend(final Message message, final MeasurementUnit measurementUnit) throws PerfCakeException { if (messageBuffer != null) { // write data into channel try { datagramChannel.send(messageBuffer, address); } catch (final IOException e) { throw new PerfCakeException("Problem while writing to the datagram channel: ", e); } // read response if (awaitResponse) { if (responseBuffer != null) { try { datagramChannel.receive(responseBuffer); } catch (final IOException e) { throw new PerfCakeException("Problem while reading from the datagram channel: ", e); } return new String(responseBuffer.array(), Charset.forName("UTF-8")); } else { throw new PerfCakeException("Cannot read response with automatic buffer size configuration for an empty message."); } } } return null; } @Override public void postSend(final Message message) throws Exception { super.postSend(message); try { datagramChannel.close(); } catch (final IOException e) { throw new PerfCakeException("Error while closing the datagram channel: ", e); } } }