From b3eecec9013435bc5faef6d25966fa2962620144 Mon Sep 17 00:00:00 2001 From: dlukyanov Date: Sun, 12 Nov 2017 14:34:32 +0200 Subject: [PATCH] [NIFI-3688] refactor CTL & SQL properties --- .../groovyx/ExecuteGroovyScript.java | 41 +++++++++++++------ 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/nifi-nar-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java b/nifi-nar-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java index 745183a857..82072f6a49 100644 --- a/nifi-nar-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java +++ b/nifi-nar-bundles/nifi-groovyx-bundle/nifi-groovyx-processors/src/main/java/org/apache/nifi/processors/groovyx/ExecuteGroovyScript.java @@ -326,7 +326,9 @@ public class ExecuteGroovyScript extends AbstractProcessor { for (Map.Entry e : (Set) CTL.entrySet()) { if (e.getValue() instanceof OSql) { OSql sql = (OSql) e.getValue(); - sql.commit(); + if (!sql.getConnection().getAutoCommit()) { + sql.commit(); + } } } } @@ -339,8 +341,10 @@ public class ExecuteGroovyScript extends AbstractProcessor { if (e.getValue() instanceof OSql) { OSql sql = (OSql) e.getValue(); try { - //sql.commit(); sql.getConnection().setAutoCommit(true); //default autocommit value in nifi + } catch (Throwable ei) { + } + try { sql.close(); sql = null; } catch (Throwable ei) { @@ -357,7 +361,9 @@ public class ExecuteGroovyScript extends AbstractProcessor { if (e.getValue() instanceof OSql) { OSql sql = (OSql) e.getValue(); try { - sql.rollback(); + if (!sql.getConnection().getAutoCommit()) { + sql.rollback(); + } } catch (Throwable ei) { } } @@ -372,15 +378,7 @@ public class ExecuteGroovyScript extends AbstractProcessor { GroovyProcessSessionWrap session = new GroovyProcessSessionWrap(_session, toFailureOnError); - HashMap CTL = new HashMap() { - @Override - public Object get(Object key) { - if (!containsKey(key)) { - throw new RuntimeException("The `CTL." + key + "` not defined in processor properties"); - } - return super.get(key); - } - }; + HashMap CTL = new AccessMap("CTL"); try { Script script = getGroovyScript(); //compilation must be moved to validation @@ -445,8 +443,27 @@ public class ExecuteGroovyScript extends AbstractProcessor { return new PropertyDescriptor.Builder().name(propertyDescriptorName).required(false).description("Controller service accessible from code as `" + propertyDescriptorName + "`") .dynamic(true).identifiesControllerService(ControllerService.class).build(); } + if (propertyDescriptorName.startsWith("SQL.")) { + return new PropertyDescriptor.Builder().name(propertyDescriptorName).required(false).description("The `groovy.sql.Sql` object created from DBCP Controller service and accessible from code as `" + propertyDescriptorName + "`") + .dynamic(true).identifiesControllerService(DBCPService.class).build(); + } return new PropertyDescriptor.Builder().name(propertyDescriptorName).required(false).addValidator(StandardValidators.NON_EMPTY_VALIDATOR).expressionLanguageSupported(true).dynamic(true) .build(); } + + /** simple HashMap with exception on access of non-existent key */ + private class AccessMap extends HashMap { + private String parentKey; + AccessMap(String parentKey){ + this.parentKey=parentKey; + } + @Override + public Object get(Object key) { + if (!containsKey(key)) { + throw new RuntimeException("The `" + parentKey + "." + key + "` not defined in processor properties"); + } + return super.get(key); + } + } }