script.py 1.1 KB

123456789101112131415161718192021222324252627282930
  1. import subprocess
  2. import os
  3. from core.NeuronModule import NeuronModule, MissingParameterException, InvalidParameterException
  4. class Script(NeuronModule):
  5. def __init__(self, **kwargs):
  6. # get message to spell out loud
  7. super(Script, self).__init__(**kwargs)
  8. self.path = kwargs.get("path", None)
  9. # check parameters
  10. if self._is_parameters_ok():
  11. p = subprocess.Popen(self.path, stdout=subprocess.PIPE, shell=True)
  12. (output, err) = p.communicate()
  13. def _is_parameters_ok(self):
  14. """
  15. Check if received parameters are ok to perform operations in the neuron
  16. :return: true if parameters are ok, raise an exception otherwise
  17. """
  18. if self.path is None:
  19. raise MissingParameterException("You must provide a script path.")
  20. if not os.path.isfile(self.path):
  21. raise InvalidParameterException("Script not found or is not a file.")
  22. if not os.access(self.path, os.X_OK):
  23. raise InvalidParameterException("Script not Executable.")
  24. return True