org-babel-ditaa.el 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ;;; org-babel-ditaa.el --- org-babel functions for ditaa 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 ditaa source code.
  24. ;;
  25. ;; This differs from most standard languages in that
  26. ;;
  27. ;; 1) there is no such thing as a "session" in ditaa
  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
  32. ;;
  33. ;; 4) there are no variables (at least for now)
  34. ;;; Code:
  35. (require 'org-babel)
  36. (org-babel-add-interpreter "ditaa")
  37. (add-to-list 'org-babel-tangle-langs '("ditaa" "ditaa"))
  38. (defvar org-babel-default-header-args:ditaa
  39. '((:results . "file") (:exports . "results"))
  40. "Default arguments to use when evaluating a ditaa source block.")
  41. (defun org-babel-expand-body:ditaa (body params &optional processed-params) body)
  42. (defun org-babel-execute:ditaa (body params)
  43. "Execute a block of Ditaa code with org-babel. This function is
  44. called by `org-babel-execute-src-block'."
  45. (message "executing Ditaa source code block")
  46. (let ((result-params (split-string (or (cdr (assoc :results params)) "")))
  47. (out-file (cdr (assoc :file params)))
  48. (cmdline (cdr (assoc :cmdline params)))
  49. (in-file (make-temp-file "org-babel-ditaa")))
  50. (unless (file-exists-p org-ditaa-jar-path)
  51. (error (format "Could not find ditaa.jar at %s" org-ditaa-jar-path)))
  52. (with-temp-file in-file (insert body))
  53. (message (concat "java -jar " org-ditaa-jar-path " " cmdline " " in-file " " out-file))
  54. (shell-command (concat "java -jar " org-ditaa-jar-path " " cmdline " " in-file " " out-file))
  55. out-file))
  56. (defun org-babel-prep-session:ditaa (session params)
  57. (error "Ditaa does not support sessions"))
  58. (provide 'org-babel-ditaa)
  59. ;;; org-babel-ditaa.el ends here