NIFI-210: This closes #185. Add ExecuteScript and InvokeScriptedProcessor

Signed-off-by: joewitt <[email protected]>


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

Branch: refs/heads/master
Commit: 77ab5d36843370a30141f660c0b4dd146b007ff7
Parents: 1e56de9
Author: Matt Burgess <[email protected]>
Authored: Mon Feb 1 19:13:30 2016 -0500
Committer: joewitt <[email protected]>
Committed: Mon Feb 1 21:09:06 2016 -0500

----------------------------------------------------------------------
 nifi-assembly/LICENSE                           |  23 +
 nifi-assembly/NOTICE                            |  36 ++
 nifi-assembly/pom.xml                           |   5 +
 .../nifi-scripting-nar/pom.xml                  |  35 ++
 .../src/main/resources/META-INF/LICENSE         | 274 +++++++++
 .../src/main/resources/META-INF/NOTICE          |  47 ++
 .../nifi-scripting-processors/pom.xml           |  72 +++
 .../script/AbstractScriptProcessor.java         | 302 ++++++++++
 .../nifi/processors/script/ExecuteScript.java   | 213 +++++++
 .../script/InvokeScriptedProcessor.java         | 554 +++++++++++++++++++
 .../script/ScriptEngineConfigurator.java        |  35 ++
 .../impl/GroovyScriptEngineConfigurator.java    |  55 ++
 .../impl/JythonScriptEngineConfigurator.java    |  51 ++
 .../org.apache.nifi.processor.Processor         |  16 +
 ...i.processors.script.ScriptEngineConfigurator |  17 +
 .../nifi/processors/script/BaseScriptTest.java  |  72 +++
 .../processors/script/TestExecuteGroovy.java    | 291 ++++++++++
 .../processors/script/TestExecuteJRuby.java     |  59 ++
 .../script/TestExecuteJavascript.java           |  58 ++
 .../processors/script/TestExecuteJython.java    |  77 +++
 .../nifi/processors/script/TestExecuteLua.java  |  59 ++
 .../processors/script/TestInvokeGroovy.java     | 171 ++++++
 .../processors/script/TestInvokeJython.java     | 169 ++++++
 .../testCreateNewFlowFileWithNoInputFile.groovy |  20 +
 .../testInvokeScriptCausesException.groovy      |  62 +++
 ...toreInFlowFileAttributeWithScriptBody.groovy |  23 +
 ...wFileAttributeWithScriptBodyNoModules.groovy |  20 +
 ...tentAndStoreInFlowFileCustomAttribute.groovy |  20 +
 .../groovy/testScriptNoTransfer.groovy          |  19 +
 .../groovy/testScriptRoutesToFailure.groovy     |  64 +++
 .../groovy/test_dynamicProperties.groovy        |  22 +
 .../test/resources/groovy/test_onTrigger.groovy |  24 +
 .../groovy/test_onTrigger_changeContent.groovy  |  41 ++
 .../groovy/test_onTrigger_newFlowFile.groovy    |  46 ++
 .../test/resources/groovy/test_reader.groovy    |  77 +++
 .../test/resources/javascript/test_onTrigger.js |  21 +
 .../src/test/resources/jruby/test_onTrigger.rb  |  22 +
 .../test/resources/jython/callbacks/__init__.py |  23 +
 .../test/resources/jython/callbacks/compress.py |  49 ++
 .../resources/jython/callbacks/decompress.py    |  48 ++
 .../jython/callbacks/read_first_line.py         |  50 ++
 .../src/test/resources/jython/test_compress.py  |  76 +++
 .../src/test/resources/jython/test_invalid.py   |  48 ++
 .../src/test/resources/jython/test_reader.py    |  74 +++
 .../resources/jython/test_update_attribute.py   |  79 +++
 .../src/test/resources/lua/test_onTrigger.lua   |  21 +
 nifi-nar-bundles/nifi-scripting-bundle/pom.xml  |  43 ++
 nifi-nar-bundles/pom.xml                        |   1 +
 pom.xml                                         |  14 +-
 49 files changed, 3694 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-assembly/LICENSE
----------------------------------------------------------------------
diff --git a/nifi-assembly/LICENSE b/nifi-assembly/LICENSE
index ca4a880..6aef7ed 100644
--- a/nifi-assembly/LICENSE
+++ b/nifi-assembly/LICENSE
@@ -1110,4 +1110,27 @@ information can be found here: http://jsoup.org/license
     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+    THE SOFTWARE.
+
+This product bundles 'Luaj' which is available under an MIT style license. More
+information can be found here:
+
+    Copyright (c) 2009 Luaj.org. All rights reserved.
+
+    Permission is hereby granted, free of charge, to any person obtaining a 
copy
+    of this software and associated documentation files (the "Software"), to 
deal
+    in the Software without restriction, including without limitation the 
rights
+    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the Software is
+    furnished to do so, subject to the following conditions:
+
+    The above copyright notice and this permission notice shall be included in
+    all copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM,
+    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     THE SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-assembly/NOTICE
----------------------------------------------------------------------
diff --git a/nifi-assembly/NOTICE b/nifi-assembly/NOTICE
index 0a8c2d7..ac2e04c 100644
--- a/nifi-assembly/NOTICE
+++ b/nifi-assembly/NOTICE
@@ -780,6 +780,16 @@ The following binary components are provided under the 
Apache Software License v
 
     (ASLv2) EventHubs Client 
(com.microsoft.eventhubs.client:eventhubs-client:0.9.1 - 
https://github.com/hdinsight/eventhubs-client/)
 
+    (ASLv2) Groovy (org.codehaus.groovy:groovy:jar:2.4.5 - 
http://www.groovy-lang.org)
+      The following NOTICE information applies:
+          Groovy Language
+             Copyright 2003-2015 The respective authors and developers
+             Developers and Contributors are listed in the project POM file
+             and Gradle build file
+
+             This product includes software developed by
+             The Groovy community (http://groovy.codehaus.org/).
+
 
 ************************
 Common Development and Distribution License 1.1
@@ -851,6 +861,12 @@ The following binary components are provided under the 
Eclipse Public License 1.
     (EPL 1.0)(MPL 2.0) H2 Database (com.h2database:h2:jar:1.3.176 - 
http://www.h2database.com/html/license.html)
     (EPL 1.0)(LGPL 2.1) Logback Classic 
(ch.qos.logback:logback-classic:jar:1.1.3 - http://logback.qos.ch/)
     (EPL 1.0)(LGPL 2.1) Logback Core (ch.qos.logback:logback-core:jar:1.1.3 - 
http://logback.qos.ch/)
+    (EPLv1.0) JRuby (org.jruby:jruby-complete:9.0.4.0 - http://jruby.org).
+
+        JRuby is licensed under three licenses - the EPL 1.0, GPL 2 and LGPL 
2.1. Apache NiFi uses the EPL v1.0 license.
+
+        The following NOTICE information applies:
+            Copyright (c) 2007-2015 The JRuby project
 
 *****************
 Mozilla Public License v2.0
@@ -869,6 +885,26 @@ The following binary components are provided under the 
Mozilla Public License v1
     (MPL 1.1) HAPI Base (ca.uhn.hapi:hapi-base:2.2 - 
http://hl7api.sourceforge.net/)
     (MPL 1.1) HAPI Structures (ca.uhn.hapi:hapi-structures-v*:2.2 - 
http://hl7api.sourceforge.net/)
 
+******************
+Python Software Foundation License v2
+******************
+
+The following binary components are provided under the Python Software 
Foundation License v2
+
+  (PSFLv2) Jython (org.python:jython-standalone:2.7.0 - http://www.jython.org/)
+    The following NOTICE information applies:
+        Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython 
Developers All rights reserved.
+
+******************
+MIT License
+******************
+
+The following binary components are provided under an MIT-style license
+
+  (MIT) Luaj (org.luaj:luaj-jse:3.0.1 - 
http://www.luaj.org/luaj/3.0/README.html)
+    The following NOTICE information applies:
+        Copyright (c) 2009-2011 Luaj.org. All rights reserved.
+
 *****************
 Public Domain
 *****************

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-assembly/pom.xml
----------------------------------------------------------------------
diff --git a/nifi-assembly/pom.xml b/nifi-assembly/pom.xml
index f5e9a98..0bf722b 100644
--- a/nifi-assembly/pom.xml
+++ b/nifi-assembly/pom.xml
@@ -262,6 +262,11 @@ language governing permissions and limitations under the 
License. -->
             <artifactId>nifi-azure-nar</artifactId>
             <type>nar</type>
         </dependency>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-scripting-nar</artifactId>
+            <type>nar</type>
+        </dependency>
     </dependencies>
 
     <properties>

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml
new file mode 100644
index 0000000..89cbc4f
--- /dev/null
+++ b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/pom.xml
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License. You may obtain a copy of the License at
+  http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.nifi</groupId>
+        <artifactId>nifi-scripting-bundle</artifactId>
+        <version>0.4.2-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>nifi-scripting-nar</artifactId>
+    <packaging>nar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-scripting-processors</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/LICENSE
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/LICENSE
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/LICENSE
new file mode 100644
index 0000000..671d529
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/LICENSE
@@ -0,0 +1,274 @@
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+APACHE NIFI SUBCOMPONENTS:
+
+The Apache NiFi project contains subcomponents with separate copyright
+notices and license terms. Your use of the source code for the these
+subcomponents is subject to the terms and conditions of the following
+licenses.
+
+  The binary distribution of this product bundles 'Jython standalone' under a 
Python Software Foundation license
+
+  Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Jython 
Developers All rights reserved.
+  Copyright (c) 2007 Python Software Foundation; All Rights Reserved
+
+  PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+
+  1. This LICENSE AGREEMENT is between the Python Software Foundation ("PSF"), 
and the Individual or Organization
+  ("Licensee") accessing and otherwise using this software ("Jython") in 
source or binary form and its associated
+  documentation.
+
+  2. Subject to the terms and conditions of this License Agreement, PSF hereby 
grants Licensee a nonexclusive,
+  royalty-free, world-wide license to reproduce, analyze, test, perform and/or 
display publicly, prepare derivative
+  works, distribute, and otherwise use Jython alone or in any derivative 
version, provided, however, that PSF's
+  License Agreement and PSF's notice of copyright, i.e.,
+  "Copyright (c) 2007 Python Software Foundation; All Rights Reserved" are 
retained in Jython alone or in any
+  derivative version prepared by Licensee.
+
+  3. In the event Licensee prepares a derivative work that is based on or 
incorporates Jython or any part thereof,
+  and wants to make the derivative work available to others as provided 
herein, then Licensee hereby agrees to
+  include in any such work a brief summary of the changes made to Jython.
+
+  4. PSF is making Jython available to Licensee on an "AS IS" basis. PSF MAKES 
NO REPRESENTATIONS OR WARRANTIES,
+  EXPRESS OR IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND 
DISCLAIMS ANY REPRESENTATION OR
+  WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT 
THE USE OF JYTHON WILL NOT INFRINGE
+  ANY THIRD PARTY RIGHTS.
+
+  5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF JYTHON FOR ANY 
INCIDENTAL, SPECIAL, OR CONSEQUENTIAL
+  DAMAGES OR LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING 
JYTHON, OR ANY DERIVATIVE THEREOF, EVEN
+  IF ADVISED OF THE POSSIBILITY THEREOF.
+
+  6. This License Agreement will automatically terminate upon a material 
breach of its terms and conditions.
+
+  7. Nothing in this License Agreement shall be deemed to create any 
relationship of agency, partnership, or joint
+  venture between PSF and Licensee. This License Agreement does not grant 
permission to use PSF trademarks or trade
+  name in a trademark sense to endorse or promote products or services of 
Licensee, or any third party.
+
+  8. By copying, installing or otherwise using Jython, Licensee agrees to be 
bound by the terms and conditions of
+  this License Agreement.
+
+
+  The binary distribution of this product bundles 'Luaj' under an MIT
+  style license.
+
+    Copyright © 2009-2014 Luaj.org.
+
+    Permission is hereby granted, free of charge, to any person obtaining
+    a copy of this software and associated documentation files (the
+    "Software"), to deal in the Software without restriction, including
+    without limitation the rights to use, copy, modify, merge, publish,
+    distribute, sublicense, and/or sell copies of the Software, and to
+    permit persons to whom the Software is furnished to do so, subject to
+    the following conditions:
+
+    The above copyright notice and this permission notice shall be
+    included in all copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+    OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/NOTICE
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/NOTICE
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/NOTICE
new file mode 100644
index 0000000..2e09e08
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-nar/src/main/resources/META-INF/NOTICE
@@ -0,0 +1,47 @@
+nifi-scripting-nar
+Copyright 2015 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+******************
+Apache Software License v2
+******************
+
+The following binary components are provided under the Apache Software License 
v2
+
+  (ASLv2) Groovy (org.codehaus.groovy:groovy:jar:2.4.5 - 
http://www.groovy-lang.org)
+  The following NOTICE information applies:
+      Groovy Language
+         Copyright 2003-2015 The respective authors and developers
+         Developers and Contributors are listed in the project POM file
+         and Gradle build file
+
+         This product includes software developed by
+         The Groovy community (http://groovy.codehaus.org/).
+
+  (ASLv2) Apache Commons IO
+      The following NOTICE information applies:
+        Apache Commons IO
+        Copyright 2002-2012 The Apache Software Foundation
+
+  (ASLv2) Apache Commons Lang
+      The following NOTICE information applies:
+        Apache Commons Lang
+        Copyright 2001-2015 The Apache Software Foundation
+
+        This product includes software from the Spring Framework,
+        under the Apache License 2.0 (see: StringUtils.containsWhitespace())
+
+******************
+Eclipse Public License v1.0
+******************
+
+The following binary components are provided under a EPL v1.0 license
+
+   (EPLv1.0) JRuby (org.jruby:jruby-complete:9.0.4.0 - http://jruby.org).
+
+    JRuby is licensed under three licenses - the EPL 1.0, GPL 2 and LGPL 2.1. 
Apache NiFi uses the EPL v1.0 license.
+
+    The following NOTICE information applies:
+        Copyright (c) 2007-2015 The JRuby project
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/pom.xml
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/pom.xml 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/pom.xml
new file mode 100644
index 0000000..0f210f0
--- /dev/null
+++ b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/pom.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements. See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License. You may obtain a copy of the License at
+  http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.nifi</groupId>
+        <artifactId>nifi-scripting-bundle</artifactId>
+        <version>0.4.2-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>nifi-scripting-processors</artifactId>
+    <packaging>jar</packaging>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-properties</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-processor-utils</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.groovy</groupId>
+            <artifactId>groovy-all</artifactId>
+            <version>2.4.5</version>
+        </dependency>
+        <dependency>
+            <groupId>org.python</groupId>
+            <artifactId>jython-standalone</artifactId>
+            <version>2.7.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.luaj</groupId>
+            <artifactId>luaj-jse</artifactId>
+            <version>3.0.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.jruby</groupId>
+            <artifactId>jruby-complete</artifactId>
+            <version>9.0.4.0</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.nifi</groupId>
+            <artifactId>nifi-mock</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/AbstractScriptProcessor.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/AbstractScriptProcessor.java
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/AbstractScriptProcessor.java
new file mode 100644
index 0000000..61fffa8
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/AbstractScriptProcessor.java
@@ -0,0 +1,302 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.script;
+
+import org.apache.nifi.components.AllowableValue;
+import org.apache.nifi.components.PropertyDescriptor;
+import org.apache.nifi.components.ValidationContext;
+import org.apache.nifi.components.ValidationResult;
+import org.apache.nifi.components.Validator;
+import org.apache.nifi.logging.ProcessorLog;
+import org.apache.nifi.processor.AbstractSessionFactoryProcessor;
+import org.apache.nifi.processor.Relationship;
+import org.apache.nifi.processor.util.StandardValidators;
+import org.apache.nifi.util.StringUtils;
+
+import javax.script.ScriptEngine;
+import javax.script.ScriptEngineFactory;
+import javax.script.ScriptEngineManager;
+import javax.script.ScriptException;
+import java.io.File;
+import java.net.MalformedURLException;
+import java.net.URL;
+import java.net.URLClassLoader;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.HashMap;
+import java.util.HashSet;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.Map;
+import java.util.ServiceLoader;
+import java.util.Set;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.atomic.AtomicBoolean;
+
+/**
+ * This class contains variables and methods common to scripting processors
+ */
+public abstract class AbstractScriptProcessor extends 
AbstractSessionFactoryProcessor {
+
+    public static final Relationship REL_SUCCESS = new Relationship.Builder()
+            .name("success")
+            .description("FlowFiles that were successfully processed")
+            .build();
+
+    public static final Relationship REL_FAILURE = new Relationship.Builder()
+            .name("failure")
+            .description("FlowFiles that failed to be processed")
+            .build();
+
+    public static PropertyDescriptor SCRIPT_ENGINE;
+
+    public static final PropertyDescriptor SCRIPT_FILE = new 
PropertyDescriptor.Builder()
+            .name("Script File")
+            .required(false)
+            .description("Path to script file to execute. Only one of Script 
File or Script Body may be used")
+            .addValidator(new StandardValidators.FileExistsValidator(true))
+            .expressionLanguageSupported(true)
+            .build();
+
+    public static final PropertyDescriptor SCRIPT_BODY = new 
PropertyDescriptor.Builder()
+            .name("Script Body")
+            .required(false)
+            .description("Body of script to execute. Only one of Script File 
or Script Body may be used")
+            .addValidator(Validator.VALID)
+            .expressionLanguageSupported(false)
+            .build();
+
+    public static final PropertyDescriptor MODULES = new 
PropertyDescriptor.Builder()
+            .name("Module Directory")
+            .description("Path to a directory which contains modules required 
by the script.")
+            .required(false)
+            .expressionLanguageSupported(true)
+            .addValidator(new 
StandardValidators.DirectoryExistsValidator(true, false))
+            .build();
+
+    // A map from engine name to a custom configurator for that engine
+    protected final Map<String, ScriptEngineConfigurator> 
scriptEngineConfiguratorMap = new ConcurrentHashMap<>();
+    protected final AtomicBoolean isInitialized = new AtomicBoolean(false);
+
+    protected Map<String, ScriptEngineFactory> scriptEngineFactoryMap;
+    protected String scriptEngineName;
+    protected String scriptPath;
+    protected String scriptBody;
+    protected String modulePath;
+    protected List<PropertyDescriptor> descriptors;
+    protected ScriptEngine scriptEngine;
+
+    /**
+     * Custom validation for ensuring exactly one of Script File or Script 
Body is populated
+     *
+     * @param validationContext provides a mechanism for obtaining externally
+     *                          managed values, such as property values and 
supplies convenience methods
+     *                          for operating on those values
+     * @return A collection of validation results
+     */
+    @Override
+    protected Collection<ValidationResult> customValidate(ValidationContext 
validationContext) {
+        Set<ValidationResult> results = new HashSet<>();
+
+        // Verify that exactly one of "script file" or "script body" is set
+        Map<PropertyDescriptor, String> propertyMap = 
validationContext.getProperties();
+        if (StringUtils.isEmpty(propertyMap.get(SCRIPT_FILE)) == 
StringUtils.isEmpty(propertyMap.get(SCRIPT_BODY))) {
+            results.add(new 
ValidationResult.Builder().valid(false).explanation(
+                    "Exactly one of Script File or Script Body must be 
set").build());
+        }
+
+        return results;
+    }
+
+    /**
+     * This method creates all resources needed for the script processor to 
function, such as script engines,
+     * script file reloader threads, etc.
+     */
+    protected void createResources() {
+        descriptors = new ArrayList<>();
+        // The following is required for JRuby, should be transparent to 
everything else.
+        // Note this is not done in a ScriptEngineConfigurator, as it is too 
early in the lifecycle. The
+        // setting must be there before the factories/engines are loaded.
+        System.setProperty("org.jruby.embed.localvariable.behavior", 
"persistent");
+
+        // Create list of available engines
+        ScriptEngineManager scriptEngineManager = new ScriptEngineManager();
+        List<ScriptEngineFactory> scriptEngineFactories = 
scriptEngineManager.getEngineFactories();
+        if (scriptEngineFactories != null) {
+            scriptEngineFactoryMap = new 
HashMap<>(scriptEngineFactories.size());
+            List<AllowableValue> engineList = new LinkedList<>();
+            for (ScriptEngineFactory factory : scriptEngineFactories) {
+                engineList.add(new AllowableValue(factory.getLanguageName()));
+                scriptEngineFactoryMap.put(factory.getLanguageName(), factory);
+            }
+
+            // Sort the list by name so the list always looks the same.
+            Collections.sort(engineList, new Comparator<AllowableValue>() {
+                @Override
+                public int compare(AllowableValue o1, AllowableValue o2) {
+                    if (o1 == null) {
+                        return o2 == null ? 0 : 1;
+                    }
+                    if (o2 == null) {
+                        return -1;
+                    }
+                    return o1.getValue().compareTo(o2.getValue());
+                }
+            });
+
+            AllowableValue[] engines = engineList.toArray(new 
AllowableValue[engineList.size()]);
+
+            SCRIPT_ENGINE = new PropertyDescriptor.Builder()
+                    .name("Script Engine")
+                    .required(true)
+                    .description("The engine to execute scripts")
+                    .allowableValues(engines)
+                    .defaultValue(engines[0].getValue())
+                    .required(true)
+                    .expressionLanguageSupported(false)
+                    .build();
+            descriptors.add(SCRIPT_ENGINE);
+        }
+
+        descriptors.add(SCRIPT_FILE);
+        descriptors.add(SCRIPT_BODY);
+        descriptors.add(MODULES);
+
+        isInitialized.set(true);
+    }
+
+    /**
+     * Determines whether the given path refers to a valid file
+     *
+     * @param path a path to a file
+     * @return true if the path refers to a valid file, false otherwise
+     */
+    protected boolean isFile(final String path) {
+        return path != null && Files.isRegularFile(Paths.get(path));
+    }
+
+    /**
+     * Performs common setup operations when the processor is scheduled to 
run. This method assumes the member
+     * variables associated with properties have been filled.
+     *
+     */
+    public void setup() {
+
+        if (scriptEngineConfiguratorMap.isEmpty()) {
+            ServiceLoader<ScriptEngineConfigurator> configuratorServiceLoader =
+                    ServiceLoader.load(ScriptEngineConfigurator.class);
+            for (ScriptEngineConfigurator configurator : 
configuratorServiceLoader) {
+                String configuratorScriptEngineName = 
configurator.getScriptEngineName();
+                if (configuratorScriptEngineName != null
+                        && 
configuratorScriptEngineName.equals(scriptEngineName)) {
+                    
scriptEngineConfiguratorMap.put(configurator.getScriptEngineName(), 
configurator);
+                }
+            }
+        }
+        setupEngine();
+    }
+
+    /**
+     * Configures the specified script engine. First, the engine is loaded and 
instantiated using the JSR-223
+     * javax.script APIs. Then, if any script configurators have been defined 
for this engine, their init() method is
+     * called, and the configurator is saved for future calls.
+     *
+     * @see org.apache.nifi.processors.script.ScriptEngineConfigurator
+     */
+    protected void setupEngine() {
+        ClassLoader originalContextClassLoader = 
Thread.currentThread().getContextClassLoader();
+        try {
+            ProcessorLog log = getLogger();
+
+            // Need the right classloader when the engine is created. This 
ensures the NAR's execution class loader
+            // (plus the module path) becomes the parent for the script engine
+            ClassLoader scriptEngineModuleClassLoader = 
createScriptEngineModuleClassLoader(modulePath);
+            if (scriptEngineModuleClassLoader != null) {
+                
Thread.currentThread().setContextClassLoader(scriptEngineModuleClassLoader);
+            }
+            scriptEngine = createScriptEngine();
+            ServiceLoader<ScriptEngineConfigurator> configuratorServiceLoader =
+                    ServiceLoader.load(ScriptEngineConfigurator.class);
+            for (ScriptEngineConfigurator configurator : 
configuratorServiceLoader) {
+                String configuratorScriptEngineName = 
configurator.getScriptEngineName();
+                try {
+                    if (configuratorScriptEngineName != null
+                            && 
configuratorScriptEngineName.equalsIgnoreCase(scriptEngineName)) {
+                        configurator.init(scriptEngine, modulePath);
+                        
scriptEngineConfiguratorMap.put(configurator.getScriptEngineName(), 
configurator);
+                    }
+                } catch (ScriptException se) {
+                    log.error("Error initializing script engine configurator 
{}",
+                            new Object[]{configuratorScriptEngineName});
+                    if (log.isDebugEnabled()) {
+                        log.error("Error initializing script engine 
configurator", se);
+                    }
+                }
+            }
+
+        } finally {
+            // Restore original context class loader
+            
Thread.currentThread().setContextClassLoader(originalContextClassLoader);
+        }
+    }
+
+    /**
+     * Provides a ScriptEngine corresponding to the currently selected script 
engine name.
+     * ScriptEngineManager.getEngineByName() doesn't use find 
ScriptEngineFactory.getName(), which
+     * is what we used to populate the list. So just search the list of 
factories until a match is
+     * found, then create and return a script engine.
+     *
+     * @return a Script Engine corresponding to the currently specified name, 
or null if none is found.
+     */
+    protected ScriptEngine createScriptEngine() {
+        //
+        ScriptEngineFactory factory = 
scriptEngineFactoryMap.get(scriptEngineName);
+        if (factory == null) {
+            return null;
+        }
+        return factory.getScriptEngine();
+    }
+
+    /**
+     * Creates a classloader to be used by the selected script engine and the 
provided script file. This
+     * classloader has this class's classloader as a parent (versus the 
current thread's context
+     * classloader) and also adds the specified module directory to the 
classpath. This enables scripts
+     * to use other scripts, modules, etc. without having to build them into 
the scripting NAR.
+     * If the parameter is null or empty, this class's classloader is returned
+     *
+     * @param modulePath The path to a directory containing modules to be used 
by the script(s)
+     */
+    protected ClassLoader createScriptEngineModuleClassLoader(String 
modulePath) {
+        URLClassLoader newModuleClassLoader = null;
+        ClassLoader thisClassLoader = this.getClass().getClassLoader();
+        if (StringUtils.isEmpty(modulePath)) {
+            return thisClassLoader;
+        }
+        try {
+            newModuleClassLoader =
+                    new URLClassLoader(
+                            new URL[]{new File(modulePath).toURI().toURL()}, 
thisClassLoader);
+        } catch (MalformedURLException mue) {
+            getLogger().error("Couldn't find modules directory at " + 
modulePath, mue);
+        }
+        return newModuleClassLoader;
+    }
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ExecuteScript.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ExecuteScript.java
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ExecuteScript.java
new file mode 100644
index 0000000..36765ea
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ExecuteScript.java
@@ -0,0 +1,213 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.script;
+
+import org.apache.commons.io.IOUtils;
+import org.apache.nifi.annotation.behavior.DynamicProperty;
+import org.apache.nifi.annotation.behavior.TriggerSerially;
+import org.apache.nifi.annotation.lifecycle.OnStopped;
+import org.apache.nifi.components.PropertyDescriptor;
+import org.apache.nifi.logging.ProcessorLog;
+import org.apache.nifi.annotation.lifecycle.OnScheduled;
+import org.apache.nifi.annotation.documentation.CapabilityDescription;
+import org.apache.nifi.annotation.documentation.Tags;
+import org.apache.nifi.processor.ProcessContext;
+import org.apache.nifi.processor.ProcessSession;
+import org.apache.nifi.processor.ProcessSessionFactory;
+import org.apache.nifi.processor.Relationship;
+import org.apache.nifi.processor.exception.ProcessException;
+import org.apache.nifi.processor.util.StandardValidators;
+
+import javax.script.Bindings;
+import javax.script.ScriptContext;
+import javax.script.ScriptException;
+import javax.script.SimpleBindings;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+@TriggerSerially
+@Tags({"script", "execute", "groovy", "python", "jython", "jruby", "ruby", 
"javascript", "js", "lua", "luaj"})
+@CapabilityDescription("Experimental - Executes a script given the flow file 
and a process session.  The script is responsible for "
+        + "handling the incoming flow file (transfer to SUCCESS or remove, 
e.g.) as well as any flow files created by "
+        + "the script. If the handling is incomplete or incorrect, the session 
will be rolled back. Experimental: "
+        + "Impact of sustained usage not yet verified.")
+@DynamicProperty(
+        name = "A script engine property to update",
+        value = "The value to set it to",
+        supportsExpressionLanguage = true,
+        description = "Updates a script engine property specified by the 
Dynamic Property's key with the value "
+                + "specified by the Dynamic Property's value")
+public class ExecuteScript extends AbstractScriptProcessor {
+
+    private String scriptToRun = null;
+
+    /**
+     * Returns the valid relationships for this processor.
+     *
+     * @return a Set of Relationships supported by this processor
+     */
+    @Override
+    public Set<Relationship> getRelationships() {
+        final Set<Relationship> relationships = new HashSet<>();
+        relationships.add(REL_SUCCESS);
+        relationships.add(REL_FAILURE);
+        return Collections.unmodifiableSet(relationships);
+    }
+
+    /**
+     * Returns a list of property descriptors supported by this processor. The 
list always includes properties such as
+     * script engine name, script file name, script body name, script 
arguments, and an external module path. If the
+     * scripted processor also defines supported properties, those are added 
to the list as well.
+     *
+     * @return a List of PropertyDescriptor objects supported by this processor
+     */
+    @Override
+    protected List<PropertyDescriptor> getSupportedPropertyDescriptors() {
+        synchronized (isInitialized) {
+            if (!isInitialized.get()) {
+                createResources();
+            }
+        }
+
+        return Collections.unmodifiableList(descriptors);
+    }
+
+    /**
+     * Returns a PropertyDescriptor for the given name. This is for the user 
to be able to define their own properties
+     * which will be available as variables in the script
+     *
+     * @param propertyDescriptorName used to lookup if any property 
descriptors exist for that name
+     * @return a PropertyDescriptor object corresponding to the specified 
dynamic property name
+     */
+    @Override
+    protected PropertyDescriptor getSupportedDynamicPropertyDescriptor(final 
String propertyDescriptorName) {
+        return new PropertyDescriptor.Builder()
+                .name(propertyDescriptorName)
+                .required(false)
+                .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+                .expressionLanguageSupported(true)
+                .dynamic(true)
+                .build();
+    }
+
+
+    /**
+     * Performs setup operations when the processor is scheduled to run. This 
includes evaluating the processor's
+     * properties, as well as reloading the script (from file or the "Script 
Body" property)
+     *
+     * @param context the context in which to perform the setup operations
+     */
+    @OnScheduled
+    public void setup(final ProcessContext context) {
+        scriptEngineName = context.getProperty(SCRIPT_ENGINE).getValue();
+        scriptPath = 
context.getProperty(SCRIPT_FILE).evaluateAttributeExpressions().getValue();
+        scriptBody = context.getProperty(SCRIPT_BODY).getValue();
+        modulePath = 
context.getProperty(MODULES).evaluateAttributeExpressions().getValue();
+        super.setup();
+        scriptToRun = scriptBody;
+
+        try {
+            if (scriptToRun == null && scriptPath != null) {
+                scriptToRun = IOUtils.toString(new 
FileInputStream(scriptPath));
+            }
+        } catch (IOException ioe) {
+            throw new ProcessException(ioe);
+        }
+
+    }
+
+    /**
+     * Evaluates the given script body (or file) using the current session, 
context, and flowfile. The script
+     * evaluation expects a FlowFile to be returned, in which case it will 
route the FlowFile to success. If a script
+     * error occurs, the original FlowFile will be routed to failure. If the 
script succeeds but does not return a
+     * FlowFile, the original FlowFile will be routed to no-flowfile
+     *
+     * @param context        the current process context
+     * @param sessionFactory provides access to a {@link 
ProcessSessionFactory}, which
+     *                       can be used for accessing FlowFiles, etc.
+     * @throws ProcessException if the scripted processor's onTrigger() method 
throws an exception
+     */
+    @Override
+    public void onTrigger(ProcessContext context, ProcessSessionFactory 
sessionFactory) throws ProcessException {
+        synchronized (isInitialized) {
+            if (!isInitialized.get()) {
+                createResources();
+            }
+        }
+        ProcessorLog log = getLogger();
+        ProcessSession session = sessionFactory.createSession();
+        try {
+
+            try {
+                Bindings bindings = 
scriptEngine.getBindings(ScriptContext.ENGINE_SCOPE);
+                if (bindings == null) {
+                    bindings = new SimpleBindings();
+                }
+                bindings.put("session", session);
+                bindings.put("context", context);
+                bindings.put("log", log);
+                bindings.put("REL_SUCCESS", REL_SUCCESS);
+                bindings.put("REL_FAILURE", REL_FAILURE);
+
+                // Find the user-added properties and set them on the script
+                for (Map.Entry<PropertyDescriptor, String> property : 
context.getProperties().entrySet()) {
+                    if (property.getKey().isDynamic()) {
+                        // Add the dynamic property bound to its full 
PropertyValue to the script engine
+                        if (property.getValue() != null) {
+                            bindings.put(property.getKey().getName(), 
context.getProperty(property.getKey()));
+                        }
+                    }
+                }
+
+                scriptEngine.setBindings(bindings, ScriptContext.ENGINE_SCOPE);
+
+                // Execute any engine-specific configuration before the script 
is evaluated
+                ScriptEngineConfigurator configurator =
+                        scriptEngineConfiguratorMap.get(scriptEngineName);
+
+                // Evaluate the script with the configurator (if it exists) or 
the engine
+                if (configurator != null) {
+                    configurator.eval(scriptEngine, scriptToRun, modulePath);
+                } else {
+                    scriptEngine.eval(scriptToRun);
+                }
+
+                // Commit this session for the user. This plus the outermost 
catch statement mimics the behavior
+                // of AbstractProcessor. This class doesn't extend 
AbstractProcessor in order to share a base
+                // class with InvokeScriptedProcessor
+                session.commit();
+            } catch (ScriptException e) {
+                throw new ProcessException(e);
+            }
+        } catch (final Throwable t) {
+            // Mimic AbstractProcessor behavior here
+            getLogger().error("{} failed to process due to {}; rolling back 
session", new Object[]{this, t});
+            session.rollback(true);
+            throw t;
+        }
+    }
+
+    @OnStopped
+    public void stop() {
+        scriptEngine = null;
+    }
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/InvokeScriptedProcessor.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/InvokeScriptedProcessor.java
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/InvokeScriptedProcessor.java
new file mode 100644
index 0000000..ed7d23b
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/InvokeScriptedProcessor.java
@@ -0,0 +1,554 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.script;
+
+import org.apache.commons.io.IOUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.nifi.annotation.behavior.DynamicProperty;
+import org.apache.nifi.annotation.documentation.CapabilityDescription;
+import org.apache.nifi.annotation.documentation.SeeAlso;
+import org.apache.nifi.annotation.documentation.Tags;
+import org.apache.nifi.annotation.lifecycle.OnScheduled;
+import org.apache.nifi.annotation.lifecycle.OnStopped;
+import org.apache.nifi.components.PropertyDescriptor;
+import org.apache.nifi.components.ValidationContext;
+import org.apache.nifi.components.ValidationResult;
+import org.apache.nifi.controller.ControllerServiceLookup;
+import org.apache.nifi.logging.ProcessorLog;
+import org.apache.nifi.processor.ProcessContext;
+import org.apache.nifi.processor.ProcessSessionFactory;
+import org.apache.nifi.processor.Processor;
+import org.apache.nifi.processor.ProcessorInitializationContext;
+import org.apache.nifi.processor.Relationship;
+import org.apache.nifi.processor.exception.ProcessException;
+import org.apache.nifi.processor.util.StandardValidators;
+import org.apache.nifi.util.file.monitor.SynchronousFileWatcher;
+
+import javax.script.Invocable;
+import javax.script.ScriptException;
+import java.io.FileInputStream;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+import java.util.concurrent.Executors;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.atomic.AtomicBoolean;
+import java.util.concurrent.atomic.AtomicReference;
+import java.util.concurrent.locks.Lock;
+import java.util.concurrent.locks.ReentrantLock;
+
+@Tags({"script", "invoke", "groovy", "python", "jython", "jruby", "ruby", 
"javascript", "js", "lua", "luaj"})
+@CapabilityDescription("Experimental - Invokes a script engine for a Processor 
defined in the given script. The script must define "
+        + "a valid class that implements the Processor interface, and it must 
set a variable 'processor' to an instance of "
+        + "the class. Processor methods such as onTrigger() will be delegated 
to the scripted Processor instance. Also any "
+        + "Relationships or PropertyDescriptors defined by the scripted 
processor will be added to the configuration dialog.  "
+        + "Experimental: Impact of sustained usage not yet verified.")
+@DynamicProperty(name = "A script engine property to update", value = "The 
value to set it to", supportsExpressionLanguage = true,
+        description = "Updates a script engine property specified by the 
Dynamic Property's key with the value specified by the Dynamic Property's 
value")
+@SeeAlso({ExecuteScript.class})
+public class InvokeScriptedProcessor extends AbstractScriptProcessor {
+
+    private final AtomicReference<Processor> processor = new 
AtomicReference<>();
+    private final AtomicReference<Collection<ValidationResult>> 
validationResults =
+            new AtomicReference<>((Collection<ValidationResult>) new 
ArrayList<ValidationResult>());
+
+    private final Lock lock = new ReentrantLock();
+    private SynchronousFileWatcher scriptWatcher;
+
+    private ScheduledExecutorService reloadService = null;
+
+    private AtomicBoolean scriptNeedsReload = new AtomicBoolean(true);
+
+    /**
+     * Creates the resources needed by this processor. An attempt is made to 
also initialize the scripted processor,
+     * but unless the properties (such as script engine name and script file 
path) have already been specified, the
+     * script will not yet have been evaluated, so the script's initialize() 
method will not be called.
+     */
+    protected void createResources() {
+
+        // Set up script file reloader service. This checks to see if the 
script file has changed, and if so, tries
+        // to reload it
+        if (reloadService == null) {
+            reloadService = Executors.newScheduledThreadPool(1);
+
+            // monitor the script if configured for changes
+            reloadService.scheduleWithFixedDelay(new Runnable() {
+                @Override
+                public void run() {
+                    try {
+                        final boolean hasLock = lock.tryLock();
+
+                        // if a property is changing we don't need to reload 
this iteration
+                        if (hasLock) {
+                            try {
+                                if (scriptWatcher != null && 
scriptWatcher.checkAndReset()) {
+                                    if (isFile(scriptPath)) {
+                                        // reload the actual script
+                                        final boolean reloaded = 
reloadScriptFile(scriptPath);
+
+                                        // log the script was reloaded
+                                        if (reloaded) {
+                                            getLogger().info("The configured 
script has been successfully reloaded.");
+                                        }
+                                    }
+                                }
+                            } finally {
+                                lock.unlock();
+                            }
+                        }
+                    } catch (final Throwable t) {
+                        final ProcessorLog logger = getLogger();
+                        final String message = "Unable to reload configured 
script Processor: " + t;
+
+                        logger.error(message);
+                        if (logger.isDebugEnabled()) {
+                            logger.error(message, t);
+                        }
+                    }
+                }
+            }, 30, 10, TimeUnit.SECONDS);
+        }
+
+        super.createResources();
+    }
+
+    /**
+     * Returns the valid relationships for this processor. SUCCESS and FAILURE 
are always returned, and if the script
+     * processor has defined additional relationships, those will be added as 
well.
+     *
+     * @return a Set of Relationships supported by this processor
+     */
+    @Override
+    public Set<Relationship> getRelationships() {
+        final Set<Relationship> relationships = new HashSet<>();
+        final Processor instance = processor.get();
+        if (instance != null) {
+            try {
+                relationships.addAll(instance.getRelationships());
+            } catch (final Throwable t) {
+                final ProcessorLog logger = getLogger();
+                final String message = "Unable to get relationships from 
scripted Processor: " + t;
+
+                logger.error(message);
+                if (logger.isDebugEnabled()) {
+                    logger.error(message, t);
+                }
+            }
+        } else {
+            // Return defaults for now
+            relationships.add(REL_SUCCESS);
+            relationships.add(REL_FAILURE);
+        }
+        return Collections.unmodifiableSet(relationships);
+    }
+
+    /**
+     * Returns a list of property descriptors supported by this processor. The 
list always includes properties such as
+     * script engine name, script file name, script body name, script 
arguments, and an external module path. If the
+     * scripted processor also defines supported properties, those are added 
to the list as well.
+     *
+     * @return a List of PropertyDescriptor objects supported by this processor
+     */
+    @Override
+    protected List<PropertyDescriptor> getSupportedPropertyDescriptors() {
+
+        synchronized (isInitialized) {
+            if (!isInitialized.get()) {
+                createResources();
+            }
+        }
+        List<PropertyDescriptor> supportedPropertyDescriptors = new 
ArrayList<>();
+        supportedPropertyDescriptors.addAll(descriptors);
+
+        final Processor instance = processor.get();
+        if (instance != null) {
+            try {
+                final List<PropertyDescriptor> instanceDescriptors = 
instance.getPropertyDescriptors();
+                if (instanceDescriptors != null) {
+                    supportedPropertyDescriptors.addAll(instanceDescriptors);
+                }
+            } catch (final Throwable t) {
+                final ProcessorLog logger = getLogger();
+                final String message = "Unable to get property descriptors 
from Processor: " + t;
+
+                logger.error(message);
+                if (logger.isDebugEnabled()) {
+                    logger.error(message, t);
+                }
+            }
+        }
+
+        return Collections.unmodifiableList(supportedPropertyDescriptors);
+    }
+
+    /**
+     * Returns a PropertyDescriptor for the given name. This is for the user 
to be able to define their own properties
+     * which will be available as variables in the script
+     *
+     * @param propertyDescriptorName used to lookup if any property 
descriptors exist for that name
+     * @return a PropertyDescriptor object corresponding to the specified 
dynamic property name
+     */
+    @Override
+    protected PropertyDescriptor getSupportedDynamicPropertyDescriptor(final 
String propertyDescriptorName) {
+        return new PropertyDescriptor.Builder()
+                .name(propertyDescriptorName)
+                .required(false)
+                .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
+                .expressionLanguageSupported(true)
+                .dynamic(true)
+                .build();
+    }
+
+    /**
+     * Performs setup operations when the processor is scheduled to run. This 
includes evaluating the processor's
+     * properties, as well as reloading the script (from file or the "Script 
Body" property)
+     *
+     * @param context the context in which to perform the setup operations
+     */
+    @OnScheduled
+    public void setup(final ProcessContext context) {
+        scriptEngineName = context.getProperty(SCRIPT_ENGINE).getValue();
+        scriptPath = 
context.getProperty(SCRIPT_FILE).evaluateAttributeExpressions().getValue();
+        scriptBody = context.getProperty(SCRIPT_BODY).getValue();
+        modulePath = 
context.getProperty(MODULES).evaluateAttributeExpressions().getValue();
+        setup();
+    }
+
+    @Override
+    public void setup() {
+        super.setup();
+        if (scriptNeedsReload.get() || processor.get() == null) {
+            if (isFile(scriptPath)) {
+                reloadScriptFile(scriptPath);
+            } else {
+                reloadScriptBody(scriptBody);
+            }
+            scriptNeedsReload.set(false);
+        }
+    }
+
+
+    /**
+     * Handles changes to this processor's properties. If changes are made to 
script- or engine-related properties,
+     * the script will be reloaded.
+     *
+     * @param descriptor of the modified property
+     * @param oldValue   non-null property value (previous)
+     * @param newValue   the new property value or if null indicates the 
property
+     */
+    @Override
+    public void onPropertyModified(final PropertyDescriptor descriptor, final 
String oldValue, final String newValue) {
+        final ProcessorLog logger = getLogger();
+        final Processor instance = processor.get();
+
+        if (SCRIPT_FILE.equals(descriptor)
+                || SCRIPT_BODY.equals(descriptor)
+                || MODULES.equals(descriptor)
+                || SCRIPT_ENGINE.equals(descriptor)) {
+            scriptNeedsReload.set(true);
+        } else {
+            if (instance != null) {
+                // If the script provides a Processor, call its 
onPropertyModified() method
+                try {
+                    instance.onPropertyModified(descriptor, oldValue, 
newValue);
+                } catch (final Exception e) {
+                    final String message = "Unable to invoke 
onPropertyModified from script Processor: " + e;
+                    logger.error(message, e);
+                }
+            }
+        }
+    }
+
+    /**
+     * Reloads the script located at the given path
+     *
+     * @param scriptPath the path to the script file to be loaded
+     * @return true if the script was loaded successfully; false otherwise
+     */
+    private boolean reloadScriptFile(final String scriptPath) {
+        final Collection<ValidationResult> results = new HashSet<>();
+
+        try (final FileInputStream scriptStream = new 
FileInputStream(scriptPath)) {
+            return reloadScript(IOUtils.toString(scriptStream));
+
+        } catch (final Exception e) {
+            final ProcessorLog logger = getLogger();
+            final String message = "Unable to load script: " + e;
+
+            // If the module path has not yet been set, then this script is 
likely being loaded too early and depends
+            // on modules the processor does not yet know about. If this is 
the case, it will be reloaded later on
+            // property change (modules) or when scheduled
+            if (modulePath != null) {
+                logger.error(message, e);
+                results.add(new ValidationResult.Builder()
+                        .subject("ScriptValidation")
+                        .valid(false)
+                        .explanation("Unable to load script due to " + e)
+                        .input(scriptPath)
+                        .build());
+            }
+        }
+
+        // store the updated validation results
+        validationResults.set(results);
+
+        // return whether there was any issues loading the configured script
+        return results.isEmpty();
+    }
+
+    /**
+     * Reloads the script defined by the given string
+     *
+     * @param scriptBody the contents of the script to be loaded
+     * @return true if the script was loaded successfully; false otherwise
+     */
+    private boolean reloadScriptBody(final String scriptBody) {
+        final Collection<ValidationResult> results = new HashSet<>();
+        try {
+            return reloadScript(scriptBody);
+
+        } catch (final Exception e) {
+            final ProcessorLog logger = getLogger();
+            final String message = "Unable to load script: " + e;
+
+            logger.error(message, e);
+            results.add(new ValidationResult.Builder()
+                    .subject("ScriptValidation")
+                    .valid(false)
+                    .explanation("Unable to load script due to " + e)
+                    .input(scriptPath)
+                    .build());
+        }
+
+        // store the updated validation results
+        validationResults.set(results);
+
+        // return whether there was any issues loading the configured script
+        return results.isEmpty();
+    }
+
+    /**
+     * Reloads the script Processor. This must be called within the lock.
+     *
+     * @param scriptBody An input stream associated with the script content
+     * @return Whether the script was successfully reloaded
+     */
+    private boolean reloadScript(final String scriptBody) {
+        // note we are starting here with a fresh listing of validation
+        // results since we are (re)loading a new/updated script. any
+        // existing validation results are not relevant
+        final Collection<ValidationResult> results = new HashSet<>();
+
+        try {
+            // get the engine and ensure its invocable
+            if (scriptEngine instanceof Invocable) {
+                final Invocable invocable = (Invocable) scriptEngine;
+
+                // Find a custom configurator and invoke their eval() method
+                ScriptEngineConfigurator configurator = 
scriptEngineConfiguratorMap.get(scriptEngineName);
+                if (configurator != null) {
+                    configurator.eval(scriptEngine, scriptBody, modulePath);
+                } else {
+                    // evaluate the script
+                    scriptEngine.eval(scriptBody);
+                }
+
+                // get configured processor from the script (if it exists)
+                final Object obj = scriptEngine.get("processor");
+                if (obj != null) {
+                    final ProcessorLog logger = getLogger();
+
+                    try {
+                        // set the logger if the processor wants it
+                        invocable.invokeMethod(obj, "setLogger", logger);
+                    } catch (final NoSuchMethodException nsme) {
+                        if (logger.isDebugEnabled()) {
+                            logger.debug("Configured script Processor does not 
contain a setLogger method.");
+                        }
+                    }
+
+                    // record the processor for use later
+                    final Processor scriptProcessor = 
invocable.getInterface(obj, Processor.class);
+                    processor.set(scriptProcessor);
+
+                    if (scriptProcessor != null) {
+                        try {
+                            scriptProcessor.initialize(new 
ProcessorInitializationContext() {
+                                @Override
+                                public String getIdentifier() {
+                                    return 
InvokeScriptedProcessor.this.getIdentifier();
+                                }
+
+                                @Override
+                                public ProcessorLog getLogger() {
+                                    return logger;
+                                }
+
+                                @Override
+                                public ControllerServiceLookup 
getControllerServiceLookup() {
+                                    return 
InvokeScriptedProcessor.super.getControllerServiceLookup();
+                                }
+                            });
+                        } catch (final Exception e) {
+                            logger.error("Unable to initialize scripted 
Processor: " + e.getLocalizedMessage(), e);
+                            throw new ProcessException(e);
+                        }
+                    }
+                } else {
+                    throw new ScriptException("No processor was defined by the 
script.");
+                }
+            }
+
+        } catch (final Exception ex) {
+            final ProcessorLog logger = getLogger();
+            final String message = "Unable to load script: " + 
ex.getLocalizedMessage();
+
+            logger.error(message, ex);
+            results.add(new ValidationResult.Builder()
+                    .subject("ScriptValidation")
+                    .valid(false)
+                    .explanation("Unable to load script due to " + 
ex.getLocalizedMessage())
+                    .input(scriptPath)
+                    .build());
+        }
+
+        // store the updated validation results
+        validationResults.set(results);
+
+        // return whether there was any issues loading the configured script
+        return results.isEmpty();
+    }
+
+    /**
+     * Invokes the validate() routine provided by the script, allowing for 
custom validation code.
+     * This method assumes there is a valid Processor defined in the script 
and it has been loaded
+     * by the InvokeScriptedProcessor processor
+     *
+     * @param context The validation context to be passed into the custom 
validate method
+     * @return A collection of ValidationResults returned by the custom 
validate method
+     */
+    @Override
+    protected Collection<ValidationResult> customValidate(final 
ValidationContext context) {
+
+        // Verify that exactly one of "script file" or "script body" is set
+        Map<PropertyDescriptor, String> propertyMap = context.getProperties();
+        if (StringUtils.isEmpty(propertyMap.get(SCRIPT_FILE)) == 
StringUtils.isEmpty(propertyMap.get(SCRIPT_BODY))) {
+            Set<ValidationResult> results = new HashSet<>();
+            results.add(new 
ValidationResult.Builder().valid(false).explanation(
+                    "Exactly one of Script File or Script Body must be 
set").build());
+            return results;
+        }
+
+        scriptEngineName = context.getProperty(SCRIPT_ENGINE).getValue();
+        scriptPath = 
context.getProperty(SCRIPT_FILE).evaluateAttributeExpressions().getValue();
+        scriptBody = context.getProperty(SCRIPT_BODY).getValue();
+        modulePath = 
context.getProperty(MODULES).evaluateAttributeExpressions().getValue();
+        setup();
+
+        // Now that InvokeScriptedProcessor is validated, we can call validate 
on the scripted processor
+        final Processor instance = processor.get();
+        final Collection<ValidationResult> currentValidationResults = 
validationResults.get();
+
+        // if there was existing validation errors and the processor loaded 
successfully
+        if (currentValidationResults.isEmpty() && instance != null) {
+            try {
+                // defer to the underlying processor for validation
+                final Collection<ValidationResult> instanceResults = 
instance.validate(context);
+                if (instanceResults != null && instanceResults.size() > 0) {
+                    // return the validation results from the underlying 
instance
+                    return instanceResults;
+                }
+            } catch (final Exception e) {
+                final ProcessorLog logger = getLogger();
+                final String message = "Unable to validate the script 
Processor: " + e;
+                logger.error(message, e);
+
+                // return a new validation message
+                final Collection<ValidationResult> results = new HashSet<>();
+                results.add(new ValidationResult.Builder()
+                        .subject("Validation")
+                        .valid(false)
+                        .explanation("An error occurred calling validate in 
the configured script Processor.")
+                        .input(context.getProperty(SCRIPT_FILE).getValue())
+                        .build());
+                return results;
+            }
+        }
+
+        return currentValidationResults;
+    }
+
+    /**
+     * Invokes the onTrigger() method of the scripted processor. If the script 
failed to reload, the processor yields
+     * until the script can be reloaded successfully. If the scripted 
processor's onTrigger() method throws an
+     * exception, a ProcessException will be thrown. If no processor is 
defined by the script, an error is logged
+     * with the system.
+     *
+     * @param context        provides access to convenience methods for 
obtaining
+     *                       property values, delaying the scheduling of the 
processor, provides
+     *                       access to Controller Services, etc.
+     * @param sessionFactory provides access to a {@link 
ProcessSessionFactory}, which
+     *                       can be used for accessing FlowFiles, etc.
+     * @throws ProcessException if the scripted processor's onTrigger() method 
throws an exception
+     */
+    @Override
+    public void onTrigger(ProcessContext context, ProcessSessionFactory 
sessionFactory) throws ProcessException {
+
+        // Initialize the rest of the processor resources if we have not 
already done so
+        synchronized (isInitialized) {
+            if (!isInitialized.get()) {
+                createResources();
+            }
+        }
+
+        ProcessorLog log = getLogger();
+
+        // ensure the processor (if it exists) is loaded
+        final Processor instance = processor.get();
+
+        // ensure the processor did not fail to reload at some point
+        final Collection<ValidationResult> results = validationResults.get();
+        if (!results.isEmpty()) {
+            log.error(String.format("Unable to run because the Processor is 
not valid: [%s]",
+                    StringUtils.join(results, ", ")));
+            context.yield();
+            return;
+        }
+        if (instance != null) {
+            try {
+                // run the processor
+                instance.onTrigger(context, sessionFactory);
+            } catch (final ProcessException e) {
+                final String message = String.format("An error occurred 
executing the configured Processor [%s]: %s", 
context.getProperty(SCRIPT_FILE).getValue(), e);
+                log.error(message);
+                throw e;
+            }
+        } else {
+            log.error("There is no processor defined by the script");
+        }
+    }
+
+    @OnStopped
+    public void stop() {
+        processor.set(null);
+    }
+}

http://git-wip-us.apache.org/repos/asf/nifi/blob/77ab5d36/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ScriptEngineConfigurator.java
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ScriptEngineConfigurator.java
 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ScriptEngineConfigurator.java
new file mode 100644
index 0000000..5367be0
--- /dev/null
+++ 
b/nifi-nar-bundles/nifi-scripting-bundle/nifi-scripting-processors/src/main/java/org/apache/nifi/processors/script/ScriptEngineConfigurator.java
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.nifi.processors.script;
+
+
+import javax.script.ScriptEngine;
+import javax.script.ScriptException;
+
+/**
+ * This interface describes callback methods used by the 
ExecuteScript/InvokeScript processors to perform
+ * engine-specific tasks at various points in the engine lifecycle.
+ */
+public interface ScriptEngineConfigurator {
+
+    String getScriptEngineName();
+
+    Object init(ScriptEngine engine, String modulePath) throws ScriptException;
+
+    Object eval(ScriptEngine engine, String scriptBody, String modulePath) 
throws ScriptException;
+
+}

Reply via email to