Storing EiJobs persistently
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / BeanFactory.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 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.oransc.enrichment;
22
23 import com.fasterxml.jackson.databind.ObjectMapper;
24
25 import java.lang.invoke.MethodHandles;
26
27 import org.apache.catalina.connector.Connector;
28 import org.oransc.enrichment.configuration.ApplicationConfig;
29 import org.oransc.enrichment.repository.EiJobs;
30 import org.oransc.enrichment.repository.EiProducers;
31 import org.oransc.enrichment.repository.EiTypes;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.beans.factory.annotation.Value;
35 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
36 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
37 import org.springframework.context.annotation.Bean;
38 import org.springframework.context.annotation.Configuration;
39
40 @Configuration
41 class BeanFactory {
42
43     @Value("${server.http-port}")
44     private int httpPort = 0;
45
46     private final ApplicationConfig applicationConfig = new ApplicationConfig();
47     private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
48
49     @Bean
50     public ObjectMapper mapper() {
51         return new ObjectMapper();
52     }
53
54     @Bean
55     public ServletWebServerFactory servletContainer() {
56         TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
57         if (httpPort > 0) {
58             tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
59         }
60         return tomcat;
61     }
62
63     @Bean
64     public EiJobs eiJobs() {
65         EiJobs jobs = new EiJobs(getApplicationConfig());
66         try {
67             jobs.restoreJobsFromDatabase();
68         } catch (Exception e) {
69             logger.error("Could not restore jobs from database: {}", e.getMessage());
70         }
71         return jobs;
72     }
73
74     @Bean
75     public EiTypes eiTypes() {
76         return new EiTypes();
77     }
78
79     @Bean
80     public EiProducers eiProducers() {
81         return new EiProducers();
82     }
83
84     @Bean
85     public ApplicationConfig getApplicationConfig() {
86         return this.applicationConfig;
87     }
88
89     private static Connector getHttpConnector(int httpPort) {
90         Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
91         connector.setScheme("http");
92         connector.setPort(httpPort);
93         connector.setSecure(false);
94         return connector;
95     }
96
97 }