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

io.netty.handler.traffic.TrafficCounter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2011 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.handler.traffic;

import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicLong;

import io.netty.channel.ChannelHandlerContext;

/**
 * TrafficCounter is associated with {@link AbstractTrafficShapingHandler}.
*
* A TrafficCounter has for goal to count the traffic in order to enable to limit the traffic or not, * globally or per channel. It compute statistics on read and written bytes at the specified * interval and call back the {@link AbstractTrafficShapingHandler} doAccounting method at every * specified interval. If this interval is set to 0, therefore no accounting will be done and only * statistics will be computed at each receive or write operations. */ public class TrafficCounter { /** * Current written bytes */ private final AtomicLong currentWrittenBytes = new AtomicLong(); /** * Current read bytes */ private final AtomicLong currentReadBytes = new AtomicLong(); /** * Long life written bytes */ private final AtomicLong cumulativeWrittenBytes = new AtomicLong(); /** * Long life read bytes */ private final AtomicLong cumulativeReadBytes = new AtomicLong(); /** * Last Time where cumulative bytes where reset to zero */ private long lastCumulativeTime; /** * Last writing bandwidth */ private long lastWriteThroughput; /** * Last reading bandwidth */ private long lastReadThroughput; /** * Last Time Check taken */ private final AtomicLong lastTime = new AtomicLong(); /** * Last written bytes number during last check interval */ private long lastWrittenBytes; /** * Last read bytes number during last check interval */ private long lastReadBytes; /** * Delay between two captures */ AtomicLong checkInterval = new AtomicLong( AbstractTrafficShapingHandler.DEFAULT_CHECK_INTERVAL); // default 1 s /** * Name of this Monitor */ final String name; /** * The associated TrafficShapingHandler */ private AbstractTrafficShapingHandler trafficShapingHandler; /** * Default Executor */ private Executor executor; /** * Is Monitor active */ AtomicBoolean monitorActive = new AtomicBoolean(); /** * Monitor */ private TrafficMonitoring trafficMonitoring; /** * Class to implement monitoring at fix delay */ private class TrafficMonitoring implements Runnable { /** * The associated TrafficShapingHandler */ private final AbstractTrafficShapingHandler trafficShapingHandler1; /** * The associated TrafficCounter */ private final TrafficCounter counter; /** * @param trafficShapingHandler * @param counter */ protected TrafficMonitoring( AbstractTrafficShapingHandler trafficShapingHandler, TrafficCounter counter) { trafficShapingHandler1 = trafficShapingHandler; this.counter = counter; } /** * Default run */ @Override public void run() { try { Thread.currentThread().setName(name); for (; monitorActive.get();) { long check = counter.checkInterval.get(); if (check > 0) { Thread.sleep(check); } else { // Delay goes to 0, so exit return; } long endTime = System.currentTimeMillis(); counter.resetAccounting(endTime); if (trafficShapingHandler1 != null) { trafficShapingHandler1.doAccounting(counter); } } } catch (InterruptedException e) { // End of computations } } } /** * Start the monitoring process */ public void start() { synchronized (lastTime) { if (monitorActive.get()) { return; } lastTime.set(System.currentTimeMillis()); if (checkInterval.get() > 0) { monitorActive.set(true); trafficMonitoring = new TrafficMonitoring( trafficShapingHandler, this); executor.execute(trafficMonitoring); } } } /** * Stop the monitoring process */ public void stop() { synchronized (lastTime) { if (!monitorActive.get()) { return; } monitorActive.set(false); resetAccounting(System.currentTimeMillis()); if (trafficShapingHandler != null) { trafficShapingHandler.doAccounting(this); } } } /** * Reset the accounting on Read and Write * * @param newLastTime */ void resetAccounting(long newLastTime) { synchronized (lastTime) { long interval = newLastTime - lastTime.getAndSet(newLastTime); if (interval == 0) { // nothing to do return; } lastReadBytes = currentReadBytes.getAndSet(0); lastWrittenBytes = currentWrittenBytes.getAndSet(0); lastReadThroughput = lastReadBytes / interval * 1000; // nb byte / checkInterval in ms * 1000 (1s) lastWriteThroughput = lastWrittenBytes / interval * 1000; // nb byte / checkInterval in ms * 1000 (1s) } } /** * Constructor with the {@link AbstractTrafficShapingHandler} that hosts it, the executorService to use, its * name, the checkInterval between two computations in millisecond * @param trafficShapingHandler the associated AbstractTrafficShapingHandler * @param executor * Should be a CachedThreadPool for efficiency * @param name * the name given to this monitor * @param checkInterval * the checkInterval in millisecond between two computations */ public TrafficCounter(AbstractTrafficShapingHandler trafficShapingHandler, Executor executor, String name, long checkInterval) { this.trafficShapingHandler = trafficShapingHandler; this.executor = executor; this.name = name; lastCumulativeTime = System.currentTimeMillis(); configure(checkInterval); } /** * Change checkInterval between * two computations in millisecond * * @param newcheckInterval */ public void configure(long newcheckInterval) { if (checkInterval.get() != newcheckInterval) { checkInterval.set(newcheckInterval); if (newcheckInterval <= 0) { stop(); // No more active monitoring lastTime.set(System.currentTimeMillis()); } else { // Start if necessary start(); } } } /** * Computes counters for Read. * * @param ctx * the associated channelHandlerContext * @param recv * the size in bytes to read */ void bytesRecvFlowControl(ChannelHandlerContext ctx, long recv) { currentReadBytes.addAndGet(recv); cumulativeReadBytes.addAndGet(recv); } /** * Computes counters for Write. * * @param write * the size in bytes to write */ void bytesWriteFlowControl(long write) { currentWrittenBytes.addAndGet(write); cumulativeWrittenBytes.addAndGet(write); } /** * * @return the current checkInterval between two computations of traffic counter * in millisecond */ public long getCheckInterval() { return checkInterval.get(); } /** * * @return the Read Throughput in bytes/s computes in the last check interval */ public long getLastReadThroughput() { return lastReadThroughput; } /** * * @return the Write Throughput in bytes/s computes in the last check interval */ public long getLastWriteThroughput() { return lastWriteThroughput; } /** * * @return the number of bytes read during the last check Interval */ public long getLastReadBytes() { return lastReadBytes; } /** * * @return the number of bytes written during the last check Interval */ public long getLastWrittenBytes() { return lastWrittenBytes; } /** * * @return the current number of bytes read since the last checkInterval */ public long getCurrentReadBytes() { return currentReadBytes.get(); } /** * * @return the current number of bytes written since the last check Interval */ public long getCurrentWrittenBytes() { return currentWrittenBytes.get(); } /** * @return the Time in millisecond of the last check as of System.currentTimeMillis() */ public long getLastTime() { return lastTime.get(); } /** * @return the cumulativeWrittenBytes */ public long getCumulativeWrittenBytes() { return cumulativeWrittenBytes.get(); } /** * @return the cumulativeReadBytes */ public long getCumulativeReadBytes() { return cumulativeReadBytes.get(); } /** * @return the lastCumulativeTime in millisecond as of System.currentTimeMillis() * when the cumulative counters were reset to 0. */ public long getLastCumulativeTime() { return lastCumulativeTime; } /** * Reset both read and written cumulative bytes counters and the associated time. */ public void resetCumulativeTime() { lastCumulativeTime = System.currentTimeMillis(); cumulativeReadBytes.set(0); cumulativeWrittenBytes.set(0); } /** * @return the name */ public String getName() { return name; } /** * String information */ @Override public String toString() { return "Monitor " + name + " Current Speed Read: " + (lastReadThroughput >> 10) + " KB/s, Write: " + (lastWriteThroughput >> 10) + " KB/s Current Read: " + (currentReadBytes.get() >> 10) + " KB Current Write: " + (currentWrittenBytes.get() >> 10) + " KB"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy