Some fixes to follow coding conventions in files maintained by FSF.
[bpt/emacs.git] / lisp / progmodes / hideif.el
1 ;;; hideif.el --- hides selected code within ifdef
2
3 ;; Copyright (C) 1988, 1994 Free Software Foundation, Inc.
4
5 ;; Author: Daniel LaLiberte <liberte@holonexus.org>
6 ;; Maintainer: FSF
7 ;; Keywords: c, outlines
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;; To initialize, toggle the hide-ifdef minor mode with
29 ;;
30 ;; M-x hide-ifdef-mode
31 ;;
32 ;; This will set up key bindings and call hide-ifdef-mode-hook if it
33 ;; has a value. To explicitly hide ifdefs using a buffer-local
34 ;; define list (default empty), type
35 ;;
36 ;; M-x hide-ifdefs or C-c @ h
37 ;;
38 ;; Hide-ifdef suppresses the display of code that the preprocessor wouldn't
39 ;; pass through. The support of constant expressions in #if lines is
40 ;; limited to identifiers, parens, and the operators: &&, ||, !, and
41 ;; "defined". Please extend this.
42 ;;
43 ;; The hidden code is marked by ellipses (...). Be
44 ;; cautious when editing near ellipses, since the hidden text is
45 ;; still in the buffer, and you can move the point into it and modify
46 ;; text unawares. If you don't want to see the ellipses, set
47 ;; selective-display-ellipses to nil. But this can be dangerous.
48 ;; You can make your buffer read-only while hide-ifdef-hiding by setting
49 ;; hide-ifdef-read-only to a non-nil value. You can toggle this
50 ;; variable with hide-ifdef-toggle-read-only (C-c @ C-q).
51 ;;
52 ;; You can undo the effect of hide-ifdefs by typing
53 ;;
54 ;; M-x show-ifdefs or C-c @ s
55 ;;
56 ;; Use M-x hide-ifdef-define (C-c @ d) to define a symbol.
57 ;; Use M-x hide-ifdef-undef (C-c @ u) to undefine a symbol.
58 ;;
59 ;; If you define or undefine a symbol while hide-ifdef-mode is in effect,
60 ;; the display will be updated. Only the define list for the current
61 ;; buffer will be affected. You can save changes to the local define
62 ;; list with hide-ifdef-set-define-alist. This adds entries
63 ;; to hide-ifdef-define-alist.
64 ;;
65 ;; If you have defined a hide-ifdef-mode-hook, you can set
66 ;; up a list of symbols that may be used by hide-ifdefs as in the
67 ;; following example:
68 ;;
69 ;; (setq hide-ifdef-mode-hook
70 ;; (lambda ()
71 ;; (if (not hide-ifdef-define-alist)
72 ;; (setq hide-ifdef-define-alist
73 ;; '((list1 ONE TWO)
74 ;; (list2 TWO THREE)
75 ;; )))
76 ;; (hide-ifdef-use-define-alist 'list2) ; use list2 by default
77 ;; ))
78 ;;
79 ;; You can call hide-ifdef-use-define-alist (C-c @ U) at any time to specify
80 ;; another list to use.
81 ;;
82 ;; To cause ifdefs to be hidden as soon as hide-ifdef-mode is called,
83 ;; set hide-ifdef-initially to non-nil.
84 ;;
85 ;; If you set hide-ifdef-lines to t, hide-ifdefs hides all the #ifdef lines.
86 ;; In the absence of highlighting, that might be a bad idea. If you set
87 ;; hide-ifdef-lines to nil (the default), the surrounding preprocessor
88 ;; lines will be displayed. That can be confusing in its own
89 ;; right. Other variations on display are possible, but not much
90 ;; better.
91 ;;
92 ;; You can explicitly hide or show individual ifdef blocks irrespective
93 ;; of the define list by using hide-ifdef-block and show-ifdef-block.
94 ;;
95 ;; You can move the point between ifdefs with forward-ifdef, backward-ifdef,
96 ;; up-ifdef, down-ifdef, next-ifdef, and previous-ifdef.
97 ;;
98 ;; If you have minor-mode-alist in your mode line (the default) two labels
99 ;; may appear. "Ifdef" will appear when hide-ifdef-mode is active. "Hiding"
100 ;; will appear when text may be hidden ("hide-ifdef-hiding" is non-nil).
101 ;;
102 ;; Written by Brian Marick, at Gould, Computer Systems Division, Urbana IL.
103 ;; Extensively modified by Daniel LaLiberte (while at Gould).
104 ;;
105 ;; You may freely modify and distribute this, but keep a record
106 ;; of modifications and send comments to:
107 ;; liberte@a.cs.uiuc.edu or ihnp4!uiucdcs!liberte
108 ;; I will continue to upgrade hide-ifdef-mode
109 ;; with your contributions.
110
111 ;;; Code:
112
113 (require 'cc-mode)
114
115 (defgroup hide-ifdef nil
116 "Hide selected code within `ifdef'."
117 :group 'c)
118
119 (defvar hide-ifdef-mode-submap nil
120 "Keymap used with Hide-Ifdef mode.")
121
122 (defvar hide-ifdef-mode-map nil
123 "Keymap used with Hide-Ifdef mode.")
124
125 (defconst hide-ifdef-mode-prefix-key "\C-c@"
126 "Prefix key for all Hide-Ifdef mode commands.")
127
128 ;; Set up the submap that goes after the prefix key.
129 (if hide-ifdef-mode-submap
130 () ; Don't redefine it.
131 (setq hide-ifdef-mode-submap (make-sparse-keymap))
132 (define-key hide-ifdef-mode-submap "d" 'hide-ifdef-define)
133 (define-key hide-ifdef-mode-submap "u" 'hide-ifdef-undef)
134 (define-key hide-ifdef-mode-submap "D" 'hide-ifdef-set-define-alist)
135 (define-key hide-ifdef-mode-submap "U" 'hide-ifdef-use-define-alist)
136
137 (define-key hide-ifdef-mode-submap "h" 'hide-ifdefs)
138 (define-key hide-ifdef-mode-submap "s" 'show-ifdefs)
139 (define-key hide-ifdef-mode-submap "\C-d" 'hide-ifdef-block)
140 (define-key hide-ifdef-mode-submap "\C-s" 'show-ifdef-block)
141
142 (define-key hide-ifdef-mode-submap "\C-q" 'hide-ifdef-toggle-read-only)
143 (let ((where (where-is-internal 'toggle-read-only '(keymap) t)))
144 (if where
145 (define-key hide-ifdef-mode-submap
146 where
147 'hide-ifdef-toggle-outside-read-only)))
148 )
149
150 ;; Set up the mode's main map, which leads via the prefix key to the submap.
151 (if hide-ifdef-mode-map
152 ()
153 (setq hide-ifdef-mode-map (make-sparse-keymap))
154 (define-key hide-ifdef-mode-map hide-ifdef-mode-prefix-key
155 hide-ifdef-mode-submap))
156
157 ;; Autoload for the benefit of `make-mode-line-mouse-sensitive'.
158 ;;;###autoload
159 (defvar hide-ifdef-mode nil
160 "Non-nil when hide-ifdef-mode is activated.")
161
162 (defvar hide-ifdef-hiding nil
163 "Non-nil when text may be hidden.")
164
165 ;; Arrange to use the mode's map when the mode is enabled.
166 (or (assq 'hide-ifdef-mode minor-mode-map-alist)
167 (setq minor-mode-map-alist
168 (cons (cons 'hide-ifdef-mode hide-ifdef-mode-map)
169 minor-mode-map-alist)))
170
171 (or (assq 'hide-ifdef-hiding minor-mode-alist)
172 (setq minor-mode-alist
173 (cons '(hide-ifdef-hiding " Hiding")
174 minor-mode-alist)))
175
176 (or (assq 'hide-ifdef-mode minor-mode-alist)
177 (setq minor-mode-alist
178 (cons '(hide-ifdef-mode " Ifdef")
179 minor-mode-alist)))
180
181 ;; fix c-mode syntax table so we can recognize whole symbols.
182 (defvar hide-ifdef-syntax-table
183 (copy-syntax-table c-mode-syntax-table)
184 "Syntax table used for tokenizing #if expressions.")
185
186 (modify-syntax-entry ?_ "w" hide-ifdef-syntax-table)
187 (modify-syntax-entry ?& "." hide-ifdef-syntax-table)
188 (modify-syntax-entry ?\| "." hide-ifdef-syntax-table)
189
190 (defvar hide-ifdef-env nil
191 "An alist of defined symbols and their values.")
192
193 (defvar hif-outside-read-only nil
194 "Internal variable. Saves the value of `buffer-read-only' while hiding.")
195
196 ;;;###autoload
197 (defun hide-ifdef-mode (arg)
198 "Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one.
199 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise.
200 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor
201 would eliminate may be hidden from view. Several variables affect
202 how the hiding is done:
203
204 hide-ifdef-env
205 An association list of defined and undefined symbols for the
206 current buffer. Initially, the global value of `hide-ifdef-env'
207 is used.
208
209 hide-ifdef-define-alist
210 An association list of defined symbol lists.
211 Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
212 and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
213 from one of the lists in `hide-ifdef-define-alist'.
214
215 hide-ifdef-lines
216 Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
217 #endif lines when hiding.
218
219 hide-ifdef-initially
220 Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
221 is activated.
222
223 hide-ifdef-read-only
224 Set to non-nil if you want to make buffers read only while hiding.
225 After `show-ifdefs', read-only status is restored to previous value.
226
227 \\{hide-ifdef-mode-map}"
228
229 (interactive "P")
230 (make-local-variable 'hide-ifdef-mode)
231 (setq hide-ifdef-mode
232 (if (null arg)
233 (not hide-ifdef-mode)
234 (> (prefix-numeric-value arg) 0)))
235
236 (force-mode-line-update)
237
238 (if hide-ifdef-mode
239 (progn
240 ; inherit global values
241 (make-local-variable 'hide-ifdef-env)
242 (setq hide-ifdef-env (default-value 'hide-ifdef-env))
243
244 (make-local-variable 'hide-ifdef-hiding)
245 (setq hide-ifdef-hiding (default-value 'hide-ifdef-hiding))
246
247 (make-local-variable 'hif-outside-read-only)
248 (setq hif-outside-read-only buffer-read-only)
249
250 (run-hooks 'hide-ifdef-mode-hook)
251
252 (if hide-ifdef-initially
253 (hide-ifdefs)
254 (show-ifdefs))
255 (message "Enter Hide-Ifdef mode")
256 )
257 ; else end hide-ifdef-mode
258 (if hide-ifdef-hiding
259 (show-ifdefs))
260 (message "Exit Hide-Ifdef mode")
261 ))
262
263
264 ;; from outline.el with docstring fixed.
265 (defun hif-outline-flag-region (from to flag)
266 "Hides or shows lines from FROM to TO, according to FLAG.
267 If FLAG is \\n (newline character) then text is shown, while if FLAG is \\^M
268 \(control-M) the text is hidden."
269 (let ((modp (buffer-modified-p)))
270 (unwind-protect (progn
271 (subst-char-in-region from to
272 (if (= flag ?\n) ?\^M ?\n)
273 flag t) )
274 (set-buffer-modified-p modp))
275 ))
276
277 (defun hif-show-all ()
278 "Show all of the text in the current buffer."
279 (interactive)
280 (hif-outline-flag-region (point-min) (point-max) ?\n))
281
282 ;; By putting this on after-revert-hook, we arrange that it only
283 ;; does anything when revert-buffer avoids turning off the mode.
284 ;; (That can happen in VC.)
285 (defun hif-before-revert-function ()
286 (and hide-ifdef-mode hide-ifdef-hiding
287 (hide-ifdefs t)))
288 (add-hook 'after-revert-hook 'hif-before-revert-function)
289
290 (defun hide-ifdef-region (start end)
291 "START is the start of a #if or #else form. END is the ending part.
292 Everything including these lines is made invisible."
293 (hif-outline-flag-region start end ?\^M)
294 )
295
296 (defun hif-show-ifdef-region (start end)
297 "Everything between START and END is made visible."
298 (hif-outline-flag-region start end ?\n)
299 )
300
301
302
303 ;===%%SF%% evaluation (Start) ===
304
305 ;; It is not useful to set this to anything but `eval'.
306 ;; In fact, the variable might as well be eliminated.
307 (defvar hide-ifdef-evaluator 'eval
308 "The function to use to evaluate a form.
309 The evaluator is given a canonical form and returns t if text under
310 that form should be displayed.")
311
312 (defvar hif-undefined-symbol nil
313 "...is by default considered to be false.")
314
315
316 (defun hif-set-var (var value)
317 "Prepend (var value) pair to hide-ifdef-env."
318 (setq hide-ifdef-env (cons (cons var value) hide-ifdef-env)))
319
320
321 (defun hif-lookup (var)
322 ; (message "hif-lookup %s" var)
323 (let ((val (assoc var hide-ifdef-env)))
324 (if val
325 (cdr val)
326 hif-undefined-symbol)))
327
328 (defun hif-defined (var)
329 (hif-lookup var)
330 ; when #if expressions are fully supported, defined result should be 1
331 ; (if (assoc var hide-ifdef-env)
332 ; 1
333 ; nil)
334 )
335
336
337 ;===%%SF%% evaluation (End) ===
338
339
340
341 ;===%%SF%% parsing (Start) ===
342 ;;; The code that understands what ifs and ifdef in files look like.
343
344 (defconst hif-cpp-prefix "\\(^\\|\r\\)[ \t]*#[ \t]*")
345 (defconst hif-ifndef-regexp (concat hif-cpp-prefix "ifndef"))
346 (defconst hif-ifx-regexp (concat hif-cpp-prefix "if\\(n?def\\)?[ \t]+"))
347 (defconst hif-else-regexp (concat hif-cpp-prefix "else"))
348 (defconst hif-endif-regexp (concat hif-cpp-prefix "endif"))
349 (defconst hif-ifx-else-endif-regexp
350 (concat hif-ifx-regexp "\\|" hif-else-regexp "\\|" hif-endif-regexp))
351
352 ; Used to store the current token and the whole token list during parsing.
353 ; Only bound dynamically.
354 (defvar hif-token)
355 (defvar hif-token-list)
356
357 (defun hif-infix-to-prefix (token-list)
358 "Convert list of tokens in infix into prefix list"
359 ; (message "hif-infix-to-prefix: %s" token-list)
360 (if (= 1 (length token-list))
361 `(hif-lookup (quote ,(car token-list)))
362 (hif-parse-if-exp token-list))
363 )
364
365 ; pattern to match initial identifier, !, &&, ||, (, or ).
366 ; Added ==, + and -: garyo@avs.com 8/9/94
367 (defconst hif-token-regexp "^\\(&&\\|||\\|[!=]=\\|!\\|[()+-]\\|[<>]=?\\|\\w+\\)")
368 (defconst hif-end-of-comment "\\*/")
369
370
371 (defun hif-tokenize (expr-string)
372 "Separate string into a list of tokens"
373 (let ((token-list nil)
374 (expr-start 0)
375 (expr-length (length expr-string))
376 (current-syntax-table (syntax-table)))
377 (unwind-protect
378 (progn
379 (set-syntax-table hide-ifdef-syntax-table)
380 (while (< expr-start expr-length)
381 ; (message "expr-start = %d" expr-start) (sit-for 1)
382 (cond
383 ((string-match "^[ \t]+" expr-string expr-start)
384 ;; skip whitespace
385 (setq expr-start (match-end 0))
386 ;; stick newline in string so ^ matches on the next string-match
387 (aset expr-string (1- expr-start) ?\n))
388
389 ((string-match "^/\\*" expr-string expr-start)
390 (setq expr-start (match-end 0))
391 (aset expr-string (1- expr-start) ?\n)
392 (or
393 (string-match hif-end-of-comment
394 expr-string expr-start) ; eat comment
395 (string-match "$" expr-string expr-start)) ; multi-line comment
396 (setq expr-start (match-end 0))
397 (aset expr-string (1- expr-start) ?\n))
398
399 ((string-match "^//" expr-string expr-start)
400 (string-match "$" expr-string expr-start)
401 (setq expr-start (match-end 0)))
402
403 ((string-match hif-token-regexp expr-string expr-start)
404 (let ((token (substring expr-string expr-start (match-end 0))))
405 (setq expr-start (match-end 0))
406 (aset expr-string (1- expr-start) ?\n)
407 ; (message "token: %s" token) (sit-for 1)
408 (setq token-list
409 (cons
410 (cond
411 ((string-equal token "||") 'or)
412 ((string-equal token "&&") 'and)
413 ((string-equal token "==") 'equal)
414 ((string-equal token "!=") 'hif-notequal)
415 ((string-equal token "!") 'not)
416 ((string-equal token "defined") 'hif-defined)
417 ((string-equal token "(") 'lparen)
418 ((string-equal token ")") 'rparen)
419 ((string-equal token ">") 'hif-greater)
420 ((string-equal token "<") 'hif-less)
421 ((string-equal token ">=") 'hif-greater-equal)
422 ((string-equal token "<=") 'hif-less-equal)
423 ((string-equal token "+") 'hif-plus)
424 ((string-equal token "-") 'hif-minus)
425 (t (intern token)))
426 token-list))))
427 (t (error "Bad #if expression: %s" expr-string)))))
428 (set-syntax-table current-syntax-table))
429 (nreverse token-list)))
430
431 ;;;-----------------------------------------------------------------
432 ;;; Translate C preprocessor #if expressions using recursive descent.
433 ;;; This parser is limited to the operators &&, ||, !, and "defined".
434 ;;; Added ==, !=, +, and -. Gary Oberbrunner, garyo@avs.com, 8/9/94
435
436 (defun hif-parse-if-exp (hif-token-list)
437 "Parse the TOKEN-LIST. Return translated list in prefix form."
438 (hif-nexttoken)
439 (prog1
440 (hif-expr)
441 (if hif-token ; is there still a token?
442 (error "Error: unexpected token: %s" hif-token))))
443
444 (defun hif-nexttoken ()
445 "Pop the next token from token-list into the let variable \"hif-token\"."
446 (setq hif-token (car hif-token-list))
447 (setq hif-token-list (cdr hif-token-list))
448 hif-token)
449
450 (defun hif-expr ()
451 "Parse an expression as found in #if.
452 expr : term | expr '||' term."
453 (let ((result (hif-term)))
454 (while (eq hif-token 'or)
455 (hif-nexttoken)
456 (setq result (list 'or result (hif-term))))
457 result))
458
459 (defun hif-term ()
460 "Parse a term : eq-expr | term '&&' eq-expr."
461 (let ((result (hif-eq-expr)))
462 (while (eq hif-token 'and)
463 (hif-nexttoken)
464 (setq result (list 'and result (hif-eq-expr))))
465 result))
466
467 (defun hif-eq-expr ()
468 "Parse an eq-expr : math | eq-expr `=='|`!='|`<'|`>'|`>='|`<=' math."
469 (let ((result (hif-math))
470 (eq-token nil))
471 (while (memq hif-token '(equal hif-notequal hif-greater hif-less
472 hif-greater-equal hif-less-equal))
473 (setq eq-token hif-token)
474 (hif-nexttoken)
475 (setq result (list eq-token result (hif-math))))
476 result))
477
478 (defun hif-math ()
479 "Parse an expression with + or - and simpler things.
480 math : factor | math '+|-' factor."
481 (let ((result (hif-factor))
482 (math-op nil))
483 (while (or (eq hif-token 'hif-plus) (eq hif-token 'hif-minus))
484 (setq math-op hif-token)
485 (hif-nexttoken)
486 (setq result (list math-op result (hif-factor))))
487 result))
488
489 (defun hif-factor ()
490 "Parse a factor: '!' factor | '(' expr ')' | 'defined(' id ')' | id."
491 (cond
492 ((eq hif-token 'not)
493 (hif-nexttoken)
494 (list 'not (hif-factor)))
495
496 ((eq hif-token 'lparen)
497 (hif-nexttoken)
498 (let ((result (hif-expr)))
499 (if (not (eq hif-token 'rparen))
500 (error "Bad token in parenthesized expression: %s" hif-token)
501 (hif-nexttoken)
502 result)))
503
504 ((eq hif-token 'hif-defined)
505 (hif-nexttoken)
506 (if (not (eq hif-token 'lparen))
507 (error "Error: expected \"(\" after \"defined\""))
508 (hif-nexttoken)
509 (let ((ident hif-token))
510 (if (memq hif-token '(or and not hif-defined lparen rparen))
511 (error "Error: unexpected token: %s" hif-token))
512 (hif-nexttoken)
513 (if (not (eq hif-token 'rparen))
514 (error "Error: expected \")\" after identifier"))
515 (hif-nexttoken)
516 `(hif-defined (quote ,ident))
517 ))
518
519 (t ; identifier
520 (let ((ident hif-token))
521 (if (memq ident '(or and))
522 (error "Error: missing identifier"))
523 (hif-nexttoken)
524 `(hif-lookup (quote ,ident))
525 ))
526 ))
527
528 (defun hif-mathify (val)
529 "Treat VAL as a number: if it's t or nil, use 1 or 0."
530 (cond ((eq val t)
531 1)
532 ((null val)
533 0)
534 (t val)))
535
536 (defun hif-plus (a b)
537 "Like ordinary plus but treat t and nil as 1 and 0."
538 (+ (hif-mathify a) (hif-mathify b)))
539 (defun hif-minus (a b)
540 "Like ordinary minus but treat t and nil as 1 and 0."
541 (- (hif-mathify a) (hif-mathify b)))
542 (defun hif-notequal (a b)
543 "Like (not (equal A B)) but as one symbol."
544 (not (equal a b)))
545 (defun hif-greater (a b)
546 "Simple comparison."
547 (> (hif-mathify a) (hif-mathify b)))
548 (defun hif-less (a b)
549 "Simple comparison."
550 (< (hif-mathify a) (hif-mathify b)))
551 (defun hif-greater-equal (a b)
552 "Simple comparison."
553 (>= (hif-mathify a) (hif-mathify b)))
554 (defun hif-less-equal (a b)
555 "Simple comparison."
556 (<= (hif-mathify a) (hif-mathify b)))
557 ;;;----------- end of parser -----------------------
558
559
560 (defun hif-canonicalize ()
561 "When at beginning of #ifX, returns a Lisp expression for its condition."
562 (save-excursion
563 (let ((negate (looking-at hif-ifndef-regexp)))
564 (re-search-forward hif-ifx-regexp)
565 (let* ((expr-string
566 (buffer-substring (point)
567 (progn (skip-chars-forward "^\n\r") (point))))
568 (expr (hif-infix-to-prefix (hif-tokenize expr-string))))
569 ; (message "hif-canonicalized: %s" expr)
570 (if negate
571 (list 'not expr)
572 expr)))))
573
574
575 (defun hif-find-any-ifX ()
576 "Move to next #if..., or #ifndef, at point or after."
577 ; (message "find ifX at %d" (point))
578 (prog1
579 (re-search-forward hif-ifx-regexp (point-max) t)
580 (beginning-of-line)))
581
582
583 (defun hif-find-next-relevant ()
584 "Move to next #if..., #else, or #endif, after the current line."
585 ; (message "hif-find-next-relevant at %d" (point))
586 (end-of-line)
587 ; avoid infinite recursion by only going to beginning of line if match found
588 (if (re-search-forward hif-ifx-else-endif-regexp (point-max) t)
589 (beginning-of-line)))
590
591 (defun hif-find-previous-relevant ()
592 "Move to previous #if..., #else, or #endif, before the current line."
593 ; (message "hif-find-previous-relevant at %d" (point))
594 (beginning-of-line)
595 ; avoid infinite recursion by only going to beginning of line if match found
596 (if (re-search-backward hif-ifx-else-endif-regexp (point-min) t)
597 (beginning-of-line)))
598
599
600 (defun hif-looking-at-ifX () ;; Should eventually see #if
601 (looking-at hif-ifx-regexp))
602 (defun hif-looking-at-endif ()
603 (looking-at hif-endif-regexp))
604 (defun hif-looking-at-else ()
605 (looking-at hif-else-regexp))
606
607
608
609 (defun hif-ifdef-to-endif ()
610 "If positioned at #ifX or #else form, skip to corresponding #endif."
611 ; (message "hif-ifdef-to-endif at %d" (point)) (sit-for 1)
612 (hif-find-next-relevant)
613 (cond ((hif-looking-at-ifX)
614 (hif-ifdef-to-endif) ; find endif of nested if
615 (hif-ifdef-to-endif)) ; find outer endif or else
616 ((hif-looking-at-else)
617 (hif-ifdef-to-endif)) ; find endif following else
618 ((hif-looking-at-endif)
619 'done)
620 (t
621 (error "Mismatched #ifdef #endif pair"))))
622
623
624 (defun hif-endif-to-ifdef ()
625 "If positioned at #endif form, skip backward to corresponding #ifX."
626 ; (message "hif-endif-to-ifdef at %d" (point))
627 (let ((start (point)))
628 (hif-find-previous-relevant)
629 (if (= start (point))
630 (error "Mismatched #ifdef #endif pair")))
631 (cond ((hif-looking-at-endif)
632 (hif-endif-to-ifdef) ; find beginning of nested if
633 (hif-endif-to-ifdef)) ; find beginning of outer if or else
634 ((hif-looking-at-else)
635 (hif-endif-to-ifdef))
636 ((hif-looking-at-ifX)
637 'done)
638 (t))) ; never gets here
639
640
641 (defun forward-ifdef (&optional arg)
642 "Move point to beginning of line of the next ifdef-endif.
643 With argument, do this that many times."
644 (interactive "p")
645 (or arg (setq arg 1))
646 (if (< arg 0)
647 (backward-ifdef (- arg)))
648 (while (< 0 arg)
649 (setq arg (- arg))
650 (let ((start (point)))
651 (if (not (hif-looking-at-ifX))
652 (hif-find-next-relevant))
653 (if (hif-looking-at-ifX)
654 (hif-ifdef-to-endif)
655 (goto-char start)
656 (error "No following #ifdef")
657 ))))
658
659
660 (defun backward-ifdef (&optional arg)
661 "Move point to beginning of the previous ifdef-endif.
662 With argument, do this that many times."
663 (interactive "p")
664 (or arg (setq arg 1))
665 (if (< arg 0)
666 (forward-ifdef (- arg)))
667 (while (< 0 arg)
668 (setq arg (1- arg))
669 (beginning-of-line)
670 (let ((start (point)))
671 (if (not (hif-looking-at-endif))
672 (hif-find-previous-relevant))
673 (if (hif-looking-at-endif)
674 (hif-endif-to-ifdef)
675 (goto-char start)
676 (error "No previous #ifdef")))))
677
678
679 (defun down-ifdef ()
680 "Move point to beginning of nested ifdef or else-part."
681 (interactive)
682 (let ((start (point)))
683 (hif-find-next-relevant)
684 (if (or (hif-looking-at-ifX) (hif-looking-at-else))
685 ()
686 (goto-char start)
687 (error "No following #ifdef"))))
688
689
690 (defun up-ifdef ()
691 "Move point to beginning of enclosing ifdef or else-part."
692 (interactive)
693 (beginning-of-line)
694 (let ((start (point)))
695 (if (not (hif-looking-at-endif))
696 (hif-find-previous-relevant))
697 (if (hif-looking-at-endif)
698 (hif-endif-to-ifdef))
699 (if (= start (point))
700 (error "No previous #ifdef"))))
701
702 (defun next-ifdef (&optional arg)
703 "Move to the beginning of the next #ifX, #else, or #endif.
704 With argument, do this that many times."
705 (interactive "p")
706 (or arg (setq arg 1))
707 (if (< arg 0)
708 (previous-ifdef (- arg)))
709 (while (< 0 arg)
710 (setq arg (1- arg))
711 (hif-find-next-relevant)
712 (if (eolp)
713 (progn
714 (beginning-of-line)
715 (error "No following #ifdefs, #elses, or #endifs")))))
716
717 (defun previous-ifdef (&optional arg)
718 "Move to the beginning of the previous #ifX, #else, or #endif.
719 With argument, do this that many times."
720 (interactive "p")
721 (or arg (setq arg 1))
722 (if (< arg 0)
723 (next-ifdef (- arg)))
724 (while (< 0 arg)
725 (setq arg (1- arg))
726 (let ((start (point)))
727 (hif-find-previous-relevant)
728 (if (= start (point))
729 (error "No previous #ifdefs, #elses, or #endifs")
730 ))))
731
732
733 ;===%%SF%% parsing (End) ===
734
735
736 ;===%%SF%% hide-ifdef-hiding (Start) ===
737
738
739 ;;; A range is a structure with four components:
740 ;;; ELSE-P True if there was an else clause for the ifdef.
741 ;;; START The start of the range. (beginning of line)
742 ;;; ELSE The else marker (beginning of line)
743 ;;; Only valid if ELSE-P is true.
744 ;;; END The end of the range. (beginning of line)
745
746 (defun hif-make-range (else-p start end &optional else)
747 (list else-p start else end))
748
749 (defun hif-range-else-p (range) (elt range 0))
750 (defun hif-range-start (range) (elt range 1))
751 (defun hif-range-else (range) (elt range 2))
752 (defun hif-range-end (range) (elt range 3))
753
754
755
756 ;;; Find-Range
757 ;;; The workhorse, it delimits the #if region. Reasonably simple:
758 ;;; Skip until an #else or #endif is found, remembering positions. If
759 ;;; an #else was found, skip some more, looking for the true #endif.
760
761 (defun hif-find-range ()
762 "Returns a Range structure describing the current #if region.
763 Point is left unchanged."
764 ; (message "hif-find-range at %d" (point))
765 (save-excursion
766 (beginning-of-line)
767 (let ((start (point))
768 (else-p nil)
769 (else nil)
770 (end nil))
771 ;; Part one. Look for either #endif or #else.
772 ;; This loop-and-a-half dedicated to E. Dijkstra.
773 (hif-find-next-relevant)
774 (while (hif-looking-at-ifX) ; Skip nested ifdef
775 (hif-ifdef-to-endif)
776 (hif-find-next-relevant))
777 ;; Found either a #else or an #endif.
778 (cond ((hif-looking-at-else)
779 (setq else-p t)
780 (setq else (point)))
781 (t
782 (setq end (point)) ; (save-excursion (end-of-line) (point))
783 ))
784 ;; If found #else, look for #endif.
785 (if else-p
786 (progn
787 (hif-find-next-relevant)
788 (while (hif-looking-at-ifX) ; Skip nested ifdef
789 (hif-ifdef-to-endif)
790 (hif-find-next-relevant))
791 (if (hif-looking-at-else)
792 (error "Found two elses in a row? Broken!"))
793 (setq end (point)) ; (save-excursion (end-of-line) (point))
794 ))
795 (hif-make-range else-p start end else))))
796
797
798 ;;; A bit slimy.
799 ;;; NOTE: If there's an #ifdef at the beginning of the file, we can't
800 ;;; hide it. There's no previous newline to replace. If we added
801 ;;; one, we'd throw off all the counts. Feh.
802
803 (defun hif-hide-line (point)
804 "Hide the line containing point. Does nothing if `hide-ifdef-lines' is nil."
805 (if hide-ifdef-lines
806 (save-excursion
807 (goto-char point)
808 (let ((modp (buffer-modified-p)))
809 (unwind-protect
810 (progn
811 (beginning-of-line)
812 (if (not (= (point) 1))
813 (hide-ifdef-region (1- (point)) (point))))
814 (set-buffer-modified-p modp))
815 ))
816 ))
817
818
819 ;;; Hif-Possibly-Hide
820 ;;; There are four cases. The #ifX expression is "taken" if it
821 ;;; the hide-ifdef-evaluator returns T. Presumably, this means the code
822 ;;; inside the #ifdef would be included when the program was
823 ;;; compiled.
824 ;;;
825 ;;; Case 1: #ifX taken, and there's an #else.
826 ;;; The #else part must be hidden. The #if (then) part must be
827 ;;; processed for nested #ifX's.
828 ;;; Case 2: #ifX taken, and there's no #else.
829 ;;; The #if part must be processed for nested #ifX's.
830 ;;; Case 3: #ifX not taken, and there's an #else.
831 ;;; The #if part must be hidden. The #else part must be processed
832 ;;; for nested #ifs.
833 ;;; Case 4: #ifX not taken, and there's no #else.
834 ;;; The #ifX part must be hidden.
835 ;;;
836 ;;; Further processing is done by narrowing to the relevant region
837 ;;; and just recursively calling hide-ifdef-guts.
838 ;;;
839 ;;; When hif-possibly-hide returns, point is at the end of the
840 ;;; possibly-hidden range.
841
842 (defun hif-recurse-on (start end)
843 "Call `hide-ifdef-guts' after narrowing to end of START line and END line."
844 (save-excursion
845 (save-restriction
846 (goto-char start)
847 (end-of-line)
848 (narrow-to-region (point) end)
849 (hide-ifdef-guts))))
850
851 (defun hif-possibly-hide ()
852 "Called at #ifX expression, this hides those parts that should be hidden.
853 It uses the judgement of `hide-ifdef-evaluator'."
854 ; (message "hif-possibly-hide") (sit-for 1)
855 (let ((test (hif-canonicalize))
856 (range (hif-find-range)))
857 ; (message "test = %s" test) (sit-for 1)
858
859 (hif-hide-line (hif-range-end range))
860 (if (funcall hide-ifdef-evaluator test)
861 (cond ((hif-range-else-p range) ; case 1
862 (hif-hide-line (hif-range-else range))
863 (hide-ifdef-region (hif-range-else range)
864 (1- (hif-range-end range)))
865 (hif-recurse-on (hif-range-start range)
866 (hif-range-else range)))
867 (t ; case 2
868 (hif-recurse-on (hif-range-start range)
869 (hif-range-end range))))
870 (cond ((hif-range-else-p range) ; case 3
871 (hif-hide-line (hif-range-else range))
872 (hide-ifdef-region (hif-range-start range)
873 (1- (hif-range-else range)))
874 (hif-recurse-on (hif-range-else range)
875 (hif-range-end range)))
876 (t ; case 4
877 (hide-ifdef-region (point)
878 (1- (hif-range-end range))))
879 ))
880 (hif-hide-line (hif-range-start range)) ; Always hide start.
881 (goto-char (hif-range-end range))
882 (end-of-line)
883 ))
884
885
886
887 (defun hide-ifdef-guts ()
888 "Does most of the work of `hide-ifdefs'.
889 It does not do the work that's pointless to redo on a recursive entry."
890 ; (message "hide-ifdef-guts")
891 (save-excursion
892 (goto-char (point-min))
893 (while (hif-find-any-ifX)
894 (hif-possibly-hide))))
895
896 ;===%%SF%% hide-ifdef-hiding (End) ===
897
898
899 ;===%%SF%% exports (Start) ===
900
901 ;;;###autoload
902 (defcustom hide-ifdef-initially nil
903 "*Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated."
904 :type 'boolean
905 :group 'hide-ifdef)
906
907 ;;;###autoload
908 (defcustom hide-ifdef-read-only nil
909 "*Set to non-nil if you want buffer to be read-only while hiding text."
910 :type 'boolean
911 :group 'hide-ifdef)
912
913 ;;;###autoload
914 (defcustom hide-ifdef-lines nil
915 "*Non-nil means hide the #ifX, #else, and #endif lines."
916 :type 'boolean
917 :group 'hide-ifdef)
918
919 (defun hide-ifdef-toggle-read-only ()
920 "Toggle hide-ifdef-read-only."
921 (interactive)
922 (setq hide-ifdef-read-only (not hide-ifdef-read-only))
923 (message "Hide-Read-Only %s"
924 (if hide-ifdef-read-only "ON" "OFF"))
925 (if hide-ifdef-hiding
926 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only)))
927 (force-mode-line-update))
928
929 (defun hide-ifdef-toggle-outside-read-only ()
930 "Replacement for `toggle-read-only' within Hide-Ifdef mode."
931 (interactive)
932 (setq hif-outside-read-only (not hif-outside-read-only))
933 (message "Read only %s"
934 (if hif-outside-read-only "ON" "OFF"))
935 (setq buffer-read-only
936 (or (and hide-ifdef-hiding hide-ifdef-read-only)
937 hif-outside-read-only)
938 )
939 (force-mode-line-update))
940
941
942 (defun hide-ifdef-define (var)
943 "Define a VAR so that #ifdef VAR would be included."
944 (interactive "SDefine what? ")
945 (hif-set-var var 1)
946 (if hide-ifdef-hiding (hide-ifdefs)))
947
948 (defun hide-ifdef-undef (var)
949 "Undefine a VAR so that #ifdef VAR would not be included."
950 (interactive "SUndefine what? ")
951 (hif-set-var var nil)
952 (if hide-ifdef-hiding (hide-ifdefs)))
953
954
955 (defun hide-ifdefs (&optional nomsg)
956 "Hide the contents of some #ifdefs.
957 Assume that defined symbols have been added to `hide-ifdef-env'.
958 The text hidden is the text that would not be included by the C
959 preprocessor if it were given the file with those symbols defined.
960
961 Turn off hiding by calling `show-ifdefs'."
962
963 (interactive)
964 (message "Hiding...")
965 (setq hif-outside-read-only buffer-read-only)
966 (if (not hide-ifdef-mode)
967 (hide-ifdef-mode 1)) ; turn on hide-ifdef-mode
968 (if hide-ifdef-hiding
969 (show-ifdefs)) ; Otherwise, deep confusion.
970 (let ((inhibit-read-only t))
971 (setq selective-display t)
972 (setq hide-ifdef-hiding t)
973 (hide-ifdef-guts))
974 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only))
975 (or nomsg
976 (message "Hiding done")))
977
978
979 (defun show-ifdefs ()
980 "Cancel the effects of `hide-ifdef': show the contents of all #ifdefs."
981 (interactive)
982 (setq buffer-read-only hif-outside-read-only)
983 (setq selective-display nil) ; defaults
984 (let ((inhibit-read-only t))
985 (hif-show-all))
986 (setq hide-ifdef-hiding nil))
987
988
989 (defun hif-find-ifdef-block ()
990 "Utility for hide and show `ifdef-block'.
991 Return as (TOP . BOTTOM) the extent of ifdef block."
992 (let (max-bottom)
993 (cons (save-excursion
994 (beginning-of-line)
995 (if (not (or (hif-looking-at-else) (hif-looking-at-ifX)))
996 (up-ifdef))
997 (prog1 (point)
998 (hif-ifdef-to-endif)
999 (setq max-bottom (1- (point)))))
1000 (save-excursion
1001 (beginning-of-line)
1002 (if (not (hif-looking-at-endif))
1003 (hif-find-next-relevant))
1004 (while (hif-looking-at-ifX)
1005 (hif-ifdef-to-endif)
1006 (hif-find-next-relevant))
1007 (min max-bottom (1- (point)))))))
1008
1009
1010 (defun hide-ifdef-block ()
1011 "Hide the ifdef block (true or false part) enclosing or before the cursor."
1012 (interactive)
1013 (if (not hide-ifdef-mode)
1014 (hide-ifdef-mode 1))
1015 (setq selective-display t)
1016 (let ((top-bottom (hif-find-ifdef-block))
1017 (inhibit-read-only t))
1018 (hide-ifdef-region (car top-bottom) (cdr top-bottom))
1019 (if hide-ifdef-lines
1020 (progn
1021 (hif-hide-line (car top-bottom))
1022 (hif-hide-line (1+ (cdr top-bottom)))))
1023 (setq hide-ifdef-hiding t))
1024 (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only)))
1025
1026
1027 (defun show-ifdef-block ()
1028 "Show the ifdef block (true or false part) enclosing or before the cursor."
1029 (interactive)
1030 (let ((inhibit-read-only t))
1031 (if hide-ifdef-lines
1032 (save-excursion
1033 (beginning-of-line)
1034 (hif-show-ifdef-region (1- (point)) (progn (end-of-line) (point))))
1035
1036 (let ((top-bottom (hif-find-ifdef-block)))
1037 (hif-show-ifdef-region (1- (car top-bottom)) (cdr top-bottom))))))
1038
1039
1040 ;;; definition alist support
1041
1042 (defvar hide-ifdef-define-alist nil
1043 "A global assoc list of pre-defined symbol lists")
1044
1045 (defun hif-compress-define-list (env)
1046 "Compress the define list ENV into a list of defined symbols only."
1047 (let ((defs (mapcar (lambda (arg)
1048 (if (hif-lookup (car arg)) (car arg)))
1049 env))
1050 (new-defs nil))
1051 (while defs
1052 (if (car defs)
1053 (setq new-defs (cons (car defs) new-defs)))
1054 (setq defs (cdr defs)))
1055 new-defs))
1056
1057 (defun hide-ifdef-set-define-alist (name)
1058 "Set the association for NAME to `hide-ifdef-env'."
1059 (interactive "SSet define list: ")
1060 (setq hide-ifdef-define-alist
1061 (cons (cons name (hif-compress-define-list hide-ifdef-env))
1062 hide-ifdef-define-alist)))
1063
1064 (defun hide-ifdef-use-define-alist (name)
1065 "Set `hide-ifdef-env' to the define list specified by NAME."
1066 (interactive "SUse define list: ")
1067 (let ((define-list (assoc name hide-ifdef-define-alist)))
1068 (if define-list
1069 (setq hide-ifdef-env
1070 (mapcar (lambda (arg) (cons arg t))
1071 (cdr define-list)))
1072 (error "No define list for %s" name))
1073 (if hide-ifdef-hiding (hide-ifdefs))))
1074
1075 (provide 'hideif)
1076
1077 ;;; hideif.el ends here