forked from kostafey/ejc-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejc-result-buffer.el
172 lines (144 loc) · 5.93 KB
/
ejc-result-buffer.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
;;; ejc-result-buffer.el
;;; Copyright © 2019 - Kostafey <[email protected]>
;;; 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 2, 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 this program; if not, write to the Free Software Foundation,
;;; Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
;;; Code:
(require 'ejc-lib)
(defvar ejc-results-buffer nil
"The results buffer.")
(defvar ejc-results-buffer-name "*ejc-sql-output*"
"The results buffer name.")
(defvar ejc-result-file-template "ejc-sql-result-%d.txt"
"SQL evaluation results file name template.")
(defvar ejc-result-file-path nil
"The current result file path. Refreshed by any finished SQL evaluation.")
(defcustom ejc-results-path temporary-file-directory
"SQL evaluation result files location."
:group 'ejc-sql
:type 'string)
(defcustom ejc-ring-length 10
"The number of SQL evaluation results to keep."
:group 'ejc-sql
:type 'integer)
(defvar ejc-ring-position 0
"Current SQL evaluation result position in ring.")
(defvar ejc-modes-ring (list)
"List of SQL evaluation result modes.")
(defcustom ejc-modes-ring-file (expand-file-name
"ejc-modes-ring.el"
ejc-results-path)
"Previous SQL evaluation result modes file location."
:group 'ejc-sql
:type 'string)
(defun ejc-update-modes-ring (mode)
"Update SQL evaluation result modes list, persist it in `ejc-modes-ring-file'."
(setf (alist-get ejc-ring-position ejc-modes-ring) mode)
(ejc-save-to-file ejc-modes-ring-file ejc-modes-ring))
(defun ejc-load-modes-ring ()
"Load SQL evaluation result modes list `ejc-modes-ring' var."
(setq ejc-modes-ring
(ejc-load-from-file ejc-modes-ring-file :default (list))))
(defun ejc-get-result-file-path ()
"Get current SQL evaluation result file path."
(expand-file-name (format ejc-result-file-template ejc-ring-position)
ejc-results-path))
(defun ejc-inc-ring-position ()
(setq ejc-ring-position (1+ ejc-ring-position)
ejc-ring-position (if (>= ejc-ring-position ejc-ring-length)
0
ejc-ring-position)))
(defun ejc-dec-ring-position ()
(setq ejc-ring-position (1- ejc-ring-position)
ejc-ring-position (if (< ejc-ring-position 0)
(1- ejc-ring-length)
ejc-ring-position)))
(defun ejc-iterate-ring (inc-or-dec &optional should-exist)
(funcall inc-or-dec)
(if should-exist
(let ((idx 0))
(while (and (not (file-exists-p (ejc-get-result-file-path)))
(if (< idx ejc-ring-length)
t
(progn
(setq ejc-ring-position 0)
nil)))
(setq idx (1+ idx))
(funcall inc-or-dec))))
(setq ejc-result-file-path (ejc-get-result-file-path)))
(defun ejc-next-result-file-path (&optional should-exist)
(ejc-iterate-ring 'ejc-inc-ring-position should-exist))
(defun ejc-prev-result-file-path (&optional should-exist)
(ejc-iterate-ring 'ejc-dec-ring-position should-exist))
(defun ejc-get-output-buffer ()
"Get or create buffer for output SQL evaluation results.
It can be result sets, record affected messages, SQL definition of entities
or error messages."
(when (not (and ejc-results-buffer
(buffer-live-p ejc-results-buffer)))
(setq ejc-results-buffer (get-buffer-create
ejc-results-buffer-name))
(with-current-buffer ejc-results-buffer
(ejc-result-mode)))
ejc-results-buffer)
;;;###autoload
(cl-defun ejc-show-last-result (&key result mode connection-name db)
"Popup buffer with last SQL execution result output."
(interactive)
(let ((output-buffer (ejc-get-output-buffer)))
(set-buffer output-buffer)
(erase-buffer)
(when mode
(ejc-update-modes-ring mode)
(funcall mode))
(ejc-add-connection connection-name db)
(if result
;; SQL evaluation result passed directly to fn
(insert result)
;; SQL evaluation result rendered to file
(insert-file-contents (ejc-get-result-file-path)))
(when (org-table-p) (org-table-align))
(beginning-of-buffer)
(let* ((window (get-buffer-window output-buffer t))
(frame (window-frame window)))
(if (not window)
(display-buffer output-buffer))
(if (not (eq frame (selected-frame)))
(make-frame-visible frame)))))
(cl-defun ejc-show-ring-result (prev-or-next)
(let ((output-buffer (ejc-get-output-buffer)))
(set-buffer output-buffer)
(erase-buffer)
(ejc-add-connection ejc-connection-name ejc-db)
(let ((file-path (funcall prev-or-next t))
(mode (alist-get ejc-ring-position (or ejc-modes-ring
(ejc-load-modes-ring)))))
(if mode
(funcall mode))
(insert-file-contents file-path)
(when (org-table-p) (org-table-align))
(beginning-of-buffer)
(display-buffer output-buffer)
(message file-path))))
;;;###autoload
(cl-defun ejc-show-prev-result ()
"Change `ejc-results-buffer' contents: show previous SQL evaluation result."
(interactive)
(ejc-show-ring-result 'ejc-prev-result-file-path))
;;;###autoload
(cl-defun ejc-show-next-result ()
"Change `ejc-results-buffer' contents: show next SQL evaluation result."
(interactive)
(ejc-show-ring-result 'ejc-next-result-file-path))
(provide 'ejc-result-buffer)
;;; ejc-result-buffer.el ends here