run_r_script.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #!/usr/bin/env python
  2. # encoding: utf-8
  3. # Hans-Martin von Gaudecker, 2012
  4. """
  5. Run a R script in the directory specified by **ctx.bldnode**.
  6. For error-catching purposes, keep an own log-file that is destroyed if the
  7. task finished without error. If not, it will show up as rscript_[index].log
  8. in the bldnode directory.
  9. Usage::
  10. ctx(features='run_r_script',
  11. source='some_script.r',
  12. target=['some_table.tex', 'some_figure.eps'],
  13. deps='some_data.csv')
  14. """
  15. import os, sys
  16. from waflib import Task, TaskGen, Logs
  17. R_COMMANDS = ['RTerm', 'R', 'r']
  18. def configure(ctx):
  19. ctx.find_program(R_COMMANDS, var='RCMD', errmsg = """\n
  20. No R executable found!\n\n
  21. If R is needed:\n
  22. 1) Check the settings of your system path.
  23. 2) Note we are looking for R executables called: %s
  24. If yours has a different name, please report to hmgaudecker [at] gmail\n
  25. Else:\n
  26. Do not load the 'run_r_script' tool in the main wscript.\n\n""" % R_COMMANDS)
  27. ctx.env.RFLAGS = 'CMD BATCH --slave'
  28. class run_r_script_base(Task.Task):
  29. """Run a R script."""
  30. run_str = '"${RCMD}" ${RFLAGS} "${SRC[0].abspath()}" "${LOGFILEPATH}"'
  31. shell = True
  32. class run_r_script(run_r_script_base):
  33. """Erase the R overall log file if everything went okay, else raise an
  34. error and print its 10 last lines.
  35. """
  36. def run(self):
  37. ret = run_r_script_base.run(self)
  38. logfile = self.env.LOGFILEPATH
  39. if ret:
  40. mode = 'r'
  41. if sys.version_info.major >= 3:
  42. mode = 'rb'
  43. with open(logfile, mode=mode) as f:
  44. tail = f.readlines()[-10:]
  45. Logs.error("""Running R on %r returned the error %r\n\nCheck the log file %s, last 10 lines\n\n%s\n\n\n""",
  46. self.inputs[0], ret, logfile, '\n'.join(tail))
  47. else:
  48. os.remove(logfile)
  49. return ret
  50. @TaskGen.feature('run_r_script')
  51. @TaskGen.before_method('process_source')
  52. def apply_run_r_script(tg):
  53. """Task generator customising the options etc. to call R in batch
  54. mode for running a R script.
  55. """
  56. # Convert sources and targets to nodes
  57. src_node = tg.path.find_resource(tg.source)
  58. tgt_nodes = [tg.path.find_or_declare(t) for t in tg.to_list(tg.target)]
  59. tsk = tg.create_task('run_r_script', src=src_node, tgt=tgt_nodes)
  60. tsk.env.LOGFILEPATH = os.path.join(tg.bld.bldnode.abspath(), '%s_%d.log' % (os.path.splitext(src_node.name)[0], tg.idx))
  61. # dependencies (if the attribute 'deps' changes, trigger a recompilation)
  62. for x in tg.to_list(getattr(tg, 'deps', [])):
  63. node = tg.path.find_resource(x)
  64. if not node:
  65. tg.bld.fatal('Could not find dependency %r for running %r' % (x, src_node.abspath()))
  66. tsk.dep_nodes.append(node)
  67. Logs.debug('deps: found dependencies %r for running %r', tsk.dep_nodes, src_node.abspath())
  68. # Bypass the execution of process_source by setting the source to an empty list
  69. tg.source = []