X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fcontrollers%2FServiceController.java;h=cc1d711bb2ecde80107900f4732d7cc6677973f4;hb=ebfa288c54e3de9ffb6e170b599e23ab0dbe479c;hp=bda5e09589d0d81983d46f8e884a2e0f4bdc9f7c;hpb=7e09b1b60b090846b8a7bf85b03b9f16ca697d7f;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java b/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java index bda5e095..cc1d711b 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/controllers/ServiceController.java @@ -23,16 +23,23 @@ package org.oransc.policyagent.controllers; import com.google.gson.Gson; import com.google.gson.GsonBuilder; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiResponse; +import io.swagger.annotations.ApiResponses; + import java.time.Duration; import java.util.Collection; import java.util.Vector; import org.oransc.policyagent.exceptions.ServiceException; +import org.oransc.policyagent.repository.Policies; +import org.oransc.policyagent.repository.Policy; import org.oransc.policyagent.repository.Service; import org.oransc.policyagent.repository.Services; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -43,31 +50,40 @@ import org.springframework.web.bind.annotation.RestController; public class ServiceController { private final Services services; + private final Policies policies; + private static Gson gson = new GsonBuilder() // .serializeNulls() // .create(); // @Autowired - ServiceController(Services services) { + ServiceController(Services services, Policies policies) { this.services = services; + this.policies = policies; } - @GetMapping("/service") - public ResponseEntity getService( // - @RequestParam(name = "name", required = true) String name) { - try { - Service s = services.getService(name); - String res = gson.toJson(toServiceStatus(s)); - return new ResponseEntity(res, HttpStatus.OK); + @GetMapping("/services") + @ApiOperation(value = "Returns service information", response = ServiceStatus.class) + @ApiResponses(value = {@ApiResponse(code = 200, message = "OK")}) + public ResponseEntity getServices( // + @RequestParam(name = "name", required = false) String name) { - } catch (ServiceException e) { - return new ResponseEntity(e.getMessage(), HttpStatus.NO_CONTENT); + Collection servicesStatus = new Vector<>(); + synchronized (this.services) { + for (Service s : this.services.getAll()) { + if (name == null || name.equals(s.name())) { + servicesStatus.add(toServiceStatus(s)); + } + } } + + String res = gson.toJson(servicesStatus); + return new ResponseEntity(res, HttpStatus.OK); } private ServiceStatus toServiceStatus(Service s) { return ImmutableServiceStatus.builder() // - .name(s.getName()) // + .name(s.name()) // .keepAliveInterval(s.getKeepAliveInterval().toSeconds()) // .timeSincePing(s.timeSinceLastPing().toSeconds()) // .build(); @@ -85,31 +101,39 @@ public class ServiceController { } } - private Service toService(ServiceRegistrationInfo s) { - return new Service(s.name(), Duration.ofSeconds(s.keepAliveInterval()), s.callbackUrl()); + @DeleteMapping("/services") + public ResponseEntity deleteService( // + @RequestParam(name = "name", required = true) String name) { + try { + Service service = removeService(name); + // Remove the policies from the repo and let the consistency monitoring + // do the rest. + removePolicies(service); + return new ResponseEntity("OK", HttpStatus.NO_CONTENT); + } catch (Exception e) { + return new ResponseEntity(e.getMessage(), HttpStatus.NO_CONTENT); + } } - @GetMapping("/services") - public ResponseEntity getServices() { - Collection result = new Vector<>(); + private Service removeService(String name) throws ServiceException { synchronized (this.services) { - for (Service s : this.services.getAll()) { - result.add(toServiceStatus(s)); - } + Service service = this.services.getService(name); + this.services.remove(service.name()); + return service; } - return new ResponseEntity<>(gson.toJson(result), HttpStatus.OK); } - @PutMapping("/service/ping") - public ResponseEntity ping( // - @RequestBody String name) { - try { - Service s = services.getService(name); - s.ping(); - return new ResponseEntity("OK", HttpStatus.OK); - } catch (ServiceException e) { - return new ResponseEntity(e.getMessage(), HttpStatus.NO_CONTENT); + private void removePolicies(Service service) { + synchronized (this.policies) { + Vector policyList = new Vector<>(this.policies.getForService(service.name())); + for (Policy policy : policyList) { + this.policies.remove(policy); + } } } + private Service toService(ServiceRegistrationInfo s) { + return new Service(s.name(), Duration.ofSeconds(s.keepAliveInterval()), s.callbackUrl()); + } + }