![JAR search and dependency download from the Maven repository](/logo.png)
com.consol.citrus.container.Timer Maven / Gradle / Ivy
/*
* Copyright 2006-2015 the original author or authors.
*
* Licensed 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 com.consol.citrus.container;
import java.util.TimerTask;
import java.util.concurrent.atomic.AtomicInteger;
import com.consol.citrus.AbstractTestContainerBuilder;
import com.consol.citrus.TestActionBuilder;
import com.consol.citrus.context.TestContext;
import com.consol.citrus.exceptions.CitrusRuntimeException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.task.SimpleAsyncTaskExecutor;
import org.springframework.util.StringUtils;
/**
* @author Martin Maher
* @since 2.5
*/
public class Timer extends AbstractActionContainer implements StopTimer {
/** Logger */
private static final Logger log = LoggerFactory.getLogger(Timer.class);
private final static AtomicInteger nextSerialNumber = new AtomicInteger(0);
protected static final String INDEX_SUFFIX = "-index";
private final long interval;
private final long delay;
private final int repeatCount;
private final boolean fork;
private final String timerId;
protected boolean timerComplete = false;
protected CitrusRuntimeException timerException = null;
private java.util.Timer timer;
public Timer(Builder builder) {
super("timer", builder);
this.interval = builder.interval;
this.delay = builder.delay;
this.repeatCount = builder.repeatCount;
this.fork = builder.fork;
this.timerId = builder.timerId;
}
@Override
public void doExecute(final TestContext context) {
if (fork) {
SimpleAsyncTaskExecutor taskExecutor = new SimpleAsyncTaskExecutor();
taskExecutor.execute(new Runnable() {
public void run() {
configureAndRunTimer(context);
}
});
} else {
configureAndRunTimer(context);
}
}
private void configureAndRunTimer(final TestContext context) {
timer = new java.util.Timer(getTimerId(), false);
context.registerTimer(getTimerId(), this);
TimerTask timerTask = new TimerTask() {
int indexCount = 0;
@Override
public void run() {
try {
indexCount++;
updateIndexCountInTestContext(context);
log.debug(String.format("Timer event fired #%s - executing nested actions", indexCount));
for (TestActionBuilder> actionBuilder : actions) {
executeAction(actionBuilder.build(), context);
}
if (indexCount >= repeatCount) {
log.debug(String.format("Timer complete: %s iterations reached", repeatCount));
stopTimer();
}
} catch (Exception e) {
handleException(e);
}
}
private void updateIndexCountInTestContext(TestContext context) {
context.setVariable(getTimerId() + INDEX_SUFFIX, String.valueOf(indexCount));
}
private void handleException(Exception e) {
if (e instanceof CitrusRuntimeException) {
timerException = (CitrusRuntimeException) e;
} else {
timerException = new CitrusRuntimeException(e);
}
log.error(String.format("Timer stopped as a result of nested action error (%s)", e.getMessage()));
stopTimer();
if (fork) {
context.addException(timerException);
}
}
};
timer.scheduleAtFixedRate(timerTask, delay, interval);
while (!timerComplete) {
try {
Thread.sleep(interval);
} catch (InterruptedException e) {
log.warn("Interrupted while waiting for timer to complete", e);
}
}
if (timerException != null) {
throw timerException;
}
}
public String getTimerId() {
return timerId;
}
@Override
public void stopTimer() {
timer.cancel();
timerComplete = true;
}
private static int serialNumber() {
return nextSerialNumber.getAndIncrement();
}
public long getInterval() {
return interval;
}
public long getDelay() {
return delay;
}
public int getRepeatCount() {
return repeatCount;
}
public boolean isFork() {
return fork;
}
/**
* Action builder.
*/
public static class Builder extends AbstractTestContainerBuilder {
private long interval = 1000L;
private long delay = 0L;
private int repeatCount = Integer.MAX_VALUE;
private boolean fork = false;
private String timerId;
/**
* Fluent API action building entry method used in Java DSL.
* @return
*/
public static Builder timer() {
return new Builder();
}
/**
* Initial delay in milliseconds before first timer event should fire.
*
* @param delay
*/
public Builder delay(long delay) {
this.delay = delay;
return this;
}
/**
* Interval in milliseconds between each timer. As soon as the interval has elapsed the next timer event is fired.
*
* @param interval
*/
public Builder interval(long interval) {
this.interval = interval;
return this;
}
/**
* The maximum number of times the timer event is fired. Once this maximum number has been reached the timer is
* stopped
*
* @param repeatCount
*/
public Builder repeatCount(int repeatCount) {
this.repeatCount = repeatCount;
return this;
}
/**
* Fork the timer so that other actions can run in parallel to the nested timer actions
*
* @param fork
*/
public Builder fork(boolean fork) {
this.fork = fork;
return this;
}
/**
* Set the timer's id. This is useful when referencing the timer from other test actions like stop-timer
*
* @param timerId a unique timer id within the test context
*/
public Builder timerId(String timerId) {
this.timerId = timerId;
return this;
}
@Override
public Timer doBuild() {
if (StringUtils.isEmpty(timerId)) {
timerId = "citrus-timer-" + serialNumber();
}
return new Timer(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy