bd430fd6795b0fa0d1eddada379afd2fae0556e0
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure;
24
25 import java.util.List;
26 import java.util.concurrent.Executor;
27 import org.camunda.bpm.application.PostDeploy;
28 import org.camunda.bpm.application.PreUndeploy;
29 import org.camunda.bpm.application.ProcessApplicationInfo;
30 import org.camunda.bpm.engine.ProcessEngine;
31 import org.onap.so.bpmn.common.DefaultToShortClassNameBeanNameGenerator;
32 import org.onap.so.logging.jaxrs.filter.MDCTaskDecorator;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.beans.factory.annotation.Value;
36 import org.springframework.boot.SpringApplication;
37 import org.springframework.boot.autoconfigure.SpringBootApplication;
38 import org.springframework.context.annotation.Bean;
39 import org.springframework.context.annotation.ComponentScan;
40 import org.springframework.context.annotation.ComponentScan.Filter;
41 import org.springframework.context.annotation.FilterType;
42 import org.springframework.context.annotation.Primary;
43 import org.springframework.scheduling.annotation.EnableAsync;
44 import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
45
46 /**
47  * @since Version 1.0
48  *
49  */
50
51 @SpringBootApplication
52 @EnableAsync
53 @ComponentScan(basePackages = {"org.onap"}, nameGenerator = DefaultToShortClassNameBeanNameGenerator.class,
54         excludeFilters = {@Filter(type = FilterType.ANNOTATION, classes = SpringBootApplication.class)})
55 public class MSOInfrastructureApplication {
56
57     private static final Logger logger = LoggerFactory.getLogger(MSOInfrastructureApplication.class);
58
59     @Value("${mso.async.core-pool-size}")
60     private int corePoolSize;
61
62     @Value("${mso.async.max-pool-size}")
63     private int maxPoolSize;
64
65     @Value("${mso.async.queue-capacity}")
66     private int queueCapacity;
67
68     private static final String LOGS_DIR = "logs_dir";
69
70
71     private static void setLogsDir() {
72         if (System.getProperty(LOGS_DIR) == null) {
73             System.getProperties().setProperty(LOGS_DIR, "./logs/bpmn/");
74         }
75     }
76
77     public static void main(String... args) {
78         SpringApplication.run(MSOInfrastructureApplication.class, args);
79         System.getProperties().setProperty("mso.config.path", ".");
80         setLogsDir();
81     }
82
83     @PostDeploy
84     public void postDeploy(ProcessEngine processEngineInstance) {}
85
86     @PreUndeploy
87     public void cleanup(ProcessEngine processEngine, ProcessApplicationInfo processApplicationInfo,
88             List<ProcessEngine> processEngines) {}
89
90     @Bean
91     @Primary
92     public Executor asyncExecutor() {
93         ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
94         executor.setTaskDecorator(new MDCTaskDecorator());
95         executor.setCorePoolSize(corePoolSize);
96         executor.setMaxPoolSize(maxPoolSize);
97         executor.setQueueCapacity(queueCapacity);
98         executor.setThreadNamePrefix("Camunda-");
99         executor.initialize();
100         return executor;
101     }
102 }