1 ;;; cc-menus.el --- imenu support for CC Mode
3 ;; Copyright (C) 1985, 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;; 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
7 ;; Authors: 1998- Martin Stjernholm
8 ;; 1992-1999 Barry A. Warsaw
9 ;; 1987 Dave Detlefs and Stewart Clamen
10 ;; 1985 Richard M. Stallman
11 ;; Maintainer: bug-cc-mode@gnu.org
12 ;; Created: 22-Apr-1997 (split from cc-mode.el)
13 ;; Version: See cc-mode.el
14 ;; Keywords: c languages oop
16 ;; This file is part of GNU Emacs.
18 ;; GNU Emacs is free software: you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation, either version 3 of the License, or
21 ;; (at your option) any later version.
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
37 (if (and (boundp 'byte-compile-dest-file
)
38 (stringp byte-compile-dest-file
))
39 (cons (file-name-directory byte-compile-dest-file
) load-path
)
41 (load "cc-bytecomp" nil t
)))
45 ;; The things referenced in imenu, which we don't require.
46 (cc-bytecomp-defvar imenu-case-fold-search
)
47 (cc-bytecomp-defvar imenu-generic-expression
)
48 (cc-bytecomp-defvar imenu-create-index-function
)
49 (cc-bytecomp-defun imenu-progress-message)
53 (defvar cc-imenu-c-prototype-macro-regexp nil
54 "RE matching macro names used to conditionally specify function prototypes.
61 #define _P(x) /*nothing*/
64 int main _P( (int argc, char *argv[]) )
66 A sample value might look like: `\\(_P\\|_PROTO\\)'.")
68 (defvar cc-imenu-c
++-generic-expression
70 ;; Try to match ::operator definitions first. Otherwise `X::operator new ()'
71 ;; will be incorrectly recognised as function `new ()' because the regexps
72 ;; work by backtracking from the end of the definition.
76 "[^" c-alnum
"_:<>~]" ; match any non-identifier char
77 ; (note: this can be `\n')
79 "\\([" c-alnum
"_:<>~]*::\\)?" ; match an operator
81 "\\(()\\|[^(]*\\)" ; special case for `()' operator
84 "[ \t]*([^)]*)[ \t]*[^ \t;]" ; followed by ws, arg list,
85 ; require something other than
86 ; a `;' after the (...) to
87 ; avoid prototypes. Can't
88 ; catch cases with () inside
89 ; the parentheses surrounding
90 ; the parameters. e.g.:
91 ; `int foo(int a=bar()) {...}'
93 ;; Special case to match a line like `main() {}'
94 ;; e.g. no return type, not even on the previous line.
98 "\\([" c-alpha
"_][" c-alnum
"_:<>~]*\\)" ; match function name
99 "[ \t]*(" ; see above, BUT
100 "[ \t]*\\([^ \t(*][^)]*\\)?)" ; the arg list must not start
101 "[ \t]*[^ \t;(]" ; with an asterisk or parentheses
103 ;; General function name regexp
106 "^\\<" ; line MUST start with word char
107 ;; \n added to prevent overflow in regexp matcher.
108 ;; http://lists.gnu.org/archive/html/emacs-pretest-bug/2007-02/msg00021.html
109 "[^()\n]*" ; no parentheses before
110 "[^" c-alnum
"_:<>~]" ; match any non-identifier char
111 "\\([" c-alpha
"_][" c-alnum
"_:<>~]*\\)" ; match function name
112 "\\([ \t\n]\\|\\\\\n\\)*(" ; see above, BUT the arg list
113 "\\([ \t\n]\\|\\\\\n\\)*\\([^ \t\n(*][^)]*\\)?)" ; must not start
114 "\\([ \t\n]\\|\\\\\n\\)*[^ \t\n;(]" ; with an asterisk or parentheses
116 ;; Special case for definitions using phony prototype macros like:
117 ;; `int main _PROTO( (int argc,char *argv[]) )'.
118 ;; This case is only included if cc-imenu-c-prototype-macro-regexp is set.
119 ;; Only supported in c-code, so no `:<>~' chars in function name!
120 ,@(if cc-imenu-c-prototype-macro-regexp
123 "^\\<.*" ; line MUST start with word char
124 "[^" c-alnum
"_]" ; match any non-identifier char
125 "\\([" c-alpha
"_][" c-alnum
"_]*\\)" ; match function name
126 "[ \t]*" ; whitespace before macro name
127 cc-imenu-c-prototype-macro-regexp
128 "[ \t]*(" ; ws followed by first paren.
129 "[ \t]*([^)]*)[ \t]*)[ \t]*[^ \t;]" ; see above
134 "^" ; beginning of line is required
135 "\\(template[ \t]*<[^>]+>[ \t]*\\)?" ; there may be a `template <...>'
136 "\\(class\\|struct\\)[ \t]+"
137 "\\(" ; the string we want to get
138 "[" c-alnum
"_]+" ; class name
139 "\\(<[^>]+>\\)?" ; possibly explicitly specialized
141 "\\([ \t\n]\\|\\\\\n\\)*[:{]"
143 "Imenu generic expression for C++ mode. See `imenu-generic-expression'.")
145 (defvar cc-imenu-c-generic-expression
146 cc-imenu-c
++-generic-expression
147 "Imenu generic expression for C mode. See `imenu-generic-expression'.")
149 (defvar cc-imenu-java-generic-expression
152 "[" c-alpha
"_][\]\[." c-alnum
"_]+[ \t\n\r]+" ; type spec
153 "\\([" c-alpha
"_][" c-alnum
"_]+\\)" ; method name
155 ;; An argument list that is either empty or contains at least
156 ;; two identifiers with only space between them. This avoids
157 ;; matching e.g. "else if (foo)".
158 (concat "([ \t\n\r]*"
159 "\\([\]\[.," c-alnum
"_]+"
161 "[\]\[.," c-alnum
"_]"
162 "[\]\[.," c-alnum
"_ \t\n\r]*"
164 "[.," c-alnum
"_ \t\n\r]*"
167 "Imenu generic expression for Java mode. See `imenu-generic-expression'.")
169 ;; *Warning for cc-mode developers*
171 ;; `cc-imenu-objc-generic-expression' elements depend on
172 ;; `cc-imenu-c++-generic-expression'. So if you change this
173 ;; expression, you need to change following variables,
174 ;; `cc-imenu-objc-generic-expression-*-index',
175 ;; too. `cc-imenu-objc-function' uses these *-index variables, in
176 ;; order to know where the each regexp *group \\(foobar\\)* elements
179 ;; *-index variables are initialized during `cc-imenu-objc-generic-expression'
180 ;; being initialized.
183 ;; Internal variables
184 (defvar cc-imenu-objc-generic-expression-noreturn-index nil
)
185 (defvar cc-imenu-objc-generic-expression-general-func-index nil
)
186 (defvar cc-imenu-objc-generic-expression-proto-index nil
)
187 (defvar cc-imenu-objc-generic-expression-objc-base-index nil
)
189 (defvar cc-imenu-objc-generic-expression
194 ;; > Special case to match a line like `main() {}'
195 ;; > e.g. no return type, not even on the previous line.
196 ;; Pick a token by (match-string 1)
197 (car (cdr (nth 1 cc-imenu-c
++-generic-expression
))) ; -> index += 2
198 (prog2 (setq cc-imenu-objc-generic-expression-noreturn-index
1) "")
200 ;; > General function name regexp
201 ;; Pick a token by (match-string 3)
202 (car (cdr (nth 2 cc-imenu-c
++-generic-expression
))) ; -> index += 5
203 (prog2 (setq cc-imenu-objc-generic-expression-general-func-index
3) "")
204 ;; > Special case for definitions using phony prototype macros like:
205 ;; > `int main _PROTO( (int argc,char *argv[]) )'.
206 ;; Pick a token by (match-string 8)
207 (if cc-imenu-c-prototype-macro-regexp
210 (car (cdr (nth 3 cc-imenu-c
++-generic-expression
))) ; -> index += 1
211 (prog2 (setq cc-imenu-objc-generic-expression-objc-base-index
9) "")
213 (prog2 (setq cc-imenu-objc-generic-expression-objc-base-index
8) "")
215 (prog2 (setq cc-imenu-objc-generic-expression-proto-index
8) "")
218 ;; Pick a token by (match-string 8 or 9)
221 "^[-+][:" c-alnum
"()*_<>\n\t ]*[;{]" ; Methods
223 "^@interface[\t ]+[" c-alnum
"_]+[\t ]*:"
225 "^@interface[\t ]+[" c-alnum
"_]+[\t ]*([" c-alnum
"_]+)"
227 ;; For NSObject, NSProxy and Object... They don't have super class.
228 "^@interface[\t ]+[" c-alnum
"_]+[\t ]*.*$"
230 "^@implementation[\t ]+[" c-alnum
"_]+[\t ]*([" c-alnum
"_]+)"
232 "^@implementation[\t ]+[" c-alnum
"_]+"
234 "^@protocol[\t ]+[" c-alnum
"_]+" "\\)")
235 "Imenu generic expression for ObjC mode. See `imenu-generic-expression'.")
238 ;; Imenu support for objective-c uses functions.
239 (defsubst cc-imenu-objc-method-to-selector
(method)
240 "Return the objc selector style string of METHOD.
242 - perform: (SEL)aSelector withObject: object1 withObject: object2; /* METHOD */
244 -perform:withObject:withObject:withObject: /* selector */"
245 (let ((return "") ; String to be returned
246 (p 0) ; Current scanning position in METHOD
247 (pmax (length method
)) ;
248 char
; Current scanning target
249 (betweenparen 0) ; CHAR is in parentheses.
250 argreq
; An argument is required.
251 inargvar
) ; position of CHAR is in an argument variable.
253 (setq char
(aref method p
)
256 ;; Is CHAR part of a objc token?
257 ((and (not inargvar
) ; Ignore if CHAR is part of an argument variable.
258 (eq 0 betweenparen
) ; Ignore if CHAR is in parentheses.
259 (or (and (<= ?a char
) (<= char ?z
))
260 (and (<= ?A char
) (<= char ?Z
))
261 (and (<= ?
0 char
) (<= char ?
9))
266 (setq return
(concat return
(char-to-string char
)))))
268 ((and inargvar
(or (eq ?\ char
) (eq ?
\n char
))
269 (setq inargvar nil
)))
270 ;; Or a method separator?
271 ;; If a method separator, the next token will be an argument variable.
274 return
(concat return
(char-to-string char
))))
275 ;; Or an open parentheses?
277 (setq betweenparen
(1+ betweenparen
)))
278 ;; Or a close parentheses?
280 (setq betweenparen
(1- betweenparen
)))))
283 (defun cc-imenu-objc-remove-white-space (str)
284 "Remove all spaces and tabs from STR."
290 (setq char
(aref str p
))
292 (if (or (= char ?\
) (= char ?
\t))
294 (setq return
(concat return
(char-to-string char
)))))
297 (defun cc-imenu-objc-function ()
298 "imenu supports for objc-mode."
302 ;; OBJC, Cnoreturn, Cgeneralfunc, Cproto are constants.
304 ;; *Warning for developers*
305 ;; These constants depend on `cc-imenu-c++-generic-expression'.
307 (OBJC cc-imenu-objc-generic-expression-objc-base-index
)
308 ;; Special case to match a line like `main() {}'
309 (Cnoreturn cc-imenu-objc-generic-expression-noreturn-index
)
310 ;; General function name regexp
311 (Cgeneralfunc cc-imenu-objc-generic-expression-general-func-index
)
312 ;; Special case for definitions using phony prototype macros like:
313 (Cproto cc-imenu-objc-generic-expression-proto-index
)
321 (intflen (length "@interface"))
322 (implen (length "@implementation"))
323 (prtlen (length "@protocol"))
326 ;; Does this emacs has buffer-substring-no-properties?
328 (if (fboundp 'buffer-substring-no-properties
)
329 'buffer-substring-no-properties
331 (goto-char (point-max))
332 (imenu-progress-message stupid
0)
334 (while (re-search-backward cc-imenu-objc-generic-expression nil t
)
335 (imenu-progress-message stupid
)
336 (setq langnum
(if (match-beginning OBJC
)
339 ((match-beginning Cproto
) Cproto
)
340 ((match-beginning Cgeneralfunc
) Cgeneralfunc
)
341 ((match-beginning Cnoreturn
) Cnoreturn
))))
342 (setq str
(funcall func
(match-beginning langnum
) (match-end langnum
)))
348 ((not (eq langnum OBJC
))
349 (setq clist
(cons (cons str
(match-beginning langnum
)) clist
)))
353 ;; An instance Method
354 ((eq (aref str
0) ?-
)
355 (setq str
(concat "-" (cc-imenu-objc-method-to-selector str
)))
356 (setq methodlist
(cons (cons str
357 (match-beginning langnum
))
360 ((eq (aref str
0) ?
+)
361 (setq str
(concat "+" (cc-imenu-objc-method-to-selector str
)))
362 (setq methodlist
(cons (cons str
363 (match-beginning langnum
))
365 ;; Interface or implementation or protocol
366 ((eq (aref str
0) ?
@)
367 (setq classcount
(1+ classcount
))
369 ((and (> (length str
) implen
)
370 (string= (substring str
0 implen
) "@implementation"))
371 (setq str
(substring str implen
)
372 str2
"@implementation"))
373 ((string= (substring str
0 intflen
) "@interface")
374 (setq str
(substring str intflen
)
376 ((string= (substring str
0 prtlen
) "@protocol")
377 (setq str
(substring str prtlen
)
379 (setq str
(cc-imenu-objc-remove-white-space str
))
380 (setq methodlist
(cons (cons str2
381 (match-beginning langnum
))
383 (setq toplist
(cons nil
(cons (cons str
384 methodlist
) toplist
))
387 (imenu-progress-message stupid
100)
388 (if (eq (car toplist
) nil
)
389 (setq toplist
(cdr toplist
)))
391 ;; In this buffer, there is only one or zero @{interface|implementation|protocol}.
393 (let ((classname (car (car toplist
)))
394 (p (cdr (car (cdr (car toplist
)))))
396 (setq toplist
(cons (cons classname p
) (cdr (cdr (car toplist
)))))
402 (setq last
(cdr last
)))
403 (setcdr last clist
))))
404 ;; Add C lang tokens as a sub menu
406 (setq toplist
(cons (cons "C" clist
) toplist
))))
411 ;(defvar cc-imenu-pike-generic-expression
413 ; FIXME: Please contribute one!
415 (defun cc-imenu-init (mode-generic-expression
416 &optional mode-create-index-function
)
417 (setq imenu-generic-expression mode-generic-expression
418 imenu-case-fold-search nil
)
419 (when mode-create-index-function
420 (setq imenu-create-index-function mode-create-index-function
)))
423 (cc-provide 'cc-menus
)
425 ;; arch-tag: f6b60933-91f0-4145-ab44-70ca6d1b919b
426 ;;; cc-menus.el ends here