-
Notifications
You must be signed in to change notification settings - Fork 23
/
ob-sparql.el
126 lines (107 loc) · 4.47 KB
/
ob-sparql.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
;;; ob-sparql.el --- org-babel functions for SPARQL queries
;; Copyright (C) 2014, 2015 Bjarte Johansen
;; Copyright (C) 2014 Jacek Grzebyta
;; Copyright (C) 2015 Alf Lervåg
;; Author: Bjarte Johansen
;; Keywords: literate programming, reproducible research
;; Homepage: http://www.github.com/ljos/sparql-mode
;; Version: 1.1.2
;; Package-Requires: ((emacs "24.3") (org "9"))
;;; License:
;; 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, 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.
;;
;; You should have received a copy of the GNU General Public License
;; along with SPARQL mode. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Provides a way to evaluate SPARQL queries in org-mode.
;;; Usage:
;; Add to your Emacs config:
;; (org-babel-do-load-languages
;; 'org-babel-load-languages
;; '((sparql . t)))
;;; Code:
(require 'ob)
(require 'sparql-mode)
(declare-function org-table-convert-region "org-table" (beg0 end0 &optional separator))
(declare-function org-table-to-lisp "org-table" (&optional txt))
(defvar org-babel-default-header-args:sparql
`((:url . ,sparql-default-base-url)
(:format . ,sparql-default-format))
"Default arguments for evaluating a SPARQL query block.")
(defvar org-babel-sparql--current-curies nil
"Variable to pass curies from the org buffer to the table results buffer.")
(defun org-babel-execute:sparql (body params)
"Execute a block containing a SPARQL query with org-babel.
This function is called by `org-babel-execute-src-block'."
(message "Executing a SPARQL query block.")
(let ((url (cdr (assoc :url params)))
(format (cdr (assoc :format params)))
(query (org-babel-expand-body:sparql body params))
(org-babel-sparql--current-curies (append org-link-abbrev-alist-local org-link-abbrev-alist)))
(with-temp-buffer
(sparql-execute-query query url format t)
(org-babel-result-cond
(cdr (assoc :result-params params))
(buffer-string)
(if (string-equal "text/csv" format)
(org-babel-sparql-convert-to-table)
(buffer-string))))))
(defun org-babel-sparql--compact-uri (curies uri)
"Compact URI to curie given CURIES."
;; FIXME this is SO badly implemented wow, use a trie or something
(let ((rest curies)
out)
(while rest
(let ((prefix (caar rest))
(namespace (cdar rest)))
(setq rest (cdr rest))
(when (string-prefix-p namespace uri)
(setq rest nil)
(setq out (concat prefix ":" (substring uri (length namespace)))))))
(if out
out
uri)))
(defun org-babel-sparql--table-replace-curies (curies table)
(cl-loop for row in table
collect (cl-loop for cell in row
collect (if (and (stringp cell)
(string-match "^https?:" cell))
(org-babel-sparql--compact-uri curies cell)
cell))))
(defun org-babel-sparql-convert-to-table ()
"Convert the results buffer to an org-table."
(org-table-convert-region (point-min) (point-max) '(4))
(let* ((table (org-table-to-lisp))
(data
(if org-babel-sparql--current-curies
(org-babel-sparql--table-replace-curies
org-babel-sparql--current-curies
(cdr table))
(cdr table))))
(cons (car table) (cons 'hline data))))
(defun org-babel-expand-body:sparql (body params)
"Expand BODY according to PARAMS, returning expanded body.
A variable is marked by the use of '?' or '$'; the marker is not
part of the variable name, thus '?x' and '$x' refer to the same
variable."
(with-temp-buffer
(insert body)
(let ((case-fold-search nil)
(case-replace nil))
(dolist (pair (org-babel--get-vars params))
(goto-char (point-min))
(let ((regexp (concat "[$?]" (regexp-quote (format "%s" (car pair)))))
(replacement (cdr pair)))
(while (re-search-forward regexp nil t)
(replace-match replacement nil nil)))))
(buffer-string)))
(provide 'ob-sparql)
;;; ob-sparql.el ends here