X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Frepository%2FRic.java;h=fb2e4b92979b04fdf8c8ab482713f8a422922778;hb=6a39814272307d0207222c9229b0d765ac062bf0;hp=235ee1ab9e116ecb1c3491bb2d8c99968610837b;hpb=4891734864ae374cf6ff357f41cc840c4f685300;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java b/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java index 235ee1ab..fb2e4b92 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/repository/Ric.java @@ -25,18 +25,30 @@ import java.util.HashMap; import java.util.Map; import java.util.Vector; +import lombok.Getter; +import lombok.Setter; + +import org.oransc.policyagent.clients.A1Client.A1ProtocolType; import org.oransc.policyagent.configuration.RicConfig; /** - * Represents the dynamic information about a NearRealtime-RIC. + * Represents the dynamic information about a Near-RT RIC. */ public class Ric { - private final RicConfig ricConfig; - private RicState state = RicState.UNDEFINED; + + @Setter + private RicConfig ricConfig; + private RicState state = RicState.UNAVAILABLE; private Map supportedPolicyTypes = new HashMap<>(); + @Getter + @Setter + private A1ProtocolType protocolVersion = A1ProtocolType.UNKNOWN; + + @Getter + private final Lock lock = new Lock(); /** - * Creates the Ric. Initial state is {@link RicState.NOT_INITIATED}. + * Creates the Ric. Initial state is {@link RicState.UNDEFINED}. * * @param ricConfig The {@link RicConfig} for this Ric. */ @@ -48,16 +60,16 @@ public class Ric { return ricConfig.name(); } - public RicState state() { - return state; + public RicConfig getConfig() { + return this.ricConfig; } - public void setState(RicState newState) { - state = newState; + public synchronized RicState getState() { + return this.state; } - public RicConfig getConfig() { - return this.ricConfig; + public synchronized void setState(RicState state) { + this.state = state; } /** @@ -65,7 +77,7 @@ public class Ric { * * @return a vector containing the nodes managed by this Ric. */ - public Vector getManagedElementIds() { + public synchronized Collection getManagedElementIds() { return ricConfig.managedElementIds(); } @@ -75,41 +87,21 @@ public class Ric { * @param managedElementId the node name to check. * @return true if the given node is managed by this Ric. */ - public boolean isManaging(String managedElementId) { + public synchronized boolean isManaging(String managedElementId) { return ricConfig.managedElementIds().contains(managedElementId); } - /** - * Adds the given node as managed by this Ric. - * - * @param managedElementId the node to add. - */ - public void addManagedElement(String managedElementId) { - if (!ricConfig.managedElementIds().contains(managedElementId)) { - ricConfig.managedElementIds().add(managedElementId); - } - } - - /** - * Removes the given node as managed by this Ric. - * - * @param managedElementId the node to remove. - */ - public void removeManagedElement(String managedElementId) { - ricConfig.managedElementIds().remove(managedElementId); - } - /** * Gets the policy types supported by this Ric. * * @return the policy types supported by this Ric in an unmodifiable list. */ - public Collection getSupportedPolicyTypes() { - return supportedPolicyTypes.values(); + public synchronized Collection getSupportedPolicyTypes() { + return new Vector<>(supportedPolicyTypes.values()); } - public Collection getSupportedPolicyTypeNames() { - return supportedPolicyTypes.keySet(); + public synchronized Collection getSupportedPolicyTypeNames() { + return new Vector<>(supportedPolicyTypes.keySet()); } /** @@ -117,14 +109,14 @@ public class Ric { * * @param type the policy type to support. */ - public void addSupportedPolicyType(PolicyType type) { + public synchronized void addSupportedPolicyType(PolicyType type) { supportedPolicyTypes.put(type.name(), type); } /** * Removes all policy type as supported by this Ric. */ - public void clearSupportedPolicyTypes() { + public synchronized void clearSupportedPolicyTypes() { supportedPolicyTypes.clear(); } @@ -135,12 +127,12 @@ public class Ric { * * @return true if the given type is supported by this Ric, false otherwise. */ - public boolean isSupportingType(String typeName) { + public synchronized boolean isSupportingType(String typeName) { return supportedPolicyTypes.containsKey(typeName); } @Override - public String toString() { + public synchronized String toString() { return Ric.class.getSimpleName() + ": " + "name: " + name() + ", state: " + state + ", baseUrl: " + ricConfig.baseUrl() + ", managedNodes: " + ricConfig.managedElementIds(); } @@ -148,18 +140,23 @@ public class Ric { /** * Represents the states possible for a Ric. */ - public static enum RicState { + public enum RicState { /** - * The agent view of the agent may be inconsistent + * The agent view of the Ric may be inconsistent. */ - UNDEFINED, + UNAVAILABLE, /** * The normal state. Policies can be configured. */ - IDLE, + AVAILABLE, + /** + * The agent is synchronizing the view of the Ric. + */ + SYNCHRONIZING, + /** - * The Ric states are recovered + * A consistency check between the agent and the Ric is done */ - RECOVERING + CONSISTENCY_CHECK } }