ob-perl.el 4.6 KB

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