org-babel-lob.el 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. (require 'org-babel-exp)
  28. (defvar org-babel-library-of-babel nil
  29. "Library of source-code blocks. This is an association list.
  30. Populate the library by adding files to `org-babel-lob-files'.")
  31. (defcustom org-babel-lob-files '()
  32. "Files used to populate the `org-babel-library-of-babel'. To
  33. add files to this list use the `org-babel-lob-ingest' command."
  34. :group 'org-babel
  35. :type 'list)
  36. (defun org-babel-lob-ingest (&optional file)
  37. "Add all source-blocks defined in FILE to `org-babel-library-of-babel'."
  38. (interactive "f")
  39. (org-babel-map-source-blocks file
  40. (let* ((info (org-babel-get-src-block-info))
  41. (source-name (intern (fifth info))))
  42. (when source-name
  43. (setq org-babel-library-of-babel
  44. (cons (cons source-name info)
  45. (assq-delete-all source-name org-babel-library-of-babel)))))))
  46. (defconst org-babel-lob-call-aliases '("lob" "call")
  47. "These can be used interchangeably to call a source block
  48. function. If you change the value of this variable then your
  49. files may become unusable by other org-babel users, and vice
  50. versa.")
  51. (defconst org-babel-lob-one-liner-regexp
  52. (concat "^[ \t]*#\\+\\(?:"
  53. (mapconcat #'regexp-quote org-babel-lob-call-aliases "\\|")
  54. "\\):[ \t]+\\([^\(\)\n]+\\)\(\\([^\n]*\\)\)[ \t]*\\([^\n]*\\)")
  55. "Regexp to match calls to predefined source block functions")
  56. ;; functions for executing lob one-liners
  57. (defun org-babel-lob-execute-maybe ()
  58. "Detect if this is context for a org-babel Library Of Babel
  59. src-block and if so then run the appropriate source block from
  60. the Library."
  61. (interactive)
  62. (let ((info (org-babel-lob-get-info)))
  63. (if (first info) (progn (org-babel-lob-execute info) t) nil)))
  64. (add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-lob-execute-maybe)
  65. (defun org-babel-lob-get-info ()
  66. "Return the function call supplied on the current Library of
  67. Babel line as a string.
  68. This function is analogous to org-babel-get-src-block-name. For
  69. both functions, after they are called, (match-string 1) matches
  70. the function name, and (match-string 2) matches the function
  71. arguments inside the parentheses. I think perhaps these functions
  72. should be renamed to bring out this similarity, perhaps involving
  73. the word 'call'."
  74. (let ((case-fold-search t))
  75. (save-excursion
  76. (move-beginning-of-line 1)
  77. (if (looking-at org-babel-lob-one-liner-regexp)
  78. (mapcar #'org-babel-clean-text-properties
  79. (list (format "%s(%s)" (match-string 1) (match-string 2))
  80. (match-string 3)))))))
  81. (defun org-babel-lob-execute (info)
  82. (let ((params (org-babel-merge-params
  83. org-babel-default-header-args
  84. (org-babel-params-from-properties)
  85. (org-babel-parse-header-arguments
  86. (org-babel-clean-text-properties
  87. (concat ":var results=" (mapconcat #'identity info " ")))))))
  88. ;; (message "lob-params=%S" params) ;; debugging
  89. (org-babel-execute-src-block nil (list "emacs-lisp" "results" params))))
  90. (provide 'org-babel-lob)
  91. ;;; org-babel-lob.el ends here