Browse Source

update script neuron, can now be used with async

nico 8 years ago
parent
commit
68845a3035
3 changed files with 68 additions and 7 deletions
  1. 26 5
      neurons/script/README.md
  2. 41 2
      neurons/script/script.py
  3. 1 0
      neurons/script/tests/test_script.sh

+ 26 - 5
neurons/script/README.md

@@ -6,18 +6,23 @@ This neuron runs a script located on the Kalliope system.
 
 ## Options
 
-| parameter | required | default | choices | comment                             |
-|-----------|----------|---------|---------|-------------------------------------|
-| path      | YES      |         |         | The path of the script to execute.  |
+| parameter | required | default | choices | comment                                                                    |
+|-----------|----------|---------|---------|----------------------------------------------------------------------------|
+| path      | YES      |         |         | The path of the script to execute.                                         |
+| async     | NO       | FALSE   |         | If True, Kalliope will not wait for the end of the execution of the script |
 
 ## Return Values
 
-No returned values
+Values are only returned by the neuron if the async mode is set to `False`.
+
+| Name       | Description                                                                                           | Type   | sample                        |
+|------------|-------------------------------------------------------------------------------------------------------|--------|-------------------------------|
+| output     | The shell output of the command if any. The command "date" will retun "Sun Oct 16 15:50:45 CEST 2016" | string | Sun Oct 16 15:50:45 CEST 2016 |
+| returncode | The returned code of the command. Return 0 if the command was succesfuly exectued, else 1             | int    | 0                             |
 
 ## Synapses example
 
 Simple example : 
-
 ```
   - name: "run-simple-script"
     signals:
@@ -27,8 +32,24 @@ Simple example :
           path: "/path/to/script.sh"    
 ```
 
+If the script can take a long time and you don't want to block the Kalliope process, you can run it in asynchronous mode.
+Keep in mind that you cannot get any returned value with this mode.
+
+```
+  - name: "run-simple-script"
+    signals:
+      - order: "Run the script"
+    neurons:
+      - script:
+          path: "/path/to/script.sh"   
+          async: True
+```
+
 
 ## Notes
 
 > **Note:** Kalliope must have the rights to run the script.
+
 > **Note:** Kalliope can be used to grant access to an user with lower rights ... !
+
+> **Note:** When 'async' flag is used, returned value are lost

+ 41 - 2
neurons/script/script.py

@@ -1,18 +1,57 @@
 import subprocess
 import os
+import threading
 
 from core.NeuronModule import NeuronModule, MissingParameterException, InvalidParameterException
 
 
+class AsyncShell(threading.Thread):
+    """
+    Class used to run an asynchronous Shell command
+
+    .. notes:: Impossible to get the success code of the command
+    """
+    def __init__(self, path):
+        self.stdout = None
+        self.stderr = None
+        self.path = path
+        threading.Thread.__init__(self)
+
+    def run(self):
+        p = subprocess.Popen(self.path,
+                             shell=True,
+                             stdout=subprocess.PIPE,
+                             stderr=subprocess.PIPE)
+
+        self.stdout, self.stderr = p.communicate()
+
+
 class Script(NeuronModule):
     def __init__(self, **kwargs):
         super(Script, self).__init__(**kwargs)
         self.path = kwargs.get("path", None)
+        # get if the user select a blocking command or not
+        self.async = kwargs.get('async', False)
 
         # check parameters
         if self._is_parameters_ok():
-            p = subprocess.Popen(self.path, stdout=subprocess.PIPE, shell=True)
-            (output, err) = p.communicate()
+            # run the command
+            if not self.async:
+                p = subprocess.Popen(self.path, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)
+                (output, err) = p.communicate()
+                self.output = output
+                self.returncode = p.returncode
+                print self.output
+                print self.returncode
+                message = {
+                    "output": self.output,
+                    "returncode": self.returncode
+                }
+                self.say(message)
+
+            else:
+                async_shell = AsyncShell(path=self.path)
+                async_shell.start()
 
     def _is_parameters_ok(self):
         """

+ 1 - 0
neurons/script/tests/test_script.sh

@@ -0,0 +1 @@
+#!/usr/bin/env bash