c9ba93fc0eb93a5bbdd3afd7c6ea51d9292cf039
[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.DmaapMessageConsumer;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.beans.factory.annotation.Value;
33 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
34 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
35 import org.springframework.context.annotation.Bean;
36 import org.springframework.context.annotation.Configuration;
37
38 @Configuration
39 public class BeanFactory {
40
41     @Value("${server.http-port}")
42     private int httpPort = 0;
43
44     @Bean
45     public ApplicationConfig getApplicationConfig() {
46         return new ApplicationConfig();
47     }
48
49     @Bean
50     public InfoTypes types(@Autowired ApplicationConfig appConfig, @Autowired Jobs jobs) {
51         Collection<InfoType> types = appConfig.getTypes();
52
53         // Start a consumer for each type
54         for (InfoType type : types) {
55             DmaapMessageConsumer topicConsumer = new DmaapMessageConsumer(appConfig, type, jobs);
56             topicConsumer.start();
57         }
58
59         return new InfoTypes(types);
60     }
61
62     @Bean
63     public ServletWebServerFactory servletContainer() {
64         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
65         if (httpPort > 0) {
66             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
67         }
68         return tomcat;
69     }
70
71     private static Connector getHttpConnector(int httpPort) {
72         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
73         connector.setScheme("http");
74         connector.setPort(httpPort);
75         connector.setSecure(false);
76         return connector;
77     }
78
79 }