org-babel-dot.el 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ;;; org-babel-dot.el --- org-babel functions for dot 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 dot source code.
  24. ;;
  25. ;; For information on dot see http://www.graphviz.org/
  26. ;;
  27. ;; This differs from most standard languages in that
  28. ;;
  29. ;; 1) there is no such thing as a "session" in dot
  30. ;;
  31. ;; 2) we are generally only going to return results of type "file"
  32. ;;
  33. ;; 3) we are adding the "file" and "cmdline" header arguments
  34. ;;
  35. ;; 4) there are no variables (at least for now)
  36. ;;; Code:
  37. (require 'org-babel)
  38. (org-babel-add-interpreter "dot")
  39. (add-to-list 'org-babel-tangle-langs '("dot" "dot"))
  40. (defvar org-babel-default-header-args:dot '((:results . "file") (:exports . "results"))
  41. "Default arguments to use when evaluating a dot source block.")
  42. (defun org-babel-expand-body:dot (body params &optional processed-params) body)
  43. (defun org-babel-execute:dot (body params)
  44. "Execute a block of Dot code with org-babel. This function is
  45. called by `org-babel-execute-src-block'."
  46. (message "executing Dot source code block")
  47. (let ((result-params (split-string (or (cdr (assoc :results params)) "")))
  48. (out-file (cdr (assoc :file params)))
  49. (cmdline (cdr (assoc :cmdline params)))
  50. (cmd (or (cdr (assoc :cmd params)) "dot"))
  51. (in-file (make-temp-file "org-babel-dot")))
  52. (with-temp-file in-file (insert body))
  53. (message (concat cmd " " in-file " " cmdline " -o " out-file))
  54. (shell-command (concat cmd " " in-file " " cmdline " -o " out-file))
  55. out-file))
  56. (defun org-babel-prep-session:dot (session params)
  57. (error "Dot does not support sessions"))
  58. (provide 'org-babel-dot)
  59. ;;; org-babel-dot.el ends here