ob-ditaa.el 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ;;; ob-ditaa.el --- org-babel functions for ditaa evaluation
  2. ;; Copyright (C) 2009-2012 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 ditaa source code.
  19. ;;
  20. ;; This differs from most standard languages in that
  21. ;;
  22. ;; 1) there is no such thing as a "session" in ditaa
  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
  27. ;;
  28. ;; 4) there are no variables (at least for now)
  29. ;;; Code:
  30. (require 'ob)
  31. (defvar org-babel-default-header-args:ditaa
  32. '((:results . "file") (:exports . "results") (:java . "-Dfile.encoding=UTF-8"))
  33. "Default arguments for evaluating a ditaa source block.")
  34. (defvar org-ditaa-jar-path)
  35. (defun org-babel-execute:ditaa (body params)
  36. "Execute a block of Ditaa code with org-babel.
  37. This function is called by `org-babel-execute-src-block'."
  38. (let* ((result-params (split-string (or (cdr (assoc :results params)) "")))
  39. (out-file ((lambda (el)
  40. (or el
  41. (error
  42. "ditaa code block requires :file header argument")))
  43. (cdr (assoc :file params))))
  44. (cmdline (cdr (assoc :cmdline params)))
  45. (java (cdr (assoc :java params)))
  46. (in-file (org-babel-temp-file "ditaa-"))
  47. (cmd (concat "java " java " -jar "
  48. (shell-quote-argument
  49. (expand-file-name org-ditaa-jar-path))
  50. " " cmdline
  51. " " (org-babel-process-file-name in-file)
  52. " " (org-babel-process-file-name out-file))))
  53. (unless (file-exists-p org-ditaa-jar-path)
  54. (error "Could not find ditaa.jar at %s" org-ditaa-jar-path))
  55. (with-temp-file in-file (insert body))
  56. (message cmd) (shell-command cmd)
  57. nil)) ;; signal that output has already been written to file
  58. (defun org-babel-prep-session:ditaa (session params)
  59. "Return an error because ditaa does not support sessions."
  60. (error "Ditaa does not support sessions"))
  61. (provide 'ob-ditaa)
  62. ;;; ob-ditaa.el ends here