|
JMeter example source code file (JMeterContextService.java)
This example JMeter source code file (JMeterContextService.java) is included in the DevDaily.com
"Java Source Code
Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.
The JMeter JMeterContextService.java source code
/*
* 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.threads;
import org.apache.jmeter.util.JMeterUtils;
/**
* Provides context service for JMeter threads.
* Keeps track of active and total thread counts.
*/
public final class JMeterContextService {
private static final ThreadLocal<JMeterContext> threadContext = new ThreadLocal() {
@Override
public JMeterContext initialValue() {
return new JMeterContext();
}
};
//@GuardedGy("this")
private static long testStart = 0;
//@GuardedGy("this")
private static int numberOfActiveThreads = 0;
//@GuardedGy("this")
private static int totalThreads = 0;
/**
* Private constructor to prevent instantiation.
*/
private JMeterContextService() {
}
/**
* Gives access to the current thread context.
*
* @return the current thread Context
*/
public static JMeterContext getContext() {
return threadContext.get();
}
/**
* Allows the thread Context to be completely cleared.
* <br/>
* Invokes {@link ThreadLocal#remove()}.
*/
static void removeContext(){ // Currently only used by JMeterThread
threadContext.remove();
}
/**
* Method is called by the JMeterEngine class when a test run is started.
* Zeroes numberOfActiveThreads.
* Saves current time in a field and in the JMeter property "TESTSTART.MS"
*/
public static synchronized void startTest() {
if (testStart == 0) {
numberOfActiveThreads = 0;
testStart = System.currentTimeMillis();
JMeterUtils.setProperty("TESTSTART.MS",Long.toString(testStart));// $NON-NLS-1$
}
}
/**
* Increment number of active threads.
*/
static synchronized void incrNumberOfThreads() {
numberOfActiveThreads++;
}
/**
* Decrement number of active threads.
*/
static synchronized void decrNumberOfThreads() {
numberOfActiveThreads--;
}
/**
* Get the number of currently active threads
* @return active thread count
*/
public static synchronized int getNumberOfThreads() {
return numberOfActiveThreads;
}
/**
* Called by MainFrame#testEnded().
* Clears start time field.
*/
public static synchronized void endTest() {
testStart = 0;
}
public static synchronized long getTestStartTime() {// NOT USED
return testStart;
}
/**
* Get the total number of threads (>= active)
* @return total thread count
*/
public static synchronized int getTotalThreads() {
return totalThreads;
}
/**
* Update the total number of threads
* @param thisGroup number of threads in this thread group
*/
public static synchronized void addTotalThreads(int thisGroup) {
totalThreads += thisGroup;
}
/**
* Set total threads to zero
*/
public static synchronized void clearTotalThreads() {
totalThreads = 0;
}
}
Other JMeter examples (source code examples)
Here is a short list of links related to this JMeter JMeterContextService.java source code file:
|