45c0bc424a78ef7c7a4643a3e4104947e27e11c5
[ccsdk/oran.git] /
1 /*-
2  * ========================LICENSE_START=================================
3  * ONAP : ccsdk oran
4  * ======================================================================
5  * Copyright (C) 2020 Nordix Foundation. All rights reserved.
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.onap.ccsdk.oran.a1policymanagementservice.clients;
22
23 import java.lang.reflect.Constructor;
24
25 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1Client.A1ProtocolType;
26 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.ApplicationConfig;
27 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.ControllerConfig;
28 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.RicConfig;
29 import org.onap.ccsdk.oran.a1policymanagementservice.exceptions.ServiceException;
30 import org.onap.ccsdk.oran.a1policymanagementservice.repository.Ric;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import reactor.core.publisher.Mono;
34
35 /**
36  * Factory for A1 clients that supports four different protocol versions of the
37  * A1 api.
38  */
39 public class A1ClientFactory {
40
41     private static final Logger logger = LoggerFactory.getLogger(A1ClientFactory.class);
42
43     private final ApplicationConfig appConfig;
44
45     private final AsyncRestClientFactory restClientFactory;
46
47     public A1ClientFactory(ApplicationConfig appConfig, SecurityContext securityContext) {
48         this.appConfig = appConfig;
49         this.restClientFactory = new AsyncRestClientFactory(appConfig.getWebClientConfig(), securityContext);
50     }
51
52     /**
53      * Creates an A1 client with the correct A1 protocol for the provided Ric.
54      *
55      * <p>
56      * It detects the protocol version by trial and error, since there is no
57      * getVersion method specified in the A1 api yet.
58      *
59      * <p>
60      * As a side effect it also sets the protocol version in the provided Ric. This
61      * means that after the first successful creation it won't have to try which
62      * protocol to use, but can create the client directly.
63      *
64      * @param ric The Near-RT RIC to get a client for.
65      * @return a client with the correct protocol, or a ServiceException if none of
66      *         the protocols are supported by the Near-RT RIC.
67      */
68     public Mono<A1Client> createA1Client(Ric ric) {
69         return getProtocolVersion(ric) //
70                 .flatMap(version -> createA1ClientMono(ric, version));
71     }
72
73     A1Client createClient(Ric ric, A1ProtocolType version) throws ServiceException {
74         if (version == A1ProtocolType.STD_V1_1) {
75             assertNoControllerConfig(ric, version);
76             return new StdA1ClientVersion1(ric.getConfig(), this.restClientFactory);
77         } else if (version == A1ProtocolType.STD_V2_0_0) {
78             assertNoControllerConfig(ric, version);
79             return new StdA1ClientVersion2(ric.getConfig(), this.restClientFactory);
80         } else if (version == A1ProtocolType.OSC_V1) {
81             assertNoControllerConfig(ric, version);
82             return new OscA1Client(ric.getConfig(), this.restClientFactory);
83         } else if (version == A1ProtocolType.CCSDK_A1_ADAPTER_STD_V1_1
84                 || version == A1ProtocolType.CCSDK_A1_ADAPTER_OSC_V1
85                 || version == A1ProtocolType.CCSDK_A1_ADAPTER_STD_V2_0_0) {
86             return new CcsdkA1AdapterClient(version, ric.getConfig(), getControllerConfig(ric), this.restClientFactory);
87         } else if (version == A1ProtocolType.CUSTOM_PROTOCOL) {
88             return createCustomAdapter(ric);
89         } else {
90             logger.error("Unhandled protocol: {}", version);
91             throw new ServiceException("Unhandled protocol");
92         }
93     }
94
95     private ControllerConfig getControllerConfig(Ric ric) throws ServiceException {
96         String controllerName = ric.getConfig().getControllerName();
97         if (controllerName.isEmpty()) {
98             ric.setProtocolVersion(A1ProtocolType.UNKNOWN);
99             throw new ServiceException("No controller configured for Near-RT RIC: " + ric.id());
100         }
101         try {
102             return this.appConfig.getControllerConfig(controllerName);
103         } catch (ServiceException e) {
104             ric.setProtocolVersion(A1ProtocolType.UNKNOWN);
105             throw e;
106         }
107     }
108
109     private A1Client createCustomAdapter(Ric ric) throws ServiceException {
110         try {
111             Class<?> clazz = Class.forName(ric.getConfig().getCustomAdapterClass());
112             if (A1Client.class.isAssignableFrom(clazz)) {
113                 Constructor<?> constructor = clazz.getConstructor(RicConfig.class, AsyncRestClientFactory.class);
114                 return (A1Client) constructor.newInstance(ric.getConfig(), this.restClientFactory);
115             } else if (A1Client.Factory.class.isAssignableFrom(clazz)) {
116                 A1Client.Factory factory = (A1Client.Factory) clazz.getDeclaredConstructor().newInstance();
117                 return factory.create(ric.getConfig(), this.restClientFactory);
118             } else {
119                 throw new ServiceException("The custom class must either implement A1Client.Factory or A1Client");
120             }
121         } catch (ClassNotFoundException e) {
122             throw new ServiceException("Could not find class: " + ric.getConfig().getCustomAdapterClass(), e);
123         } catch (Exception e) {
124             throw new ServiceException("Cannot create custom adapter: " + ric.getConfig().getCustomAdapterClass(), e);
125         }
126     }
127
128     private void assertNoControllerConfig(Ric ric, A1ProtocolType version) throws ServiceException {
129         if (!ric.getConfig().getControllerName().isEmpty()) {
130             ric.setProtocolVersion(A1ProtocolType.UNKNOWN);
131             throw new ServiceException(
132                     "Controller config should be empty, ric: " + ric.id() + " when using protocol version: " + version);
133         }
134     }
135
136     private Mono<A1Client> createA1ClientMono(Ric ric, A1ProtocolType version) {
137         try {
138             return Mono.just(createClient(ric, version));
139         } catch (ServiceException e) {
140             return Mono.error(e);
141         }
142     }
143
144     private Mono<A1Client.A1ProtocolType> getProtocolVersion(Ric ric) {
145         if (ric.getProtocolVersion() == A1ProtocolType.UNKNOWN) {
146             return fetchVersion(ric, A1ProtocolType.STD_V2_0_0) //
147                     .onErrorResume(notUsed -> fetchVersion(ric, A1ProtocolType.STD_V1_1)) //
148                     .onErrorResume(notUsed -> fetchVersion(ric, A1ProtocolType.OSC_V1)) //
149                     .onErrorResume(notUsed -> fetchVersion(ric, A1ProtocolType.CCSDK_A1_ADAPTER_STD_V1_1)) //
150                     .doOnNext(ric::setProtocolVersion)
151                     .doOnNext(version -> logger.debug("Established protocol version:{} for Near-RT RIC: {}", version,
152                             ric.id())) //
153                     .doOnError(notUsed -> logger.warn("Could not get protocol version from Near-RT RIC: {}", ric.id()));
154         } else {
155             return Mono.just(ric.getProtocolVersion());
156         }
157     }
158
159     private Mono<A1ProtocolType> fetchVersion(Ric ric, A1ProtocolType protocolType) {
160         return createA1ClientMono(ric, protocolType) //
161                 .flatMap(A1Client::getProtocolVersion);
162     }
163 }