90358b28be080c94cdbbd85b8dc5ec4be6de3ce9
[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.oransc.policyagent.repository.Services;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.core.Ordered;
35 import org.springframework.core.annotation.Order;
36 import org.springframework.stereotype.Service;
37
38 /**
39  * Loads information about RealTime-RICs at startup.
40  */
41 @Service("startupService")
42 @Order(Ordered.HIGHEST_PRECEDENCE)
43 public class StartupService implements ApplicationConfig.Observer {
44
45     private static final Logger logger = LoggerFactory.getLogger(StartupService.class);
46
47     @Autowired
48     ApplicationConfig applicationConfig;
49
50     @Autowired
51     private Rics rics;
52
53     @Autowired
54     PolicyTypes policyTypes;
55
56     @Autowired
57     private A1Client a1Client;
58
59     @Autowired
60     private Policies policies;
61
62     @Autowired
63     private Services services;
64
65     // Only for unittesting
66     StartupService(ApplicationConfig appConfig, Rics rics, PolicyTypes policyTypes, A1Client a1Client,
67         Policies policies, Services services) {
68         this.applicationConfig = appConfig;
69         this.rics = rics;
70         this.policyTypes = policyTypes;
71         this.a1Client = a1Client;
72         this.policies = policies;
73         this.services = services;
74     }
75
76     @Override
77     public void onRicConfigUpdate(RicConfig ricConfig, ApplicationConfig.RicConfigUpdate event) {
78         synchronized (this.rics) {
79             if (event.equals(ApplicationConfig.RicConfigUpdate.ADDED)
80                 || event.equals(ApplicationConfig.RicConfigUpdate.CHANGED)) {
81                 Ric ric = new Ric(ricConfig);
82                 rics.put(ric);
83                 RicRecoveryTask recoveryTask = new RicRecoveryTask(a1Client, policyTypes, policies, services);
84                 recoveryTask.run(ric);
85             } else if (event.equals(ApplicationConfig.RicConfigUpdate.REMOVED)) {
86                 rics.remove(ricConfig.name());
87             } else {
88                 logger.debug("Unhandled event :" + event);
89             }
90         }
91     }
92
93     /**
94      * Reads the configured Rics and performs the service discovery. The result is put into the repository.
95      */
96     public void startup() {
97         logger.debug("Starting up");
98         applicationConfig.addObserver(this);
99         applicationConfig.initialize();
100     }
101
102 }