X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fclients%2FA1ClientFactory.java;h=e340e6026128305cbb1c63af258ee34ecb4dcc41;hb=6c1af5cf09756b4c91a786f90f65f5b94ca21aa7;hp=c150c08933279254fdd569581de447e72ef335b3;hpb=284d321092ead873da1fbc01051dad635918ca7a;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java b/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java index c150c089..e340e602 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/clients/A1ClientFactory.java @@ -22,13 +22,15 @@ package org.oransc.policyagent.clients; import org.oransc.policyagent.clients.A1Client.A1ProtocolType; import org.oransc.policyagent.configuration.ApplicationConfig; -import org.oransc.policyagent.exceptions.ServiceException; import org.oransc.policyagent.repository.Ric; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import reactor.core.publisher.Mono; +/** + * Factory for A1 clients that supports four different protocol versions of the A1 api. + */ public class A1ClientFactory { private static final Logger logger = LoggerFactory.getLogger(A1ClientFactory.class); @@ -40,6 +42,19 @@ public class A1ClientFactory { this.appConfig = appConfig; } + /** + * Creates an A1 client with the correct A1 protocol for the provided Ric. + * + *

It detects the protocol version by trial and error, since there is no getVersion method specified in the A1 + * api yet. + * + *

As a side effect it also sets the protocol version in the provided Ric. This means that after the first + * successful creation it won't have to try which protocol to use, but can create the client directly. + * + * @param ric The Ric to get a client for. + * @return a client with the correct protocol, or a ServiceException if none of the protocols are supported by the + * Ric. + */ public Mono createA1Client(Ric ric) { return getProtocolVersion(ric) // .flatMap(version -> createA1Client(ric, version)); @@ -49,21 +64,20 @@ public class A1ClientFactory { if (version == A1ProtocolType.STD_V1) { return Mono.just(createStdA1ClientImpl(ric)); } else if (version == A1ProtocolType.OSC_V1) { - return Mono.just(new OscA1Client(ric.getConfig())); + return Mono.just(createOscA1Client(ric)); } else if (version == A1ProtocolType.SDNC_OSC) { return Mono.just(createSdncOscA1Client(ric)); - } else if (version == A1ProtocolType.SDNR_ONAP) { + } else { // A1ProtocolType.SDNR_ONAP return Mono.just(createSdnrOnapA1Client(ric)); } - return Mono.error(new ServiceException("Not supported protocoltype: " + version)); } private Mono getProtocolVersion(Ric ric) { if (ric.getProtocolVersion() == A1ProtocolType.UNKNOWN) { - return fetchVersion(ric, createSdnrOnapA1Client(ric)) // - .onErrorResume(err -> fetchVersion(ric, createSdncOscA1Client(ric))) - .onErrorResume(err -> fetchVersion(ric, new OscA1Client(ric.getConfig()))) - .onErrorResume(err -> fetchVersion(ric, createStdA1ClientImpl(ric))) + return fetchVersion(createSdnrOnapA1Client(ric)) // + .onErrorResume(err -> fetchVersion(createSdncOscA1Client(ric))) // + .onErrorResume(err -> fetchVersion(createOscA1Client(ric))) // + .onErrorResume(err -> fetchVersion(createStdA1ClientImpl(ric))) // .doOnNext(version -> ric.setProtocolVersion(version)) .doOnNext(version -> logger.debug("Recover ric: {}, protocol version:{}", ric.name(), version)) // .doOnError(t -> logger.warn("Could not get protocol version from RIC: {}", ric.name())); // @@ -72,6 +86,10 @@ public class A1ClientFactory { } } + protected A1Client createOscA1Client(Ric ric) { + return new OscA1Client(ric.getConfig()); + } + protected A1Client createStdA1ClientImpl(Ric ric) { return new StdA1Client(ric.getConfig()); } @@ -86,9 +104,8 @@ public class A1ClientFactory { appConfig.getA1ControllerUsername(), appConfig.getA1ControllerPassword()); } - private Mono fetchVersion(Ric ric, A1Client a1Client) { + private Mono fetchVersion(A1Client a1Client) { return Mono.just(a1Client) // .flatMap(client -> a1Client.getProtocolVersion()); } - }