ob-asymptote.el 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. ;;; ob-asymptote.el --- org-babel functions for asymptote evaluation
  2. ;; Copyright (C) 2009-2015 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. ;;; Commentary:
  18. ;; Org-Babel support for evaluating asymptote source code.
  19. ;;
  20. ;; This differs from most standard languages in that
  21. ;;
  22. ;; 1) there is no such thing as a "session" in asymptote
  23. ;;
  24. ;; 2) we are generally only going to return results of type "file"
  25. ;;
  26. ;; 3) we are adding the "file" and "cmdline" header arguments, if file
  27. ;; is omitted then the -V option is passed to the asy command for
  28. ;; interactive viewing
  29. ;;; Requirements:
  30. ;; - The asymptote program :: http://asymptote.sourceforge.net/
  31. ;;
  32. ;; - asy-mode :: Major mode for editing asymptote files
  33. ;;; Code:
  34. (require 'ob)
  35. (eval-when-compile (require 'cl))
  36. (defvar org-babel-tangle-lang-exts)
  37. (add-to-list 'org-babel-tangle-lang-exts '("asymptote" . "asy"))
  38. (defvar org-babel-default-header-args:asymptote
  39. '((:results . "file") (:exports . "results"))
  40. "Default arguments when evaluating an Asymptote source block.")
  41. (defun org-babel-execute:asymptote (body params)
  42. "Execute a block of Asymptote code.
  43. This function is called by `org-babel-execute-src-block'."
  44. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  45. (out-file (cdr (assoc :file params)))
  46. (format (or (and out-file
  47. (string-match ".+\\.\\(.+\\)" out-file)
  48. (match-string 1 out-file))
  49. "pdf"))
  50. (cmdline (cdr (assoc :cmdline params)))
  51. (in-file (org-babel-temp-file "asymptote-"))
  52. (cmd
  53. (concat "asy "
  54. (if out-file
  55. (concat
  56. "-globalwrite -f " format
  57. " -o " (org-babel-process-file-name out-file))
  58. "-V")
  59. " " cmdline
  60. " " (org-babel-process-file-name in-file))))
  61. (with-temp-file in-file
  62. (insert (org-babel-expand-body:generic
  63. body params
  64. (org-babel-variable-assignments:asymptote params))))
  65. (message cmd) (shell-command cmd)
  66. nil)) ;; signal that output has already been written to file
  67. (defun org-babel-prep-session:asymptote (session params)
  68. "Return an error if the :session header argument is set.
  69. Asymptote does not support sessions"
  70. (error "Asymptote does not support sessions"))
  71. (defun org-babel-variable-assignments:asymptote (params)
  72. "Return list of asymptote statements assigning the block's variables."
  73. (mapcar #'org-babel-asymptote-var-to-asymptote
  74. (mapcar #'cdr (org-babel-get-header params :var))))
  75. (defun org-babel-asymptote-var-to-asymptote (pair)
  76. "Convert an elisp value into an Asymptote variable.
  77. The elisp value PAIR is converted into Asymptote code specifying
  78. a variable of the same value."
  79. (let ((var (car pair))
  80. (val (let ((v (cdr pair)))
  81. (if (symbolp v) (symbol-name v) v))))
  82. (cond
  83. ((integerp val)
  84. (format "int %S=%S;" var val))
  85. ((floatp val)
  86. (format "real %S=%S;" var val))
  87. ((stringp val)
  88. (format "string %S=\"%s\";" var val))
  89. ((and (listp val) (not (listp (car val))))
  90. (let* ((type (org-babel-asymptote-define-type val))
  91. (fmt (if (eq 'string type) "\"%s\"" "%s"))
  92. (vect (mapconcat (lambda (e) (format fmt e)) val ", ")))
  93. (format "%s[] %S={%s};" type var vect)))
  94. ((listp val)
  95. (let* ((type (org-babel-asymptote-define-type val))
  96. (fmt (if (eq 'string type) "\"%s\"" "%s"))
  97. (array (mapconcat (lambda (row)
  98. (concat "{"
  99. (mapconcat (lambda (e) (format fmt e))
  100. row ", ")
  101. "}"))
  102. val ",")))
  103. (format "%S[][] %S={%s};" type var array))))))
  104. (defun org-babel-asymptote-define-type (data)
  105. "Determine type of DATA.
  106. DATA is a list. Return type as a symbol.
  107. The type is `string' if any element in DATA is
  108. a string. Otherwise, it is either `real', if some elements are
  109. floats, or `int'."
  110. (let* ((type 'int)
  111. find-type ; for byte-compiler
  112. (find-type
  113. (function
  114. (lambda (row)
  115. (catch 'exit
  116. (mapc (lambda (el)
  117. (cond ((listp el) (funcall find-type el))
  118. ((stringp el) (throw 'exit (setq type 'string)))
  119. ((floatp el) (setq type 'real))))
  120. row))))))
  121. (funcall find-type data) type))
  122. (provide 'ob-asymptote)
  123. ;;; ob-asymptote.el ends here