org-babel-asymptote.el 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-execute:asymptote (body params)
  47. "Execute a block of Asymptote code with org-babel. This function is
  48. called by `org-babel-execute-src-block'."
  49. (message "executing Asymptote source code block")
  50. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  51. (out-file (cdr (assoc :file params)))
  52. (format (or (and out-file
  53. (string-match ".+\\.\\(.+\\)" out-file)
  54. (match-string 1 out-file))
  55. "pdf"))
  56. (cmdline (cdr (assoc :cmdline params)))
  57. (in-file (make-temp-file "org-babel-asymptote"))
  58. (cmd (concat "asy "
  59. (if out-file
  60. (concat "-globalwrite -f " format " -o " out-file)
  61. "-V")
  62. " " cmdline " " in-file)))
  63. (with-temp-file in-file (insert body))
  64. (message cmd) (shell-command cmd)
  65. out-file))
  66. (defun org-babel-prep-session:asymptote (session params)
  67. (error "Asymptote does not support sessions"))
  68. (provide 'org-babel-asymptote)
  69. ;;; org-babel-asymptote.el ends here