netty5/transport-udt/src/test/java/io/netty/channel/udt/bench/xfer/UdtNetty.java
Trustin Lee b60e0b6a51 Modernize InternalLogger API and enable logging framework autodetection
- Borrow SLF4J API which is the best of the best
- InternalLoggerFactory now automatically detects the logging framework
  using static class loading. It tries SLF4J, Log4J, and then falls back
  to java.util.logging.
- Remove OsgiLogger because it is very likely that OSGi container
  already provides a bridge for existing logging frameworks
- Remove JBossLogger because the latest JBossLogger implementation seems
  to implement SLF4J binding
- Upgrade SLF4J to 1.7.2
- Remove tests for the untestable logging frameworks
- Remove TestAny
2013-01-19 20:50:52 +09:00

124 lines
3.5 KiB
Java

/*
* Copyright 2012 The Netty Project
*
* The Netty Project 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 io.netty.channel.udt.bench.xfer;
import com.yammer.metrics.Metrics;
import com.yammer.metrics.core.Counter;
import com.yammer.metrics.core.Meter;
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelHandler;
import io.netty.channel.udt.util.BootHelp;
import io.netty.channel.udt.util.CustomReporter;
import io.netty.channel.udt.util.EchoMessageHandler;
import io.netty.channel.udt.util.TrafficControl;
import io.netty.channel.udt.util.UnitHelp;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.InetSocketAddress;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
/**
* perform two way netty send/recv
*/
public final class UdtNetty {
private UdtNetty() {
}
static final Logger log = LoggerFactory.getLogger(UdtNetty.class);
/** benchmark duration */
static final int time = 10 * 60 * 1000;
/** transfer chunk size */
static final int size = 64 * 1024;
static final Counter benchTime = Metrics.newCounter(UdtNetty.class,
"bench time");
static final Counter benchSize = Metrics.newCounter(UdtNetty.class,
"bench size");
static {
benchTime.inc(time);
benchSize.inc(size);
}
static final Meter rate = Metrics.newMeter(UdtNetty.class, "rate",
"bytes", TimeUnit.SECONDS);
static {
Runtime.getRuntime().addShutdownHook(new Thread() {
@Override
public void run() {
try {
TrafficControl.delay(0);
} catch (final Exception e) {
log.error("", e);
}
}
});
}
public static void main(final String[] args) throws Exception {
log.info("init");
TrafficControl.delay(0);
final AtomicBoolean isOn = new AtomicBoolean(true);
final InetSocketAddress addr1 = UnitHelp.localSocketAddress();
final InetSocketAddress addr2 = UnitHelp.localSocketAddress();
final ChannelHandler handler1 = new EchoMessageHandler(rate, size);
final ChannelHandler handler2 = new EchoMessageHandler(null, size);
final Bootstrap peerBoot1 = BootHelp.messagePeerBoot(addr1, addr2,
handler1);
final Bootstrap peerBoot2 = BootHelp.messagePeerBoot(addr2, addr1,
handler2);
final ChannelFuture peerFuture1 = peerBoot1.connect();
final ChannelFuture peerFuture2 = peerBoot2.connect();
CustomReporter.enable(3, TimeUnit.SECONDS);
Thread.sleep(time);
isOn.set(false);
Thread.sleep(1000);
peerFuture1.channel().close().sync();
peerFuture2.channel().close().sync();
Thread.sleep(1000);
peerBoot1.shutdown();
peerBoot2.shutdown();
Metrics.defaultRegistry().shutdown();
TrafficControl.delay(0);
log.info("done");
}
}