ob-perl.el 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. (eval-when-compile (require 'cl))
  23. (add-to-list 'org-babel-tangle-lang-exts '("perl" . "pl"))
  24. (defvar org-babel-default-header-args:perl '())
  25. (defvar org-babel-perl-command "perl"
  26. "Name of command to use for executing perl code.")
  27. (defun org-babel-expand-body:perl (body params &optional processed-params)
  28. "Expand BODY according to PARAMS, return the expanded body."
  29. (let ((vars (nth 1 (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 (nth 0 processed-params))
  43. (vars (nth 1 processed-params))
  44. (result-params (nth 2 processed-params))
  45. (result-type (nth 3 processed-params))
  46. (full-body (org-babel-expand-body:perl
  47. body params processed-params))
  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
  52. (nth 4 processed-params) (cdr (assoc :colnames params)))
  53. (org-babel-pick-name
  54. (nth 5 processed-params) (cdr (assoc :rownames params))))))
  55. (defun org-babel-prep-session:perl (session params)
  56. "Prepare SESSION according to the header arguments specified in PARAMS."
  57. (error "Sessions are not supported for Perl."))
  58. ;; helper functions
  59. (defun org-babel-perl-var-to-perl (var)
  60. "Convert an elisp var into a string of perl source code
  61. specifying a var of the same value."
  62. (if (listp var)
  63. (concat "[" (mapconcat #'org-babel-perl-var-to-perl var ", ") "]")
  64. (format "%S" var)))
  65. (defvar org-babel-perl-buffers '(:default . nil))
  66. (defun org-babel-perl-initiate-session (&optional session params)
  67. "Simply return nil, as sessions are not supported by perl"
  68. nil)
  69. (defvar org-babel-perl-wrapper-method
  70. "
  71. sub main {
  72. %s
  73. }
  74. @r = main;
  75. open(o, \">%s\");
  76. print o join(\"\\n\", @r), \"\\n\"")
  77. (defvar org-babel-perl-pp-wrapper-method
  78. nil)
  79. (defun org-babel-perl-evaluate (session body &optional result-type)
  80. "Pass BODY to the Perl process in SESSION. If RESULT-TYPE equals
  81. 'output then return a list of the outputs of the statements in
  82. BODY, if RESULT-TYPE equals 'value then return the value of the
  83. last statement in BODY, as elisp."
  84. (when session (error "Sessions are not supported for Perl."))
  85. (case result-type
  86. (output (org-babel-eval org-babel-perl-command body))
  87. (value (let ((tmp-file (make-temp-file "org-babel-perl-results-")))
  88. (org-babel-eval
  89. org-babel-python-command
  90. (format org-babel-perl-wrapper-method body tmp-file))
  91. (org-babel-eval-read-file tmp-file)))))
  92. (provide 'ob-perl)
  93. ;; arch-tag: 88ef9396-d857-4dc3-8946-5a72bdfa2337
  94. ;;; ob-perl.el ends here