ob-asymptote.el 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. ;;; ob-asymptote.el --- org-babel functions for asymptote evaluation
  2. ;; Copyright (C) 2009-2014 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. (declare-function orgtbl-to-generic "org-table" (table params))
  37. (declare-function org-combine-plists "org" (&rest plists))
  38. (defvar org-babel-tangle-lang-exts)
  39. (add-to-list 'org-babel-tangle-lang-exts '("asymptote" . "asy"))
  40. (defvar org-babel-default-header-args:asymptote
  41. '((:results . "file") (:exports . "results"))
  42. "Default arguments when evaluating an Asymptote source block.")
  43. (defun org-babel-execute:asymptote (body params)
  44. "Execute a block of Asymptote code.
  45. This function is called by `org-babel-execute-src-block'."
  46. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  47. (out-file (cdr (assoc :file params)))
  48. (format (or (and out-file
  49. (string-match ".+\\.\\(.+\\)" out-file)
  50. (match-string 1 out-file))
  51. "pdf"))
  52. (cmdline (cdr (assoc :cmdline params)))
  53. (in-file (org-babel-temp-file "asymptote-"))
  54. (cmd
  55. (concat "asy "
  56. (if out-file
  57. (concat
  58. "-globalwrite -f " format
  59. " -o " (org-babel-process-file-name out-file))
  60. "-V")
  61. " " cmdline
  62. " " (org-babel-process-file-name in-file))))
  63. (with-temp-file in-file
  64. (insert (org-babel-expand-body:generic
  65. body params
  66. (org-babel-variable-assignments:asymptote params))))
  67. (message cmd) (shell-command cmd)
  68. nil)) ;; signal that output has already been written to file
  69. (defun org-babel-prep-session:asymptote (session params)
  70. "Return an error if the :session header argument is set.
  71. Asymptote does not support sessions"
  72. (error "Asymptote does not support sessions"))
  73. (defun org-babel-variable-assignments:asymptote (params)
  74. "Return list of asymptote statements assigning the block's variables."
  75. (mapcar #'org-babel-asymptote-var-to-asymptote
  76. (mapcar #'cdr (org-babel-get-header params :var))))
  77. (defun org-babel-asymptote-var-to-asymptote (pair)
  78. "Convert an elisp value into an Asymptote variable.
  79. The elisp value PAIR is converted into Asymptote code specifying
  80. a variable of the same value."
  81. (let ((var (car pair))
  82. (val (let ((v (cdr pair)))
  83. (if (symbolp v) (symbol-name v) v))))
  84. (cond
  85. ((integerp val)
  86. (format "int %S=%S;" var val))
  87. ((floatp val)
  88. (format "real %S=%S;" var val))
  89. ((stringp val)
  90. (format "string %S=\"%s\";" var val))
  91. ((and (listp val) (not (listp (car val))))
  92. (let* ((type (org-babel-asymptote-define-type val))
  93. (fmt (if (eq 'string type) "\"%s\"" "%s"))
  94. (vect (mapconcat (lambda (e) (format fmt e)) val ", ")))
  95. (format "%s[] %S={%s};" type var vect)))
  96. ((listp val)
  97. (let* ((type (org-babel-asymptote-define-type val))
  98. (fmt (if (eq 'string type) "\"%s\"" "%s"))
  99. (array (mapconcat (lambda (row)
  100. (concat "{"
  101. (mapconcat (lambda (e) (format fmt e))
  102. row ", ")
  103. "}"))
  104. val ",")))
  105. (format "%S[][] %S={%s};" type var array))))))
  106. (defun org-babel-asymptote-define-type (data)
  107. "Determine type of DATA.
  108. DATA is a list. Return type as a symbol.
  109. The type is `string' if any element in DATA is
  110. a string. Otherwise, it is either `real', if some elements are
  111. floats, or `int'."
  112. (let* ((type 'int)
  113. find-type ; for byte-compiler
  114. (find-type
  115. (function
  116. (lambda (row)
  117. (catch 'exit
  118. (mapc (lambda (el)
  119. (cond ((listp el) (funcall find-type el))
  120. ((stringp el) (throw 'exit (setq type 'string)))
  121. ((floatp el) (setq type 'real))))
  122. row))))))
  123. (funcall find-type data) type))
  124. (provide 'ob-asymptote)
  125. ;;; ob-asymptote.el ends here