io.nflow.engine.config.EngineConfiguration Maven / Gradle / Ivy
package io.nflow.engine.config;
import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_EMPTY;
import static java.lang.Runtime.getRuntime;
import java.util.concurrent.ThreadFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.core.io.AbstractResource;
import org.springframework.core.io.ByteArrayResource;
import org.springframework.core.io.ClassPathResource;
import org.springframework.scheduling.concurrent.CustomizableThreadFactory;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.datatype.joda.JodaModule;
import io.nflow.engine.internal.executor.WorkflowInstanceExecutor;
/**
* The main Spring configuration class for nFlow engine.
*/
@Configuration
@ComponentScan("io.nflow.engine")
public class EngineConfiguration {
/**
* Creates a workflow instance executor for processing workflow instances.
*
* @param nflowThreadFactory Thread factory to be used for creating instance executor threads.
* @param env The Spring environment.
* @return Workflow instance executor.
*/
@Bean
public WorkflowInstanceExecutor nflowExecutor(@NFlow ThreadFactory nflowThreadFactory, Environment env) {
int threadCount = env.getProperty("nflow.executor.thread.count", Integer.class, 2 * getRuntime().availableProcessors());
int awaitTerminationSeconds = env.getRequiredProperty("nflow.dispatcher.await.termination.seconds", Integer.class);
int queueSize = env.getProperty("nflow.dispatcher.executor.queue.size", Integer.class, 2 * threadCount);
int notifyThreshold = env.getProperty("nflow.dispatcher.executor.queue.wait_until_threshold", Integer.class, queueSize / 2);
int keepAliveSeconds = env.getRequiredProperty("nflow.dispatcher.executor.thread.keepalive.seconds", Integer.class);
return new WorkflowInstanceExecutor(queueSize, threadCount, notifyThreshold, awaitTerminationSeconds, keepAliveSeconds,
nflowThreadFactory);
}
/**
* Creates a thread factory for creating instance executor threads.
* @return Instance executor thread factory.
*/
@Bean
@NFlow
public ThreadFactory nflowThreadFactory() {
CustomizableThreadFactory factory = new CustomizableThreadFactory("nflow-executor-");
factory.setThreadGroupName("nflow");
return factory;
}
/**
* Creates an object mapper for serializing and deserializing workflow instance state variables to and from database.
* @return Object mapper.
*/
@Bean
@NFlow
public ObjectMapper nflowObjectMapper() {
ObjectMapper mapper = new ObjectMapper();
mapper.setSerializationInclusion(NON_EMPTY);
mapper.registerModule(new JodaModule());
return mapper;
}
/**
* Creates a resource for listing workflows that are not defined as Spring beans.
* @param env The Spring environment.
* @return A resource representing the file that contains a list of workflow class names.
*/
@Bean
@NFlow
public AbstractResource nflowNonSpringWorkflowsListing(Environment env) {
String filename = env.getProperty("nflow.non_spring_workflows_filename");
if (filename != null) {
return new ClassPathResource(filename);
}
return new ByteArrayResource(new byte[0]);
}
}