ob-sqlite.el 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. ;;; ob-sqlite.el --- org-babel functions for sqlite database interaction
  2. ;; Copyright (C) 2010 Free Software Foundation
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs 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 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Org-Babel support for evaluating sqlite source code.
  20. ;;; Code:
  21. (require 'ob)
  22. (defun org-babel-expand-body:sqlite
  23. (body params &optional processed-params) body)
  24. (defvar org-babel-sqlite3-command "sqlite3")
  25. (defun org-babel-execute:sqlite (body params)
  26. "Execute a block of Sqlite code with org-babel. This function is
  27. called by `org-babel-execute-src-block'."
  28. (message "executing Sqlite source code block")
  29. (let ((result-params (split-string (or (cdr (assoc :results params)) "")))
  30. (vars (org-babel-ref-variables params))
  31. (headers-p (equal "yes" (cdr (assoc :colnames params)))))
  32. (with-temp-buffer
  33. (insert
  34. (shell-command-to-string
  35. (format "%s %s -csv %s %S"
  36. org-babel-sqlite3-command
  37. (if headers-p "-header" "")
  38. (cdr (assoc :db params))
  39. (org-babel-sqlite-expand-vars body vars))))
  40. (if (or (member "scalar" result-params)
  41. (member "code" result-params))
  42. (buffer-string)
  43. (org-table-convert-region (point-min) (point-max))
  44. (org-babel-sqlite-table-or-scalar
  45. (org-babel-sqlite-offset-colnames
  46. (org-table-to-lisp) headers-p))))))
  47. (defun org-babel-sqlite-expand-vars (body vars)
  48. "Expand the variables held in VARS in BODY."
  49. (mapc
  50. (lambda (pair)
  51. (setq body (replace-regexp-in-string
  52. (format "\$%s" (car pair))
  53. (format "%S" (cdr pair))
  54. body)))
  55. vars)
  56. body)
  57. (defun org-babel-sqlite-table-or-scalar (result)
  58. "If RESULT looks like a trivial table, then unwrap it."
  59. (if (and (equal 1 (length result))
  60. (equal 1 (length (car result))))
  61. (caar result)
  62. result))
  63. (defun org-babel-sqlite-offset-colnames (table headers-p)
  64. "If HEADERS-P is non-nil then offset the first row as column names."
  65. (if headers-p
  66. (cons (car table) (cons 'hline (cdr table)))
  67. table))
  68. (defun org-babel-prep-session:sqlite (session params)
  69. "Prepare SESSION according to the header arguments specified in PARAMS."
  70. (error "sqlite sessions not yet implemented"))
  71. (provide 'ob-sqlite)
  72. ;; arch-tag: 5c03d7f2-0f72-48b8-bbd1-35aafea248ac
  73. ;;; ob-sqlite.el ends here