ob-asymptote.el 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. ;;; ob-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. ;;; Requirements:
  35. ;; - The asymptote program :: http://asymptote.sourceforge.net/
  36. ;;
  37. ;; - asy-mode :: Major mode for editing asymptote files
  38. ;;; Code:
  39. (require 'ob)
  40. (org-babel-add-interpreter "asymptote")
  41. (add-to-list 'org-babel-tangle-langs '("asymptote" "asymptote"))
  42. (defvar org-babel-default-header-args:asymptote
  43. '((:results . "file") (:exports . "results"))
  44. "Default arguments to use when evaluating a asymptote source block.")
  45. (defun org-babel-expand-body:asymptote (body params &optional processed-params)
  46. (let ((vars (second (or processed-params
  47. (org-babel-process-params params)))))
  48. (concat (mapconcat 'org-babel-asymptote-var-to-asymptote vars "\n")
  49. "\n" body "\n")))
  50. (defun org-babel-execute:asymptote (body params)
  51. "Execute a block of Asymptote code with org-babel. This function is
  52. called by `org-babel-execute-src-block'."
  53. (message "executing Asymptote source code block")
  54. (let* ((processed-params (org-babel-process-params params))
  55. (result-params (split-string (or (cdr (assoc :results params)) "")))
  56. (out-file (cdr (assoc :file params)))
  57. (format (or (and out-file
  58. (string-match ".+\\.\\(.+\\)" out-file)
  59. (match-string 1 out-file))
  60. "pdf"))
  61. (cmdline (cdr (assoc :cmdline params)))
  62. (in-file (make-temp-file "org-babel-asymptote"))
  63. (cmd (concat "asy "
  64. (if out-file
  65. (concat "-globalwrite -f " format " -o " out-file)
  66. "-V")
  67. " " cmdline " " in-file)))
  68. (with-temp-file in-file
  69. (insert (org-babel-expand-body:asymptote body params processed-params)))
  70. (message cmd) (shell-command cmd)
  71. out-file))
  72. (defun org-babel-prep-session:asymptote (session params)
  73. (error "Asymptote does not support sessions"))
  74. (defun org-babel-asymptote-var-to-asymptote (pair)
  75. "Convert an elisp val into a string of asymptote code specifying a var
  76. of the same value."
  77. (let ((var (car pair))
  78. (val (if (symbolp (cdr pair))
  79. (symbol-name (cdr pair))
  80. (cdr pair))))
  81. (cond
  82. ((integerp val)
  83. (format "int %S=%S;" var val))
  84. ((floatp val)
  85. (format "real %S=%S;" var val))
  86. ((stringp val)
  87. (format "string %S=\"%s\";" var val))
  88. ((listp val)
  89. (let* ((dimension-2-p (not (null (cdr val))))
  90. (dim (if dimension-2-p "[][]" "[]"))
  91. (type (org-babel-asymptote-define-type val))
  92. (array (org-babel-asymptote-table-to-array
  93. val
  94. (if dimension-2-p '(:lstart "{" :lend "}," :llend "}")))))
  95. (format "%S%s %S=%s;" type dim var array))))))
  96. (defun org-babel-asymptote-table-to-array (table params)
  97. "Convert values of an elisp table into a string of an asymptote array.
  98. Empty cells are ignored."
  99. (labels ((atom-to-string (table)
  100. (cond
  101. ((null table) '())
  102. ((not (listp (car table)))
  103. (cons (if (and (stringp (car table))
  104. (not (string= (car table) "")))
  105. (format "\"%s\"" (car table))
  106. (format "%s" (car table)))
  107. (atom-to-string (cdr table))))
  108. (t
  109. (cons (atom-to-string (car table))
  110. (atom-to-string (cdr table))))))
  111. ;; Remove any empty row
  112. (fix-empty-lines (table)
  113. (delq nil (mapcar (lambda (l) (delq "" l)) table))))
  114. (orgtbl-to-generic
  115. (fix-empty-lines (atom-to-string table))
  116. (org-combine-plists '(:hline nil :sep "," :tstart "{" :tend "}") params))))
  117. (defun org-babel-asymptote-define-type (data)
  118. "Determine type of DATA. DATA is a list.
  119. Type symbol is returned as 'symbol. The type is usually the type
  120. of the first atom encountered, except for arrays of int where
  121. every cell must be of int type."
  122. (labels ((anything-but-int (el)
  123. (cond
  124. ((null el) nil)
  125. ((not (listp (car el)))
  126. (cond
  127. ((floatp (car el)) 'real)
  128. ((stringp (car el)) 'string)
  129. (t
  130. (anything-but-int (cdr el)))))
  131. (t
  132. (or (anything-but-int (car el))
  133. (anything-but-int (cdr el)))))))
  134. (or (anything-but-int data) 'int)))
  135. (provide 'ob-asymptote)
  136. ;;; ob-asymptote.el ends here