Recovery handling
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / tasks / 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.tasks;
22
23 import org.oransc.policyagent.clients.A1Client;
24 import org.oransc.policyagent.configuration.ApplicationConfig;
25 import org.oransc.policyagent.configuration.RicConfig;
26 import org.oransc.policyagent.repository.Policies;
27 import org.oransc.policyagent.repository.PolicyTypes;
28 import org.oransc.policyagent.repository.Ric;
29 import org.oransc.policyagent.repository.Rics;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Service;
34
35 /**
36  * Loads information about RealTime-RICs at startup.
37  */
38 @Service("startupService")
39 public class StartupService {
40
41     private static final Logger logger = LoggerFactory.getLogger(StartupService.class);
42
43     @Autowired
44     ApplicationConfig applicationConfig;
45
46     @Autowired
47     private Rics rics;
48
49     @Autowired
50     PolicyTypes policyTypes;
51
52     @Autowired
53     private A1Client a1Client;
54
55     @Autowired
56     private Policies policies;
57
58     StartupService(ApplicationConfig appConfig, Rics rics, PolicyTypes policyTypes, A1Client a1Client,
59         Policies policies) {
60         this.applicationConfig = appConfig;
61         this.rics = rics;
62         this.policyTypes = policyTypes;
63         this.a1Client = a1Client;
64         this.policies = policies;
65     }
66
67     /**
68      * Reads the configured Rics and performs the service discovery. The result is put into the repository.
69      */
70     public void startup() {
71         logger.debug("Starting up");
72         applicationConfig.initialize();
73         for (RicConfig ricConfig : applicationConfig.getRicConfigs()) {
74             rics.put(new Ric(ricConfig));
75         }
76         RicRecoveryTask recoveryTask = new RicRecoveryTask(a1Client, policyTypes, policies);
77         recoveryTask.run(rics.getRics()); // recover all Rics
78     }
79
80 }