]> code.delx.au - gnu-emacs-elpa/blob - packages/ada-mode/gnat-inspect.el
eb1c4884500833ccdf623faee569b39b85c3461d
[gnu-emacs-elpa] / packages / ada-mode / gnat-inspect.el
1 ;;; gnat-inspect.el --- minor-mode for navigating sources using the
2 ;;; AdaCore cross reference tool gnatinspect.
3 ;;;
4 ;;; gnatinspect supports Ada and any gcc language that supports the
5 ;;; -fdump-xref switch (which includes C, C++).
6 ;;
7 ;;; Copyright (C) 2013-2015 Free Software Foundation, Inc.
8
9 ;; Author: Stephen Leake <stephen_leake@member.fsf.org>
10 ;; Maintainer: Stephen Leake <stephen_leake@member.fsf.org>
11 ;; Version: 1.0
12
13 ;; This file is part of GNU Emacs.
14
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
19
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27
28 ;;; Usage:
29 ;;
30 ;; M-x gnat-inspect
31
32 (require 'ada-mode) ;; for ada-prj-*, some other things
33 (require 'cl-lib)
34 (require 'compile)
35
36 ;;;;; sessions
37
38 ;; gnatinspect reads the project files and the database at startup,
39 ;; which is noticeably slow for a reasonably sized project. But
40 ;; running queries after startup is fast. So we leave gnatinspect
41 ;; running, and send it new queries via stdin, getting responses via
42 ;; stdout.
43 ;;
44 ;; We maintain a cache of active sessions, one per gnat project.
45
46 (cl-defstruct (gnat-inspect--session)
47 (process nil) ;; running gnatinspect
48 (buffer nil) ;; receives output of gnatinspect
49 (sent-kill-p nil)
50 (closed-p nil))
51
52 (defconst gnat-inspect-buffer-name-prefix " *gnatinspect-")
53
54 (defun gnat-inspect--start-process (session)
55 "Start the session process running gnatinspect."
56 (unless (buffer-live-p (gnat-inspect--session-buffer session))
57 ;; user may have killed buffer
58 (setf (gnat-inspect--session-buffer session) (gnat-run-buffer gnat-inspect-buffer-name-prefix)))
59
60 (with-current-buffer (gnat-inspect--session-buffer session)
61 (let ((process-environment (ada-prj-get 'proc_env)) ;; for GPR_PROJECT_PATH
62
63 ;; WORKAROUND: gnatinspect from gnatcoll-1.6w-20130902 can't handle aggregate projects; M910-032
64 (project-file (file-name-nondirectory
65 (ada-prj-get 'gpr_file))))
66 (erase-buffer); delete any previous messages, prompt
67 (setf (gnat-inspect--session-process session)
68 ;; FIXME: need good error message on bad project file:
69 ;; "can't handle aggregate projects?")
70 (start-process (concat "gnatinspect " (buffer-name))
71 (gnat-inspect--session-buffer session)
72 "gnatinspect"
73 (concat "--project=" project-file)))
74 (set-process-query-on-exit-flag (gnat-inspect--session-process session) nil)
75 (gnat-inspect-session-wait session)
76 )))
77
78 (defun gnat-inspect--make-session ()
79 "Create and return a session for the current project file."
80 (let ((session
81 (make-gnat-inspect--session
82 :buffer (gnat-run-buffer gnat-inspect-buffer-name-prefix))))
83 (gnat-inspect--start-process session)
84 session))
85
86 (defvar gnat-inspect--sessions '()
87 "Assoc list of sessions, indexed by absolute GNAT project file name.")
88
89 (defun gnat-inspect-cached-session ()
90 "Return a session for the current project file, creating it if necessary."
91 (gnat-inspect-ensure-gpr)
92
93 (let* ((session (cdr (assoc ada-prj-current-file gnat-inspect--sessions))))
94 (if session
95 (progn
96 (unless (process-live-p (gnat-inspect--session-process session))
97 (gnat-inspect--start-process session))
98 session)
99 ;; else
100 (prog1
101 (setq session (gnat-inspect--make-session))
102 (setq gnat-inspect--sessions
103 (cl-acons ada-prj-current-file session gnat-inspect--sessions))))
104 ))
105
106 (defun gnat-inspect-show-session-buffer ()
107 (interactive)
108 (pop-to-buffer (gnat-inspect-cached-session)))
109
110 (defconst gnat-inspect-prompt "^>>> $"
111 ;; gnatinspect output ends with this
112 "Regexp matching gnatinspect prompt; indicates previous command is complete.")
113
114 (defun gnat-inspect-session-wait (session)
115 "Wait for the current command to complete."
116 (unless (process-live-p (gnat-inspect--session-process session))
117 (error "gnatinspect process failed"))
118
119 (with-current-buffer (gnat-inspect--session-buffer session)
120 (let ((process (gnat-inspect--session-process session))
121 (search-start (point-min))
122 (wait-count 0))
123 (while (progn
124 ;; process output is inserted before point, so move back over it to search it
125 (goto-char search-start)
126 (not (re-search-forward gnat-inspect-prompt (point-max) 1)));; don't search same text again
127 (setq search-start (point))
128 (message (concat "running gnatinspect ..." (make-string wait-count ?.)))
129 (accept-process-output process 1.0)
130 (setq wait-count (1+ wait-count)))
131 (message (concat "running gnatinspect ... done"))
132 )))
133
134 (defun gnat-inspect-session-send (cmd wait)
135 "Send CMD to gnatinspect session for current project.
136 If WAIT is non-nil, wait for command to complete.
137 Return buffer that holds output."
138 (let ((session (gnat-inspect-cached-session)))
139 (with-current-buffer (gnat-inspect--session-buffer session)
140 (erase-buffer)
141 (process-send-string (gnat-inspect--session-process session)
142 (concat cmd "\n"))
143 (when wait
144 (gnat-inspect-session-wait session))
145 (current-buffer)
146 )))
147
148 (defun gnat-inspect-kill-all-sessions ()
149 (interactive)
150 (let ((count 0))
151 (mapc (lambda (assoc)
152 (let ((session (cdr assoc)))
153 (when (process-live-p (gnat-inspect--session-process session))
154 (setq count (1+ count))
155 (process-send-string (gnat-inspect--session-process session) "exit\n")
156 )))
157 gnat-inspect--sessions)
158 (message "Killed %d sessions" count)
159 ))
160
161 ;;;;; utils
162
163 (defun gnat-inspect-ensure-gpr ()
164 (unless (ada-prj-get 'gpr_file)
165 (error "no gpr file specified")))
166
167 (defconst gnat-inspect-ident-file-regexp
168 ;; Write_Message:C:\Projects\GDS\work_dscovr_release\common\1553\gds-mil_std_1553-utf.ads:252:25
169 ;; Write_Message:/Projects/GDS/work_dscovr_release/common/1553/gds-mil_std_1553-utf.ads:252:25
170 "\\([^:]*\\):\\(\\(?:.:\\\|/\\)[^:]*\\):\\([0123456789]+\\):\\([0123456789]+\\)"
171 "Regexp matching <identifier>:<file>:<line>:<column>")
172
173 (defconst gnat-inspect-ident-file-regexp-alist
174 (list (concat "^" gnat-inspect-ident-file-regexp) 2 3 4)
175 "For compilation-error-regexp-alist, matching `gnatinspect overriding_recursive' output")
176
177 (defconst gnat-inspect-ident-file-type-regexp
178 (concat gnat-inspect-ident-file-regexp " (\\(.*\\))")
179 "Regexp matching <identifier>:<file>:<line>:<column> (<type>)")
180
181 (defconst gnat-inspect-ident-file-scope-regexp-alist
182 ;; RX_Enable:C:\common\1553\gds-hardware-bus_1553-raw_read_write.adb:163:13 (write reference) scope=New_Packet_TX:C:\common\1553\gds-hardware-bus_1553-raw_read_write.adb:97:14
183
184 (list (concat
185 gnat-inspect-ident-file-regexp
186 " (.*) "
187 "scope="
188 gnat-inspect-ident-file-regexp
189 )
190 2 3 4;; file line column
191 ;; 2 ;; type = error
192 ;; nil ;; hyperlink
193 ;; (list 4 'gnat-inspect-scope-secondary-error)
194 )
195 "For compilation-error-regexp-alist, matching `gnatinspect refs' output")
196
197 ;; debugging:
198 ;; in *compilation-gnatinspect-refs*, run
199 ;; (progn (set-text-properties (point-min)(point-max) nil)(compilation-parse-errors (point-min)(point-max) gnat-inspect-ident-file-scope-regexp-alist))
200
201 (defun gnat-inspect-compilation (identifier file line col cmd comp-err)
202 "Run gnatinspect IDENTIFIER:FILE:LINE:COL CMD,
203 set compilation-mode with compilation-error-regexp-alist set to COMP-ERR."
204 (gnat-inspect-ensure-gpr)
205
206 (let ((cmd-1 (format "%s %s:%s:%d:%d" cmd identifier file line col))
207 (result-count 0)
208 file line column)
209 (with-current-buffer (gnat-inspect--session-buffer (gnat-inspect-cached-session))
210 (compilation-mode)
211 (setq buffer-read-only nil)
212 (set (make-local-variable 'compilation-error-regexp-alist) (list comp-err))
213 (gnat-inspect-session-send cmd-1 t)
214 ;; at EOB. gnatinspect returns one line per result
215 (setq result-count (- (line-number-at-pos) 1))
216 (if (fboundp 'font-lock-ensure)
217 (font-lock-ensure)
218 (with-no-warnings (font-lock-fontify-buffer)))
219 ;; font-lock-fontify-buffer applies compilation-message text properties
220 ;; NOTE: Won't be needed in 24.5 any more, since compilation-next-error
221 ;; will apply compilation-message text properties on the fly.
222 ;; IMPROVEME: for some reason, next-error works, but the font
223 ;; colors are not right (no koolaid!)
224 (goto-char (point-min))
225
226 (cl-case result-count
227 (0
228 (error "gnatinspect returned no results"))
229 (1
230 ;; just go there, don't display session-buffer. We have to
231 ;; fetch the compilation-message while in the session-buffer.
232 (let* ((msg (compilation-next-error 0 nil (point-min)))
233 ;; FIXME: Woah! This is messing with very internal details!
234 (loc (compilation--message->loc msg)))
235 (setq file (caar (compilation--loc->file-struct loc))
236 line (caar (cddr (compilation--loc->file-struct loc)))
237 column (1- (compilation--loc->col loc)))
238 ))
239
240 ));; case, with-currrent-buffer
241
242 ;; compilation-next-error-function assumes there is not at error
243 ;; at point-min; work around that by moving forward 0 errors for
244 ;; the first one.
245 (if (> result-count 1)
246 ;; more than one result; display session buffer
247 (next-error 0 t)
248 ;; else don't display
249 (ada-goto-source file line column nil))
250 ))
251
252 (defun gnat-inspect-dist (found-line line found-col col)
253 "Return non-nil if found-line, -col is closer to line, col than min-distance."
254 (+ (abs (- found-line line))
255 (* (abs (- found-col col)) 250)))
256
257 ;;;;; user interface functions
258
259 (defun gnat-inspect-refresh ()
260 "For `ada-xref-refresh-function', using gnatinspect."
261 (interactive)
262 (gnat-inspect-session-send "refresh" t))
263
264 (defun gnat-inspect-other (identifier file line col)
265 "For `ada-xref-other-function', using gnatinspect."
266 (when (eq ?\" (aref identifier 0))
267 ;; gnatinspect wants the quotes stripped
268 (setq col (+ 1 col))
269 (setq identifier (substring identifier 1 (1- (length identifier))))
270 )
271
272 (let ((cmd (format "refs %s:%s:%d:%d" identifier (file-name-nondirectory file) line col))
273 (decl-loc nil)
274 (body-loc nil)
275 (search-type nil)
276 (min-distance (1- (expt 2 29)))
277 (result nil))
278
279 (with-current-buffer (gnat-inspect-session-send cmd t)
280 ;; 'gnatinspect refs' returns a list containing the declaration,
281 ;; the body, and all the references, in no particular order.
282 ;;
283 ;; We search the list, looking for the input location,
284 ;; declaration and body, then return the declaration or body as
285 ;; appropriate.
286 ;;
287 ;; the format of each line is name:file:line:column (type) scope=name:file:line:column
288 ;; 1 2 3 4 5
289 ;;
290 ;; 'type' can be:
291 ;; body
292 ;; declaration
293 ;; full declaration (for a private type)
294 ;; implicit reference
295 ;; reference
296 ;; static call
297 ;;
298 ;; Module_Type:/home/Projects/GDS/work_stephe_2/common/1553/gds-hardware-bus_1553-wrapper.ads:171:9 (full declaration) scope=Wrapper:/home/Projects/GDS/work_stephe_2/common/1553/gds-hardware-bus_1553-wrapper.ads:49:31
299 ;;
300 ;; itc_assert:/home/Projects/GDS/work_stephe_2/common/itc/opsim/itc_dscovr_gdsi/Gds1553/src/Gds1553.cpp:830:9 (reference) scope=Gds1553WriteSubaddress:/home/Projects/GDS/work_stephe_2/common/itc/opsim/itc_dscovr_gdsi/Gds1553/inc/Gds1553.hpp:173:24
301
302 (message "parsing result ...")
303
304 (goto-char (point-min))
305
306 (while (not (eobp))
307 (cond
308 ((looking-at gnat-inspect-ident-file-type-regexp)
309 ;; process line
310 (let* ((found-file (expand-file-name (match-string 2)));; converts Windows to normal
311 (found-line (string-to-number (match-string 3)))
312 (found-col (string-to-number (match-string 4)))
313 (found-type (match-string 5))
314 (dist (gnat-inspect-dist found-line line found-col col))
315 )
316
317 (when (string-equal found-type "declaration")
318 (setq decl-loc (list found-file found-line (1- found-col))))
319
320 (when (or
321 (string-equal found-type "body")
322 (string-equal found-type "full declaration"))
323 (setq body-loc (list found-file found-line (1- found-col))))
324
325 (when
326 ;; In general, we don't know where in the gnatinspect
327 ;; output the search item occurs, so we search for it.
328 ;;
329 ;; We use the same distance algorithm as gnatinspect
330 ;; to allow a fuzzy match on edited code.
331 (and (equal found-file file)
332 (< dist min-distance))
333 (setq min-distance dist)
334 (setq search-type found-type))
335 ))
336
337 (t ;; ignore line
338 ;;
339 ;; This skips GPR_PROJECT_PATH and echoed command at start of buffer.
340 ;;
341 ;; It also skips warning lines. For example,
342 ;; gnatcoll-1.6w-20130902 can't handle the Auto_Text_IO
343 ;; language, because it doesn't use the gprconfig
344 ;; configuration project. That gives lines like:
345 ;;
346 ;; common_text_io.gpr:15:07: language unknown for "gds-hardware-bus_1553-time_tone.ads"
347 ;;
348 ;; There are probably other warnings that might be reported as well.
349 )
350 )
351 (forward-line 1)
352 )
353
354 (cond
355 ((null search-type)
356 (error "gnatinspect did not return other item; refresh?"))
357
358 ((and
359 (string-equal search-type "declaration")
360 body-loc)
361 (setq result body-loc))
362
363 (decl-loc
364 (setq result decl-loc))
365 )
366
367 (when (null result)
368 (error "gnatinspect did not return other item; refresh?"))
369
370 (message "parsing result ... done")
371 result)))
372
373 (defun gnat-inspect-all (identifier file line col)
374 "For `ada-xref-all-function', using gnatinspect."
375 ;; This will in general return a list of references, so we use
376 ;; `compilation-start' to run gnatinspect, so the user can navigate
377 ;; to each result in turn via `next-error'.
378 (gnat-inspect-compilation identifier file line col "refs" 'gnat-inspect-ident-file))
379
380 (defun gnat-inspect-parents (identifier file line col)
381 "For `ada-xref-parent-function', using gnatinspect."
382 (gnat-inspect-compilation identifier file line col "parent_types" 'gnat-inspect-ident-file))
383
384 (defun gnat-inspect-overriding (identifier file line col)
385 "For `ada-xref-overriding-function', using gnatinspect."
386 (gnat-inspect-compilation identifier file line col "overridden_recursive" 'gnat-inspect-ident-file))
387
388 (defun gnat-inspect-overridden-1 (identifier file line col)
389 "For `ada-xref-overridden-function', using gnatinspect."
390 (unless (ada-prj-get 'gpr_file)
391 (error "no gnat project file defined."))
392
393 (when (eq ?\" (aref identifier 0))
394 ;; gnatinspect wants the quotes stripped
395 (setq col (+ 1 col))
396 (setq identifier (substring identifier 1 (1- (length identifier))))
397 )
398
399 (let ((cmd (format "overrides %s:%s:%d:%d" identifier (file-name-nondirectory file) line col))
400 result)
401 (with-current-buffer (gnat-inspect-session-send cmd t)
402
403 (goto-char (point-min))
404 (when (looking-at gnat-inspect-ident-file-regexp)
405 (setq result
406 (list
407 (match-string 2)
408 (string-to-number (match-string 3))
409 (string-to-number (match-string 4)))))
410
411 (when (null result)
412 (error "gnatinspect did not return other item; refresh?"))
413
414 (message "parsing result ... done")
415 result)))
416
417 (defun gnat-inspect-overridden (other-window)
418 "Move to the overridden declaration of the identifier around point.
419 If OTHER-WINDOW (set by interactive prefix) is non-nil, show the
420 buffer in another window."
421 (interactive "P")
422
423 (let ((target
424 (gnat-inspect-overridden-1
425 (thing-at-point 'symbol)
426 (buffer-file-name)
427 (line-number-at-pos)
428 (save-excursion
429 (goto-char (car (bounds-of-thing-at-point 'symbol)))
430 (1+ (current-column)))
431 )))
432
433 (ada-goto-source (nth 0 target)
434 (nth 1 target)
435 (nth 2 target)
436 other-window)
437 ))
438
439 (defun gnat-inspect-goto-declaration (other-window)
440 "Move to the declaration or body of the identifier around point.
441 If at the declaration, go to the body, and vice versa. If at a
442 reference, goto the declaration.
443
444 If OTHER-WINDOW (set by interactive prefix) is non-nil, show the
445 buffer in another window."
446 (interactive "P")
447
448 (let ((target
449 (gnat-inspect-other
450 (thing-at-point 'symbol)
451 (buffer-file-name)
452 (line-number-at-pos)
453 (save-excursion
454 (goto-char (car (bounds-of-thing-at-point 'symbol)))
455 (1+ (current-column)))
456 )))
457
458 (ada-goto-source (nth 0 target)
459 (nth 1 target)
460 (nth 2 target)
461 other-window)
462 ))
463
464 (defvar gnat-inspect-map
465 (let ((map (make-sparse-keymap)))
466 ;; C-c C-i prefix for gnat-inspect minor mode
467
468 (define-key map "\C-c\C-i\C-d" 'gnat-inspect-goto-declaration)
469 (define-key map "\C-c\C-i\C-p" 'ada-build-prompt-select-prj-file)
470 (define-key map "\C-c\C-i\C-q" 'gnat-inspect-refresh)
471 (define-key map "\C-c\C-i\C-r" 'gnat-inspect-all)
472 map
473 ) "Local keymap used for GNAT inspect minor mode.")
474
475 (defvar gnat-inspect-menu (make-sparse-keymap "gnat-inspect"))
476 (easy-menu-define gnat-inspect-menu gnat-inspect-map "Menu keymap for gnat-inspect minor mode"
477 '("gnat-inspect"
478 ["Find and select project ..." ada-build-prompt-select-prj-file t]
479 ["Select project ..." ada-prj-select t]
480 ["Show current project" ada-prj-show t]
481 ["Next compilation error" next-error t]
482 ["Show secondary error" ada-show-secondary-error t]
483 ["Refresh cross reference cache" gnat-inspect-refresh t]
484 ))
485
486 (define-minor-mode gnat-inspect
487 "Minor mode for navigating sources using GNAT cross reference tool.
488 Enable mode if ARG is positive"
489 :initial-value t
490 :lighter " gnat-inspect" ;; mode line
491
492 ;; just enable the menu and keymap
493 )
494
495 ;;;;; support for Ada mode
496
497 (defun ada-gnat-inspect-select-prj ()
498 (setq ada-file-name-from-ada-name 'ada-gnat-file-name-from-ada-name)
499 (setq ada-ada-name-from-file-name 'ada-gnat-ada-name-from-file-name)
500 (setq ada-make-package-body 'ada-gnat-make-package-body)
501
502 (add-hook 'ada-syntax-propertize-hook 'gnatprep-syntax-propertize)
503
504 ;; must be after indentation engine setup, because that resets the
505 ;; indent function list.
506 (add-hook 'ada-mode-hook 'ada-gnat-inspect-setup t)
507
508 (setq ada-xref-refresh-function 'gnat-inspect-refresh)
509 (setq ada-xref-all-function 'gnat-inspect-all)
510 (setq ada-xref-other-function 'gnat-inspect-other)
511 (setq ada-xref-parent-function 'gnat-inspect-parents)
512 (setq ada-xref-all-function 'gnat-inspect-all)
513 (setq ada-xref-overriding-function 'gnat-inspect-overriding)
514 (setq ada-xref-overridden-function 'gnat-inspect-overridden-1)
515 (setq ada-show-xref-tool-buffer 'gnat-inspect-show-session-buffer)
516
517 (add-to-list 'completion-ignored-extensions ".ali") ;; gnat library files, used for cross reference
518 )
519
520 (defun ada-gnat-inspect-deselect-prj ()
521 (setq ada-file-name-from-ada-name nil)
522 (setq ada-ada-name-from-file-name nil)
523 (setq ada-make-package-body nil)
524
525 (setq ada-syntax-propertize-hook (delq 'gnatprep-syntax-propertize ada-syntax-propertize-hook))
526 (setq ada-mode-hook (delq 'ada-gnat-inspect-setup ada-mode-hook))
527
528 (setq ada-xref-other-function nil)
529 (setq ada-xref-parent-function nil)
530 (setq ada-xref-all-function nil)
531 (setq ada-xref-overriding-function nil)
532 (setq ada-xref-overridden-function nil)
533 (setq ada-show-xref-tool-buffer nil)
534
535 (setq completion-ignored-extensions (delete ".ali" completion-ignored-extensions))
536 )
537
538 (defun ada-gnat-inspect-setup ()
539 (when (boundp 'wisi-indent-calculate-functions)
540 (add-to-list 'wisi-indent-calculate-functions 'gnatprep-indent))
541 )
542
543 (defun ada-gnat-inspect ()
544 "Set Ada mode global vars to use gnatinspect."
545 (add-to-list 'ada-prj-parser-alist '("gpr" . gnat-parse-gpr))
546 (add-to-list 'ada-select-prj-xref-tool '(gnat_inspect . ada-gnat-inspect-select-prj))
547 (add-to-list 'ada-deselect-prj-xref-tool '(gnat_inspect . ada-gnat-inspect-deselect-prj))
548
549 ;; no parse-*-xref
550
551 (font-lock-add-keywords 'ada-mode
552 ;; gnatprep preprocessor line
553 (list (list "^[ \t]*\\(#.*\n\\)" '(1 font-lock-type-face t))))
554
555 (add-hook 'ada-gnat-fix-error-hook 'ada-gnat-fix-error)
556 )
557
558 (provide 'gnat-inspect)
559 (provide 'ada-xref-tool)
560
561 (add-to-list 'compilation-error-regexp-alist-alist
562 (cons 'gnat-inspect-ident-file gnat-inspect-ident-file-regexp-alist))
563 (add-to-list 'compilation-error-regexp-alist-alist
564 (cons 'gnat-inspect-ident-file-scope gnat-inspect-ident-file-scope-regexp-alist))
565
566 (unless (and (boundp 'ada-xref-tool)
567 (default-value 'ada-xref-tool))
568 (setq ada-xref-tool 'gnat_inspect))
569
570 (ada-gnat-inspect)
571
572 ;;; end of file