-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathob-rec.el
59 lines (47 loc) · 1.92 KB
/
ob-rec.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; ob-rec.el --- org-babel functions for recutils evaluation
;; Copyright (C) 2011 Jose E. Marchesi
;; Author: Jose E. Marchesi
;; Keywords: literate programming
;; Homepage: http://www.gnu.org/software/recutils
;; This file is NOT part of GNU Emacs.
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful, 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.
;;; Commentary:
;; Org-Babel support for evaluating recsel queries and substituing the
;; contained template.
;;; Code:
(require 'ob)
(defvar org-babel-default-header-args:rec
'((:results . "raw") (:exports . "results")))
(defun org-babel-execute:rec (body params)
"Execute a block containing a recsel query.
This function is called by `org-babel-execute-src-block'."
(let* ((in-file ((lambda (el)
(or el
(error
"rec code block requires :data header argument")))
(cdr (assoc :data params))))
(cmdline (cdr (assoc :cmdline params)))
(rec-type (cdr (assoc :type params)))
(fields (cdr (assoc :fields params)))
(cmd (concat "recsel"
(when rec-type (concat " -t " rec-type " "))
" " (expand-file-name in-file)
(when body (concat " -e " "\""
(replace-regexp-in-string "\"" "\\\\\"" body)
"\""))
(when fields (concat " -p " fields " "))
" | rec2csv")))
(with-temp-buffer
(shell-command cmd (current-buffer))
(when (not (equal (point-min) (point-max)))
(org-table-convert-region (point-min) (point-max) '(4)))
(buffer-substring (point-min) (point-max)))))
(provide 'ob-rec)
;; ob-rec.el ends here