You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by pv...@apache.org on 2018/06/06 08:03:57 UTC

nifi git commit: NIFI-5263 - Fixing the advice auditing the method for updating controller service referencing components.

Repository: nifi
Updated Branches:
  refs/heads/master 5eaed6fad -> c3af53ce6


NIFI-5263 - Fixing the advice auditing the method for updating controller service referencing components.

Signed-off-by: Pierre Villard <pi...@gmail.com>

This closes #2756.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/c3af53ce
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/c3af53ce
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/c3af53ce

Branch: refs/heads/master
Commit: c3af53ce65f4206ce279f61dc0ea7bad823cc8ec
Parents: 5eaed6f
Author: Matt Gilman <ma...@gmail.com>
Authored: Mon Jun 4 12:21:17 2018 -0400
Committer: Pierre Villard <pi...@gmail.com>
Committed: Wed Jun 6 10:03:42 2018 +0200

----------------------------------------------------------------------
 .../nifi/audit/ControllerServiceAuditor.java    | 20 +++++---------------
 1 file changed, 5 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/c3af53ce/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ControllerServiceAuditor.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ControllerServiceAuditor.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ControllerServiceAuditor.java
index 4856065..b07af07 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ControllerServiceAuditor.java
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-api/src/main/java/org/apache/nifi/audit/ControllerServiceAuditor.java
@@ -32,7 +32,6 @@ import org.apache.nifi.controller.ProcessorNode;
 import org.apache.nifi.controller.ReportingTaskNode;
 import org.apache.nifi.controller.ScheduledState;
 import org.apache.nifi.controller.service.ControllerServiceNode;
-import org.apache.nifi.controller.service.ControllerServiceReference;
 import org.apache.nifi.controller.service.ControllerServiceState;
 import org.apache.nifi.reporting.ReportingTask;
 import org.apache.nifi.web.api.dto.ControllerServiceDTO;
@@ -222,23 +221,21 @@ public class ControllerServiceAuditor extends NiFiAuditor {
      * @throws Throwable ex
      */
     @Around("within(org.apache.nifi.web.dao.ControllerServiceDAO+) && "
-            + "execution(org.apache.nifi.controller.service.ControllerServiceReference "
+            + "execution(java.util.Set<org.apache.nifi.controller.ComponentNode> "
             + "updateControllerServiceReferencingComponents(java.lang.String, org.apache.nifi.controller.ScheduledState, "
             + "org.apache.nifi.controller.service.ControllerServiceState))")
     public Object updateControllerServiceReferenceAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
         // update the controller service references
-        final ControllerServiceReference controllerServiceReference = (ControllerServiceReference) proceedingJoinPoint.proceed();
+        final Set<ComponentNode> referencingComponents = (Set<ComponentNode>) proceedingJoinPoint.proceed();
 
         // get the current user
         final NiFiUser user = NiFiUserUtils.getNiFiUser();
 
         if (user != null) {
             final Collection<Action> actions = new ArrayList<>();
-            final Collection<String> visitedServices = new ArrayList<>();
-            visitedServices.add(controllerServiceReference.getReferencedComponent().getIdentifier());
 
             // get all applicable actions
-            getUpdateActionsForReferencingComponents(user, actions, visitedServices, controllerServiceReference.getReferencingComponents());
+            getUpdateActionsForReferencingComponents(user, actions, referencingComponents);
 
             // ensure there are actions to record
             if (!actions.isEmpty()) {
@@ -247,7 +244,7 @@ public class ControllerServiceAuditor extends NiFiAuditor {
             }
         }
 
-        return controllerServiceReference;
+        return referencingComponents;
     }
 
     /**
@@ -255,11 +252,9 @@ public class ControllerServiceAuditor extends NiFiAuditor {
      *
      * @param user user
      * @param actions actions
-     * @param visitedServices services
      * @param referencingComponents components
      */
-    private void getUpdateActionsForReferencingComponents(
-            final NiFiUser user, final Collection<Action> actions, final Collection<String> visitedServices, final Set<ComponentNode> referencingComponents) {
+    private void getUpdateActionsForReferencingComponents(final NiFiUser user, final Collection<Action> actions, final Set<ComponentNode> referencingComponents) {
         // consider each component updates
         for (final ComponentNode component : referencingComponents) {
             if (component instanceof ProcessorNode) {
@@ -313,11 +308,6 @@ public class ControllerServiceAuditor extends NiFiAuditor {
                 serviceAction.setComponentDetails(serviceDetails);
                 serviceAction.setOperation(isDisabled(controllerService) ? Operation.Disable : Operation.Enable);
                 actions.add(serviceAction);
-
-                // need to consider components referencing this controller service (transitive)
-                if (!visitedServices.contains(controllerService.getIdentifier())) {
-                    getUpdateActionsForReferencingComponents(user, actions, visitedServices, controllerService.getReferences().getReferencingComponents());
-                }
             }
         }
     }