org-babel-lob.el 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. ;;; org-babel-lob.el --- The Library of Babel: off-the-shelf functions for data analysis and plotting using org-babel
  2. ;; Copyright (C) 2009 Eric Schulte, Dan Davison
  3. ;; Author: Eric Schulte, Dan Davison
  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. ;; See org-babel.org in the parent directory for more information
  24. ;;; Code:
  25. (require 'org-babel)
  26. (require 'org-babel-table)
  27. (defvar org-babel-library-of-babel nil
  28. "Library of source-code blocks. This is an association list.
  29. Populate the library by adding files to `org-babel-lob-files'.")
  30. (defcustom org-babel-lob-files '()
  31. "Files used to populate the `org-babel-library-of-babel'. To
  32. add files to this list use the `org-babel-lob-ingest' command."
  33. :group 'org-babel
  34. :type 'list)
  35. (defun org-babel-lob-ingest (&optional file)
  36. "Add all source-blocks defined in FILE to `org-babel-library-of-babel'."
  37. (interactive "f")
  38. (org-babel-map-source-blocks file
  39. (let* ((info (org-babel-get-src-block-info))
  40. (source-name (intern (fifth info))))
  41. (when source-name
  42. (setq org-babel-library-of-babel
  43. (cons (cons source-name info)
  44. (assq-delete-all source-name org-babel-library-of-babel)))))))
  45. ;; functions for executing lob one-liners
  46. (defvar org-babel-lob-one-liner-regexp "^[ \t]*#\\+lob:[ \t]+\\([^\(\)\n]+\\)\(\\([^\n]*\\)\)[ \t]*\\([^\n]*\\)")
  47. (defun org-babel-lob-execute-maybe ()
  48. "Detect if this is context for a org-babel Library Of Babel
  49. src-block and if so then run the appropriate source block from
  50. the Library."
  51. (interactive)
  52. (let ((info (org-babel-lob-get-info)))
  53. (if (first info) (progn (org-babel-lob-execute info) t) nil)))
  54. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-lob-execute-maybe)
  55. (defun org-babel-lob-get-info ()
  56. "Return the function call supplied on the current Library of
  57. Babel line as a string.
  58. This function is analogous to org-babel-get-src-block-name. For
  59. both functions, after they are called, (match-string 1) matches
  60. the function name, and (match-string 2) matches the function
  61. arguments inside the parentheses. I think perhaps these functions
  62. should be renamed to bring out this similarity, perhaps involving
  63. the word 'call'."
  64. (let ((case-fold-search t))
  65. (save-excursion
  66. (move-beginning-of-line 1)
  67. (if (looking-at org-babel-lob-one-liner-regexp)
  68. (mapcar #'org-babel-clean-text-properties
  69. (list (format "%s(%s)" (match-string 1) (match-string 2))
  70. (match-string 3)))))))
  71. (defun org-babel-lob-execute (info)
  72. (let ((params (org-babel-merge-params
  73. org-babel-default-header-args
  74. (org-babel-parse-header-arguments
  75. (org-babel-clean-text-properties
  76. (concat ":var results=" (mapconcat #'identity info " ")))))))
  77. (org-babel-execute-src-block nil (list "emacs-lisp" "results" params))))
  78. (define-generic-mode org-babel-lob-mode
  79. '("#") nil nil nil nil
  80. "Major mode for fontification of library of babel lines on export")
  81. (provide 'org-babel-lob)
  82. ;;; org-babel-lob.el ends here