Merge "Stepping to springboot 3"
[nonrtric.git] / pmlog / src / main / java / org / oran / pmlog / BeanFactory.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2023 Nordix Foundation
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 package org.oran.pmlog;
22
23 import org.apache.catalina.connector.Connector;
24 import org.oran.pmlog.configuration.ApplicationConfig;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.beans.factory.annotation.Value;
27 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
28 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31
32 @Configuration
33 public class BeanFactory {
34
35     @Value("${server.http-port}")
36     private int httpPort = 0;
37
38     @Bean
39     public ApplicationConfig getApplicationConfig() {
40         return new ApplicationConfig();
41     }
42
43     @Bean
44     public ServletWebServerFactory servletContainer() {
45         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
46         if (httpPort > 0) {
47             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
48         }
49         return tomcat;
50     }
51
52     private static Connector getHttpConnector(int httpPort) {
53         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
54         connector.setScheme("http");
55         connector.setPort(httpPort);
56         connector.setSecure(false);
57         return connector;
58     }
59
60     @Bean
61     public KafkaTopicListener getKafkaTopicListener(@Autowired ApplicationConfig appConfig) {
62         return new KafkaTopicListener(appConfig);
63     }
64
65     @Bean
66     public InfluxStore getInfluxStore(@Autowired ApplicationConfig appConfig, @Autowired KafkaTopicListener listener) {
67
68         InfluxStore distr = new InfluxStore(appConfig);
69         distr.start(listener.getFlux());
70         return distr;
71     }
72
73 }