Mercurial > emacs
annotate lisp/cedet/cedet-cscope.el @ 110717:60a469b3a72c
* lisp/gnus/gnus-art.el (gnus-next-page-map): Drop Emacs 20 compat cruft.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 02 Oct 2010 19:07:11 -0700 |
parents | b799d38f522a |
children | 417b1e4d63cd |
rev | line source |
---|---|
105241 | 1 ;;; cedet-cscope.el --- CScope support for CEDET |
2 | |
106815 | 3 ;;; Copyright (C) 2009, 2010 Free Software Foundation, Inc. |
105241 | 4 |
5 ;; Author: Eric M. Ludlam <zappo@gnu.org> | |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
6 ;; Package: cedet |
105241 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software: you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation, either version 3 of the License, or | |
13 ;; (at your option) any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. | |
22 | |
23 ;;; Commentary: | |
24 ;; | |
25 ;; Support using CScope for symbol lookups. | |
26 | |
27 ;;; Code: | |
28 | |
29 (declare-function inversion-check-version "inversion") | |
30 | |
31 (defvar cedet-cscope-min-version "16.0" | |
32 "Minimum version of CScope required.") | |
33 | |
34 (defcustom cedet-cscope-command "cscope" | |
35 "Command name for the CScope executable." | |
36 :type 'string | |
37 :group 'cedet) | |
38 | |
39 (defun cedet-cscope-search (searchtext texttype type scope) | |
40 "Perform a search with CScope, return the created buffer. | |
41 SEARCHTEXT is text to find. | |
42 TEXTTYPE is the type of text, such as 'regexp, 'string, 'tagname, | |
43 'tagregexp, or 'tagcompletions. | |
44 TYPE is the type of search, meaning that SEARCHTEXT is compared to | |
45 filename, tagname (tags table), references (uses of a tag) , or | |
46 symbol (uses of something not in the tag table.) | |
47 SCOPE is the scope of the search, such as 'project or 'subdirs." | |
48 ;; CScope is an interactive program. It uses number flags | |
49 ;; in order to perform command line searches. Useful for this | |
50 ;; tool are: | |
51 ;; | |
52 ;; -0 = Find C symbol | |
53 ;; -1 = Find global definition | |
54 ;; -3 = Find references | |
55 ;; -6 = Find egrep pattern | |
56 ;; -7 = Find file | |
57 (let ((idx (cond ((eq type 'file) | |
58 "-7") | |
59 ;; Non files are symbols and such | |
60 ((eq texttype 'tagname) | |
61 "-1") | |
62 ((eq texttype 'tagregexp) | |
63 "-0") | |
64 ((eq texttype 'tagcompletions) | |
65 (setq searchtext (concat "^" searchtext ".*")) | |
66 "-1") | |
67 ((eq texttype 'regexp) | |
68 "-5") | |
69 (t | |
70 "-3") | |
71 ) | |
72 ) | |
73 ) | |
74 (cedet-cscope-call (list "-d" "-L" idx searchtext)))) | |
75 | |
110526
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
76 (defun cedet-cscope-create (flags) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
77 "Create a CScope database at the current directory. |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
78 FLAGS are additional flags to pass to cscope beyond the |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
79 options -cR." |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
80 (cedet-cscope-call (append (list "-cR") flags))) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
81 |
105241 | 82 (defun cedet-cscope-call (flags) |
83 "Call CScope with the list of FLAGS." | |
84 (let ((b (get-buffer-create "*CEDET CScope*")) | |
85 (cd default-directory) | |
86 ) | |
105799
3fe6da4a95a9
* cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105377
diff
changeset
|
87 (with-current-buffer b |
105241 | 88 (setq default-directory cd) |
89 (erase-buffer)) | |
90 (apply 'call-process cedet-cscope-command | |
91 nil b nil | |
92 flags) | |
93 b)) | |
94 | |
95 (defun cedet-cscope-expand-filename (filename) | |
96 "Expand the FILENAME with CScope. | |
97 Return a fully qualified filename." | |
98 (interactive "sFile: ") | |
105799
3fe6da4a95a9
* cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105377
diff
changeset
|
99 (let* ((ans1 (with-current-buffer |
3fe6da4a95a9
* cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105377
diff
changeset
|
100 (cedet-cscope-call (list "-d" "-L" "-7" filename)) |
105241 | 101 (goto-char (point-min)) |
102 (if (looking-at "[^ \n]*cscope: ") | |
103 (error "CScope not available") | |
104 (split-string (buffer-string) "\n" t)))) | |
105 (ans2 (mapcar (lambda (hit) | |
106 (expand-file-name (car (split-string hit " ")))) | |
107 ans1))) | |
106197
019d906c8f48
* cedet/srecode/map.el (srecode-get-maps):
Chong Yidong <cyd@stupidchicken.com>
parents:
105799
diff
changeset
|
108 (when (called-interactively-p 'interactive) |
105241 | 109 (if ans2 |
110 (if (= (length ans2) 1) | |
111 (message "%s" (car ans2)) | |
112 (message "%s + %d others" (car ans2) | |
113 (length (cdr ans2)))) | |
114 (error "No file found"))) | |
115 ans2)) | |
116 | |
117 (defun cedet-cscope-support-for-directory (&optional dir) | |
118 "Return non-nil if CScope has a support file for DIR. | |
119 If DIR is not supplied, use the current default directory. | |
120 This works by running cscope on a bogus symbol, and looking for | |
121 the error code." | |
110526
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
122 (interactive "DDirectory: ") |
105241 | 123 (save-excursion |
124 (let ((default-directory (or dir default-directory))) | |
125 (set-buffer (cedet-cscope-call (list "-d" "-L" "-7" "moose"))) | |
126 (goto-char (point-min)) | |
110526
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
127 (let ((ans (looking-at "[^ \n]*cscope: "))) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
128 (if (called-interactively-p 'interactive) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
129 (if ans |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
130 (message "No support for CScope in %s" default-directory) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
131 (message "CScope is supported in %s" default-directory)) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
132 (if ans |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
133 nil |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
134 t)))))) |
105241 | 135 |
136 (defun cedet-cscope-version-check (&optional noerror) | |
137 "Check the version of the installed CScope command. | |
138 If optional programatic argument NOERROR is non-nil, then | |
139 instead of throwing an error if CScope isn't available, then | |
140 return nil." | |
141 (interactive) | |
142 (require 'inversion) | |
143 (let ((b (condition-case nil | |
144 (cedet-cscope-call (list "-V")) | |
145 (error nil))) | |
146 (rev nil)) | |
147 (if (not b) | |
148 (progn | |
106197
019d906c8f48
* cedet/srecode/map.el (srecode-get-maps):
Chong Yidong <cyd@stupidchicken.com>
parents:
105799
diff
changeset
|
149 (when (called-interactively-p 'interactive) |
105241 | 150 (message "CScope not found.")) |
151 nil) | |
105799
3fe6da4a95a9
* cedet/srecode/srt-mode.el (semantic-analyze-possible-completions):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105377
diff
changeset
|
152 (with-current-buffer b |
105241 | 153 (goto-char (point-min)) |
154 (re-search-forward "cscope: version \\([0-9.]+\\)" nil t) | |
155 (setq rev (match-string 1)) | |
156 (if (inversion-check-version rev nil cedet-cscope-min-version) | |
157 (if noerror | |
158 nil | |
159 (error "Version of CScope is %s. Need at least %s" | |
160 rev cedet-cscope-min-version)) | |
161 ;; Else, return TRUE, as in good enough. | |
106197
019d906c8f48
* cedet/srecode/map.el (srecode-get-maps):
Chong Yidong <cyd@stupidchicken.com>
parents:
105799
diff
changeset
|
162 (when (called-interactively-p 'interactive) |
105241 | 163 (message "CScope %s - Good enough for CEDET." rev)) |
164 t))))) | |
165 | |
110526
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
166 (defun cedet-cscope-create/update-database (&optional dir) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
167 "Create a CScope database in DIR. |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
168 CScope will automatically choose incremental rebuild if |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
169 there is already a database in DIR." |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
170 (interactive "DDirectory: ") |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
171 (let ((default-directory dir)) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
172 (cedet-cscope-create nil))) |
b150a06c6999
Synch EDE to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
173 |
105241 | 174 (provide 'cedet-cscope) |
175 | |
105377 | 176 ;; arch-tag: 9973f1ad-f13b-4399-bc67-7f488478d78d |
105241 | 177 ;;; cedet-cscope.el ends here |