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.policyagent.tasks;
23 import static org.oransc.policyagent.repository.Ric.RicState;
25 import java.util.Vector;
27 import org.oransc.policyagent.clients.A1Client;
28 import org.oransc.policyagent.clients.A1ClientFactory;
29 import org.oransc.policyagent.clients.AsyncRestClient;
30 import org.oransc.policyagent.repository.ImmutablePolicyType;
31 import org.oransc.policyagent.repository.Lock;
32 import org.oransc.policyagent.repository.Lock.LockType;
33 import org.oransc.policyagent.repository.Policies;
34 import org.oransc.policyagent.repository.Policy;
35 import org.oransc.policyagent.repository.PolicyType;
36 import org.oransc.policyagent.repository.PolicyTypes;
37 import org.oransc.policyagent.repository.Ric;
38 import org.oransc.policyagent.repository.Service;
39 import org.oransc.policyagent.repository.Services;
40 import org.slf4j.Logger;
41 import org.slf4j.LoggerFactory;
43 import reactor.core.publisher.Flux;
44 import reactor.core.publisher.Mono;
47 * Synchronizes the content of a RIC with the content in the repository. This
50 * load all policy types
52 * send all policy instances to the RIC
54 * if that fails remove all policy instances
56 * Notify subscribing services
58 public class RicSynchronizationTask {
60 private static final Logger logger = LoggerFactory.getLogger(RicSynchronizationTask.class);
62 private final A1ClientFactory a1ClientFactory;
63 private final PolicyTypes policyTypes;
64 private final Policies policies;
65 private final Services services;
67 public RicSynchronizationTask(A1ClientFactory a1ClientFactory, PolicyTypes policyTypes, Policies policies,
69 this.a1ClientFactory = a1ClientFactory;
70 this.policyTypes = policyTypes;
71 this.policies = policies;
72 this.services = services;
75 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
76 public void run(Ric ric) {
77 logger.debug("Handling ric: {}", ric.getConfig().name());
80 if (ric.getState() == RicState.SYNCHRONIZING) {
81 logger.debug("Ric: {} is already being synchronized", ric.getConfig().name());
84 ric.setState(RicState.SYNCHRONIZING);
87 ric.getLock().lock(LockType.EXCLUSIVE) // Make sure no NBI updates are running
88 .flatMap(Lock::unlock) //
89 .flatMap(lock -> this.a1ClientFactory.createA1Client(ric)) //
90 .flatMapMany(client -> startSynchronization(ric, client)) //
91 .subscribe(x -> logger.debug("Synchronize: {}", x), //
92 throwable -> onSynchronizationError(ric, throwable), //
93 () -> onSynchronizationComplete(ric));
96 private Flux<Object> startSynchronization(Ric ric, A1Client a1Client) {
97 Flux<PolicyType> recoverTypes = synchronizePolicyTypes(ric, a1Client);
98 Flux<?> policiesDeletedInRic = a1Client.deleteAllPolicies();
99 Flux<?> policiesRecreatedInRic = recreateAllPoliciesInRic(ric, a1Client);
101 return Flux.concat(recoverTypes, policiesDeletedInRic, policiesRecreatedInRic);
104 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
105 private void onSynchronizationComplete(Ric ric) {
106 logger.info("Synchronization completed for: {}", ric.name());
107 ric.setState(RicState.IDLE);
108 notifyAllServices("Synchronization completed for:" + ric.name());
111 private void notifyAllServices(String body) {
112 synchronized (services) {
113 for (Service service : services.getAll()) {
114 String url = service.getCallbackUrl();
115 if (service.getCallbackUrl().length() > 0) {
116 createNotificationClient(url) //
119 notUsed -> logger.debug("Service {} notified", service.getName()), throwable -> logger
120 .warn("Service notification failed for service: {}", service.getName(), throwable),
121 () -> logger.debug("All services notified"));
127 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
128 private void onSynchronizationError(Ric ric, Throwable t) {
129 logger.warn("Synchronization failed for ric: {}, reason: {}", ric.name(), t.getMessage());
130 // If synchronization fails, try to remove all instances
131 deleteAllPoliciesInRepository(ric);
133 Flux<PolicyType> recoverTypes = this.a1ClientFactory.createA1Client(ric) //
134 .flatMapMany(a1Client -> synchronizePolicyTypes(ric, a1Client));
135 Flux<?> deletePoliciesInRic = this.a1ClientFactory.createA1Client(ric) //
136 .flatMapMany(A1Client::deleteAllPolicies) //
137 .doOnComplete(() -> deleteAllPoliciesInRepository(ric));
139 Flux.concat(recoverTypes, deletePoliciesInRic) //
140 .subscribe(x -> logger.debug("Brute recover: {}", x), //
141 throwable -> onRecoveryError(ric, throwable), //
142 () -> onSynchronizationComplete(ric));
145 @SuppressWarnings("squid:S2629") // Invoke method(s) only conditionally
146 private void onRecoveryError(Ric ric, Throwable t) {
147 logger.warn("Synchronization failure recovery failed for ric: {}, reason: {}", ric.name(), t.getMessage());
148 ric.setState(RicState.UNDEFINED);
151 AsyncRestClient createNotificationClient(final String url) {
152 return new AsyncRestClient(url);
155 private Flux<PolicyType> synchronizePolicyTypes(Ric ric, A1Client a1Client) {
156 return a1Client.getPolicyTypeIdentities() //
157 .doOnNext(x -> ric.clearSupportedPolicyTypes()) //
158 .flatMapMany(Flux::fromIterable) //
159 .doOnNext(typeId -> logger.debug("For ric: {}, handling type: {}", ric.getConfig().name(), typeId)) //
160 .flatMap(policyTypeId -> getPolicyType(policyTypeId, a1Client)) //
161 .doOnNext(ric::addSupportedPolicyType); //
164 private Mono<PolicyType> getPolicyType(String policyTypeId, A1Client a1Client) {
165 if (policyTypes.contains(policyTypeId)) {
166 return Mono.just(policyTypes.get(policyTypeId));
168 return a1Client.getPolicyTypeSchema(policyTypeId) //
169 .flatMap(schema -> createPolicyType(policyTypeId, schema));
172 private Mono<PolicyType> createPolicyType(String policyTypeId, String schema) {
173 PolicyType pt = ImmutablePolicyType.builder().name(policyTypeId).schema(schema).build();
175 return Mono.just(pt);
178 private void deleteAllPoliciesInRepository(Ric ric) {
179 synchronized (policies) {
180 for (Policy policy : policies.getForRic(ric.name())) {
181 this.policies.remove(policy);
186 private Flux<String> recreateAllPoliciesInRic(Ric ric, A1Client a1Client) {
187 synchronized (policies) {
188 return Flux.fromIterable(new Vector<>(policies.getForRic(ric.name()))) //
190 policy -> logger.debug("Recreating policy: {}, for ric: {}", policy.id(), ric.getConfig().name()))
191 .flatMap(a1Client::putPolicy);