-
Notifications
You must be signed in to change notification settings - Fork 28
/
pylookup.el
329 lines (267 loc) · 10.9 KB
/
pylookup.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
;;; pylookup.el --- Look up python documents (reference) in Emacs
;; Copyright (C) 2010-2018 Taesoo Kim
;; Author: Taesoo Kim <[email protected]>
;; Maintainer: Taesoo Kim <[email protected]>
;; Created: 19 June 2009
;; Keywords: python,reference,document,help
;; 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.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
(eval-when-compile
(require 'browse-url)
(require 'simple)
(require 'cl)
(require 'ido))
;;=================================================================
;; user options
;;=================================================================
(defvar pylookup-root (file-name-directory load-file-name))
(defvar pylookup-db2-file
(concat pylookup-root "/pylookup2.db")
"Pylookup database file for python2")
(defvar pylookup-db3-file
(concat pylookup-root "/pylookup3.db")
"Pylookup database file for python3")
(defvar pylookup-program
(concat pylookup-root "/pylookup.py")
"Pylookup execution file")
(defvar pylookup-db-file pylookup-db3-file
"Default database to use, if not matched")
(defvar pylookup-search-options nil
"Pylookup search options (see ./pylookup.py -h)")
;;=================================================================
;; internal variables
;;=================================================================
(defvar pylookup-history nil)
(defvar pylookup-cache nil)
(defvar pylookup-return-window-config nil)
(defvar pylookup-temp-buffer-name "*Pylookup Completions*")
(defvar pylookup-mode-map
(let ((map (make-sparse-keymap)))
(define-key map [mouse-1] 'pylookup-mode-lookup-and-leave)
(define-key map [mouse-2] 'pylookup-mode-lookup)
(define-key map "\C-m" 'pylookup-mode-lookup-and-leave)
(define-key map " " 'pylookup-mode-lookup-and-leave)
(define-key map "f" 'pylookup-mode-lookup)
(define-key map "q" 'pylookup-mode-quit-window)
(define-key map "n" 'pylookup-mode-next-line)
(define-key map "j" 'pylookup-mode-next-line)
(define-key map "p" 'pylookup-move-prev-line)
(define-key map "k" 'pylookup-move-prev-line)
(define-key map "/" 'isearch-forward)
(define-key map "v" 'scroll-down)
(define-key map "V" 'scroll-up)
(define-key map "l" 'recenter)
(define-key map "<" 'beginning-of-buffer)
(define-key map ">" 'end-of-buffer)
(define-key map "v" 'scroll-down)
map)
"Keymap for `pylookup-mode-mode'.")
(put 'pylookup-mode 'mode-class 'special)
(defvar pylookup-completing-read
(if (null ido-mode) 'completing-read 'ido-completing-read)
"Ido support with convenience")
;;=================================================================
;; pylookup mode specific interactive functions
;;=================================================================
(defun pylookup-trim (desc n)
"Trim desc string to fit into the length, n"
(if (> (length desc) (- n 2))
(concat (substring desc 0 (- n 2)) "..")
desc))
(defun pylookup-mode ()
"Major mode for output from \\[pylookup-lookup]."
(interactive)
(kill-all-local-variables)
(use-local-map pylookup-mode-map)
(setq major-mode 'pylookup-mode)
(setq mode-name "Pylookup")
(setq buffer-read-only t)
(run-mode-hooks))
(defun pylookup-move-prev-line ()
"Move to previous entry"
(interactive)
(when (< 3 (line-number-at-pos))
(call-interactively 'previous-line)))
(defun pylookup-mode-next-line ()
"Move to next entry"
(interactive)
(when (< (line-number-at-pos)
(- (line-number-at-pos (point-max)) 1))
(call-interactively 'next-line)))
(defun pylookup-mode-lookup-and-leave ()
"Lookup the current line in a browser and leave the completions window."
(interactive)
(call-interactively 'pylookup-mode-lookup)
(pylookup-mode-quit-window))
(defun pylookup-mode-lookup ()
"Lookup the current line in a browser."
(interactive)
(let ((url (get-text-property (point) 'pylookup-target-url)))
(if url
(progn
(beginning-of-line)
(message "Browsing: \"%s\"" url)
(browse-url url))
(error "No URL on this line"))))
(defun pylookup-mode-quit-window ()
"Leave the completions window."
(interactive)
(set-window-configuration pylookup-return-window-config))
;;=================================================================
;; execute pylookup
;;=================================================================
(defun check-shabang (str)
(save-excursion
(goto-char (point-min))
(not (eq (search-forward str (min 50 (point-max)) t) nil))))
(defun get-pylookup-db-file ()
(expand-file-name
(if (check-shabang "python2") pylookup-db2-file
(if (check-shabang "python3")
pylookup-db3-file
pylookup-db-file))))
(defun pylookup-exec-get-cache ()
"Run a pylookup process and get a list of cache (db key)"
(split-string
(with-output-to-string
(call-process pylookup-program nil standard-output nil
"-d" (get-pylookup-db-file)
"-c"))))
(setq testme (file-name-directory load-file-name))
(defun pylookup-exec-lookup (search-term)
"Runs a pylookup process and returns a list of (term, url) pairs."
(mapcar
(lambda (x) (split-string x ";"))
(split-string
(with-output-to-string
(apply 'call-process pylookup-program nil standard-output nil
"-d" (get-pylookup-db-file)
"-l" search-term
"-f" "Emacs"
pylookup-search-options))
"\n" t)))
;;=================================================================
;; interactive user interfaces
;;=================================================================
;;;###autoload
(defun pylookup-lookup (search-term)
"Lookup SEARCH-TERM in the Python HTML indexes."
(interactive
(list
(let ((initial (thing-at-point 'word)))
(funcall pylookup-completing-read
"Search: "
(if pylookup-cache
pylookup-cache
(setq pylookup-cache (pylookup-exec-get-cache)))
nil nil initial 'pylookup-history))
))
(let ((matches (pylookup-exec-lookup search-term)))
(cond
;; 0. No results.
((eq matches nil)
(message "No matches for \"%s\"." search-term))
;; 1. A single result.
((= (length matches) 1)
;; Point the browser at the unique result and get rid of the buffer
(let ((data (car matches)))
(message "Browsing: \"%s\"" (car data))
(browse-url (cadr data))))
;; N. Multiple results.
(t
;; Decorate the temporary buffer lines with appropriate properties for
;; selection.
(let* ((cur-window-conf (current-window-configuration))
(tmpbuf (get-buffer-create pylookup-temp-buffer-name))
(index 0))
(display-buffer tmpbuf)
(pop-to-buffer tmpbuf)
(setq buffer-read-only nil)
(erase-buffer)
;; Insert the text in the buffer
(insert (format "Python index matches for %s:\n\n" search-term))
(dolist (x matches)
;; split like
;; waitpid() (in module os) [lib]
;; --------- -------------- -----
;; =>
;; waitpid (in module os) [lib]
;; api module type
(let* ((tokens (split-string (car x)))
(api (car tokens))
(iter (cdr tokens))
(type (car (last tokens)))
(module ""))
(while (not (or (equal iter nil)
(string= (car iter) type)))
(setq module (concat module " " (car iter)))
(setq iter (cdr iter)))
(incf index)
(insert (format " %03d) %-25s %-30s %10s"
index
(pylookup-trim api 25)
(pylookup-trim module 30)
(pylookup-trim type 10))))
(put-text-property
(line-beginning-position) (line-end-position)
'pylookup-target-url (cadr x))
(insert "\n"))
;; goto first entry
(goto-line 3)
;; turn mode on
(pylookup-mode)
;; highlighting
(font-lock-add-keywords nil `((,(format "\\(%s\\|%s\\|%s\\)"
search-term
(upcase search-term)
(upcase-initials search-term))
1
font-lock-keyword-face prepend)))
(font-lock-add-keywords nil '(("\\<\\(lib\\)"
1
font-lock-constant-face prepend)))
(font-lock-add-keywords nil '(("\\<\\(in module.*)\\)"
1
font-lock-doc-face prepend)))
;; store window configuration
(set (make-local-variable 'pylookup-return-window-config) cur-window-conf)
;; make fit to screen
(shrink-window-if-larger-than-buffer (get-buffer-window tmpbuf)))))))
;;;###autoload
(defun pylookup-set-search-option (option-string)
"Set search option interactively"
(interactive
(list (read-string "Search option: "
(mapconcat 'identity pylookup-search-options " "))))
(setq pylookup-search-options (split-string option-string " ")))
;;;###autoload
(defun pylookup-lookup-at-point ()
"Query the for string with help of word read at point and call `pylookup-lookup'"
(interactive)
(let* ((default-word (thing-at-point 'word))
(default-prompt (concat "Lookup Word "
(if default-word
(concat "(" default-word ")") nil)
": "))
(pylookup-query
(funcall #'(lambda (str)
"Remove Whitespace from beginning and end of a string."
(replace-regexp-in-string "^[ \n\t]*\\(.*?\\)[ \n\t]*$"
"\\1"
str))
(read-string default-prompt nil nil default-word))))
(if (= (length pylookup-query) 0) nil
(pylookup-lookup pylookup-query))))
(provide 'pylookup)
;;; pylookup.el ends here