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=e50a98ce517b051efdd70498fc802a878279d964;hb=9f9cde2f0d76ad943f5dfcf50548be5800834a2f;hp=82d84f1271e50aaa8ee5ef4df806e96e56f4b4a8;hpb=637540bc28fbf337e0c4c58c051a6b4f7ceb321d;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 82d84f12..e50a98ce 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,6 +25,10 @@ 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; /** @@ -32,8 +36,12 @@ import org.oransc.policyagent.configuration.RicConfig; */ public class Ric { private final RicConfig ricConfig; - private RicState state = RicState.NOT_INITIATED; + + private RicState state = RicState.UNDEFINED; private Map supportedPolicyTypes = new HashMap<>(); + @Getter + @Setter + private A1ProtocolType protocolVersion = A1ProtocolType.UNKNOWN; /** * Creates the Ric. Initial state is {@link RicState.NOT_INITIATED}. @@ -48,16 +56,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,8 +73,8 @@ public class Ric { * * @return a vector containing the nodes managed by this Ric. */ - public Vector getManagedElementIds() { - return ricConfig.managedElementIds(); + public synchronized Collection getManagedElementIds() { + return new Vector<>(ricConfig.managedElementIds()); } /** @@ -75,7 +83,7 @@ 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); } @@ -84,7 +92,7 @@ public class Ric { * * @param managedElementId the node to add. */ - public void addManagedElement(String managedElementId) { + public synchronized void addManagedElement(String managedElementId) { if (!ricConfig.managedElementIds().contains(managedElementId)) { ricConfig.managedElementIds().add(managedElementId); } @@ -95,7 +103,7 @@ public class Ric { * * @param managedElementId the node to remove. */ - public void removeManagedElement(String managedElementId) { + public synchronized void removeManagedElement(String managedElementId) { ricConfig.managedElementIds().remove(managedElementId); } @@ -104,12 +112,12 @@ public class 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 +125,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 +143,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(); } @@ -150,16 +158,16 @@ public class Ric { */ public static enum RicState { /** - * The Ric has not been initiated yet. + * The agent view of the agent may be inconsistent. */ - NOT_INITIATED, + UNDEFINED, /** - * The Ric is working fine. + * The normal state. Policies can be configured. */ - ACTIVE, + IDLE, /** - * The Ric cannot be contacted. + * The Ric states are recovered. */ - NOT_REACHABLE, RECOVERING + RECOVERING } }