ob-ditaa.el 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ;;; ob-ditaa.el --- org-babel functions for ditaa evaluation
  2. ;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 7.6
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs 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 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Org-Babel support for evaluating ditaa source code.
  20. ;;
  21. ;; This differs from most standard languages in that
  22. ;;
  23. ;; 1) there is no such thing as a "session" in ditaa
  24. ;;
  25. ;; 2) we are generally only going to return results of type "file"
  26. ;;
  27. ;; 3) we are adding the "file" and "cmdline" header arguments
  28. ;;
  29. ;; 4) there are no variables (at least for now)
  30. ;;; Code:
  31. (require 'ob)
  32. (defvar org-babel-default-header-args:ditaa
  33. '((:results . "file") (:exports . "results") (:java . "-Dfile.encoding=UTF-8"))
  34. "Default arguments for evaluating a ditaa source block.")
  35. (defvar org-ditaa-jar-path)
  36. (defun org-babel-execute:ditaa (body params)
  37. "Execute a block of Ditaa code with org-babel.
  38. This function is called by `org-babel-execute-src-block'."
  39. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  40. (out-file ((lambda (el)
  41. (or el
  42. (error
  43. "ditaa code block requires :file header argument")))
  44. (cdr (assoc :file params))))
  45. (cmdline (cdr (assoc :cmdline params)))
  46. (java (cdr (assoc :java params)))
  47. (in-file (org-babel-temp-file "ditaa-"))
  48. (cmd (concat "java " java " -jar "
  49. (shell-quote-argument
  50. (expand-file-name org-ditaa-jar-path))
  51. " " cmdline
  52. " " (org-babel-process-file-name in-file)
  53. " " (org-babel-process-file-name out-file))))
  54. (unless (file-exists-p org-ditaa-jar-path)
  55. (error "Could not find ditaa.jar at %s" org-ditaa-jar-path))
  56. (with-temp-file in-file (insert body))
  57. (message cmd) (shell-command cmd)
  58. nil)) ;; signal that output has already been written to file
  59. (defun org-babel-prep-session:ditaa (session params)
  60. "Return an error because ditaa does not support sessions."
  61. (error "Ditaa does not support sessions"))
  62. (provide 'ob-ditaa)
  63. ;; arch-tag: 492cd006-07d9-4fac-bef6-5bb60b48842e
  64. ;;; ob-ditaa.el ends here