2015-10-26 15:58:34 +00:00
|
|
|
;;; ob-sqlite.el --- Babel Functions for SQLite Databases -*- lexical-binding: t; -*-
|
2010-06-16 16:15:12 +00:00
|
|
|
|
2017-01-06 01:19:23 +00:00
|
|
|
;; Copyright (C) 2010-2017 Free Software Foundation, Inc.
|
2010-06-16 16:15:12 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
|
|
|
;; Homepage: http://orgmode.org
|
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2010-06-16 16:15:12 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2010-06-16 16:15:12 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2010-06-16 16:15:12 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-16 16:15:12 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2010-06-25 16:32:35 +00:00
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
2010-06-16 16:15:12 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating sqlite source code.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
(require 'ob)
|
2010-07-03 02:21:31 +00:00
|
|
|
|
2010-07-03 06:47:58 +00:00
|
|
|
(declare-function org-fill-template "org" (template alist))
|
2010-07-10 00:00:03 +00:00
|
|
|
(declare-function org-table-convert-region "org-table"
|
|
|
|
(beg0 end0 &optional separator))
|
2012-10-02 09:19:29 +00:00
|
|
|
(declare-function orgtbl-to-csv "org-table" (table params))
|
|
|
|
(declare-function org-table-to-lisp "org-table" (&optional txt))
|
2010-06-16 16:15:12 +00:00
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:sqlite '())
|
|
|
|
|
2012-04-10 23:03:37 +00:00
|
|
|
(defvar org-babel-header-args:sqlite
|
|
|
|
'((db . :any)
|
|
|
|
(header . :any)
|
|
|
|
(echo . :any)
|
|
|
|
(bail . :any)
|
|
|
|
(csv . :any)
|
|
|
|
(column . :any)
|
|
|
|
(html . :any)
|
|
|
|
(line . :any)
|
|
|
|
(list . :any)
|
|
|
|
(separator . :any)
|
|
|
|
(nullvalue . :any))
|
2010-07-03 06:47:58 +00:00
|
|
|
"Sqlite specific header args.")
|
|
|
|
|
2010-10-16 03:35:45 +00:00
|
|
|
(defun org-babel-expand-body:sqlite (body params)
|
2010-10-16 03:17:08 +00:00
|
|
|
"Expand BODY according to the values of PARAMS."
|
2010-07-10 00:00:03 +00:00
|
|
|
(org-babel-sqlite-expand-vars
|
2015-10-29 19:26:11 +00:00
|
|
|
body (org-babel--get-vars params)))
|
2010-06-16 16:15:12 +00:00
|
|
|
|
|
|
|
(defvar org-babel-sqlite3-command "sqlite3")
|
|
|
|
|
|
|
|
(defun org-babel-execute:sqlite (body params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Execute a block of Sqlite code with Babel.
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2016-09-22 17:45:15 +00:00
|
|
|
(let ((result-params (split-string (or (cdr (assq :results params)) "")))
|
|
|
|
(db (cdr (assq :db params)))
|
|
|
|
(separator (cdr (assq :separator params)))
|
|
|
|
(nullvalue (cdr (assq :nullvalue params)))
|
|
|
|
(headers-p (equal "yes" (cdr (assq :colnames params))))
|
2010-07-03 06:47:58 +00:00
|
|
|
(others (delq nil (mapcar
|
2016-09-03 00:57:53 +00:00
|
|
|
(lambda (arg) (car (assq arg params)))
|
2010-07-03 06:47:58 +00:00
|
|
|
(list :header :echo :bail :column
|
2015-10-26 15:58:34 +00:00
|
|
|
:csv :html :line :list)))))
|
2012-09-28 15:47:48 +00:00
|
|
|
(unless db (error "ob-sqlite: can't evaluate without a database"))
|
2010-06-16 16:15:12 +00:00
|
|
|
(with-temp-buffer
|
|
|
|
(insert
|
2010-11-10 21:00:53 +00:00
|
|
|
(org-babel-eval
|
2010-07-03 06:47:58 +00:00
|
|
|
(org-fill-template
|
2010-11-10 21:00:53 +00:00
|
|
|
"%cmd %header %separator %nullvalue %others %csv %db "
|
2010-07-03 06:47:58 +00:00
|
|
|
(list
|
|
|
|
(cons "cmd" org-babel-sqlite3-command)
|
|
|
|
(cons "header" (if headers-p "-header" "-noheader"))
|
|
|
|
(cons "separator"
|
|
|
|
(if separator (format "-separator %s" separator) ""))
|
|
|
|
(cons "nullvalue"
|
|
|
|
(if nullvalue (format "-nullvalue %s" nullvalue) ""))
|
|
|
|
(cons "others"
|
|
|
|
(mapconcat
|
|
|
|
(lambda (arg) (format "-%s" (substring (symbol-name arg) 1)))
|
|
|
|
others " "))
|
|
|
|
;; for easy table parsing, default header type should be -csv
|
|
|
|
(cons "csv" (if (or (member :csv others) (member :column others)
|
|
|
|
(member :line others) (member :list others)
|
|
|
|
(member :html others) separator)
|
|
|
|
""
|
|
|
|
"-csv"))
|
2010-11-10 21:00:53 +00:00
|
|
|
(cons "db " db)))
|
|
|
|
;; body of the code block
|
|
|
|
(org-babel-expand-body:sqlite body params)))
|
2012-11-19 01:02:09 +00:00
|
|
|
(org-babel-result-cond result-params
|
|
|
|
(buffer-string)
|
|
|
|
(if (equal (point-min) (point-max))
|
|
|
|
""
|
|
|
|
(org-table-convert-region (point-min) (point-max)
|
|
|
|
(if (or (member :csv others)
|
|
|
|
(member :column others)
|
|
|
|
(member :line others)
|
|
|
|
(member :list others)
|
|
|
|
(member :html others) separator)
|
|
|
|
nil
|
|
|
|
'(4)))
|
|
|
|
(org-babel-sqlite-table-or-scalar
|
|
|
|
(org-babel-sqlite-offset-colnames
|
|
|
|
(org-table-to-lisp) headers-p)))))))
|
2010-06-16 16:15:12 +00:00
|
|
|
|
|
|
|
(defun org-babel-sqlite-expand-vars (body vars)
|
|
|
|
"Expand the variables held in VARS in BODY."
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
;; FIXME: Redundancy with org-babel-sql-expand-vars!
|
2010-06-16 16:15:12 +00:00
|
|
|
(mapc
|
|
|
|
(lambda (pair)
|
2010-07-10 00:00:03 +00:00
|
|
|
(setq body
|
|
|
|
(replace-regexp-in-string
|
2015-09-17 23:08:20 +00:00
|
|
|
(format "$%s" (car pair))
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(let ((val (cdr pair)))
|
|
|
|
(if (listp val)
|
|
|
|
(let ((data-file (org-babel-temp-file "sqlite-data-")))
|
|
|
|
(with-temp-file data-file
|
|
|
|
(insert (orgtbl-to-csv
|
|
|
|
val '(:fmt (lambda (el) (if (stringp el)
|
|
|
|
el
|
|
|
|
(format "%S" el)))))))
|
|
|
|
data-file)
|
|
|
|
(if (stringp val) val (format "%S" val))))
|
2010-07-10 00:00:03 +00:00
|
|
|
body)))
|
2010-06-16 16:15:12 +00:00
|
|
|
vars)
|
|
|
|
body)
|
|
|
|
|
|
|
|
(defun org-babel-sqlite-table-or-scalar (result)
|
|
|
|
"If RESULT looks like a trivial table, then unwrap it."
|
|
|
|
(if (and (equal 1 (length result))
|
|
|
|
(equal 1 (length (car result))))
|
2010-07-03 06:47:58 +00:00
|
|
|
(org-babel-read (caar result))
|
|
|
|
(mapcar (lambda (row)
|
2016-09-25 15:29:06 +00:00
|
|
|
(if (eq 'hline row)
|
2010-07-03 06:47:58 +00:00
|
|
|
'hline
|
2013-03-10 21:34:56 +00:00
|
|
|
(mapcar #'org-babel-string-read row))) result)))
|
2010-06-16 16:15:12 +00:00
|
|
|
|
2010-06-16 20:12:31 +00:00
|
|
|
(defun org-babel-sqlite-offset-colnames (table headers-p)
|
|
|
|
"If HEADERS-P is non-nil then offset the first row as column names."
|
|
|
|
(if headers-p
|
|
|
|
(cons (car table) (cons 'hline (cdr table)))
|
|
|
|
table))
|
|
|
|
|
2015-10-26 15:58:34 +00:00
|
|
|
(defun org-babel-prep-session:sqlite (_session _params)
|
2012-08-13 03:59:44 +00:00
|
|
|
"Raise an error because support for SQLite sessions isn't implemented.
|
2010-07-13 23:20:08 +00:00
|
|
|
Prepare SESSION according to the header arguments specified in PARAMS."
|
2012-08-13 03:59:44 +00:00
|
|
|
(error "SQLite sessions not yet implemented"))
|
2010-06-16 16:15:12 +00:00
|
|
|
|
|
|
|
(provide 'ob-sqlite)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2011-08-15 18:04:38 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-16 16:15:12 +00:00
|
|
|
;;; ob-sqlite.el ends here
|