/* * Copyright 2014-2017 Real Logic Ltd. * * 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 io.aeron.samples.raw; import io.aeron.driver.Configuration; import org.agrona.concurrent.SigInt; import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.DatagramChannel; import java.util.concurrent.atomic.AtomicBoolean; import static io.aeron.samples.raw.Common.init; import static org.agrona.BitUtil.SIZE_OF_LONG; /** * Benchmark used to calculate latency of underlying system. * * @see SendReceiveUdpPing */ public class ReceiveSendUdpPong { public static void main(final String[] args) throws IOException { int numChannels = 1; if (1 == args.length) { numChannels = Integer.parseInt(args[0]); } final ByteBuffer buffer = ByteBuffer.allocateDirect(Configuration.MTU_LENGTH_DEFAULT); final DatagramChannel[] receiveChannels = new DatagramChannel[numChannels]; for (int i = 0; i < receiveChannels.length; i++) { receiveChannels[i] = DatagramChannel.open(); init(receiveChannels[i]); receiveChannels[i].bind(new InetSocketAddress("localhost", Common.PING_PORT + i)); } final InetSocketAddress sendAddress = new InetSocketAddress("localhost", Common.PONG_PORT); final DatagramChannel sendChannel = DatagramChannel.open(); Common.init(sendChannel); final AtomicBoolean running = new AtomicBoolean(true); SigInt.register(() -> running.set(false)); while (true) { buffer.clear(); boolean available = false; while (!available) { if (!running.get()) { return; } for (int i = receiveChannels.length - 1; i >= 0; i--) { if (null != receiveChannels[i].receive(buffer)) { available = true; break; } } } final long receivedSequenceNumber = buffer.getLong(0); final long receivedTimestamp = buffer.getLong(SIZE_OF_LONG); buffer.clear(); buffer.putLong(receivedSequenceNumber); buffer.putLong(receivedTimestamp); buffer.flip(); sendChannel.send(buffer, sendAddress); } } }