1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- (require 'cc-mode)
- (defgroup hide-ifdef nil
- "Hide selected code within `ifdef'."
- :group 'c)
- (defcustom hide-ifdef-initially nil
- "Non-nil means call `hide-ifdefs' when Hide-Ifdef mode is first activated."
- :type 'boolean
- :group 'hide-ifdef)
- (defcustom hide-ifdef-read-only nil
- "Set to non-nil if you want buffer to be read-only while hiding text."
- :type 'boolean
- :group 'hide-ifdef)
- (defcustom hide-ifdef-lines nil
- "Non-nil means hide the #ifX, #else, and #endif lines."
- :type 'boolean
- :group 'hide-ifdef)
- (defcustom hide-ifdef-shadow nil
- "Non-nil means shadow text instead of hiding it."
- :type 'boolean
- :group 'hide-ifdef
- :version "23.1")
- (defface hide-ifdef-shadow '((t (:inherit shadow)))
- "Face for shadowing ifdef blocks."
- :group 'hide-ifdef
- :version "23.1")
- (defvar hide-ifdef-mode-submap
-
- (let ((map (make-sparse-keymap)))
- (define-key map "d" 'hide-ifdef-define)
- (define-key map "u" 'hide-ifdef-undef)
- (define-key map "D" 'hide-ifdef-set-define-alist)
- (define-key map "U" 'hide-ifdef-use-define-alist)
- (define-key map "h" 'hide-ifdefs)
- (define-key map "s" 'show-ifdefs)
- (define-key map "\C-d" 'hide-ifdef-block)
- (define-key map "\C-s" 'show-ifdef-block)
- (define-key map "\C-q" 'hide-ifdef-toggle-read-only)
- (define-key map "\C-w" 'hide-ifdef-toggle-shadowing)
- (substitute-key-definition
- 'toggle-read-only 'hide-ifdef-toggle-outside-read-only map)
- map)
- "Keymap used by `hide-ifdef-mode' under `hide-ifdef-mode-prefix-key'.")
- (defconst hide-ifdef-mode-prefix-key "\C-c@"
- "Prefix key for all Hide-Ifdef mode commands.")
- (defvar hide-ifdef-mode-map
-
- (let ((map (make-sparse-keymap)))
- (define-key map hide-ifdef-mode-prefix-key hide-ifdef-mode-submap)
- map)
- "Keymap used with `hide-ifdef-mode'.")
- (easy-menu-define hide-ifdef-mode-menu hide-ifdef-mode-map
- "Menu for `hide-ifdef-mode'."
- '("Hide-Ifdef"
- ["Hide some ifdefs" hide-ifdefs
- :help "Hide the contents of some #ifdefs"]
- ["Show all ifdefs" show-ifdefs
- :help "Cancel the effects of `hide-ifdef': show the contents of all #ifdefs"]
- ["Hide ifdef block" hide-ifdef-block
- :help "Hide the ifdef block (true or false part) enclosing or before the cursor"]
- ["Show ifdef block" show-ifdef-block
- :help "Show the ifdef block (true or false part) enclosing or before the cursor"]
- ["Define a variable..." hide-ifdef-define
- :help "Define a VAR so that #ifdef VAR would be included"]
- ["Undefine a variable..." hide-ifdef-undef
- :help "Undefine a VAR so that #ifdef VAR would not be included"]
- ["Define an alist..." hide-ifdef-set-define-alist
- :help "Set the association for NAME to `hide-ifdef-env'"]
- ["Use an alist..." hide-ifdef-use-define-alist
- :help "Set `hide-ifdef-env' to the define list specified by NAME"]
- ["Toggle read only" hide-ifdef-toggle-read-only
- :style toggle :selected hide-ifdef-read-only
- :help "Buffer should be read-only while hiding text"]
- ["Toggle shadowing" hide-ifdef-toggle-shadowing
- :style toggle :selected hide-ifdef-shadow
- :help "Text should be shadowed instead of hidden"]))
- (defvar hide-ifdef-hiding nil
- "Non-nil when text may be hidden.")
- (or (assq 'hide-ifdef-hiding minor-mode-alist)
- (setq minor-mode-alist
- (cons '(hide-ifdef-hiding " Hiding")
- minor-mode-alist)))
- (defvar hide-ifdef-syntax-table
- (let ((st (copy-syntax-table c-mode-syntax-table)))
- (modify-syntax-entry ?_ "w" st)
- (modify-syntax-entry ?& "." st)
- (modify-syntax-entry ?\| "." st)
- st)
- "Syntax table used for tokenizing #if expressions.")
- (defvar hide-ifdef-env nil
- "An alist of defined symbols and their values.")
- (defvar hif-outside-read-only nil
- "Internal variable. Saves the value of `buffer-read-only' while hiding.")
- (define-minor-mode hide-ifdef-mode
- "Toggle features to hide/show #ifdef blocks (Hide-Ifdef mode).
- With a prefix argument ARG, enable Hide-Ifdef mode if ARG is
- positive, and disable it otherwise. If called from Lisp, enable
- the mode if ARG is omitted or nil.
- Hide-Ifdef mode is a buffer-local minor mode for use with C and
- C-like major modes. When enabled, code within #ifdef constructs
- that the C preprocessor would eliminate may be hidden from view.
- Several variables affect how the hiding is done:
- `hide-ifdef-env'
- An association list of defined and undefined symbols for the
- current buffer. Initially, the global value of `hide-ifdef-env'
- is used.
- `hide-ifdef-define-alist'
- An association list of defined symbol lists.
- Use `hide-ifdef-set-define-alist' to save the current `hide-ifdef-env'
- and `hide-ifdef-use-define-alist' to set the current `hide-ifdef-env'
- from one of the lists in `hide-ifdef-define-alist'.
- `hide-ifdef-lines'
- Set to non-nil to not show #if, #ifdef, #ifndef, #else, and
- #endif lines when hiding.
- `hide-ifdef-initially'
- Indicates whether `hide-ifdefs' should be called when Hide-Ifdef mode
- is activated.
- `hide-ifdef-read-only'
- Set to non-nil if you want to make buffers read only while hiding.
- After `show-ifdefs', read-only status is restored to previous value.
- \\{hide-ifdef-mode-map}"
- :group 'hide-ifdef :lighter " Ifdef"
- (if hide-ifdef-mode
- (progn
-
- (set (make-local-variable 'hide-ifdef-env)
- (default-value 'hide-ifdef-env))
- (set (make-local-variable 'hide-ifdef-hiding)
- (default-value 'hide-ifdef-hiding))
- (set (make-local-variable 'hif-outside-read-only) buffer-read-only)
- (set (make-local-variable 'line-move-ignore-invisible) t)
- (add-hook 'change-major-mode-hook
- (lambda () (hide-ifdef-mode -1)) nil t)
- (add-to-invisibility-spec '(hide-ifdef . t))
- (if hide-ifdef-initially
- (hide-ifdefs)
- (show-ifdefs)))
-
- (kill-local-variable 'line-move-ignore-invisible)
- (remove-from-invisibility-spec '(hide-ifdef . t))
- (when hide-ifdef-hiding
- (show-ifdefs))))
- (defun hif-show-all ()
- "Show all of the text in the current buffer."
- (interactive)
- (hif-show-ifdef-region (point-min) (point-max)))
- (defun hif-after-revert-function ()
- (and hide-ifdef-mode hide-ifdef-hiding
- (hide-ifdefs t)))
- (add-hook 'after-revert-hook 'hif-after-revert-function)
- (defun hif-end-of-line ()
- (end-of-line)
- (while (= (logand 1 (skip-chars-backward "\\\\")) 1)
- (end-of-line 2)))
- (defun hide-ifdef-region-internal (start end)
- (remove-overlays start end 'hide-ifdef t)
- (let ((o (make-overlay start end)))
- (overlay-put o 'hide-ifdef t)
- (if hide-ifdef-shadow
- (overlay-put o 'face 'hide-ifdef-shadow)
- (overlay-put o 'invisible 'hide-ifdef))))
- (defun hide-ifdef-region (start end)
- "START is the start of a #if or #else form. END is the ending part.
- Everything including these lines is made invisible."
- (save-excursion
- (goto-char start) (hif-end-of-line) (setq start (point))
- (goto-char end) (hif-end-of-line) (setq end (point))
- (hide-ifdef-region-internal start end)))
- (defun hif-show-ifdef-region (start end)
- "Everything between START and END is made visible."
- (remove-overlays start end 'hide-ifdef t))
- (defvar hide-ifdef-evaluator 'eval
- "The function to use to evaluate a form.
- The evaluator is given a canonical form and returns t if text under
- that form should be displayed.")
- (defvar hif-undefined-symbol nil
- "...is by default considered to be false.")
- (defun hif-set-var (var value)
- "Prepend (var value) pair to hide-ifdef-env."
- (setq hide-ifdef-env (cons (cons var value) hide-ifdef-env)))
- (defun hif-lookup (var)
-
- (let ((val (assoc var hide-ifdef-env)))
- (if val
- (cdr val)
- hif-undefined-symbol)))
- (defun hif-defined (var)
- (if (assoc var hide-ifdef-env) 1 0))
- (defconst hif-cpp-prefix "\\(^\\|\r\\)[ \t]*#[ \t]*")
- (defconst hif-ifndef-regexp (concat hif-cpp-prefix "ifndef"))
- (defconst hif-ifx-regexp (concat hif-cpp-prefix "if\\(n?def\\)?[ \t]+"))
- (defconst hif-else-regexp (concat hif-cpp-prefix "else"))
- (defconst hif-endif-regexp (concat hif-cpp-prefix "endif"))
- (defconst hif-ifx-else-endif-regexp
- (concat hif-ifx-regexp "\\|" hif-else-regexp "\\|" hif-endif-regexp))
- (defvar hif-token)
- (defvar hif-token-list)
- (defconst hif-token-alist
- '(("||" . or)
- ("&&" . and)
- ("|" . hif-logior)
- ("&" . hif-logand)
- ("==" . equal)
- ("!=" . hif-notequal)
- ("!" . not)
- ("(" . lparen)
- (")" . rparen)
- (">" . hif-greater)
- ("<" . hif-less)
- (">=" . hif-greater-equal)
- ("<=" . hif-less-equal)
- ("+" . hif-plus)
- ("-" . hif-minus)
- ("?" . hif-conditional)
- (":" . hif-colon)))
- (defconst hif-token-regexp
- (concat (regexp-opt (mapcar 'car hif-token-alist)) "\\|\\w+"))
- (defun hif-tokenize (start end)
- "Separate string between START and END into a list of tokens."
- (let ((token-list nil))
- (with-syntax-table hide-ifdef-syntax-table
- (save-excursion
- (goto-char start)
- (while (progn (forward-comment (point-max)) (< (point) end))
-
- (cond
- ((looking-at "\\\\\n")
- (forward-char 2))
- ((looking-at hif-token-regexp)
- (let ((token (buffer-substring (point) (match-end 0))))
- (goto-char (match-end 0))
-
- (push (or (cdr (assoc token hif-token-alist))
- (if (string-equal token "defined") 'hif-defined)
- (if (string-match "\\`[0-9]*\\'" token)
- (string-to-number token))
- (intern token))
- token-list)))
- (t (error "Bad #if expression: %s" (buffer-string)))))))
- (nreverse token-list)))
- (defsubst hif-nexttoken ()
- "Pop the next token from token-list into the let variable \"hif-token\"."
- (setq hif-token (pop hif-token-list)))
- (defun hif-parse-if-exp (token-list)
- "Parse the TOKEN-LIST. Return translated list in prefix form."
- (let ((hif-token-list token-list))
- (hif-nexttoken)
- (prog1
- (hif-expr)
- (if hif-token
- (error "Error: unexpected token: %s" hif-token)))))
- (defun hif-expr ()
- "Parse an expression as found in #if.
- expr : or-expr | or-expr '?' expr ':' expr."
- (let ((result (hif-or-expr))
- middle)
- (while (eq hif-token 'hif-conditional)
- (hif-nexttoken)
- (setq middle (hif-expr))
- (if (eq hif-token 'hif-colon)
- (progn
- (hif-nexttoken)
- (setq result (list 'hif-conditional result middle (hif-expr))))
- (error "Error: unexpected token: %s" hif-token)))
- result))
- (defun hif-or-expr ()
- "Parse n or-expr : and-expr | or-expr '||' and-expr."
- (let ((result (hif-and-expr)))
- (while (eq hif-token 'or)
- (hif-nexttoken)
- (setq result (list 'hif-or result (hif-and-expr))))
- result))
- (defun hif-and-expr ()
- "Parse an and-expr : eq-expr | and-expr '&&' eq-expr."
- (let ((result (hif-eq-expr)))
- (while (eq hif-token 'and)
- (hif-nexttoken)
- (setq result (list 'hif-and result (hif-eq-expr))))
- result))
- (defun hif-eq-expr ()
- "Parse an eq-expr : math | eq-expr `=='|`!='|`<'|`>'|`>='|`<=' math."
- (let ((result (hif-math))
- (eq-token nil))
- (while (memq hif-token '(equal hif-notequal hif-greater hif-less
- hif-greater-equal hif-less-equal))
- (setq eq-token hif-token)
- (hif-nexttoken)
- (setq result (list eq-token result (hif-math))))
- result))
- (defun hif-math ()
- "Parse an expression with + or - and simpler things.
- math : factor | math '+|-' factor."
- (let ((result (hif-factor))
- (math-op nil))
- (while (memq hif-token '(hif-plus hif-minus hif-logior hif-logand))
- (setq math-op hif-token)
- (hif-nexttoken)
- (setq result (list math-op result (hif-factor))))
- result))
- (defun hif-factor ()
- "Parse a factor: '!' factor | '(' expr ')' | 'defined(' id ')' | id."
- (cond
- ((eq hif-token 'not)
- (hif-nexttoken)
- (list 'hif-not (hif-factor)))
- ((eq hif-token 'lparen)
- (hif-nexttoken)
- (let ((result (hif-expr)))
- (if (not (eq hif-token 'rparen))
- (error "Bad token in parenthesized expression: %s" hif-token)
- (hif-nexttoken)
- result)))
- ((eq hif-token 'hif-defined)
- (hif-nexttoken)
- (let ((paren (when (eq hif-token 'lparen) (hif-nexttoken) t))
- (ident hif-token))
- (if (memq hif-token '(or and not hif-defined lparen rparen))
- (error "Error: unexpected token: %s" hif-token))
- (when paren
- (hif-nexttoken)
- (unless (eq hif-token 'rparen)
- (error "Error: expected \")\" after identifier")))
- (hif-nexttoken)
- `(hif-defined (quote ,ident))))
- ((numberp hif-token)
- (prog1 hif-token (hif-nexttoken)))
-
- ((memq hif-token '(hif-minus hif-plus))
- (list (prog1 hif-token (hif-nexttoken)) 0 (hif-factor)))
- (t
- (let ((ident hif-token))
- (if (memq ident '(or and))
- (error "Error: missing identifier"))
- (hif-nexttoken)
- `(hif-lookup (quote ,ident))))))
- (defun hif-mathify (val)
- "Treat VAL as a number: if it's t or nil, use 1 or 0."
- (cond ((eq val t) 1)
- ((null val) 0)
- (t val)))
- (defun hif-conditional (a b c)
- (if (not (zerop (hif-mathify a))) (hif-mathify b) (hif-mathify c)))
- (defun hif-and (a b)
- (and (not (zerop (hif-mathify a))) (not (zerop (hif-mathify b)))))
- (defun hif-or (a b)
- (or (not (zerop (hif-mathify a))) (not (zerop (hif-mathify b)))))
- (defun hif-not (a)
- (zerop (hif-mathify a)))
- (defmacro hif-mathify-binop (fun)
- `(lambda (a b)
- ,(format "Like `%s' but treat t and nil as 1 and 0." fun)
- (,fun (hif-mathify a) (hif-mathify b))))
- (defalias 'hif-plus (hif-mathify-binop +))
- (defalias 'hif-minus (hif-mathify-binop -))
- (defalias 'hif-notequal (hif-mathify-binop /=))
- (defalias 'hif-greater (hif-mathify-binop >))
- (defalias 'hif-less (hif-mathify-binop <))
- (defalias 'hif-greater-equal (hif-mathify-binop >=))
- (defalias 'hif-less-equal (hif-mathify-binop <=))
- (defalias 'hif-logior (hif-mathify-binop logior))
- (defalias 'hif-logand (hif-mathify-binop logand))
- (defun hif-canonicalize ()
- "When at beginning of #ifX, return a Lisp expression for its condition."
- (save-excursion
- (let ((negate (looking-at hif-ifndef-regexp)))
- (re-search-forward hif-ifx-regexp)
- (let* ((tokens (hif-tokenize (point)
- (progn (hif-end-of-line) (point))))
- (expr (hif-parse-if-exp tokens)))
-
- (if negate
- (list 'hif-not expr)
- expr)))))
- (defun hif-find-any-ifX ()
- "Move to next #if..., or #ifndef, at point or after."
-
- (prog1
- (re-search-forward hif-ifx-regexp (point-max) t)
- (beginning-of-line)))
- (defun hif-find-next-relevant ()
- "Move to next #if..., #else, or #endif, after the current line."
-
- (end-of-line)
-
- (if (re-search-forward hif-ifx-else-endif-regexp (point-max) t)
- (beginning-of-line)))
- (defun hif-find-previous-relevant ()
- "Move to previous #if..., #else, or #endif, before the current line."
-
- (beginning-of-line)
-
- (if (re-search-backward hif-ifx-else-endif-regexp (point-min) t)
- (beginning-of-line)))
- (defun hif-looking-at-ifX ()
- (looking-at hif-ifx-regexp))
- (defun hif-looking-at-endif ()
- (looking-at hif-endif-regexp))
- (defun hif-looking-at-else ()
- (looking-at hif-else-regexp))
- (defun hif-ifdef-to-endif ()
- "If positioned at #ifX or #else form, skip to corresponding #endif."
-
- (hif-find-next-relevant)
- (cond ((hif-looking-at-ifX)
- (hif-ifdef-to-endif)
- (hif-ifdef-to-endif))
- ((hif-looking-at-else)
- (hif-ifdef-to-endif))
- ((hif-looking-at-endif)
- 'done)
- (t
- (error "Mismatched #ifdef #endif pair"))))
- (defun hif-endif-to-ifdef ()
- "If positioned at #endif form, skip backward to corresponding #ifX."
-
- (let ((start (point)))
- (hif-find-previous-relevant)
- (if (= start (point))
- (error "Mismatched #ifdef #endif pair")))
- (cond ((hif-looking-at-endif)
- (hif-endif-to-ifdef)
- (hif-endif-to-ifdef))
- ((hif-looking-at-else)
- (hif-endif-to-ifdef))
- ((hif-looking-at-ifX)
- 'done)
- (t)))
- (defun forward-ifdef (&optional arg)
- "Move point to beginning of line of the next ifdef-endif.
- With argument, do this that many times."
- (interactive "p")
- (or arg (setq arg 1))
- (if (< arg 0) (backward-ifdef (- arg))
- (while (< 0 arg)
- (setq arg (- arg))
- (let ((start (point)))
- (unless (hif-looking-at-ifX)
- (hif-find-next-relevant))
- (if (hif-looking-at-ifX)
- (hif-ifdef-to-endif)
- (goto-char start)
- (error "No following #ifdef"))))))
- (defun backward-ifdef (&optional arg)
- "Move point to beginning of the previous ifdef-endif.
- With argument, do this that many times."
- (interactive "p")
- (or arg (setq arg 1))
- (if (< arg 0) (forward-ifdef (- arg))
- (while (< 0 arg)
- (setq arg (1- arg))
- (beginning-of-line)
- (let ((start (point)))
- (unless (hif-looking-at-endif)
- (hif-find-previous-relevant))
- (if (hif-looking-at-endif)
- (hif-endif-to-ifdef)
- (goto-char start)
- (error "No previous #ifdef"))))))
- (defun down-ifdef ()
- "Move point to beginning of nested ifdef or else-part."
- (interactive)
- (let ((start (point)))
- (hif-find-next-relevant)
- (if (or (hif-looking-at-ifX) (hif-looking-at-else))
- ()
- (goto-char start)
- (error "No following #ifdef"))))
- (defun up-ifdef ()
- "Move point to beginning of enclosing ifdef or else-part."
- (interactive)
- (beginning-of-line)
- (let ((start (point)))
- (unless (hif-looking-at-endif)
- (hif-find-previous-relevant))
- (if (hif-looking-at-endif)
- (hif-endif-to-ifdef))
- (if (= start (point))
- (error "No previous #ifdef"))))
- (defun next-ifdef (&optional arg)
- "Move to the beginning of the next #ifX, #else, or #endif.
- With argument, do this that many times."
- (interactive "p")
- (or arg (setq arg 1))
- (if (< arg 0) (previous-ifdef (- arg))
- (while (< 0 arg)
- (setq arg (1- arg))
- (hif-find-next-relevant)
- (when (eolp)
- (beginning-of-line)
- (error "No following #ifdefs, #elses, or #endifs")))))
- (defun previous-ifdef (&optional arg)
- "Move to the beginning of the previous #ifX, #else, or #endif.
- With argument, do this that many times."
- (interactive "p")
- (or arg (setq arg 1))
- (if (< arg 0) (next-ifdef (- arg))
- (while (< 0 arg)
- (setq arg (1- arg))
- (let ((start (point)))
- (hif-find-previous-relevant)
- (if (= start (point))
- (error "No previous #ifdefs, #elses, or #endifs"))))))
- (defsubst hif-make-range (start end &optional else)
- (list start else end))
- (defsubst hif-range-start (range) (elt range 0))
- (defsubst hif-range-else (range) (elt range 1))
- (defsubst hif-range-end (range) (elt range 2))
- (defun hif-find-range ()
- "Return a Range structure describing the current #if region.
- Point is left unchanged."
-
- (save-excursion
- (beginning-of-line)
- (let ((start (point))
- (else nil)
- (end nil))
-
-
- (while (progn
- (hif-find-next-relevant)
- (hif-looking-at-ifX))
- (hif-ifdef-to-endif))
-
- (cond ((hif-looking-at-else)
- (setq else (point)))
- (t
- (setq end (point))))
-
- (when else
- (while (progn
- (hif-find-next-relevant)
- (hif-looking-at-ifX))
- (hif-ifdef-to-endif))
- (if (hif-looking-at-else)
- (error "Found two elses in a row? Broken!"))
- (setq end (point)))
- (hif-make-range start end else))))
- (defun hif-hide-line (point)
- "Hide the line containing point. Does nothing if `hide-ifdef-lines' is nil."
- (when hide-ifdef-lines
- (save-excursion
- (goto-char point)
- (hide-ifdef-region-internal
- (line-beginning-position) (progn (hif-end-of-line) (point))))))
- (defun hif-recurse-on (start end)
- "Call `hide-ifdef-guts' after narrowing to end of START line and END line."
- (save-excursion
- (save-restriction
- (goto-char start)
- (end-of-line)
- (narrow-to-region (point) end)
- (hide-ifdef-guts))))
- (defun hif-possibly-hide ()
- "Called at #ifX expression, this hides those parts that should be hidden.
- It uses the judgment of `hide-ifdef-evaluator'."
-
- (let ((test (hif-canonicalize))
- (range (hif-find-range)))
-
- (hif-hide-line (hif-range-end range))
- (if (not (hif-not (funcall hide-ifdef-evaluator test)))
- (cond ((hif-range-else range)
- (hif-hide-line (hif-range-else range))
- (hide-ifdef-region (hif-range-else range)
- (1- (hif-range-end range)))
- (hif-recurse-on (hif-range-start range)
- (hif-range-else range)))
- (t
- (hif-recurse-on (hif-range-start range)
- (hif-range-end range))))
- (cond ((hif-range-else range)
- (hif-hide-line (hif-range-else range))
- (hide-ifdef-region (hif-range-start range)
- (1- (hif-range-else range)))
- (hif-recurse-on (hif-range-else range)
- (hif-range-end range)))
- (t
- (hide-ifdef-region (point)
- (1- (hif-range-end range))))))
- (hif-hide-line (hif-range-start range))
- (goto-char (hif-range-end range))
- (end-of-line)))
- (defun hide-ifdef-guts ()
- "Does most of the work of `hide-ifdefs'.
- It does not do the work that's pointless to redo on a recursive entry."
-
- (save-excursion
- (goto-char (point-min))
- (while (hif-find-any-ifX)
- (hif-possibly-hide))))
- (defun hide-ifdef-toggle-read-only ()
- "Toggle `hide-ifdef-read-only'."
- (interactive)
- (setq hide-ifdef-read-only (not hide-ifdef-read-only))
- (message "Hide-Read-Only %s"
- (if hide-ifdef-read-only "ON" "OFF"))
- (if hide-ifdef-hiding
- (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only)))
- (force-mode-line-update))
- (defun hide-ifdef-toggle-outside-read-only ()
- "Replacement for `toggle-read-only' within Hide-Ifdef mode."
- (interactive)
- (setq hif-outside-read-only (not hif-outside-read-only))
- (message "Read only %s"
- (if hif-outside-read-only "ON" "OFF"))
- (setq buffer-read-only
- (or (and hide-ifdef-hiding hide-ifdef-read-only)
- hif-outside-read-only))
- (force-mode-line-update))
- (defun hide-ifdef-toggle-shadowing ()
- "Toggle shadowing."
- (interactive)
- (set (make-local-variable 'hide-ifdef-shadow) (not hide-ifdef-shadow))
- (message "Shadowing %s" (if hide-ifdef-shadow "ON" "OFF"))
- (save-restriction
- (widen)
- (dolist (overlay (overlays-in (point-min) (point-max)))
- (when (overlay-get overlay 'hide-ifdef)
- (if hide-ifdef-shadow
- (progn
- (overlay-put overlay 'invisible nil)
- (overlay-put overlay 'face 'hide-ifdef-shadow))
- (overlay-put overlay 'face nil)
- (overlay-put overlay 'invisible 'hide-ifdef))))))
- (defun hide-ifdef-define (var)
- "Define a VAR so that #ifdef VAR would be included."
- (interactive "SDefine what? ")
- (hif-set-var var 1)
- (if hide-ifdef-hiding (hide-ifdefs)))
- (defun hide-ifdef-undef (var)
- "Undefine a VAR so that #ifdef VAR would not be included."
- (interactive "SUndefine what? ")
- (hif-set-var var nil)
- (if hide-ifdef-hiding (hide-ifdefs)))
- (defun hide-ifdefs (&optional nomsg)
- "Hide the contents of some #ifdefs.
- Assume that defined symbols have been added to `hide-ifdef-env'.
- The text hidden is the text that would not be included by the C
- preprocessor if it were given the file with those symbols defined.
- Turn off hiding by calling `show-ifdefs'."
- (interactive)
- (message "Hiding...")
- (setq hif-outside-read-only buffer-read-only)
- (unless hide-ifdef-mode (hide-ifdef-mode 1))
- (if hide-ifdef-hiding
- (show-ifdefs))
- (setq hide-ifdef-hiding t)
- (hide-ifdef-guts)
- (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only))
- (or nomsg
- (message "Hiding done")))
- (defun show-ifdefs ()
- "Cancel the effects of `hide-ifdef': show the contents of all #ifdefs."
- (interactive)
- (setq buffer-read-only hif-outside-read-only)
- (hif-show-all)
- (setq hide-ifdef-hiding nil))
- (defun hif-find-ifdef-block ()
- "Utility for hide and show `ifdef-block'.
- Return as (TOP . BOTTOM) the extent of ifdef block."
- (let (max-bottom)
- (cons (save-excursion
- (beginning-of-line)
- (unless (or (hif-looking-at-else) (hif-looking-at-ifX))
- (up-ifdef))
- (prog1 (point)
- (hif-ifdef-to-endif)
- (setq max-bottom (1- (point)))))
- (save-excursion
- (beginning-of-line)
- (unless (hif-looking-at-endif)
- (hif-find-next-relevant))
- (while (hif-looking-at-ifX)
- (hif-ifdef-to-endif)
- (hif-find-next-relevant))
- (min max-bottom (1- (point)))))))
- (defun hide-ifdef-block ()
- "Hide the ifdef block (true or false part) enclosing or before the cursor."
- (interactive)
- (unless hide-ifdef-mode (hide-ifdef-mode 1))
- (let ((top-bottom (hif-find-ifdef-block)))
- (hide-ifdef-region (car top-bottom) (cdr top-bottom))
- (when hide-ifdef-lines
- (hif-hide-line (car top-bottom))
- (hif-hide-line (1+ (cdr top-bottom))))
- (setq hide-ifdef-hiding t))
- (setq buffer-read-only (or hide-ifdef-read-only hif-outside-read-only)))
- (defun show-ifdef-block ()
- "Show the ifdef block (true or false part) enclosing or before the cursor."
- (interactive)
- (let ((top-bottom (hif-find-ifdef-block)))
- (if hide-ifdef-lines
- (hif-show-ifdef-region
- (save-excursion
- (goto-char (car top-bottom)) (line-beginning-position))
- (save-excursion
- (goto-char (1+ (cdr top-bottom)))
- (hif-end-of-line) (point)))
- (hif-show-ifdef-region (1- (car top-bottom)) (cdr top-bottom)))))
- (defvar hide-ifdef-define-alist nil
- "A global assoc list of pre-defined symbol lists.")
- (defun hif-compress-define-list (env)
- "Compress the define list ENV into a list of defined symbols only."
- (let ((new-defs nil))
- (dolist (def env new-defs)
- (if (hif-lookup (car def)) (push (car def) new-defs)))))
- (defun hide-ifdef-set-define-alist (name)
- "Set the association for NAME to `hide-ifdef-env'."
- (interactive "SSet define list: ")
- (push (cons name (hif-compress-define-list hide-ifdef-env))
- hide-ifdef-define-alist))
- (defun hide-ifdef-use-define-alist (name)
- "Set `hide-ifdef-env' to the define list specified by NAME."
- (interactive
- (list (completing-read "Use define list: "
- (mapcar (lambda (x) (symbol-name (car x)))
- hide-ifdef-define-alist)
- nil t)))
- (if (stringp name) (setq name (intern name)))
- (let ((define-list (assoc name hide-ifdef-define-alist)))
- (if define-list
- (setq hide-ifdef-env
- (mapcar (lambda (arg) (cons arg t))
- (cdr define-list)))
- (error "No define list for %s" name))
- (if hide-ifdef-hiding (hide-ifdefs))))
- (provide 'hideif)
|