X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=engine-d%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fholmes%2Fengine%2Fresources%2FEngineResources.java;h=b4cb0b1e89a5da7c4287bb4b6b0d323c1ec07948;hb=ea08755cd8354a8fe6f30a2797cb5bb3ccb63da8;hp=97243554b8946e164bda83dff86103b426f2ad10;hpb=0cd31c398821790857c9f4862df35f684eab52fc;p=holmes%2Fengine-management.git diff --git a/engine-d/src/main/java/org/onap/holmes/engine/resources/EngineResources.java b/engine-d/src/main/java/org/onap/holmes/engine/resources/EngineResources.java index 9724355..b4cb0b1 100644 --- a/engine-d/src/main/java/org/onap/holmes/engine/resources/EngineResources.java +++ b/engine-d/src/main/java/org/onap/holmes/engine/resources/EngineResources.java @@ -20,6 +20,9 @@ import com.codahale.metrics.annotation.Timed; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; +import java.io.BufferedReader; +import java.io.IOException; +import java.io.StringReader; import java.util.Locale; import javax.inject.Inject; import javax.servlet.http.HttpServletRequest; @@ -66,15 +69,25 @@ public class EngineResources { CorrelationRuleResponse crResponse = new CorrelationRuleResponse(); Locale locale = LanguageUtil.getLocale(httpRequest); try { - String packageName = droolsEngine.deployRule(deployRuleRequest, locale); + String packageName = getPackageName(deployRuleRequest.getContent()); DmaapService.loopControlNames .put(packageName, deployRuleRequest.getLoopControlName()); + String packageNameRet = droolsEngine.deployRule(deployRuleRequest, locale); + if (!packageName.equals(packageNameRet)) { + log.info("The parsed package name is different from that returned by the engine."); + DmaapService.loopControlNames.remove(packageName); + DmaapService.loopControlNames + .put(packageNameRet, deployRuleRequest.getLoopControlName()); + } log.info("Rule deployed. Package name: " + packageName); crResponse.setPackageName(packageName); } catch (CorrelationException correlationException) { log.error(correlationException.getMessage(), correlationException); throw ExceptionUtil.buildExceptionResponse(correlationException.getMessage()); + } catch (RuntimeException e) { + log.error(e.getMessage(), e); + throw ExceptionUtil.buildExceptionResponse(e.getMessage()); } return crResponse; @@ -91,9 +104,8 @@ public class EngineResources { Locale locale = LanguageUtil.getLocale(httpRequest); try { - droolsEngine.undeployRule(packageName, locale); - + DmaapService.loopControlNames.remove(packageName); } catch (CorrelationException correlationException) { log.error(correlationException.getMessage(), correlationException); throw ExceptionUtil.buildExceptionResponse(correlationException.getMessage()); @@ -119,4 +131,10 @@ public class EngineResources { } return true; } + + private String getPackageName(String contents){ + String ret = contents.trim(); + ret = ret.substring(7, ret.indexOf("import")).trim(); + return ret.endsWith(";") ? ret.substring(0, ret.length() - 1) : ret; + } }