ob-perl.el 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. "Expand BODY according to PARAMS, return the expanded body."
  30. (let ((vars (second (or processed-params (org-babel-process-params params)))))
  31. (concat
  32. (mapconcat ;; define any variables
  33. (lambda (pair)
  34. (format "$%s=%s;"
  35. (car pair)
  36. (org-babel-perl-var-to-perl (cdr pair))))
  37. vars "\n") "\n" (org-babel-trim body) "\n")))
  38. (defun org-babel-execute:perl (body params)
  39. "Execute a block of Perl code with org-babel. This function is
  40. called by `org-babel-execute-src-block'."
  41. (message "executing Perl source code block")
  42. (let* ((processed-params (org-babel-process-params params))
  43. (session (first processed-params))
  44. (vars (second processed-params))
  45. (result-params (third processed-params))
  46. (result-type (fourth processed-params))
  47. (full-body (org-babel-expand-body:perl
  48. body params processed-params)) ;; then the source block body
  49. (session (org-babel-perl-initiate-session session)))
  50. (org-babel-reassemble-table
  51. (org-babel-perl-evaluate session full-body result-type)
  52. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  53. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))))
  54. (defun org-babel-prep-session:perl (session params)
  55. "Prepare SESSION according to the header arguments specified in PARAMS."
  56. (error "Sessions are not supported for Perl."))
  57. ;; helper functions
  58. (defun org-babel-perl-var-to-perl (var)
  59. "Convert an elisp var into a string of perl source code
  60. specifying a var of the same value."
  61. (if (listp var)
  62. (concat "[" (mapconcat #'org-babel-perl-var-to-perl var ", ") "]")
  63. (format "%S" var)))
  64. (defvar org-babel-perl-buffers '(:default . nil))
  65. (defun org-babel-perl-initiate-session (&optional session params)
  66. "Simply return nil, as sessions are not supported by perl"
  67. nil)
  68. (defvar org-babel-perl-wrapper-method
  69. "
  70. sub main {
  71. %s
  72. }
  73. @r = main;
  74. open(o, \">%s\");
  75. print o join(\"\\n\", @r), \"\\n\"")
  76. (defvar org-babel-perl-pp-wrapper-method
  77. nil)
  78. (defun org-babel-perl-evaluate (session body &optional result-type)
  79. "Pass BODY to the Perl process in SESSION. If RESULT-TYPE equals
  80. 'output then return a list of the outputs of the statements in
  81. BODY, if RESULT-TYPE equals 'value then return the value of the
  82. last statement in BODY, as elisp."
  83. (if (not session)
  84. ;; external process evaluation
  85. (save-excursion
  86. (case result-type
  87. (output
  88. (with-temp-buffer
  89. (insert body)
  90. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  91. (org-babel-shell-command-on-region (point-min) (point-max) "perl" 'current-buffer 'replace)
  92. (buffer-string)))
  93. (value
  94. (let* ((tmp-file (make-temp-file "perl-functional-results")) exit-code
  95. (stderr
  96. (with-temp-buffer
  97. (insert
  98. (format
  99. (if (member "pp" result-params)
  100. (error "Pretty-printing not implemented for perl")
  101. org-babel-perl-wrapper-method) body tmp-file))
  102. (setq exit-code
  103. (org-babel-shell-command-on-region
  104. (point-min) (point-max) "perl" nil 'replace (current-buffer)))
  105. (buffer-string))))
  106. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  107. (org-babel-import-elisp-from-file (org-babel-maybe-remote-file tmp-file))))))
  108. ;; comint session evaluation
  109. (error "Sessions are not supported for Perl.")))
  110. (provide 'ob-perl)
  111. ;;; ob-perl.el ends here