clientjmeterengine.java
来自「测试工具」· Java 代码 · 共 158 行
JAVA
158 行
/*
* 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.engine;
import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.util.Properties;
import org.apache.jmeter.testelement.TestListener;
import org.apache.jmeter.threads.JMeterContextService;
import org.apache.jorphan.collections.HashTree;
import org.apache.jorphan.collections.SearchByClass;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.log.Logger;
/**
* Class to run remote tests from the client JMeter and collect remote samples
*/
public class ClientJMeterEngine implements JMeterEngine, Runnable {
private static final Logger log = LoggingManager.getLoggerForClass();
RemoteJMeterEngine remote;
HashTree test;
SearchByClass testListeners;
ConvertListeners sampleListeners;
private String host;
private static RemoteJMeterEngine getEngine(String h) throws MalformedURLException, RemoteException,
NotBoundException {
return (RemoteJMeterEngine) Naming.lookup("//" + h + "/JMeterEngine"); // $NON-NLS-1$ $NON-NLS-2$
}
public ClientJMeterEngine(String host) throws MalformedURLException, NotBoundException, RemoteException {
this(getEngine(host));
this.host = host;
}
public ClientJMeterEngine(RemoteJMeterEngine remote) {
this.remote = remote;
}
protected HashTree getTestTree() {
return test;
}
public void configure(HashTree testTree) {
test = testTree;
}
public void setHost(String host) {
this.host = host;
}
public void runTest() {
log.info("about to run remote test");
new Thread(this).start();
log.info("done initiating run command");
}
public void stopTest() {
log.info("about to stop remote test on "+host);
try {
remote.stopTest();
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
public void reset() {
try {
try {
remote.reset();
} catch (java.rmi.ConnectException e) {
remote = getEngine(host);
remote.reset();
}
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
/*
* (non-Javadoc)
*
* @see java.lang.Runnable#run()
*/
public void run() {
log.info("running clientengine run method");
testListeners = new SearchByClass(TestListener.class);
sampleListeners = new ConvertListeners();
HashTree testTree = getTestTree();
PreCompiler compiler = new PreCompiler(true); // limit the changes to client only test elements
synchronized(testTree) {
testTree.traverse(compiler);
testTree.traverse(new TurnElementsOn());
testTree.traverse(testListeners);
testTree.traverse(sampleListeners);
}
try {
JMeterContextService.startTest();
remote.setHost(host);
log.info("sent host =" + host);
remote.configure(test);
log.info("sent test");
remote.runTest();
log.info("sent run command");
} catch (Exception ex) {
log.error("", ex); // $NON-NLS-1$
}
}
/*
* (non-Javadoc)
*
* @see org.apache.jmeter.engine.JMeterEngine#exit()
*/
public void exit() {
log.info("about to exit remote server on "+host);
try {
remote.exit();
} catch (RemoteException e) {
log.warn("Could not perform remote exit: " + e.toString());
}
}
public void setProperties(Properties p) {
log.info("Sending properties "+p);
try {
remote.setProperties(p);
} catch (RemoteException e) {
log.warn("Could not set properties: " + e.toString());
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?