NONRTRIC - Implement DMaaP mediator producer service in Java
[nonrtric.git] / dmaap-adaptor-java / src / main / java / org / oran / dmaapadapter / BeanFactory.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2021 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.dmaapadapter;
22
23 import java.util.Collection;
24
25 import org.apache.catalina.connector.Connector;
26 import org.oran.dmaapadapter.configuration.ApplicationConfig;
27 import org.oran.dmaapadapter.repository.InfoType;
28 import org.oran.dmaapadapter.repository.InfoTypes;
29 import org.oran.dmaapadapter.repository.Jobs;
30 import org.oran.dmaapadapter.tasks.DmaapTopicConsumer;
31 import org.oran.dmaapadapter.tasks.KafkaTopicConsumers;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.beans.factory.annotation.Value;
34 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
35 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
36 import org.springframework.context.annotation.Bean;
37 import org.springframework.context.annotation.Configuration;
38
39 @Configuration
40 public class BeanFactory {
41     private InfoTypes infoTypes;
42
43     @Value("${server.http-port}")
44     private int httpPort = 0;
45
46     @Bean
47     public ApplicationConfig getApplicationConfig() {
48         return new ApplicationConfig();
49     }
50
51     @Bean
52     public InfoTypes types(@Autowired ApplicationConfig appConfig, @Autowired Jobs jobs,
53             @Autowired KafkaTopicConsumers kafkaConsumers) {
54         if (infoTypes != null) {
55             return infoTypes;
56         }
57
58         Collection<InfoType> types = appConfig.getTypes();
59
60         // Start a consumer for each type
61         for (InfoType type : types) {
62             if (type.isDmaapTopicDefined()) {
63                 DmaapTopicConsumer topicConsumer = new DmaapTopicConsumer(appConfig, type, jobs);
64                 topicConsumer.start();
65             }
66         }
67         infoTypes = new InfoTypes(types);
68         kafkaConsumers.start(infoTypes);
69         return infoTypes;
70     }
71
72     @Bean
73     public ServletWebServerFactory servletContainer() {
74         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
75         if (httpPort > 0) {
76             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
77         }
78         return tomcat;
79     }
80
81     private static Connector getHttpConnector(int httpPort) {
82         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
83         connector.setScheme("http");
84         connector.setPort(httpPort);
85         connector.setSecure(false);
86         return connector;
87     }
88
89 }