2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 Nordix Foundation
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 package org.oransc.enrichment;
23 import com.fasterxml.jackson.databind.ObjectMapper;
25 import java.lang.invoke.MethodHandles;
27 import org.apache.catalina.connector.Connector;
28 import org.oransc.enrichment.configuration.ApplicationConfig;
29 import org.oransc.enrichment.controllers.r1producer.ProducerCallbacks;
30 import org.oransc.enrichment.repository.InfoJobs;
31 import org.oransc.enrichment.repository.InfoTypes;
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;
43 @Value("${server.http-port}")
44 private int httpPort = 0;
46 private final ApplicationConfig applicationConfig = new ApplicationConfig();
47 private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
49 private ProducerCallbacks producerCallbacks;
50 private InfoTypes infoTypes;
51 private InfoJobs infoJobs;
54 public ObjectMapper mapper() {
55 return new ObjectMapper();
59 public ServletWebServerFactory servletContainer() {
60 TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
62 tomcat.addAdditionalTomcatConnectors(getHttpConnector(httpPort));
68 public InfoJobs infoJobs() {
69 if (infoJobs == null) {
70 infoJobs = new InfoJobs(getApplicationConfig(), producerCallbacks());
72 infoJobs.restoreJobsFromDatabase();
73 } catch (Exception e) {
74 logger.error("Could not restore jobs from database: {}", e.getMessage());
81 public InfoTypes infoTypes() {
82 if (this.infoTypes == null) {
83 infoTypes = new InfoTypes(getApplicationConfig());
85 infoTypes.restoreTypesFromDatabase();
86 } catch (Exception e) {
87 logger.error("Could not restore Information Types from database: {}", e.getMessage());
94 public ProducerCallbacks producerCallbacks() {
95 if (this.producerCallbacks == null) {
96 producerCallbacks = new ProducerCallbacks(getApplicationConfig());
98 return this.producerCallbacks;
102 public ApplicationConfig getApplicationConfig() {
103 return this.applicationConfig;
106 private static Connector getHttpConnector(int httpPort) {
107 Connector connector = new Connector(TomcatServletWebServerFactory.DEFAULT_PROTOCOL);
108 connector.setScheme("http");
109 connector.setPort(httpPort);
110 connector.setSecure(false);