2 * ========================LICENSE_START=================================
4 * ======================================================================
5 * Copyright (C) 2019-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
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.onap.ccsdk.oran.a1policymanagementservice.repository;
23 import java.util.Collection;
24 import java.util.HashMap;
26 import java.util.Vector;
31 import org.onap.ccsdk.oran.a1policymanagementservice.clients.A1Client.A1ProtocolType;
32 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.RicConfig;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
37 * Holds information about a Near-RT RIC.
40 private static final Logger logger = LoggerFactory.getLogger(Ric.class);
43 private RicConfig ricConfig;
44 private RicState state = RicState.UNAVAILABLE;
45 private Map<String, PolicyType> supportedPolicyTypes = new HashMap<>();
48 private A1ProtocolType protocolVersion = A1ProtocolType.UNKNOWN;
51 private final Lock lock;
54 * Creates the Ric. Initial state is {@link RicState.UNDEFINED}.
56 * @param ricConfig The {@link RicConfig} for this Ric.
58 public Ric(RicConfig ricConfig) {
59 this.ricConfig = ricConfig;
60 this.lock = new Lock(ricConfig.getRicId());
64 return ricConfig.getRicId();
67 public RicConfig getConfig() {
68 return this.ricConfig;
71 public synchronized RicState getState() {
75 public synchronized void setState(RicState state) {
76 logger.debug("Ric {} state set to {}", getConfig().getRicId(), state);
80 public synchronized A1ProtocolType getProtocolVersion() {
81 if (this.ricConfig.getCustomAdapterClass().isEmpty()) {
82 return this.protocolVersion;
84 return A1ProtocolType.CUSTOM_PROTOCOL;
89 * Gets the nodes managed by this Ric.
91 * @return a vector containing the nodes managed by this Ric.
93 public synchronized Collection<String> getManagedElementIds() {
94 return new Vector<>(ricConfig.getManagedElementIds());
98 * Determines if the given node is managed by this Ric.
100 * @param managedElementId the node name to check.
101 * @return true if the given node is managed by this Ric.
103 public synchronized boolean isManaging(String managedElementId) {
104 return ricConfig.getManagedElementIds().contains(managedElementId);
108 * Gets the policy types supported by this Ric.
110 * @return the policy types supported by this Ric in an unmodifiable list.
112 public synchronized Collection<PolicyType> getSupportedPolicyTypes() {
113 return new Vector<>(supportedPolicyTypes.values());
116 public synchronized Collection<String> getSupportedPolicyTypeNames() {
117 return new Vector<>(supportedPolicyTypes.keySet());
121 * Adds a policy type as supported by this Ric.
123 * @param type the policy type to support.
125 public synchronized void addSupportedPolicyType(PolicyType type) {
126 supportedPolicyTypes.put(type.getId(), type);
130 * Removes all policy type as supported by this Ric.
132 public synchronized void clearSupportedPolicyTypes() {
133 supportedPolicyTypes.clear();
137 * Checks if a type is supported by this Ric.
139 * @param typeId the identity of the type to check if it is supported.
141 * @return true if the given type is supported by this Ric, false otherwise.
143 public synchronized boolean isSupportingType(String typeId) {
144 return supportedPolicyTypes.containsKey(typeId);
148 public synchronized String toString() {
149 return Ric.class.getSimpleName() + ": " + "name: " + id() + ", state: " + state + ", baseUrl: "
150 + ricConfig.getBaseUrl() + ", managedNodes: " + ricConfig.getManagedElementIds();
154 * Represents the states possible for a Ric.
156 public enum RicState {
158 * The Policy Management Service's view of the Near-RT RIC may be inconsistent.
162 * The normal state. Policies can be configured.
166 * The Policy Management Service is synchronizing the view of the Near-RT RIC.
171 * A consistency check between the Policy Management Service and the Near-RT RIC