⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 throughputcontroller.java

📁 测试工具
💻 JAVA
字号:
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF 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 org.apache.jmeter.control;

import java.io.Serializable;

import org.apache.jmeter.engine.event.LoopIterationEvent;
import org.apache.jmeter.engine.event.LoopIterationListener;
import org.apache.jmeter.samplers.Sampler;
import org.apache.jmeter.testelement.TestListener;
import org.apache.jmeter.testelement.property.BooleanProperty;
import org.apache.jmeter.testelement.property.FloatProperty;
import org.apache.jmeter.testelement.property.IntegerProperty;
import org.apache.jmeter.testelement.property.JMeterProperty;
import org.apache.jmeter.testelement.property.StringProperty;

/**
 * This class represents a controller that can control the number of times that
 * it is executed, either by the total number of times the user wants the
 * controller executed (BYNUMBER) or by the percentage of time it is called
 * (BYPERCENT)
 * 
 * The current implementation executes the first N samples (BYNUMBER)
 * or the last N% of samples (BYPERCENT).
 */
public class ThroughputController extends GenericController implements Serializable, LoopIterationListener,
		TestListener {

	public static final int BYNUMBER = 0;

	public static final int BYPERCENT = 1;

	private static final String STYLE = "ThroughputController.style";// $NON-NLS-1$

	private static final String PERTHREAD = "ThroughputController.perThread";// $NON-NLS-1$

	private static final String MAXTHROUGHPUT = "ThroughputController.maxThroughput";// $NON-NLS-1$

	private static final String PERCENTTHROUGHPUT = "ThroughputController.percentThroughput";// $NON-NLS-1$

	private static int globalNumExecutions;

	private static int globalIteration;

	private static final Object counterLock = new Object(); // ensure counts are updated correctly

	/**
	 * Number of iterations on which we've chosen to deliver samplers.
	 */
	private int numExecutions = 0;

	/**
	 * Index of the current iteration. 0-based.
	 */
	private int iteration = -1;

	/**
	 * Whether to deliver samplers on this iteration.
	 */
	private boolean runThisTime;

	public ThroughputController() {
		setStyle(BYNUMBER);
		setPerThread(true);
		setMaxThroughput(1);
		setPercentThroughput(100);
		runThisTime = false;
	}

	public void setStyle(int style) {
		setProperty(new IntegerProperty(STYLE, style));
	}

	public int getStyle() {
		return getPropertyAsInt(STYLE);
	}

	public void setPerThread(boolean perThread) {
		setProperty(new BooleanProperty(PERTHREAD, perThread));
	}

	public boolean isPerThread() {
		return getPropertyAsBoolean(PERTHREAD);
	}

	public void setMaxThroughput(int maxThroughput) {
		setProperty(new IntegerProperty(MAXTHROUGHPUT, maxThroughput));
	}

	public void setMaxThroughput(String maxThroughput) {
		setProperty(new StringProperty(MAXTHROUGHPUT, maxThroughput));
	}

	public String getMaxThroughput() {
		return getPropertyAsString(MAXTHROUGHPUT);
	}

	protected int getMaxThroughputAsInt() {
		JMeterProperty prop = getProperty(MAXTHROUGHPUT);
		int retVal = 1;
		if (prop instanceof IntegerProperty) {
			retVal = (((IntegerProperty) prop).getIntValue());
		} else {
			try {
				retVal = Integer.parseInt(prop.getStringValue());
			} catch (NumberFormatException e) {
			}
		}
		return retVal;
	}

	public void setPercentThroughput(float percentThroughput) {
		setProperty(new FloatProperty(PERCENTTHROUGHPUT, percentThroughput));
	}

	public void setPercentThroughput(String percentThroughput) {
		setProperty(new StringProperty(PERCENTTHROUGHPUT, percentThroughput));
	}

	public String getPercentThroughput() {
		return getPropertyAsString(PERCENTTHROUGHPUT);
	}

	protected float getPercentThroughputAsFloat() {
		JMeterProperty prop = getProperty(PERCENTTHROUGHPUT);
		float retVal = 100;
		if (prop instanceof FloatProperty) {
			retVal = (((FloatProperty) prop).getFloatValue());
		} else {
			try {
				retVal = Float.parseFloat(prop.getStringValue());
			} catch (NumberFormatException e) {
			}
		}
		return retVal;
	}

	private int getExecutions() {
		if (!isPerThread()) {
			return globalNumExecutions;
		}
		return numExecutions;
	}

	/**
	 * @see org.apache.jmeter.control.Controller#next()
	 */
	public Sampler next() {
		if (runThisTime) {
			return super.next();
		}
		return null;
	}

	/**
	 * Decide whether to return any samplers on this iteration.
	 */
	private boolean decide(int executions, int iterations) {
		if (getStyle() == BYNUMBER) {
			return executions < getMaxThroughputAsInt();
		}
		return (100.0 * executions + 50.0) / (iterations + 1) < getPercentThroughputAsFloat();
	}

	/**
	 * @see org.apache.jmeter.control.Controller#isDone()
	 */
	public boolean isDone() {
		if (subControllersAndSamplers.size() == 0) {
			return true;
		} else if (getStyle() == BYNUMBER && getExecutions() >= getMaxThroughputAsInt()
				&& current >= getSubControllers().size()) {
			return true;
		} else {
			return false;
		}
	}

	public Object clone() {
		ThroughputController clone = (ThroughputController) super.clone();
		clone.numExecutions = numExecutions;
		clone.iteration = iteration;
		clone.runThisTime = false;
		return clone;
	}

	public void iterationStart(LoopIterationEvent iterEvent) {
		if (!isPerThread()) {
			synchronized (counterLock) {
				globalIteration++;
				runThisTime = decide(globalNumExecutions, globalIteration);
				if (runThisTime)
					globalNumExecutions++;
			}
		} else {
			iteration++;
			runThisTime = decide(numExecutions, iteration);
			if (runThisTime)
				numExecutions++;
		}
	}

	public void testStarted() {
		synchronized (counterLock) {
			globalNumExecutions = 0;
			globalIteration = -1;			
		}
	}

	public void testStarted(String host) {
		testStarted();
	}

	public void testEnded() {
	}

	public void testEnded(String host) {
	}

	public void testIterationStart(LoopIterationEvent event) {
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -