40f01caa1db64dd4805474aa8206c5b7830f5938
[nonrtric.git] / StartupService.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.policyagent.controllers;
22
23 import java.util.Vector;
24
25 import org.oransc.policyagent.configuration.ApplicationConfig;
26 import org.oransc.policyagent.configuration.RicConfig;
27 import org.oransc.policyagent.repository.Ric;
28 import org.oransc.policyagent.repository.Rics;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.stereotype.Service;
33
34 /**
35  * Loads information about RealTime-RICs at startup.
36  */
37 @Service("startupService")
38 public class StartupService {
39
40     private static final Logger logger = LoggerFactory.getLogger(StartupService.class);
41
42     @Autowired
43     ApplicationConfig applicationConfig;
44
45     @Autowired
46     private Rics rics;
47
48     StartupService(ApplicationConfig appConfig, Rics rics) {
49         this.applicationConfig = appConfig;
50         this.rics = rics;
51     }
52
53     /**
54      * Reads the configured Rics and performs the service discovery. The result is put into the repository.
55      */
56     public void startup() {
57         applicationConfig.initialize();
58         Vector<RicConfig> ricConfigs = applicationConfig.getRicConfigs();
59         for (RicConfig ricConfig : ricConfigs) {
60             logger.error("Ric: {}", ricConfig);
61             Ric ric = new Ric(ricConfig);
62             rics.put(ric);
63         }
64
65     }
66
67 }