ob-perl.el 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. ;;; ob-perl.el --- org-babel functions for perl evaluation
  2. ;; Copyright (C) 2009 Dan Davison, Eric Schulte
  3. ;; Author: Dan Davison, Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Org-Babel support for evaluating perl source code.
  24. ;;; Code:
  25. (require 'ob)
  26. (org-babel-add-interpreter "perl")
  27. (add-to-list 'org-babel-tangle-langs '("perl" "pl" "#!/usr/bin/env perl"))
  28. (defun org-babel-expand-body:perl (body params &optional processed-params)
  29. (let ((vars (second (or processed-params (org-babel-process-params params)))))
  30. (concat
  31. (mapconcat ;; define any variables
  32. (lambda (pair)
  33. (format "$%s=%s;"
  34. (car pair)
  35. (org-babel-perl-var-to-perl (cdr pair))))
  36. vars "\n") "\n" (org-babel-trim body) "\n")))
  37. (defun org-babel-execute:perl (body params)
  38. "Execute a block of Perl code with org-babel. This function is
  39. called by `org-babel-execute-src-block'."
  40. (message "executing Perl source code block")
  41. (let* ((processed-params (org-babel-process-params params))
  42. (session (first processed-params))
  43. (vars (second processed-params))
  44. (result-params (third processed-params))
  45. (result-type (fourth processed-params))
  46. (full-body (org-babel-expand-body:perl
  47. body params processed-params)) ;; then the source block body
  48. (session (org-babel-perl-initiate-session session)))
  49. (org-babel-reassemble-table
  50. (org-babel-perl-evaluate session full-body result-type)
  51. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  52. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))))
  53. (defun org-babel-prep-session:perl (session params)
  54. "Prepare SESSION according to the header arguments specified in PARAMS."
  55. (error "Sessions are not supported for Perl."))
  56. ;; helper functions
  57. (defun org-babel-perl-var-to-perl (var)
  58. "Convert an elisp var into a string of perl source code
  59. specifying a var of the same value."
  60. (if (listp var)
  61. (concat "[" (mapconcat #'org-babel-perl-var-to-perl var ", ") "]")
  62. (format "%S" var)))
  63. (defvar org-babel-perl-buffers '(:default . nil))
  64. (defun org-babel-perl-initiate-session (&optional session params)
  65. "Simply return nil, as sessions are not supported by perl"
  66. nil)
  67. (defvar org-babel-perl-wrapper-method
  68. "
  69. sub main {
  70. %s
  71. }
  72. @r = main;
  73. open(o, \">%s\");
  74. print o join(\"\\n\", @r), \"\\n\"")
  75. (defvar org-babel-perl-pp-wrapper-method
  76. nil)
  77. (defun org-babel-perl-evaluate (session body &optional result-type)
  78. "Pass BODY to the Perl process in SESSION. If RESULT-TYPE equals
  79. 'output then return a list of the outputs of the statements in
  80. BODY, if RESULT-TYPE equals 'value then return the value of the
  81. last statement in BODY, as elisp."
  82. (if (not session)
  83. ;; external process evaluation
  84. (save-excursion
  85. (case result-type
  86. (output
  87. (with-temp-buffer
  88. (insert body)
  89. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  90. (org-babel-shell-command-on-region (point-min) (point-max) "perl" 'current-buffer 'replace)
  91. (buffer-string)))
  92. (value
  93. (let* ((tmp-file (make-temp-file "perl-functional-results")) exit-code
  94. (stderr
  95. (with-temp-buffer
  96. (insert
  97. (format
  98. (if (member "pp" result-params)
  99. (error "Pretty-printing not implemented for perl")
  100. org-babel-perl-wrapper-method) body tmp-file))
  101. (setq exit-code
  102. (org-babel-shell-command-on-region
  103. (point-min) (point-max) "perl" nil 'replace (current-buffer)))
  104. (buffer-string))))
  105. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  106. (org-babel-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))))))
  107. ;; comint session evaluation
  108. (error "Sessions are not supported for Perl.")))
  109. (provide 'ob-perl)
  110. ;;; ob-perl.el ends here