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

📄 loopcontrolpanel.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.gui;

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.Box;
import javax.swing.JCheckBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

import org.apache.jmeter.control.LoopController;
import org.apache.jmeter.gui.util.FocusRequester;
import org.apache.jmeter.testelement.TestElement;
import org.apache.jmeter.util.JMeterUtils;

/**
 * The user interface for a controller which specifies that its subcomponents
 * should be executed some number of times in a loop. This component can be used
 * standalone or embedded into some other component.
 * 
 */

public class LoopControlPanel extends AbstractControllerGui implements ActionListener {
	/**
	 * A checkbox allowing the user to specify whether or not the controller
	 * should loop forever.
	 */
	private JCheckBox infinite;

	/**
	 * A field allowing the user to specify the number of times the controller
	 * should loop.
	 */
	private JTextField loops;

	/**
	 * Boolean indicating whether or not this component should display its name.
	 * If true, this is a standalone component. If false, this component is
	 * intended to be used as a subpanel for another component.
	 */
	private boolean displayName = true;

	/** The name of the infinite checkbox component. */
	private static final String INFINITE = "Infinite Field"; // $NON-NLS-1$

	/** The name of the loops field component. */
	private static final String LOOPS = "Loops Field"; // $NON-NLS-1$

	/**
	 * Create a new LoopControlPanel as a standalone component.
	 */
	public LoopControlPanel() {
		this(true);
	}

	/**
	 * Create a new LoopControlPanel as either a standalone or an embedded
	 * component.
	 * 
	 * @param displayName
	 *            indicates whether or not this component should display its
	 *            name. If true, this is a standalone component. If false, this
	 *            component is intended to be used as a subpanel for another
	 *            component.
	 */
	public LoopControlPanel(boolean displayName) {
		this.displayName = displayName;
		init();
		setState(1);
	}

	/**
	 * A newly created component can be initialized with the contents of a Test
	 * Element object by calling this method. The component is responsible for
	 * querying the Test Element object for the relevant information to display
	 * in its GUI.
	 * 
	 * @param element
	 *            the TestElement to configure
	 */
	public void configure(TestElement element) {
		super.configure(element);
		if (element instanceof LoopController) {
			setState(((LoopController) element).getLoopString());
		} else {
			setState(1);
		}
	}

	/* Implements JMeterGUIComponent.createTestElement() */
	public TestElement createTestElement() {
		LoopController lc = new LoopController();
		modifyTestElement(lc);
		return lc;
	}

	/* Implements JMeterGUIComponent.modifyTestElement(TestElement) */
	public void modifyTestElement(TestElement lc) {
		configureTestElement(lc);
		if (lc instanceof LoopController) {
			if (loops.getText().length() > 0) {
				((LoopController) lc).setLoops(loops.getText());
			} else {
				((LoopController) lc).setLoops(-1);
			}
		}
	}

    /**
     * Implements JMeterGUIComponent.clearGui
     */
    public void clearGui() {
        super.clearGui();
        
        loops.setText("1"); // $NON-NLS-1$
        infinite.setSelected(false);
    }

	/**
	 * Invoked when an action occurs. This implementation assumes that the
	 * target component is the infinite loops checkbox.
	 * 
	 * @param event
	 *            the event that has occurred
	 */
	public void actionPerformed(ActionEvent event) {
		if (infinite.isSelected()) {
			loops.setText(""); // $NON-NLS-1$
			loops.setEnabled(false);
		} else {
			loops.setEnabled(true);
			new FocusRequester(loops);
		}
	}

	public String getLabelResource() {
		return "loop_controller_title"; // $NON-NLS-1$
	}

	/**
	 * Initialize the GUI components and layout for this component.
	 */
	private void init() {
		// The Loop Controller panel can be displayed standalone or inside
		// another panel. For standalone, we want to display the TITLE, NAME,
		// etc. (everything). However, if we want to display it within another
		// panel, we just display the Loop Count fields (not the TITLE and
		// NAME).

		// Standalone
		if (displayName) {
			setLayout(new BorderLayout(0, 5));
			setBorder(makeBorder());
			add(makeTitlePanel(), BorderLayout.NORTH);

			JPanel mainPanel = new JPanel(new BorderLayout());
			mainPanel.add(createLoopCountPanel(), BorderLayout.NORTH);
			add(mainPanel, BorderLayout.CENTER);
		} else {
			// Embedded
			setLayout(new BorderLayout());
			add(createLoopCountPanel(), BorderLayout.NORTH);
		}
	}

	/**
	 * Create a GUI panel containing the components related to the number of
	 * loops which should be executed.
	 * 
	 * @return a GUI panel containing the loop count components
	 */
	private JPanel createLoopCountPanel() {
		JPanel loopPanel = new JPanel(new BorderLayout(5, 0));

		// LOOP LABEL
		JLabel loopsLabel = new JLabel(JMeterUtils.getResString("iterator_num")); // $NON-NLS-1$
		loopPanel.add(loopsLabel, BorderLayout.WEST);

		JPanel loopSubPanel = new JPanel(new BorderLayout(5, 0));

		// TEXT FIELD
		loops = new JTextField("1", 5); // $NON-NLS-1$
		loops.setName(LOOPS);
		loopsLabel.setLabelFor(loops);
		loopSubPanel.add(loops, BorderLayout.CENTER);

		// FOREVER CHECKBOX
		infinite = new JCheckBox(JMeterUtils.getResString("infinite")); // $NON-NLS-1$
		infinite.setActionCommand(INFINITE);
		infinite.addActionListener(this);
		loopSubPanel.add(infinite, BorderLayout.WEST);

		loopPanel.add(loopSubPanel, BorderLayout.CENTER);

		loopPanel.add(Box.createHorizontalStrut(loopsLabel.getPreferredSize().width + loops.getPreferredSize().width
				+ infinite.getPreferredSize().width), BorderLayout.NORTH);

		return loopPanel;
	}

	/**
	 * Set the number of loops which should be reflected in the GUI. The
	 * loopCount parameter should contain the String representation of an
	 * integer. This integer will be treated as the number of loops. If this
	 * integer is less than 0, the number of loops will be assumed to be
	 * infinity.
	 * 
	 * @param loopCount
	 *            the String representation of the number of loops
	 */
	private void setState(String loopCount) {
		if (loopCount.startsWith("-")) { // $NON-NLS-1$
			setState(-1);
		} else {
			loops.setText(loopCount);
			infinite.setSelected(false);
			loops.setEnabled(true);
		}
	}

	/**
	 * Set the number of loops which should be reflected in the GUI. If the
	 * loopCount is less than 0, the number of loops will be assumed to be
	 * infinity.
	 * 
	 * @param loopCount
	 *            the number of loops
	 */
	private void setState(int loopCount) {
		if (loopCount <= -1) {
			infinite.setSelected(true);
			loops.setEnabled(false);
			loops.setText(""); // $NON-NLS-1$
		} else {
			infinite.setSelected(false);
			loops.setEnabled(true);
			loops.setText(Integer.toString(loopCount));
		}
	}
}

⌨️ 快捷键说明

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