org-babel-asymptote.el 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ;;; org-babel-asymptote.el --- org-babel functions for asymptote evaluation
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: 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 asymptote source code.
  24. ;;
  25. ;; This differs from most standard languages in that
  26. ;;
  27. ;; 1) there is no such thing as a "session" in asymptote
  28. ;;
  29. ;; 2) we are generally only going to return results of type "file"
  30. ;;
  31. ;; 3) we are adding the "file" and "cmdline" header arguments, if file
  32. ;; is omitted then the -V option is passed to the asy command for
  33. ;; interactive viewing
  34. ;;
  35. ;; 4) there are no variables (at least for now)
  36. ;;; Requirements:
  37. ;; - The asymptote program :: http://asymptote.sourceforge.net/
  38. ;;
  39. ;; - asy-mode :: Major mode for editing asymptote files
  40. ;;; Code:
  41. (require 'org-babel)
  42. (org-babel-add-interpreter "asymptote")
  43. (add-to-list 'org-babel-tangle-langs '("asymptote" "asymptote"))
  44. (defvar org-babel-default-header-args:asymptote '((:results . "file") (:exports . "results"))
  45. "Default arguments to use when evaluating a asymptote source block.")
  46. (defun org-babel-expand-body:asymptote (body params &optional processed-params) body)
  47. (defun org-babel-execute:asymptote (body params)
  48. "Execute a block of Asymptote code with org-babel. This function is
  49. called by `org-babel-execute-src-block'."
  50. (message "executing Asymptote source code block")
  51. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  52. (out-file (cdr (assoc :file params)))
  53. (format (or (and out-file
  54. (string-match ".+\\.\\(.+\\)" out-file)
  55. (match-string 1 out-file))
  56. "pdf"))
  57. (cmdline (cdr (assoc :cmdline params)))
  58. (in-file (make-temp-file "org-babel-asymptote"))
  59. (cmd (concat "asy "
  60. (if out-file
  61. (concat "-globalwrite -f " format " -o " out-file)
  62. "-V")
  63. " " cmdline " " in-file)))
  64. (with-temp-file in-file (insert body))
  65. (message cmd) (shell-command cmd)
  66. out-file))
  67. (defun org-babel-prep-session:asymptote (session params)
  68. (error "Asymptote does not support sessions"))
  69. (provide 'org-babel-asymptote)
  70. ;;; org-babel-asymptote.el ends here