1 ;;; ebrowse.el --- Emacs C++ class browser & tags facility
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation Inc.
7 ;; Author: Gerd Moellmann <gerd@gnu.org>
9 ;; Keywords: C++ tags tools
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to
25 ;; the Free Software Foundation, 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
30 ;; This package implements
32 ;; - A class browser for C++
33 ;; - A complete set of tags-like functions working on class trees
34 ;; - An electric buffer list showing class browser buffers only
36 ;; Documentation is found in a separate Info file.
52 "Settings for the C++ class browser."
56 (defcustom ebrowse-search-path nil
57 "*List of directories to search for source files in a class tree.
58 Elements should be directory names; nil as an element means to try
59 to find source files relative to the location of the BROWSE file loaded."
61 :type
'(repeat (choice (const :tag
"Default" nil
)
62 (string :tag
"Directory"))))
65 (defcustom ebrowse-view
/find-hook nil
66 "*Hooks run after finding or viewing a member or class."
71 (defcustom ebrowse-not-found-hook nil
72 "*Hooks run when finding or viewing a member or class was not successful."
77 (defcustom ebrowse-electric-list-mode-hook nil
78 "*Hook called by `ebrowse-electric-position-mode'."
83 (defcustom ebrowse-max-positions
50
84 "*Number of markers saved on electric position stack."
90 (defgroup ebrowse-tree nil
91 "Settings for class tree buffers."
95 (defcustom ebrowse-tree-mode-hook nil
96 "*Hook run in each new tree buffer."
101 (defcustom ebrowse-tree-buffer-name
"*Tree*"
102 "*The default name of class tree buffers."
107 (defcustom ebrowse--indentation
4
108 "*The amount by which subclasses are indented in the tree."
113 (defcustom ebrowse-source-file-column
40
114 "*The column in which source file names are displayed in the tree."
119 (defcustom ebrowse-tree-left-margin
2
120 "*Amount of space left at the left side of the tree display.
121 This space is used to display markers."
127 (defgroup ebrowse-member nil
128 "Settings for member buffers."
132 (defcustom ebrowse-default-declaration-column
25
133 "*The column in which member declarations are displayed in member buffers."
134 :group
'ebrowse-member
138 (defcustom ebrowse-default-column-width
25
139 "*The width of the columns in member buffers (short display form)."
140 :group
'ebrowse-member
144 (defcustom ebrowse-member-buffer-name
"*Members*"
145 "*The name of the buffer for member display."
146 :group
'ebrowse-member
150 (defcustom ebrowse-member-mode-hook nil
151 "*Run in each new member buffer."
152 :group
'ebrowse-member
157 (defgroup ebrowse-faces nil
158 "Faces used by Ebrowse."
162 (defface ebrowse-tree-mark
163 '((((min-colors 88)) (:foreground
"red1"))
164 (t (:foreground
"red")))
165 "*The face used for the mark character in the tree."
166 :group
'ebrowse-faces
)
167 ;; backward-compatibility alias
168 (put 'ebrowse-tree-mark-face
'face-alias
'ebrowse-tree-mark
)
171 (defface ebrowse-root-class
172 '((((min-colors 88)) (:weight bold
:foreground
"blue1"))
173 (t (:weight bold
:foreground
"blue")))
174 "*The face used for root classes in the tree."
175 :group
'ebrowse-faces
)
176 ;; backward-compatibility alias
177 (put 'ebrowse-root-class-face
'face-alias
'ebrowse-root-class
)
180 (defface ebrowse-file-name
182 "*The face for filenames displayed in the tree."
183 :group
'ebrowse-faces
)
184 ;; backward-compatibility alias
185 (put 'ebrowse-file-name-face
'face-alias
'ebrowse-file-name
)
188 (defface ebrowse-default
190 "*Face for everything else in the tree not having other faces."
191 :group
'ebrowse-faces
)
192 ;; backward-compatibility alias
193 (put 'ebrowse-default-face
'face-alias
'ebrowse-default
)
196 (defface ebrowse-member-attribute
197 '((((min-colors 88)) (:foreground
"red1"))
198 (t (:foreground
"red")))
199 "*Face used to display member attributes."
200 :group
'ebrowse-faces
)
201 ;; backward-compatibility alias
202 (put 'ebrowse-member-attribute-face
'face-alias
'ebrowse-member-attribute
)
205 (defface ebrowse-member-class
206 '((t (:foreground
"purple")))
207 "*Face used to display the class title in member buffers."
208 :group
'ebrowse-faces
)
209 ;; backward-compatibility alias
210 (put 'ebrowse-member-class-face
'face-alias
'ebrowse-member-class
)
213 (defface ebrowse-progress
214 '((((min-colors 88)) (:background
"blue1"))
215 (t (:background
"blue")))
216 "*Face for progress indicator."
217 :group
'ebrowse-faces
)
218 ;; backward-compatibility alias
219 (put 'ebrowse-progress-face
'face-alias
'ebrowse-progress
)
225 (defun ebrowse-some (predicate vector
)
226 "Return true if PREDICATE is true of some element of VECTOR.
227 If so, return the value returned by PREDICATE."
228 (let ((length (length vector
))
231 (while (and (< i length
) (not result
))
232 (setq result
(funcall predicate
(aref vector i
))
237 (defun ebrowse-every (predicate vector
)
238 "Return true if PREDICATE is true of every element of VECTOR."
239 (let ((length (length vector
))
242 (while (and (< i length
) result
)
243 (setq result
(funcall predicate
(aref vector i
))
248 (defun ebrowse-position (item list
&optional test
)
249 "Return the position of ITEM in LIST or nil if not found.
250 Compare items with `eq' or TEST if specified."
254 (when (funcall test item
(car list
))
255 (setq found i list nil
))
256 (setq list
(cdr list
) i
(1+ i
))))
259 (when (eq item
(car list
))
260 (setq found i list nil
))
261 (setq list
(cdr list
) i
(1+ i
)))))
265 (defun ebrowse-delete-if-not (predicate list
)
266 "Remove elements not satisfying PREDICATE from LIST and return the result.
267 This is a destructive operation."
270 (let ((next (cdr list
)))
271 (when (funcall predicate
(car list
))
272 (setq result
(nconc result list
))
273 (setf (cdr list
) nil
))
278 (defmacro ebrowse-output
(&rest body
)
279 "Eval BODY with a writable current buffer.
280 Preserve buffer's modified state."
281 (let ((modified (make-symbol "--ebrowse-output--")))
282 `(let (buffer-read-only (,modified
(buffer-modified-p)))
285 (set-buffer-modified-p ,modified
)))))
288 (defmacro ebrowse-ignoring-completion-case
(&rest body
)
289 "Eval BODY with `completion-ignore-case' bound to t."
290 `(let ((completion-ignore-case t
))
294 (defmacro ebrowse-save-selective
(&rest body
)
295 "Eval BODY with `selective-display' restored at the end."
296 (let ((var (make-symbol "var")))
297 `(let ((,var selective-display
))
300 (setq selective-display
,var
)))))
303 (defmacro ebrowse-for-all-trees
(spec &rest body
)
304 "For all trees in SPEC, eval BODY."
305 (let ((var (make-symbol "var"))
306 (spec-var (car spec
))
308 `(loop for
,var being the symbols of
,array
309 as
,spec-var
= (get ,var
'ebrowse-root
) do
310 (when (vectorp ,spec-var
)
313 ;;; Set indentation for macros above.
315 (put 'ebrowse-output
'lisp-indent-hook
0)
316 (put 'ebrowse-ignoring-completion-case
'lisp-indent-hook
0)
317 (put 'ebrowse-save-selective
'lisp-indent-hook
0)
318 (put 'ebrowse-for-all-trees
'lisp-indent-hook
1)
321 (defsubst ebrowse-set-face
(start end face
)
322 "Set face of a region START END to FACE."
323 (overlay-put (make-overlay start end
) 'face face
))
326 (defun ebrowse-completing-read-value (prompt table initial-input
)
327 "Read a string in the minibuffer, with completion.
328 Case is ignored in completions.
330 PROMPT is a string to prompt with; normally it ends in a colon and a space.
331 TABLE is an alist whose elements' cars are strings, or an obarray.
332 TABLE can also be a function to do the completion itself.
333 If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
334 If it is (STRING . POSITION), the initial input
335 is STRING, but point is placed POSITION characters into the string."
336 (ebrowse-ignoring-completion-case
337 (completing-read prompt table nil t initial-input
)))
340 (defun ebrowse-value-in-buffer (sym buffer
)
341 "Return the value of SYM in BUFFER."
342 (let ((old-buffer (current-buffer)))
347 (set-buffer old-buffer
))))
350 (defun ebrowse-rename-buffer (new-name)
351 "Rename current buffer to NEW-NAME.
352 If a buffer with name NEW-NAME already exists, delete it first."
353 (let ((old-buffer (get-buffer new-name
)))
354 (unless (eq old-buffer
(current-buffer))
356 (save-excursion (kill-buffer old-buffer
)))
357 (rename-buffer new-name
))))
360 (defun ebrowse-trim-string (string)
361 "Return a copy of STRING with leading white space removed.
362 Replace sequences of newlines with a single space."
363 (when (string-match "^[ \t\n\r]+" string
)
364 (setq string
(substring string
(match-end 0))))
365 (loop while
(string-match "[\n]+" string
)
366 finally return string do
367 (setq string
(replace-match " " nil t string
))))
370 (defun ebrowse-width-of-drawable-area ()
371 "Return the width of the display area for the current buffer.
372 If buffer is displayed in a window, use that window's width,
373 otherwise use the current frame's width."
374 (let ((window (get-buffer-window (current-buffer))))
376 (window-width window
)
380 ;;; Structure definitions
382 (defstruct (ebrowse-hs (:type vector
) :named
)
383 "Header structure found at the head of BROWSE files."
384 ;; A version string that is compared against the version number of
385 ;; the Lisp package when the file is loaded. This is done to
386 ;; detect file format changes.
388 ;; Command line options used for producing the BROWSE file.
390 ;; The following slot is currently not used. It's kept to keep
391 ;; the file format compatible.
393 ;; A slot that is filled out after the tree is loaded. This slot is
394 ;; set to a hash table mapping members to lists of classes in which
399 (defstruct (ebrowse-ts (:type vector
) :named
)
401 Following the header structure, a BROWSE file contains a number
402 of `ebrowse-ts' structures, each one describing one root class of
403 the class hierarchy with all its subclasses."
404 ;; A `ebrowse-cs' structure describing the root class.
406 ;; A list of `ebrowse-ts' structures for all subclasses.
408 ;; Lists of `ebrowse-ms' structures for each member in a group of
410 member-variables member-functions static-variables static-functions
412 ;; List of `ebrowse-ts' structures for base classes. This slot is
413 ;; filled at load time.
415 ;; A marker slot used in the tree buffer (can be saved back to disk.
419 (defstruct (ebrowse-bs (:type vector
) :named
)
420 "Common sub-structure.
421 A common structure defining an occurrence of some name in the
423 ;; The class or member name as a string constant
425 ;; An optional string for the scope of nested classes or for
428 ;; Various flags describing properties of classes/members, e.g. is
429 ;; template, is const etc.
431 ;; File in which the entity is found. If this is part of a
432 ;; `ebrowse-ms' member description structure, and FILE is nil, then
433 ;; search for the name in the SOURCE-FILE of the members class.
435 ;; Regular expression to search for. This slot can be a number in
436 ;; which case the number is the file position at which the regular
437 ;; expression is found in a separate regexp file (see the header
438 ;; structure). This slot can be nil in which case the regular
439 ;; expression will be generated from the class/member name.
441 ;; The buffer position at which the search for the class or member
446 (defstruct (ebrowse-cs (:include ebrowse-bs
) (:type vector
) :named
)
448 This is the structure stored in the CLASS slot of a `ebrowse-ts'
449 structure. It describes the location of the class declaration."
453 (defstruct (ebrowse-ms (:include ebrowse-bs
) (:type vector
) :named
)
455 This is the structure describing a single member. The `ebrowse-ts'
456 structure contains various lists for the different types of
458 ;; Public, protected, private
460 ;; The file in which the member's definition can be found.
462 ;; Same as PATTERN above, but for the member definition.
464 ;; Same as POINT above but for member definition.
469 ;;; Some macros to access the FLAGS slot of a MEMBER.
471 (defsubst ebrowse-member-bit-set-p
(member bit
)
472 "Value is non-nil if MEMBER's bit BIT is set."
473 (/= 0 (logand (ebrowse-bs-flags member
) bit
)))
476 (defsubst ebrowse-virtual-p
(member)
477 "Value is non-nil if MEMBER is virtual."
478 (ebrowse-member-bit-set-p member
1))
481 (defsubst ebrowse-inline-p
(member)
482 "Value is non-nil if MEMBER is inline."
483 (ebrowse-member-bit-set-p member
2))
486 (defsubst ebrowse-const-p
(member)
487 "Value is non-nil if MEMBER is const."
488 (ebrowse-member-bit-set-p member
4))
491 (defsubst ebrowse-pure-virtual-p
(member)
492 "Value is non-nil if MEMBER is a pure virtual function."
493 (ebrowse-member-bit-set-p member
8))
496 (defsubst ebrowse-mutable-p
(member)
497 "Value is non-nil if MEMBER is mutable."
498 (ebrowse-member-bit-set-p member
16))
501 (defsubst ebrowse-template-p
(member)
502 "Value is non-nil if MEMBER is a template."
503 (ebrowse-member-bit-set-p member
32))
506 (defsubst ebrowse-explicit-p
(member)
507 "Value is non-nil if MEMBER is explicit."
508 (ebrowse-member-bit-set-p member
64))
511 (defsubst ebrowse-throw-list-p
(member)
512 "Value is non-nil if MEMBER has a throw specification."
513 (ebrowse-member-bit-set-p member
128))
516 (defsubst ebrowse-extern-c-p
(member)
517 "Value is non-nil if MEMBER.is `extern \"C\"'."
518 (ebrowse-member-bit-set-p member
256))
521 (defsubst ebrowse-define-p
(member)
522 "Value is non-nil if MEMBER is a define."
523 (ebrowse-member-bit-set-p member
512))
526 (defconst ebrowse-version-string
"ebrowse 5.0"
527 "Version string expected in BROWSE files.")
530 (defconst ebrowse-globals-name
"*Globals*"
531 "The name used for the surrogate class.containing global entities.
532 This must be the same that `ebrowse' uses.")
535 (defvar ebrowse--last-regexp nil
536 "Last regular expression searched for in tree and member buffers.
537 Each tree and member buffer maintains its own search history.")
538 (make-variable-buffer-local 'ebrowse--last-regexp
)
541 (defconst ebrowse-member-list-accessors
542 '(ebrowse-ts-member-variables
543 ebrowse-ts-member-functions
544 ebrowse-ts-static-variables
545 ebrowse-ts-static-functions
548 "List of accessors for member lists.
549 Each element is the symbol of an accessor function.
550 The nth element must be the accessor for the nth member list
551 in an `ebrowse-ts' structure.")
554 ;;; FIXME: Add more doc strings for the buffer-local variables below.
556 (defvar ebrowse--tree-obarray nil
557 "Obarray holding all `ebrowse-ts' structures of a class tree.
558 Buffer-local in Ebrowse buffers.")
561 (defvar ebrowse--tags-file-name nil
562 "File from which BROWSE file was loaded.
563 Buffer-local in Ebrowse buffers.")
566 (defvar ebrowse--header nil
567 "Header structure of type `ebrowse-hs' of a class tree.
568 Buffer-local in Ebrowse buffers.")
571 (defvar ebrowse--frozen-flag nil
572 "Non-nil means an Ebrowse buffer won't be reused.
573 Buffer-local in Ebrowse buffers.")
576 (defvar ebrowse--show-file-names-flag nil
577 "Non-nil means show file names in a tree buffer.
578 Buffer-local in Ebrowse tree buffers.")
581 (defvar ebrowse--long-display-flag nil
582 "Non-nil means show members in long display form.
583 Buffer-local in Ebrowse member buffers.")
586 (defvar ebrowse--n-columns nil
587 "Number of columns to display for short member display form.
588 Buffer-local in Ebrowse member buffers.")
591 (defvar ebrowse--column-width nil
592 "Width of a columns to display for short member display form.
593 Buffer-local in Ebrowse member buffers.")
596 (defvar ebrowse--virtual-display-flag nil
597 "Non-nil means display virtual members in a member buffer.
598 Buffer-local in Ebrowse member buffers.")
601 (defvar ebrowse--inline-display-flag nil
602 "Non-nil means display inline members in a member buffer.
603 Buffer-local in Ebrowse member buffers.")
606 (defvar ebrowse--const-display-flag nil
607 "Non-nil means display const members in a member buffer.
608 Buffer-local in Ebrowse member buffers.")
611 (defvar ebrowse--pure-display-flag nil
612 "Non-nil means display pure virtual members in a member buffer.
613 Buffer-local in Ebrowse member buffers.")
616 (defvar ebrowse--filters nil
617 "Filter for display of public, protected, and private members.
618 This is a vector of three elements. An element nil means the
619 corresponding members are not shown.
620 Buffer-local in Ebrowse member buffers.")
623 (defvar ebrowse--show-inherited-flag nil
624 "Non-nil means display inherited members in a member buffer.
625 Buffer-local in Ebrowse member buffers.")
628 (defvar ebrowse--attributes-flag nil
629 "Non-nil means display member attributes in a member buffer.
630 Buffer-local in Ebrowse member buffers.")
633 (defvar ebrowse--source-regexp-flag nil
634 "Non-nil means display member regexps in a member buffer.
635 Buffer-local in Ebrowse member buffers.")
638 (defvar ebrowse--displayed-class nil
639 "Class displayed in a member buffer, a `ebrowse-ts' structure.
640 Buffer-local in Ebrowse member buffers.")
643 (defvar ebrowse--accessor nil
644 "Member list displayed in a member buffer.
645 This is a symbol whose function definition is an accessor for the
646 member list in `ebrowse-cs' structures.
647 Buffer-local in Ebrowse member buffers.")
650 (defvar ebrowse--member-list nil
651 "The list of `ebrowse-ms' structures displayed in a member buffer.
652 Buffer-local in Ebrowse member buffers.")
655 (defvar ebrowse--decl-column nil
656 "Column in which declarations are displayed in member buffers.
657 Buffer-local in Ebrowse member buffers.")
660 (defvar ebrowse--frame-configuration nil
661 "Frame configuration saved when viewing a class/member in another frame.
662 Buffer-local in Ebrowse buffers.")
665 (defvar ebrowse--view-exit-action nil
666 "Action to perform after viewing a class/member.
667 Either `kill-buffer' or nil.
668 Buffer-local in Ebrowse buffers.")
671 (defvar ebrowse--tree nil
673 Buffer-local in Ebrowse buffers.")
676 ;;; Temporaries used to communicate with `ebrowse-find-pattern'.
678 (defvar ebrowse-temp-position-to-view nil
)
679 (defvar ebrowse-temp-info-to-view nil
)
682 (defvar ebrowse-tree-mode-map
()
683 "The keymap used in tree mode buffers.")
686 (defvar ebrowse--member-mode-strings nil
687 "Strings displayed in the mode line of member buffers.")
690 (defvar ebrowse-member-mode-map
()
691 "The keymap used in the member buffers.")
694 ;;; Define mode line titles for each member list.
696 (put 'ebrowse-ts-member-variables
'ebrowse-title
"Member Variables")
697 (put 'ebrowse-ts-member-functions
'ebrowse-title
"Member Functions")
698 (put 'ebrowse-ts-static-variables
'ebrowse-title
"Static Variables")
699 (put 'ebrowse-ts-static-functions
'ebrowse-title
"Static Functions")
700 (put 'ebrowse-ts-friends
'ebrowse-title
"Friends")
701 (put 'ebrowse-ts-types
'ebrowse-title
"Types")
703 (put 'ebrowse-ts-member-variables
'ebrowse-global-title
"Global Variables")
704 (put 'ebrowse-ts-member-functions
'ebrowse-global-title
"Global Functions")
705 (put 'ebrowse-ts-static-variables
'ebrowse-global-title
"Static Variables")
706 (put 'ebrowse-ts-static-functions
'ebrowse-global-title
"Static Functions")
707 (put 'ebrowse-ts-friends
'ebrowse-global-title
"Defines")
708 (put 'ebrowse-ts-types
'ebrowse-global-title
"Types")
712 ;;; Operations on `ebrowse-ts' structures
714 (defun ebrowse-files-table (&optional marked-only
)
715 "Return an obarray containing all files mentioned in the current tree.
716 The tree is expected in the buffer-local variable `ebrowse--tree-obarray'.
717 MARKED-ONLY non-nil means include marked classes only."
718 (let ((files (make-hash-table :test
'equal
))
720 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
721 (when (or (not marked-only
) (ebrowse-ts-mark tree
))
722 (let ((class (ebrowse-ts-class tree
)))
723 (when (zerop (%
(incf i
) 20))
724 (ebrowse-show-progress "Preparing file list" (zerop i
)))
725 ;; Add files mentioned in class description
726 (let ((source-file (ebrowse-cs-source-file class
))
727 (file (ebrowse-cs-file class
)))
729 (puthash source-file source-file files
))
731 (puthash file file files
))
732 ;; For all member lists in this class
733 (loop for accessor in ebrowse-member-list-accessors do
734 (loop for m in
(funcall accessor tree
)
735 for file
= (ebrowse-ms-file m
)
736 for def-file
= (ebrowse-ms-definition-file m
) do
738 (puthash file file files
))
740 (puthash def-file def-file files
))))))))
744 (defun ebrowse-files-list (&optional marked-only
)
745 "Return a list containing all files mentioned in a tree.
746 MARKED-ONLY non-nil means include marked classes only."
748 (maphash #'(lambda (file dummy
) (setq list
(cons file list
)))
749 (ebrowse-files-table marked-only
))
753 (defun* ebrowse-marked-classes-p
()
754 "Value is non-nil if any class in the current class tree is marked."
755 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
756 (when (ebrowse-ts-mark tree
)
757 (return-from ebrowse-marked-classes-p tree
))))
760 (defsubst ebrowse-globals-tree-p
(tree)
761 "Return t if TREE is the one for global entities."
762 (string= (ebrowse-bs-name (ebrowse-ts-class tree
))
763 ebrowse-globals-name
))
766 (defsubst ebrowse-qualified-class-name
(class)
767 "Return the name of CLASS with scope prepended, if any."
768 (if (ebrowse-cs-scope class
)
769 (concat (ebrowse-cs-scope class
) "::" (ebrowse-cs-name class
))
770 (ebrowse-cs-name class
)))
773 (defun ebrowse-tree-obarray-as-alist (&optional qualified-names-p
)
774 "Return an alist describing all classes in a tree.
775 Each elements in the list has the form (CLASS-NAME . TREE).
776 CLASS-NAME is the name of the class. TREE is the
777 class tree whose root is QUALIFIED-CLASS-NAME.
778 QUALIFIED-NAMES-P non-nil means return qualified names as CLASS-NAME.
779 The class tree is found in the buffer-local variable `ebrowse--tree-obarray'."
781 (if qualified-names-p
782 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
784 (acons (ebrowse-qualified-class-name (ebrowse-ts-class tree
))
786 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
788 (acons (ebrowse-cs-name (ebrowse-ts-class tree
))
793 (defun ebrowse-sort-tree-list (list)
794 "Sort a LIST of `ebrowse-ts' structures by qualified class names."
797 (string< (ebrowse-qualified-class-name (ebrowse-ts-class a
))
798 (ebrowse-qualified-class-name (ebrowse-ts-class b
))))))
801 (defun ebrowse-class-in-tree (class tree
)
802 "Search for a class with name CLASS in TREE.
803 If CLASS is found, return the tail of TREE starting at CLASS. This function
804 is used during the load phase where classes appended to a file replace older
806 (let ((tclass (ebrowse-ts-class class
))
808 (while (and tree
(not found
))
809 (let ((root-ptr tree
))
810 (when (string= (ebrowse-qualified-class-name (ebrowse-ts-class (car root-ptr
)))
811 (ebrowse-qualified-class-name tclass
))
812 (setq found root-ptr
))
813 (setq tree
(cdr tree
))))
817 (defun ebrowse-base-classes (tree)
818 "Return list of base-classes of TREE by searching subclass lists.
819 This function must be used instead of the struct slot
820 `base-classes' to access the base-class list directly because it
821 computes this information lazily."
822 (or (ebrowse-ts-base-classes tree
)
823 (setf (ebrowse-ts-base-classes tree
)
824 (loop with to-search
= (list tree
)
826 as search
= (pop to-search
)
827 while search finally return result
828 do
(ebrowse-for-all-trees (ti ebrowse--tree-obarray
)
829 (when (memq search
(ebrowse-ts-subclasses ti
))
830 (unless (memq ti result
)
831 (setq result
(nconc result
(list ti
))))
832 (push ti to-search
)))))))
835 (defun ebrowse-direct-base-classes (tree)
836 "Return the list of direct super classes of TREE."
838 (dolist (s (ebrowse-base-classes tree
))
839 (when (memq tree
(ebrowse-ts-subclasses s
))
840 (setq result
(cons s result
))))
845 ;;; Operations on MEMBER structures/lists
847 (defun ebrowse-name/accessor-alist
(tree accessor
)
848 "Return an alist containing all members of TREE in group ACCESSOR.
849 ACCESSOR is the accessor function for the member list.
850 Elements of the result have the form (NAME . ACCESSOR), where NAME
852 (loop for member in
(funcall accessor tree
)
853 collect
(cons (ebrowse-ms-name member
) accessor
)))
856 (defun ebrowse-name/accessor-alist-for-visible-members
()
857 "Return an alist describing all members visible in the current buffer.
858 Each element of the list has the form (MEMBER-NAME . ACCESSOR),
859 where MEMBER-NAME is the member's name, and ACCESSOR is the struct
860 accessor with which the member's list can be accessed in an `ebrowse-ts'
861 structure. The list includes inherited members if these are visible."
862 (let* ((list (ebrowse-name/accessor-alist ebrowse--displayed-class
864 (if ebrowse--show-inherited-flag
866 (loop for tree in
(ebrowse-base-classes
867 ebrowse--displayed-class
)
868 nconc
(ebrowse-name/accessor-alist
869 tree ebrowse--accessor
)))
873 (defun ebrowse-name/accessor-alist-for-class-members
()
874 "Like `ebrowse-name/accessor-alist-for-visible-members'.
875 This function includes members of base classes if base class members
876 are visible in the buffer."
878 (dolist (func ebrowse-member-list-accessors list
)
879 (setq list
(nconc list
(ebrowse-name/accessor-alist
880 ebrowse--displayed-class func
)))
881 (when ebrowse--show-inherited-flag
882 (dolist (class (ebrowse-base-classes ebrowse--displayed-class
))
884 (nconc list
(ebrowse-name/accessor-alist class func
))))))))
887 ;;; Progress indication
889 (defvar ebrowse-n-boxes
0)
890 (defconst ebrowse-max-boxes
60)
892 (defun ebrowse-show-progress (title &optional start
)
893 "Display a progress indicator.
894 TITLE is the title of the progress message. START non-nil means
895 this is the first progress message displayed."
896 (let (message-log-max)
897 (when start
(setq ebrowse-n-boxes
0))
898 (setq ebrowse-n-boxes
(mod (1+ ebrowse-n-boxes
) ebrowse-max-boxes
))
899 (message (concat title
": "
900 (propertize (make-string ebrowse-n-boxes
901 (if (display-color-p) ?\ ?
+))
902 'face
'ebrowse-progress
)))))
905 ;;; Reading a tree from disk
907 (defun ebrowse-read ()
908 "Read `ebrowse-hs' and `ebrowse-ts' structures in the current buffer.
909 Return a list (HEADER TREE) where HEADER is the file header read
910 and TREE is a list of `ebrowse-ts' structures forming the class tree."
911 (let ((header (condition-case nil
912 (read (current-buffer))
913 (error (error "No Ebrowse file header found"))))
915 ;; Check file format.
916 (unless (ebrowse-hs-p header
)
917 (error "No Ebrowse file header found"))
918 (unless (string= (ebrowse-hs-version header
) ebrowse-version-string
)
919 (error "File has wrong version `%s' (`%s' expected)"
920 (ebrowse-hs-version header
) ebrowse-version-string
))
921 ;; Read Lisp objects. Temporarily increase `gc-cons-threshold' to
922 ;; prevent a GC that would not free any memory.
923 (let ((gc-cons-threshold 2000000))
924 (while (not (progn (skip-chars-forward " \t\n\r") (eobp)))
925 (let* ((root (read (current-buffer)))
926 (old-root-ptr (ebrowse-class-in-tree root tree
)))
927 (ebrowse-show-progress "Reading data" (null tree
))
929 (setcar old-root-ptr root
)
935 (defun ebrowse-revert-tree-buffer-from-file (ignore-auto-save noconfirm
)
936 "Function installed as `revert-buffer-function' in tree buffers.
937 See that variable's documentation for the meaning of IGNORE-AUTO-SAVE and
939 (when (or noconfirm
(yes-or-no-p "Revert tree from disk? "))
940 (loop for member-buffer in
(ebrowse-same-tree-member-buffer-list)
941 do
(kill-buffer member-buffer
))
944 (insert-file (or buffer-file-name ebrowse--tags-file-name
)))
949 (defun ebrowse-create-tree-buffer (tree tags-file header obarray pop
)
950 "Create a new tree buffer for tree TREE.
951 The tree was loaded from file TAGS-FILE.
952 HEADER is the header structure of the file.
953 OBARRAY is an obarray with a symbol for each class in the tree.
954 POP non-nil means popup the buffer up at the end.
955 Return the buffer created."
956 (let ((name ebrowse-tree-buffer-name
))
957 (set-buffer (get-buffer-create name
))
959 (setq ebrowse--tree tree
960 ebrowse--tags-file-name tags-file
961 ebrowse--tree-obarray obarray
962 ebrowse--header header
963 ebrowse--frozen-flag nil
)
964 (ebrowse-redraw-tree)
965 (set-buffer-modified-p nil
)
967 (switch (switch-to-buffer name
))
968 (pop (pop-to-buffer name
)))
973 ;;; Operations for member obarrays
975 (defun ebrowse-fill-member-table ()
976 "Return an obarray holding all members of all classes in the current tree.
978 For each member, a symbol is added to the obarray. Members are
979 extracted from the buffer-local tree `ebrowse--tree-obarray'.
981 Each symbol has its property `ebrowse-info' set to a list (TREE MEMBER-LIST
982 MEMBER) where TREE is the tree in which the member is defined,
983 MEMBER-LIST is a symbol describing the member list in which the member
984 is found, and MEMBER is a MEMBER structure describing the member.
986 The slot `member-table' of the buffer-local header structure of
987 type `ebrowse-hs' is set to the resulting obarray."
988 (let ((members (make-hash-table :test
'equal
))
990 (setf (ebrowse-hs-member-table ebrowse--header
) nil
)
992 ;; For all classes...
993 (ebrowse-for-all-trees (c ebrowse--tree-obarray
)
994 (when (zerop (%
(incf i
) 10))
995 (ebrowse-show-progress "Preparing member lookup" (zerop i
)))
996 (loop for f in ebrowse-member-list-accessors do
997 (loop for m in
(funcall f c
) do
998 (let* ((member-name (ebrowse-ms-name m
))
999 (value (gethash member-name members
)))
1000 (push (list c f m
) value
)
1001 (puthash member-name value members
)))))
1002 (setf (ebrowse-hs-member-table ebrowse--header
) members
)))
1005 (defun ebrowse-member-table (header)
1006 "Return the member obarray. Build it if it hasn't been set up yet.
1007 HEADER is the tree header structure of the class tree."
1008 (when (null (ebrowse-hs-member-table header
))
1009 (loop for buffer in
(ebrowse-browser-buffer-list)
1010 until
(eq header
(ebrowse-value-in-buffer 'ebrowse--header buffer
))
1014 (ebrowse-fill-member-table))))
1015 (ebrowse-hs-member-table header
))
1019 ;;; Operations on TREE obarrays
1021 (defun ebrowse-build-tree-obarray (tree)
1022 "Make sure every class in TREE is represented by a unique object.
1023 Build obarray of all classes in TREE."
1024 (let ((classes (make-vector 127 0)))
1025 ;; Add root classes...
1026 (loop for root in tree
1028 (intern (ebrowse-qualified-class-name (ebrowse-ts-class root
)) classes
)
1029 do
(unless (get sym
'ebrowse-root
)
1030 (setf (get sym
'ebrowse-root
) root
)))
1031 ;; Process subclasses
1032 (ebrowse-insert-supers tree classes
)
1036 (defun ebrowse-insert-supers (tree classes
)
1037 "Build base class lists in class tree TREE.
1038 CLASSES is an obarray used to collect classes.
1040 Helper function for `ebrowse-build-tree-obarray'. Base classes should
1041 be ordered so that immediate base classes come first, then the base
1042 class of the immediate base class and so on. This means that we must
1043 construct the base-class list top down with adding each level at the
1044 beginning of the base-class list.
1046 We have to be cautious here not to end up in an infinite recursion
1047 if for some reason a circle is in the inheritance graph."
1048 (loop for class in tree
1049 as subclasses
= (ebrowse-ts-subclasses class
) do
1050 ;; Make sure every class is represented by a unique object
1051 (loop for subclass on subclasses
1053 (ebrowse-qualified-class-name (ebrowse-ts-class (car subclass
)))
1057 ;; Replace the subclass tree with the one found in
1058 ;; CLASSES if there is already an entry for that class
1059 ;; in it. Otherwise make a new entry.
1061 ;; CAVEAT: If by some means (e.g., use of the
1062 ;; preprocessor in class declarations, a name is marked
1063 ;; as a subclass of itself on some path, we would end up
1064 ;; in an endless loop. We have to omit subclasses from
1065 ;; the recursion that already have been processed.
1066 (if (get sym
'ebrowse-root
)
1067 (setf (car subclass
) (get sym
'ebrowse-root
))
1068 (setf (get sym
'ebrowse-root
) (car subclass
))))
1069 ;; Process subclasses
1070 (ebrowse-insert-supers subclasses classes
)))
1075 (unless ebrowse-tree-mode-map
1076 (let ((map (make-keymap)))
1077 (setf ebrowse-tree-mode-map map
)
1078 (suppress-keymap map
)
1080 (when (display-mouse-p)
1081 (define-key map
[down-mouse-3
] 'ebrowse-mouse-3-in-tree-buffer
)
1082 (define-key map
[mouse-2
] 'ebrowse-mouse-2-in-tree-buffer
)
1083 (define-key map
[down-mouse-1
] 'ebrowse-mouse-1-in-tree-buffer
))
1085 (let ((map1 (make-sparse-keymap)))
1086 (suppress-keymap map1 t
)
1087 (define-key map
"L" map1
)
1088 (define-key map1
"d" 'ebrowse-tree-command
:show-friends
)
1089 (define-key map1
"f" 'ebrowse-tree-command
:show-member-functions
)
1090 (define-key map1
"F" 'ebrowse-tree-command
:show-static-member-functions
)
1091 (define-key map1
"t" 'ebrowse-tree-command
:show-types
)
1092 (define-key map1
"v" 'ebrowse-tree-command
:show-member-variables
)
1093 (define-key map1
"V" 'ebrowse-tree-command
:show-static-member-variables
))
1095 (let ((map1 (make-sparse-keymap)))
1096 (suppress-keymap map1 t
)
1097 (define-key map
"M" map1
)
1098 (define-key map1
"a" 'ebrowse-mark-all-classes
)
1099 (define-key map1
"t" 'ebrowse-toggle-mark-at-point
))
1101 (let ((map1 (make-sparse-keymap)))
1102 (suppress-keymap map1 t
)
1103 (define-key map
"T" map1
)
1104 (define-key map1
"f" 'ebrowse-toggle-file-name-display
)
1105 (define-key map1
"s" 'ebrowse-show-file-name-at-point
)
1106 (define-key map1
"w" 'ebrowse-set-tree-indentation
)
1107 (define-key map
"x" 'ebrowse-statistics
))
1109 (define-key map
"n" 'ebrowse-repeat-member-search
)
1110 (define-key map
"q" 'bury-buffer
)
1111 (define-key map
"*" 'ebrowse-expand-all
)
1112 (define-key map
"+" 'ebrowse-expand-branch
)
1113 (define-key map
"-" 'ebrowse-collapse-branch
)
1114 (define-key map
"/" 'ebrowse-read-class-name-and-go
)
1115 (define-key map
" " 'ebrowse-view-class-declaration
)
1116 (define-key map
"?" 'describe-mode
)
1117 (define-key map
"\C-i" 'ebrowse-pop
/switch-to-member-buffer-for-same-tree
)
1118 (define-key map
"\C-k" 'ebrowse-remove-class-at-point
)
1119 (define-key map
"\C-l" 'ebrowse-redraw-tree
)
1120 (define-key map
"\C-m" 'ebrowse-find-class-declaration
)))
1124 ;;; Tree-mode - mode for tree buffers
1127 (defun ebrowse-tree-mode ()
1128 "Major mode for Ebrowse class tree buffers.
1129 Each line corresponds to a class in a class tree.
1130 Letters do not insert themselves, they are commands.
1131 File operations in the tree buffer work on class tree data structures.
1132 E.g.\\[save-buffer] writes the tree to the file it was loaded from.
1134 Tree mode key bindings:
1135 \\{ebrowse-tree-mode-map}"
1137 (let* ((ident (propertized-buffer-identification "C++ Tree"))
1138 header tree buffer-read-only
)
1140 (kill-all-local-variables)
1141 (use-local-map ebrowse-tree-mode-map
)
1143 (unless (zerop (buffer-size))
1144 (goto-char (point-min))
1145 (multiple-value-setq (header tree
) (ebrowse-read))
1146 (message "Sorting. Please be patient...")
1147 (setq tree
(ebrowse-sort-tree-list tree
))
1151 (mapcar 'make-local-variable
1152 '(ebrowse--tags-file-name
1153 ebrowse--indentation
1156 ebrowse--show-file-names-flag
1157 ebrowse--frozen-flag
1158 ebrowse--tree-obarray
1159 revert-buffer-function
))
1161 (setf ebrowse--show-file-names-flag nil
1162 ebrowse--tree-obarray
(make-vector 127 0)
1163 ebrowse--frozen-flag nil
1164 major-mode
'ebrowse-tree-mode
1165 mode-name
"Ebrowse-Tree"
1166 mode-line-buffer-identification ident
1169 selective-display-ellipses t
1170 revert-buffer-function
'ebrowse-revert-tree-buffer-from-file
1171 ebrowse--header header
1173 ebrowse--tags-file-name
(buffer-file-name)
1174 ebrowse--tree-obarray
(and tree
(ebrowse-build-tree-obarray tree
))
1175 ebrowse--frozen-flag nil
)
1177 (add-hook 'local-write-file-hooks
'ebrowse-write-file-hook-fn
)
1178 (modify-syntax-entry ?_
(char-to-string (char-syntax ?a
)))
1180 (ebrowse-redraw-tree)
1181 (set-buffer-modified-p nil
))
1182 (run-mode-hooks 'ebrowse-tree-mode-hook
)))
1186 (defun ebrowse-update-tree-buffer-mode-line ()
1187 "Update the tree buffer mode line."
1188 (ebrowse-rename-buffer (if ebrowse--frozen-flag
1189 (ebrowse-frozen-tree-buffer-name
1190 ebrowse--tags-file-name
)
1191 ebrowse-tree-buffer-name
))
1192 (force-mode-line-update))
1196 ;;; Removing classes from trees
1198 (defun ebrowse-remove-class-and-kill-member-buffers (tree class
)
1199 "Remove from TREE class CLASS.
1200 Kill all member buffers still containing a reference to the class."
1201 (let ((sym (intern-soft (ebrowse-cs-name (ebrowse-ts-class class
))
1202 ebrowse--tree-obarray
)))
1203 (setf tree
(delq class tree
)
1204 (get sym
'ebrowse-root
) nil
)
1206 (setf (ebrowse-ts-subclasses root
)
1207 (delq class
(ebrowse-ts-subclasses root
))
1208 (ebrowse-ts-base-classes root
) nil
)
1209 (ebrowse-remove-class-and-kill-member-buffers
1210 (ebrowse-ts-subclasses root
) class
))
1211 (ebrowse-kill-member-buffers-displaying class
)
1215 (defun ebrowse-remove-class-at-point (forced)
1216 "Remove the class point is on from the class tree.
1217 Do not ask for confirmation if FORCED is non-nil."
1219 (let* ((class (ebrowse-tree-at-point))
1220 (class-name (ebrowse-cs-name (ebrowse-ts-class class
)))
1221 (subclasses (ebrowse-ts-subclasses class
)))
1223 (y-or-n-p (concat "Delete class " class-name
"? ")))
1224 (setf ebrowse--tree
(ebrowse-remove-class-and-kill-member-buffers
1225 ebrowse--tree class
))
1226 (set-buffer-modified-p t
)
1227 (message "%s %sdeleted." class-name
1228 (if subclasses
"and derived classes " ""))
1229 (ebrowse-redraw-tree))
1230 (t (message "Aborted")))))
1234 ;;; Marking classes in the tree buffer
1236 (defun ebrowse-toggle-mark-at-point (&optional n-times
)
1237 "Toggle mark for class cursor is on.
1238 If given a numeric N-TIMES argument, mark that many classes."
1240 (let (to-change pnt
)
1241 ;; Get the classes whose mark must be toggled. Note that
1242 ;; ebrowse-tree-at-point might issue an error.
1243 (condition-case error
1244 (loop repeat
(or n-times
1)
1245 as tree
= (ebrowse-tree-at-point)
1247 (setf (ebrowse-ts-mark tree
) (not (ebrowse-ts-mark tree
)))
1249 (push tree to-change
)))
1252 ;; For all these classes, reverse the mark char in the display
1253 ;; by a regexp replace over the whole buffer. The reason for this
1254 ;; is that classes might have multiple base classes. If this is
1255 ;; the case, they are displayed more than once in the tree.
1257 (loop for tree in to-change
1258 as regexp
= (concat "^.*\\b"
1260 (ebrowse-cs-name (ebrowse-ts-class tree
)))
1263 (goto-char (point-min))
1264 (loop while
(re-search-forward regexp nil t
)
1266 (goto-char (match-beginning 0))
1268 (insert-char (if (ebrowse-ts-mark tree
) ?
> ?
) 1)
1269 (ebrowse-set-mark-props (1- (point)) (point) tree
)
1270 (goto-char (match-end 0)))))))))
1273 (defun ebrowse-mark-all-classes (prefix)
1274 "Unmark, with PREFIX mark, all classes in the tree."
1276 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
1277 (setf (ebrowse-ts-mark tree
) prefix
))
1278 (ebrowse-redraw-marks (point-min) (point-max)))
1281 (defun ebrowse-redraw-marks (start end
)
1282 "Display class marker signs in the tree between START and END."
1287 (goto-char (point-min))
1288 (dolist (root ebrowse--tree
)
1289 (ebrowse-draw-marks-fn root start end
))))
1290 (ebrowse-update-tree-buffer-mode-line)))
1293 (defun ebrowse-draw-marks-fn (tree start end
)
1294 "Display class marker signs in TREE between START and END."
1295 (when (>= (point) start
)
1297 (insert (if (ebrowse-ts-mark tree
) ?
> ?
))
1298 (ebrowse-set-mark-props (1- (point)) (point) tree
))
1300 (when (> (point) end
)
1302 (dolist (sub (ebrowse-ts-subclasses tree
))
1303 (ebrowse-draw-marks-fn sub start end
)))
1307 ;;; File name display in tree buffers
1309 (defun ebrowse-show-file-name-at-point (prefix)
1310 "Show filename in the line point is in.
1311 With PREFIX, insert that many filenames."
1313 (unless ebrowse--show-file-names-flag
1316 (let ((tree (ebrowse-tree-at-point))
1320 (skip-chars-forward " \t*a-zA-Z0-9_")
1322 file-name-existing
(looking-at "("))
1323 (delete-region start
(save-excursion (end-of-line) (point)))
1324 (unless file-name-existing
1325 (indent-to ebrowse-source-file-column
)
1326 (insert "(" (or (ebrowse-cs-file
1327 (ebrowse-ts-class tree
))
1330 (ebrowse-set-face start
(point) 'ebrowse-file-name
)
1332 (forward-line 1))))))
1335 (defun ebrowse-toggle-file-name-display ()
1336 "Toggle display of filenames in tree buffer."
1338 (setf ebrowse--show-file-names-flag
(not ebrowse--show-file-names-flag
))
1339 (let ((old-line (count-lines (point-min) (point))))
1340 (ebrowse-redraw-tree)
1341 (goto-line old-line
)))
1345 ;;; General member and tree buffer functions
1347 (defun ebrowse-member-buffer-p (buffer)
1348 "Value is non-nil if BUFFER is a member buffer."
1349 (eq (cdr (assoc 'major-mode
(buffer-local-variables buffer
)))
1350 'ebrowse-member-mode
))
1353 (defun ebrowse-tree-buffer-p (buffer)
1354 "Value is non-nil if BUFFER is a class tree buffer."
1355 (eq (cdr (assoc 'major-mode
(buffer-local-variables buffer
)))
1356 'ebrowse-tree-mode
))
1359 (defun ebrowse-buffer-p (buffer)
1360 "Value is non-nil if BUFFER is a tree or member buffer."
1361 (memq (cdr (assoc 'major-mode
(buffer-local-variables buffer
)))
1362 '(ebrowse-tree-mode ebrowse-member-mode
)))
1365 (defun ebrowse-browser-buffer-list ()
1366 "Return a list of all tree or member buffers."
1367 (ebrowse-delete-if-not 'ebrowse-buffer-p
(buffer-list)))
1370 (defun ebrowse-member-buffer-list ()
1371 "Return a list of all member buffers."
1372 (ebrowse-delete-if-not 'ebrowse-member-buffer-p
(buffer-list)))
1375 (defun ebrowse-tree-buffer-list ()
1376 "Return a list of all tree buffers."
1377 (ebrowse-delete-if-not 'ebrowse-tree-buffer-p
(buffer-list)))
1380 (defun ebrowse-known-class-trees-buffer-list ()
1381 "Return a list of buffers containing class trees.
1382 The list will contain, for each class tree loaded,
1383 one buffer. Prefer tree buffers over member buffers."
1384 (let ((buffers (nconc (ebrowse-tree-buffer-list)
1385 (ebrowse-member-buffer-list)))
1386 (set (make-hash-table))
1388 (dolist (buffer buffers
)
1389 (let ((tree (ebrowse-value-in-buffer 'ebrowse--tree buffer
)))
1390 (unless (gethash tree set
)
1391 (push buffer result
))
1392 (puthash tree t set
)))
1396 (defun ebrowse-same-tree-member-buffer-list ()
1397 "Return a list of members buffers with same tree as current buffer."
1398 (ebrowse-delete-if-not
1400 (eq (ebrowse-value-in-buffer 'ebrowse--tree buffer
)
1402 (ebrowse-member-buffer-list)))
1406 (defun ebrowse-pop/switch-to-member-buffer-for-same-tree
(arg)
1407 "Pop to the buffer displaying members.
1408 Switch to buffer if prefix ARG.
1409 If no member buffer exists, make one."
1411 (let ((buf (or (first (ebrowse-same-tree-member-buffer-list))
1412 (get-buffer ebrowse-member-buffer-name
)
1413 (ebrowse-tree-command:show-member-functions
))))
1416 (switch-to-buffer buf
)
1417 (pop-to-buffer buf
)))
1421 (defun ebrowse-switch-to-next-member-buffer ()
1422 "Switch to next member buffer."
1424 (let* ((list (ebrowse-member-buffer-list))
1425 (next-list (cdr (memq (current-buffer) list
)))
1426 (next-buffer (if next-list
(car next-list
) (car list
))))
1427 (if (eq next-buffer
(current-buffer))
1428 (error "No next buffer")
1430 (switch-to-buffer next-buffer
))))
1433 (defun ebrowse-kill-member-buffers-displaying (tree)
1434 "Kill all member buffers displaying TREE."
1435 (loop for buffer in
(ebrowse-member-buffer-list)
1436 as class
= (ebrowse-value-in-buffer 'ebrowse--displayed-class buffer
)
1437 when
(eq class tree
) do
(kill-buffer buffer
)))
1440 (defun ebrowse-frozen-tree-buffer-name (tags-file-name)
1441 "Return the buffer name of a tree which is associated TAGS-FILE-NAME."
1442 (concat ebrowse-tree-buffer-name
" (" tags-file-name
")"))
1445 (defun ebrowse-pop-to-browser-buffer (arg)
1446 "Pop to a browser buffer from any other buffer.
1447 Pop to member buffer if no prefix ARG, to tree buffer otherwise."
1449 (let ((buffer (get-buffer (if arg
1450 ebrowse-tree-buffer-name
1451 ebrowse-member-buffer-name
))))
1455 ebrowse-member-buffer-name
1456 ebrowse-tree-buffer-name
))))
1458 (error "No browser buffer found"))
1459 (pop-to-buffer buffer
)))
1463 ;;; Misc tree buffer commands
1465 (defun ebrowse-set-tree-indentation ()
1466 "Set the indentation width of the tree display."
1468 (let ((width (string-to-number (read-from-minibuffer
1469 (concat "Indentation ("
1470 (int-to-string ebrowse--indentation
)
1473 (setf ebrowse--indentation width
)
1474 (ebrowse-redraw-tree))))
1477 (defun ebrowse-read-class-name-and-go (&optional class
)
1478 "Position cursor on CLASS.
1479 Read a class name from the minibuffer if CLASS is nil."
1481 (ebrowse-ignoring-completion-case
1482 ;; If no class specified, read the class name from mini-buffer
1485 (completing-read "Goto class: "
1486 (ebrowse-tree-obarray-as-alist) nil t
)))
1487 (ebrowse-save-selective
1488 (goto-char (point-min))
1490 (setf selective-display nil
)
1491 (setq ebrowse--last-regexp
(concat "\\b" class
"\\b"))
1492 (if (re-search-forward ebrowse--last-regexp nil t
)
1494 (goto-char (match-beginning 0))
1495 (ebrowse-unhide-base-classes))
1496 (error "Not found")))))
1500 ;;; Showing various kinds of member buffers
1502 (defun ebrowse-tree-command:show-member-variables
(arg)
1503 "Display member variables; with prefix ARG in frozen member buffer."
1505 (ebrowse-display-member-buffer 'ebrowse-ts-member-variables arg
))
1508 (defun ebrowse-tree-command:show-member-functions
(&optional arg
)
1509 "Display member functions; with prefix ARG in frozen member buffer."
1511 (ebrowse-display-member-buffer 'ebrowse-ts-member-functions arg
))
1514 (defun ebrowse-tree-command:show-static-member-variables
(arg)
1515 "Display static member variables; with prefix ARG in frozen member buffer."
1517 (ebrowse-display-member-buffer 'ebrowse-ts-static-variables arg
))
1520 (defun ebrowse-tree-command:show-static-member-functions
(arg)
1521 "Display static member functions; with prefix ARG in frozen member buffer."
1523 (ebrowse-display-member-buffer 'ebrowse-ts-static-functions arg
))
1526 (defun ebrowse-tree-command:show-friends
(arg)
1527 "Display friend functions; with prefix ARG in frozen member buffer."
1529 (ebrowse-display-member-buffer 'ebrowse-ts-friends arg
))
1532 (defun ebrowse-tree-command:show-types
(arg)
1533 "Display types defined in a class; with prefix ARG in frozen member buffer."
1535 (ebrowse-display-member-buffer 'ebrowse-ts-types arg
))
1539 ;;; Viewing or finding a class declaration
1541 (defun ebrowse-tree-at-point ()
1542 "Return the class structure for the class point is on."
1543 (or (get-text-property (point) 'ebrowse-tree
)
1544 (error "Not on a class")))
1547 (defun* ebrowse-view
/find-class-declaration
(&key view where
)
1548 "View or find the declarator of the class point is on.
1549 VIEW non-nil means view it. WHERE is additional position info."
1550 (let* ((class (ebrowse-ts-class (ebrowse-tree-at-point)))
1551 (file (ebrowse-cs-file class
))
1552 (browse-struct (make-ebrowse-bs
1553 :name
(ebrowse-cs-name class
)
1554 :pattern
(ebrowse-cs-pattern class
)
1555 :flags
(ebrowse-cs-flags class
)
1556 :file
(ebrowse-cs-file class
)
1557 :point
(ebrowse-cs-point class
))))
1558 (ebrowse-view/find-file-and-search-pattern
1560 (list ebrowse--header class nil
)
1562 ebrowse--tags-file-name
1567 (defun ebrowse-find-class-declaration (prefix-arg)
1568 "Find a class declaration and position cursor on it.
1569 PREFIX-ARG 4 means find it in another window.
1570 PREFIX-ARG 5 means find it in another frame."
1572 (ebrowse-view/find-class-declaration
1574 :where
(cond ((= prefix-arg
4) 'other-window
)
1575 ((= prefix-arg
5) 'other-frame
)
1579 (defun ebrowse-view-class-declaration (prefix-arg)
1580 "View class declaration and position cursor on it.
1581 PREFIX-ARG 4 means view it in another window.
1582 PREFIX-ARG 5 means view it in another frame."
1584 (ebrowse-view/find-class-declaration
1586 :where
(cond ((= prefix-arg
4) 'other-window
)
1587 ((= prefix-arg
5) 'other-frame
)
1594 (defun ebrowse-find-source-file (file tags-file-name
)
1595 "Find source file FILE.
1596 Source files are searched for (a) relative to TAGS-FILE-NAME
1597 which is the path of the BROWSE file from which the class tree was loaded,
1598 and (b) in the directories named in `ebrowse-search-path'."
1600 (try-file (expand-file-name file
1601 (file-name-directory tags-file-name
))))
1602 (if (file-readable-p try-file
)
1603 (setq file-name try-file
)
1604 (let ((search-in ebrowse-search-path
))
1605 (while (and search-in
1607 (let ((try-file (expand-file-name file
(car search-in
))))
1608 (if (file-readable-p try-file
)
1609 (setq file-name try-file
))
1610 (setq search-in
(cdr search-in
))))))
1612 (error "File `%s' not found" file
))
1616 (defun ebrowse-view-exit-fn (buffer)
1617 "Function called when exiting View mode in BUFFER.
1618 Restore frame configuration active before viewing the file,
1619 and possibly kill the viewed buffer."
1620 (let (exit-action original-frame-configuration
)
1623 (setq original-frame-configuration ebrowse--frame-configuration
1624 exit-action ebrowse--view-exit-action
))
1625 ;; Delete the frame in which we viewed.
1626 (mapcar 'delete-frame
1627 (loop for frame in
(frame-list)
1628 when
(not (assq frame original-frame-configuration
))
1631 (funcall exit-action buffer
))))
1634 (defun ebrowse-view-file-other-frame (file)
1635 "View a file FILE in another frame.
1636 The new frame is deleted when you quit viewing the file in that frame."
1638 (let ((old-frame-configuration (current-frame-configuration))
1639 (had-a-buf (get-file-buffer file
))
1640 (buf-to-view (find-file-noselect file
)))
1641 (switch-to-buffer-other-frame buf-to-view
)
1642 (make-local-variable 'ebrowse--frame-configuration
)
1643 (setq ebrowse--frame-configuration old-frame-configuration
)
1644 (make-local-variable 'ebrowse--view-exit-action
)
1645 (setq ebrowse--view-exit-action
1646 (and (not had-a-buf
)
1647 (not (buffer-modified-p buf-to-view
))
1649 (view-mode-enter (cons (selected-window) (cons (selected-window) t
))
1650 'ebrowse-view-exit-fn
)))
1652 (defun ebrowse-view/find-file-and-search-pattern
1653 (struc info file tags-file-name
&optional view where
)
1654 "Find or view a member or class.
1655 STRUC is an `ebrowse-bs' structure (or a structure including that)
1656 describing what to search.
1657 INFO is a list (HEADER MEMBER-OR-CLASS ACCESSOR). HEADER is the
1658 header structure of a class tree. MEMBER-OR-CLASS is either an
1659 `ebrowse-ms' or `ebrowse-cs' structure depending on what is searched.
1660 ACCESSOR is an accessor function for the member list of a member
1661 if MEMBER-OR-CLASS is an `ebrowse-ms'.
1662 FILE is the file to search the member in.
1663 FILE is not taken out of STRUC here because the filename in STRUC
1664 may be nil in which case the filename of the class description is used.
1665 TAGS-FILE-NAME is the name of the BROWSE file from which the
1667 If VIEW is non-nil, view file else find the file.
1668 WHERE is either `other-window', `other-frame' or `this-window' and
1669 specifies where to find/view the result."
1671 (error "Sorry, no file information available for %s"
1672 (ebrowse-bs-name struc
)))
1673 ;; Get the source file to view or find.
1674 (setf file
(ebrowse-find-source-file file tags-file-name
))
1675 ;; If current window is dedicated, use another frame.
1676 (when (window-dedicated-p (selected-window))
1677 (setf where
'other-window
))
1679 (setf ebrowse-temp-position-to-view struc
1680 ebrowse-temp-info-to-view info
)
1681 (unless (boundp 'view-mode-hook
)
1682 (setq view-mode-hook nil
))
1683 (push 'ebrowse-find-pattern view-mode-hook
)
1685 (other-window (view-file-other-window file
))
1686 (other-frame (ebrowse-view-file-other-frame file
))
1687 (t (view-file file
))))
1690 (other-window (find-file-other-window file
))
1691 (other-frame (find-file-other-frame file
))
1692 (t (find-file file
)))
1693 (ebrowse-find-pattern struc info
))))
1696 (defun ebrowse-symbol-regexp (name)
1697 "Generate a suitable regular expression for a member or class NAME.
1698 This is `regexp-quote' for most symbols, except for operator names
1699 which may contain whitespace. For these symbols, replace white
1700 space in the symbol name (generated by BROWSE) with a regular
1701 expression matching any number of whitespace characters."
1702 (loop with regexp
= (regexp-quote name
)
1704 finally return regexp
1705 while
(string-match "[ \t]+" regexp start
)
1706 do
(setq regexp
(concat (substring regexp
0 (match-beginning 0))
1708 (substring regexp
(match-end 0)))
1709 start
(+ (match-beginning 0) 5))))
1712 (defun ebrowse-class-declaration-regexp (name)
1713 "Construct a regexp for a declaration of class NAME."
1714 (concat "^[ \t]*\\(template[ \t\n]*<.*>\\)?"
1715 "[ \t\n]*\\(class\\|struct\\|union\\).*\\S_"
1716 (ebrowse-symbol-regexp name
)
1720 (defun ebrowse-variable-declaration-regexp (name)
1721 "Construct a regexp for matching a variable NAME."
1722 (concat "\\S_" (ebrowse-symbol-regexp name
) "\\S_"))
1725 (defun ebrowse-function-declaration/definition-regexp
(name)
1726 "Construct a regexp for matching a function NAME."
1727 (concat "^[a-zA-Z0-9_:*&<>, \t]*\\S_"
1728 (ebrowse-symbol-regexp name
)
1732 (defun ebrowse-pp-define-regexp (name)
1733 "Construct a regexp matching a define of NAME."
1734 (concat "^[ \t]*#[ \t]*define[ \t]+" (regexp-quote name
)))
1737 (defun* ebrowse-find-pattern
(&optional position info
&aux viewing
)
1740 This is a kluge: Ebrowse allows you to find or view a file containing
1741 a pattern. To be able to do a search in a viewed buffer,
1742 `view-mode-hook' is temporarily set to this function;
1743 `ebrowse-temp-position-to-view' holds what to search for.
1745 INFO is a list (TREE-HEADER TREE-OR-MEMBER MEMBER-LIST)."
1747 (pop view-mode-hook
)
1749 position ebrowse-temp-position-to-view
1750 info ebrowse-temp-info-to-view
))
1752 (let* ((pattern (ebrowse-bs-pattern position
))
1753 (start (ebrowse-bs-point position
))
1756 (destructuring-bind (header class-or-member member-list
) info
1757 ;; If no pattern is specified, construct one from the member name.
1758 (when (stringp pattern
)
1759 (setq pattern
(concat "^.*" (regexp-quote pattern
))))
1760 ;; Construct a regular expression if none given.
1762 (typecase class-or-member
1765 ((ebrowse-ts-member-variables
1766 ebrowse-ts-static-variables
1768 (setf pattern
(ebrowse-variable-declaration-regexp
1769 (ebrowse-bs-name position
))))
1771 (if (ebrowse-define-p class-or-member
)
1772 (setf pattern
(ebrowse-pp-define-regexp (ebrowse-bs-name position
)))
1773 (setf pattern
(ebrowse-function-declaration/definition-regexp
1774 (ebrowse-bs-name position
)))))))
1776 (setf pattern
(ebrowse-class-declaration-regexp
1777 (ebrowse-bs-name position
))))))
1778 ;; Begin searching some OFFSET from the original point where the
1779 ;; regular expression was found by the parse, and step forward.
1780 ;; When there is no regular expression in the database and a
1781 ;; member definition/declaration was not seen by the parser,
1783 (when (and (boundp 'ebrowse-debug
)
1784 (symbol-value 'ebrowse-debug
))
1785 (y-or-n-p (format "start = %d? " start
))
1788 (loop do
(goto-char (max (point-min) (- start offset
)))
1789 when
(re-search-forward pattern
(+ start offset
) t
) return t
1791 do
(incf offset offset
)))
1794 (run-hooks 'ebrowse-view
/find-hook
))
1795 ((numberp (ebrowse-bs-pattern position
))
1797 (if ebrowse-not-found-hook
1798 (run-hooks 'ebrowse-not-found-hook
)
1799 (message "Not found")
1802 (if ebrowse-not-found-hook
1803 (run-hooks 'ebrowse-not-found-hook
)
1805 (error "Not found"))
1806 (message "Not found")
1810 ;;; Drawing the tree
1812 (defun ebrowse-redraw-tree (&optional quietly
)
1813 "Redisplay the complete tree.
1814 QUIETLY non-nil means don't display progress messages."
1816 (or quietly
(message "Displaying..."))
1820 (ebrowse-draw-tree-fn)))
1821 (ebrowse-update-tree-buffer-mode-line)
1822 (or quietly
(message nil
)))
1825 (defun ebrowse-set-mark-props (start end tree
)
1826 "Set text properties for class marker signs between START and END.
1827 TREE denotes the class shown."
1828 (add-text-properties
1830 `(mouse-face highlight ebrowse-what mark ebrowse-tree
,tree
1831 help-echo
"double-mouse-1: mark/unmark"))
1832 (ebrowse-set-face start end
'ebrowse-tree-mark
))
1835 (defun* ebrowse-draw-tree-fn
(&aux stack1 stack2 start
)
1836 "Display a single class and recursively its subclasses.
1837 This function may look weird, but this is faster than recursion."
1838 (setq stack1
(make-list (length ebrowse--tree
) 0)
1839 stack2
(copy-sequence ebrowse--tree
))
1841 as level
= (pop stack1
)
1842 as tree
= (pop stack2
)
1843 as class
= (ebrowse-ts-class tree
) do
1844 (let ((start-of-line (point))
1845 start-of-class-name end-of-class-name
)
1847 (insert (if (ebrowse-ts-mark tree
) ">" " "))
1849 ;; Indent and insert class name
1850 (indent-to (+ (* level ebrowse--indentation
)
1851 ebrowse-tree-left-margin
))
1852 (setq start
(point))
1853 (insert (ebrowse-qualified-class-name class
))
1855 ;; If template class, add <>
1856 (when (ebrowse-template-p class
)
1858 (ebrowse-set-face start
(point) (if (zerop level
)
1861 (setf start-of-class-name start
1862 end-of-class-name
(point))
1863 ;; If filenames are to be displayed...
1864 (when ebrowse--show-file-names-flag
1865 (indent-to ebrowse-source-file-column
)
1866 (setq start
(point))
1868 (or (ebrowse-cs-file class
)
1871 (ebrowse-set-face start
(point) 'ebrowse-file-name
))
1872 (ebrowse-set-mark-props start-of-line
(1+ start-of-line
) tree
)
1873 (add-text-properties
1874 start-of-class-name end-of-class-name
1875 `(mouse-face highlight ebrowse-what class-name
1877 help-echo
"double-mouse-1: (un)expand tree; mouse-2: member functions, mouse-3: menu"))
1879 ;; Push subclasses, if any.
1880 (when (ebrowse-ts-subclasses tree
)
1882 (nconc (copy-sequence (ebrowse-ts-subclasses tree
)) stack2
)
1884 (nconc (make-list (length (ebrowse-ts-subclasses tree
))
1885 (1+ level
)) stack1
)))))
1889 ;;; Expanding/ collapsing tree branches
1891 (defun ebrowse-expand-branch (arg)
1892 "Expand a sub-tree that has been previously collapsed.
1893 With prefix ARG, expand all sub-trees."
1896 (ebrowse-expand-all arg
)
1897 (ebrowse-collapse-fn nil
)))
1900 (defun ebrowse-collapse-branch (arg)
1901 "Fold (do no longer display) the subclasses of the current class.
1902 \(The class cursor is on.) With prefix ARG, fold all trees in the buffer."
1905 (ebrowse-expand-all (not arg
))
1906 (ebrowse-collapse-fn t
)))
1909 (defun ebrowse-expand-all (collapse)
1910 "Expand or fold all trees in the buffer.
1911 COLLAPSE non-nil means fold them."
1913 (let ((line-end (if collapse
"^\n" "^\r"))
1914 (insertion (if collapse
"\r" "\n")))
1917 (goto-char (point-min))
1918 (while (not (progn (skip-chars-forward line-end
) (eobp)))
1919 (when (or (not collapse
)
1924 (skip-chars-forward "\n ")))))))
1927 (defun ebrowse-unhide-base-classes ()
1928 "Unhide the line the cursor is on and all base classes."
1931 (let (indent last-indent
)
1932 (skip-chars-backward "^\r\n")
1933 (when (not (looking-at "[\r\n][^ \t]"))
1934 (skip-chars-forward "\r\n \t")
1935 (while (and (or (null last-indent
) ;first time
1936 (> indent
1)) ;not root class
1937 (re-search-backward "[\r\n][ \t]*" nil t
))
1938 (setf indent
(- (match-end 0)
1939 (match-beginning 0)))
1940 (when (or (null last-indent
)
1941 (< indent last-indent
))
1942 (setf last-indent indent
)
1943 (when (looking-at "\r")
1946 (backward-char 1)))))))
1949 (defun ebrowse-hide-line (collapse)
1950 "Hide/show a single line in the tree.
1951 COLLAPSE non-nil means hide."
1954 (skip-chars-forward "^\r\n")
1956 (insert (if collapse
13 10)))))
1959 (defun ebrowse-collapse-fn (collapse)
1960 "Collapse or expand a branch of the tree.
1961 COLLAPSE non-nil means collapse the branch."
1965 (skip-chars-forward "> \t")
1966 (let ((indentation (current-column)))
1967 (while (and (not (eobp))
1969 (skip-chars-forward "^\r\n")
1970 (goto-char (1+ (point)))
1971 (skip-chars-forward "> \t")
1972 (> (current-column) indentation
)))
1973 (ebrowse-hide-line collapse
)
1974 (skip-chars-forward "^\r\n")
1975 (goto-char (1+ (point))))))))
1978 ;;; Electric tree selection
1980 (defvar ebrowse-electric-list-mode-map
()
1981 "Keymap used in electric Ebrowse buffer list window.")
1984 (unless ebrowse-electric-list-mode-map
1985 (let ((map (make-keymap))
1986 (submap (make-keymap)))
1987 (setq ebrowse-electric-list-mode-map map
)
1988 (fillarray (car (cdr map
)) 'ebrowse-electric-list-undefined
)
1989 (fillarray (car (cdr submap
)) 'ebrowse-electric-list-undefined
)
1990 (define-key map
"\e" submap
)
1991 (define-key map
"\C-z" 'suspend-emacs
)
1992 (define-key map
"\C-h" 'Helper-help
)
1993 (define-key map
"?" 'Helper-describe-bindings
)
1994 (define-key map
"\C-c" nil
)
1995 (define-key map
"\C-c\C-c" 'ebrowse-electric-list-quit
)
1996 (define-key map
"q" 'ebrowse-electric-list-quit
)
1997 (define-key map
" " 'ebrowse-electric-list-select
)
1998 (define-key map
"\C-l" 'recenter
)
1999 (define-key map
"\C-u" 'universal-argument
)
2000 (define-key map
"\C-p" 'previous-line
)
2001 (define-key map
"\C-n" 'next-line
)
2002 (define-key map
"p" 'previous-line
)
2003 (define-key map
"n" 'next-line
)
2004 (define-key map
"v" 'ebrowse-electric-view-buffer
)
2005 (define-key map
"\C-v" 'scroll-up
)
2006 (define-key map
"\ev" 'scroll-down
)
2007 (define-key map
"\e\C-v" 'scroll-other-window
)
2008 (define-key map
"\e>" 'end-of-buffer
)
2009 (define-key map
"\e<" 'beginning-of-buffer
)
2010 (define-key map
"\e>" 'end-of-buffer
)))
2012 (put 'ebrowse-electric-list-mode
'mode-class
'special
)
2013 (put 'ebrowse-electric-list-undefined
'suppress-keymap t
)
2016 (defun ebrowse-electric-list-mode ()
2017 "Mode for electric tree list mode."
2018 (kill-all-local-variables)
2019 (use-local-map ebrowse-electric-list-mode-map
)
2020 (setq mode-name
"Electric Position Menu"
2021 mode-line-buffer-identification
"Electric Tree Menu")
2022 (when (memq 'mode-name mode-line-format
)
2023 (setq mode-line-format
(copy-sequence mode-line-format
))
2024 (setcar (memq 'mode-name mode-line-format
) "Tree Buffers"))
2025 (make-local-variable 'Helper-return-blurb
)
2026 (setq Helper-return-blurb
"return to buffer editing"
2029 major-mode
'ebrowse-electric-list-mode
)
2030 (run-mode-hooks 'ebrowse-electric-list-mode-hook
))
2033 (defun ebrowse-list-tree-buffers ()
2034 "Display a list of all tree buffers."
2035 (set-buffer (get-buffer-create "*Tree Buffers*"))
2036 (setq buffer-read-only nil
)
2038 (insert "Tree\n" "----\n")
2039 (dolist (buffer (ebrowse-known-class-trees-buffer-list))
2040 (insert (buffer-name buffer
) "\n"))
2041 (setq buffer-read-only t
))
2045 (defun ebrowse-electric-choose-tree ()
2046 "Return a buffer containing a tree or nil if no tree found or canceled."
2048 (unless (car (ebrowse-known-class-trees-buffer-list))
2049 (error "No tree buffers"))
2050 (let (select buffer window
)
2051 (save-window-excursion
2052 (save-window-excursion (ebrowse-list-tree-buffers))
2053 (setq window
(Electric-pop-up-window "*Tree Buffers*")
2054 buffer
(window-buffer window
))
2055 (shrink-window-if-larger-than-buffer window
)
2059 (ebrowse-electric-list-mode)
2061 (catch 'ebrowse-electric-list-select
2062 (message "<<< Press Space to bury the list >>>")
2063 (let ((first (progn (goto-char (point-min))
2066 (last (progn (goto-char (point-max))
2071 (Electric-command-loop 'ebrowse-electric-list-select
2074 'ebrowse-electric-list-looper
2075 (cons first last
))))))
2077 (bury-buffer buffer
)
2081 (setq select
(ebrowse-electric-get-buffer select
)))
2082 (kill-buffer buffer
)
2086 (defun ebrowse-electric-list-looper (state condition
)
2087 "Prevent cursor from moving beyond the buffer end.
2088 Don't let it move into the title lines.
2089 See 'Electric-command-loop' for a description of STATE and CONDITION."
2090 (cond ((and condition
2091 (not (memq (car condition
)
2092 '(buffer-read-only end-of-buffer
2093 beginning-of-buffer
))))
2094 (signal (car condition
) (cdr condition
)))
2095 ((< (point) (car state
))
2096 (goto-char (point-min))
2098 ((> (point) (cdr state
))
2099 (goto-char (point-max))
2101 (if (pos-visible-in-window-p (point-max))
2105 (defun ebrowse-electric-list-undefined ()
2106 "Function called for keys that are undefined."
2108 (message "Type C-h for help, ? for commands, q to quit, Space to select.")
2112 (defun ebrowse-electric-list-quit ()
2113 "Discard the buffer list."
2115 (throw 'ebrowse-electric-list-select nil
))
2118 (defun ebrowse-electric-list-select ()
2119 "Select a buffer from the buffer list."
2121 (throw 'ebrowse-electric-list-select
(point)))
2124 (defun ebrowse-electric-get-buffer (point)
2125 "Get a buffer corresponding to the line POINT is in."
2126 (let ((index (- (count-lines (point-min) point
) 2)))
2127 (nth index
(ebrowse-known-class-trees-buffer-list))))
2130 ;;; View a buffer for a tree.
2132 (defun ebrowse-electric-view-buffer ()
2133 "View buffer point is on."
2135 (let ((buffer (ebrowse-electric-get-buffer (point))))
2137 (view-buffer buffer
))
2139 (error "Buffer no longer exists")))))
2142 (defun ebrowse-choose-from-browser-buffers ()
2143 "Read a browser buffer name from the minibuffer and return that buffer."
2144 (let* ((buffers (ebrowse-known-class-trees-buffer-list)))
2146 (if (not (second buffers
))
2148 (or (ebrowse-electric-choose-tree) (error "No tree buffer")))
2149 (let* ((insert-default-directory t
)
2150 (file (read-file-name "Find tree: " nil nil t
)))
2153 (find-buffer-visiting file
)))))
2158 (unless ebrowse-member-mode-map
2159 (let ((map (make-keymap)))
2160 (setf ebrowse-member-mode-map map
)
2161 (suppress-keymap map
)
2163 (when (display-mouse-p)
2164 (define-key map
[down-mouse-3
] 'ebrowse-member-mouse-3
)
2165 (define-key map
[mouse-2
] 'ebrowse-member-mouse-2
))
2167 (let ((map1 (make-sparse-keymap)))
2168 (suppress-keymap map1 t
)
2169 (define-key map
"C" map1
)
2170 (define-key map1
"b" 'ebrowse-switch-member-buffer-to-base-class
)
2171 (define-key map1
"c" 'ebrowse-switch-member-buffer-to-any-class
)
2172 (define-key map1
"d" 'ebrowse-switch-member-buffer-to-derived-class
)
2173 (define-key map1
"n" 'ebrowse-switch-member-buffer-to-next-sibling-class
)
2174 (define-key map1
"p" 'ebrowse-switch-member-buffer-to-previous-sibling-class
))
2176 (let ((map1 (make-sparse-keymap)))
2177 (suppress-keymap map1 t
)
2178 (define-key map
"D" map1
)
2179 (define-key map1
"a" 'ebrowse-toggle-member-attributes-display
)
2180 (define-key map1
"b" 'ebrowse-toggle-base-class-display
)
2181 (define-key map1
"f" 'ebrowse-freeze-member-buffer
)
2182 (define-key map1
"l" 'ebrowse-toggle-long-short-display
)
2183 (define-key map1
"r" 'ebrowse-toggle-regexp-display
)
2184 (define-key map1
"w" 'ebrowse-set-member-buffer-column-width
))
2186 (let ((map1 (make-sparse-keymap)))
2187 (suppress-keymap map1 t
)
2188 (define-key map
"F" map1
)
2189 (let ((map2 (make-sparse-keymap)))
2190 (suppress-keymap map2 t
)
2191 (define-key map1
"a" map2
)
2192 (define-key map2
"i" 'ebrowse-toggle-private-member-filter
)
2193 (define-key map2
"o" 'ebrowse-toggle-protected-member-filter
)
2194 (define-key map2
"u" 'ebrowse-toggle-public-member-filter
))
2195 (define-key map1
"c" 'ebrowse-toggle-const-member-filter
)
2196 (define-key map1
"i" 'ebrowse-toggle-inline-member-filter
)
2197 (define-key map1
"p" 'ebrowse-toggle-pure-member-filter
)
2198 (define-key map1
"r" 'ebrowse-remove-all-member-filters
)
2199 (define-key map1
"v" 'ebrowse-toggle-virtual-member-filter
))
2201 (let ((map1 (make-sparse-keymap)))
2202 (suppress-keymap map1 t
)
2203 (define-key map
"L" map1
)
2204 (define-key map1
"d" 'ebrowse-display-friends-member-list
)
2205 (define-key map1
"f" 'ebrowse-display-function-member-list
)
2206 (define-key map1
"F" 'ebrowse-display-static-functions-member-list
)
2207 (define-key map1
"n" 'ebrowse-display-next-member-list
)
2208 (define-key map1
"p" 'ebrowse-display-previous-member-list
)
2209 (define-key map1
"t" 'ebrowse-display-types-member-list
)
2210 (define-key map1
"v" 'ebrowse-display-variables-member-list
)
2211 (define-key map1
"V" 'ebrowse-display-static-variables-member-list
))
2213 (let ((map1 (make-sparse-keymap)))
2214 (suppress-keymap map1 t
)
2215 (define-key map
"G" map1
)
2216 (define-key map1
"m" 'ebrowse-goto-visible-member
/all-member-lists
)
2217 (define-key map1
"n" 'ebrowse-repeat-member-search
)
2218 (define-key map1
"v" 'ebrowse-goto-visible-member
))
2220 (define-key map
"f" 'ebrowse-find-member-declaration
)
2221 (define-key map
"m" 'ebrowse-switch-to-next-member-buffer
)
2222 (define-key map
"q" 'bury-buffer
)
2223 (define-key map
"t" 'ebrowse-show-displayed-class-in-tree
)
2224 (define-key map
"v" 'ebrowse-view-member-declaration
)
2225 (define-key map
" " 'ebrowse-view-member-definition
)
2226 (define-key map
"?" 'describe-mode
)
2227 (define-key map
"\C-i" 'ebrowse-pop-from-member-to-tree-buffer
)
2228 (define-key map
"\C-l" 'ebrowse-redisplay-member-buffer
)
2229 (define-key map
"\C-m" 'ebrowse-find-member-definition
)))
2236 (defun ebrowse-member-mode ()
2237 "Major mode for Ebrowse member buffers.
2239 \\{ebrowse-member-mode-map}"
2240 (kill-all-local-variables)
2241 (use-local-map ebrowse-member-mode-map
)
2242 (setq major-mode
'ebrowse-member-mode
)
2243 (mapcar 'make-local-variable
2244 '(ebrowse--decl-column ;display column
2245 ebrowse--n-columns
;number of short columns
2246 ebrowse--column-width
;width of columns above
2247 ebrowse--show-inherited-flag
;include inherited members?
2248 ebrowse--filters
;public, protected, private
2249 ebrowse--accessor
;vars, functions, friends
2250 ebrowse--displayed-class
;class displayed
2251 ebrowse--long-display-flag
;display with regexps?
2252 ebrowse--source-regexp-flag
;show source regexp?
2253 ebrowse--attributes-flag
;show `virtual' and `inline'
2254 ebrowse--member-list
;list of members displayed
2255 ebrowse--tree
;the class tree
2256 ebrowse--member-mode-strings
;part of mode line
2257 ebrowse--tags-file-name
;
2259 ebrowse--tree-obarray
2260 ebrowse--virtual-display-flag
2261 ebrowse--inline-display-flag
2262 ebrowse--const-display-flag
2263 ebrowse--pure-display-flag
2264 ebrowse--frozen-flag
)) ;buffer not automagically reused
2265 (setq mode-name
"Ebrowse-Members"
2266 mode-line-buffer-identification
2267 (propertized-buffer-identification "C++ Members")
2269 ebrowse--long-display-flag nil
2270 ebrowse--attributes-flag t
2271 ebrowse--show-inherited-flag t
2272 ebrowse--source-regexp-flag nil
2273 ebrowse--filters
[0 1 2]
2274 ebrowse--decl-column ebrowse-default-declaration-column
2275 ebrowse--column-width ebrowse-default-column-width
2276 ebrowse--virtual-display-flag nil
2277 ebrowse--inline-display-flag nil
2278 ebrowse--const-display-flag nil
2279 ebrowse--pure-display-flag nil
)
2280 (modify-syntax-entry ?_
(char-to-string (char-syntax ?a
)))
2281 (run-mode-hooks 'ebrowse-member-mode-hook
))
2285 ;;; Member mode mode line
2287 (defsubst ebrowse-class-name-displayed-in-member-buffer
()
2288 "Return the name of the class displayed in the member buffer."
2289 (ebrowse-cs-name (ebrowse-ts-class ebrowse--displayed-class
)))
2292 (defsubst ebrowse-member-list-name
()
2293 "Return a string describing what is displayed in the member buffer."
2294 (get ebrowse--accessor
(if (ebrowse-globals-tree-p ebrowse--displayed-class
)
2295 'ebrowse-global-title
2299 (defun ebrowse-update-member-buffer-mode-line ()
2300 "Update the mode line of member buffers."
2301 (let* ((name (when ebrowse--frozen-flag
2302 (concat (ebrowse-class-name-displayed-in-member-buffer)
2304 (ident (concat name
(ebrowse-member-list-name))))
2305 (setq mode-line-buffer-identification
2306 (propertized-buffer-identification ident
))
2307 (ebrowse-rename-buffer (if name ident ebrowse-member-buffer-name
))
2308 (force-mode-line-update)))
2311 ;;; Misc member buffer commands
2313 (defun ebrowse-freeze-member-buffer ()
2314 "Toggle frozen status of current buffer."
2316 (setq ebrowse--frozen-flag
(not ebrowse--frozen-flag
))
2317 (ebrowse-redisplay-member-buffer))
2320 (defun ebrowse-show-displayed-class-in-tree (arg)
2321 "Show the currently displayed class in the tree window.
2322 With prefix ARG, switch to the tree buffer else pop to it."
2324 (let ((class-name (ebrowse-class-name-displayed-in-member-buffer)))
2325 (when (ebrowse-pop-from-member-to-tree-buffer arg
)
2326 (ebrowse-read-class-name-and-go class-name
))))
2329 (defun ebrowse-set-member-buffer-column-width ()
2330 "Set the column width of the member display.
2331 The new width is read from the minibuffer."
2333 (let ((width (string-to-number
2334 (read-from-minibuffer
2335 (concat "Column width ("
2336 (int-to-string (if ebrowse--long-display-flag
2337 ebrowse--decl-column
2338 ebrowse--column-width
))
2341 (if ebrowse--long-display-flag
2342 (setq ebrowse--decl-column width
)
2343 (setq ebrowse--column-width width
))
2344 (ebrowse-redisplay-member-buffer))))
2347 (defun ebrowse-pop-from-member-to-tree-buffer (arg)
2348 "Pop from a member buffer to the matching tree buffer.
2349 Switch to the buffer if prefix ARG. If no tree buffer exists,
2352 (let ((buf (or (get-buffer (ebrowse-frozen-tree-buffer-name
2353 ebrowse--tags-file-name
))
2354 (get-buffer ebrowse-tree-buffer-name
)
2355 (ebrowse-create-tree-buffer ebrowse--tree
2356 ebrowse--tags-file-name
2358 ebrowse--tree-obarray
2361 (funcall (if arg
'switch-to-buffer
'pop-to-buffer
) buf
))
2366 ;;; Switching between member lists
2368 (defun ebrowse-display-member-list-for-accessor (accessor)
2369 "Switch the member buffer to display the member list for ACCESSOR."
2370 (setf ebrowse--accessor accessor
2371 ebrowse--member-list
(funcall accessor ebrowse--displayed-class
))
2372 (ebrowse-redisplay-member-buffer))
2375 (defun ebrowse-cyclic-display-next/previous-member-list
(incr)
2376 "Switch buffer to INCR'th next/previous list of members."
2377 (let ((index (ebrowse-position ebrowse--accessor
2378 ebrowse-member-list-accessors
)))
2379 (setf ebrowse--accessor
2382 ebrowse-member-list-accessors
)
2383 (first ebrowse-member-list-accessors
)))
2385 (or (and (>= (decf index
) 0)
2387 ebrowse-member-list-accessors
))
2388 (first (last ebrowse-member-list-accessors
))))))
2389 (ebrowse-display-member-list-for-accessor ebrowse--accessor
)))
2392 (defun ebrowse-display-next-member-list ()
2393 "Switch buffer to next member list."
2395 (ebrowse-cyclic-display-next/previous-member-list
1))
2398 (defun ebrowse-display-previous-member-list ()
2399 "Switch buffer to previous member list."
2401 (ebrowse-cyclic-display-next/previous-member-list -
1))
2404 (defun ebrowse-display-function-member-list ()
2405 "Display the list of member functions."
2407 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-member-functions
))
2410 (defun ebrowse-display-variables-member-list ()
2411 "Display the list of member variables."
2413 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-member-variables
))
2416 (defun ebrowse-display-static-variables-member-list ()
2417 "Display the list of static member variables."
2419 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-static-variables
))
2422 (defun ebrowse-display-static-functions-member-list ()
2423 "Display the list of static member functions."
2425 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-static-functions
))
2428 (defun ebrowse-display-friends-member-list ()
2429 "Display the list of friends."
2431 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-friends
))
2434 (defun ebrowse-display-types-member-list ()
2435 "Display the list of types."
2437 (ebrowse-display-member-list-for-accessor 'ebrowse-ts-types
))
2441 ;;; Filters and other display attributes
2443 (defun ebrowse-toggle-member-attributes-display ()
2444 "Toggle display of `virtual', `inline', `const' etc."
2446 (setq ebrowse--attributes-flag
(not ebrowse--attributes-flag
))
2447 (ebrowse-redisplay-member-buffer))
2450 (defun ebrowse-toggle-base-class-display ()
2451 "Toggle the display of members inherited from base classes."
2453 (setf ebrowse--show-inherited-flag
(not ebrowse--show-inherited-flag
))
2454 (ebrowse-redisplay-member-buffer))
2457 (defun ebrowse-toggle-pure-member-filter ()
2458 "Toggle display of pure virtual members."
2460 (setf ebrowse--pure-display-flag
(not ebrowse--pure-display-flag
))
2461 (ebrowse-redisplay-member-buffer))
2464 (defun ebrowse-toggle-const-member-filter ()
2465 "Toggle display of const members."
2467 (setf ebrowse--const-display-flag
(not ebrowse--const-display-flag
))
2468 (ebrowse-redisplay-member-buffer))
2471 (defun ebrowse-toggle-inline-member-filter ()
2472 "Toggle display of inline members."
2474 (setf ebrowse--inline-display-flag
(not ebrowse--inline-display-flag
))
2475 (ebrowse-redisplay-member-buffer))
2478 (defun ebrowse-toggle-virtual-member-filter ()
2479 "Toggle display of virtual members."
2481 (setf ebrowse--virtual-display-flag
(not ebrowse--virtual-display-flag
))
2482 (ebrowse-redisplay-member-buffer))
2485 (defun ebrowse-remove-all-member-filters ()
2486 "Remove all filters."
2489 (aset ebrowse--filters i i
))
2490 (setq ebrowse--pure-display-flag nil
2491 ebrowse--const-display-flag nil
2492 ebrowse--virtual-display-flag nil
2493 ebrowse--inline-display-flag nil
)
2494 (ebrowse-redisplay-member-buffer))
2497 (defun ebrowse-toggle-public-member-filter ()
2498 "Toggle visibility of public members."
2500 (ebrowse-set-member-access-visibility 0)
2501 (ebrowse-redisplay-member-buffer))
2504 (defun ebrowse-toggle-protected-member-filter ()
2505 "Toggle visibility of protected members."
2507 (ebrowse-set-member-access-visibility 1)
2508 (ebrowse-redisplay-member-buffer))
2511 (defun ebrowse-toggle-private-member-filter ()
2512 "Toggle visibility of private members."
2514 (ebrowse-set-member-access-visibility 2)
2515 (ebrowse-redisplay-member-buffer))
2518 (defun ebrowse-set-member-access-visibility (vis)
2519 (setf (aref ebrowse--filters vis
)
2520 (if (aref ebrowse--filters vis
) nil vis
)))
2523 (defun ebrowse-toggle-long-short-display ()
2524 "Toggle between long and short display form of member buffers."
2526 (setf ebrowse--long-display-flag
(not ebrowse--long-display-flag
))
2527 (ebrowse-redisplay-member-buffer))
2530 (defun ebrowse-toggle-regexp-display ()
2531 "Toggle declaration/definition regular expression display.
2532 Used in member buffers showing the long display form."
2534 (setf ebrowse--source-regexp-flag
(not ebrowse--source-regexp-flag
))
2535 (ebrowse-redisplay-member-buffer))
2539 ;;; Viewing/finding members
2541 (defun ebrowse-find-member-definition (&optional prefix
)
2542 "Find the file containing a member definition.
2543 With PREFIX 4. find file in another window, with prefix 5
2544 find file in another frame."
2546 (ebrowse-view/find-member-declaration
/definition prefix nil t
))
2549 (defun ebrowse-view-member-definition (prefix)
2550 "View the file containing a member definition.
2551 With PREFIX 4. find file in another window, with prefix 5
2552 find file in another frame."
2554 (ebrowse-view/find-member-declaration
/definition prefix t t
))
2557 (defun ebrowse-find-member-declaration (prefix)
2558 "Find the file containing a member's declaration.
2559 With PREFIX 4. find file in another window, with prefix 5
2560 find file in another frame."
2562 (ebrowse-view/find-member-declaration
/definition prefix nil
))
2565 (defun ebrowse-view-member-declaration (prefix)
2566 "View the file containing a member's declaration.
2567 With PREFIX 4. find file in another window, with prefix 5
2568 find file in another frame."
2570 (ebrowse-view/find-member-declaration
/definition prefix t
))
2573 (defun* ebrowse-view
/find-member-declaration
/definition
2574 (prefix view
&optional definition info header tags-file-name
)
2575 "Find or view a member declaration or definition.
2576 With PREFIX 4. find file in another window, with prefix 5
2577 find file in another frame.
2578 DEFINITION non-nil means find the definition, otherwise find the
2580 INFO is a list (TREE ACCESSOR MEMBER) describing the member to
2582 TAGS-FILE-NAME is the file name of the BROWSE file."
2584 (setq header ebrowse--header
))
2585 (unless tags-file-name
2586 (setq tags-file-name ebrowse--tags-file-name
))
2587 (let (tree member accessor file on-class
2588 (where (if (= prefix
4) 'other-window
2589 (if (= prefix
5) 'other-frame
'this-window
))))
2590 ;; If not given as parameters, get the necessary information
2591 ;; out of the member buffer.
2593 (setq tree
(first info
)
2594 accessor
(second info
)
2595 member
(third info
))
2596 (multiple-value-setq (tree member on-class
)
2597 (ebrowse-member-info-from-point))
2598 (setq accessor ebrowse--accessor
))
2599 ;; View/find class if on a line containing a class name.
2601 (return-from ebrowse-view
/find-member-declaration
/definition
2602 (ebrowse-view/find-file-and-search-pattern
2603 (ebrowse-ts-class tree
)
2604 (list ebrowse--header
(ebrowse-ts-class tree
) nil
)
2605 (ebrowse-cs-file (ebrowse-ts-class tree
))
2606 tags-file-name view where
)))
2607 ;; For some member lists, it doesn't make sense to search for
2608 ;; a definition. If this is requested, silently search for the
2610 (when (and definition
2611 (eq accessor
'ebrowse-ts-member-variables
))
2612 (setq definition nil
))
2613 ;; Construct a suitable `browse' struct for definitions.
2615 (setf member
(make-ebrowse-ms
2616 :name
(ebrowse-ms-name member
)
2617 :file
(ebrowse-ms-definition-file member
)
2618 :pattern
(ebrowse-ms-definition-pattern
2620 :flags
(ebrowse-ms-flags member
)
2621 :point
(ebrowse-ms-definition-point
2623 ;; When no file information in member, use that of the class
2624 (setf file
(or (ebrowse-ms-file member
)
2626 (ebrowse-cs-source-file (ebrowse-ts-class tree
))
2627 (ebrowse-cs-file (ebrowse-ts-class tree
)))))
2628 ;; When we have no regular expressions in the database the only
2629 ;; indication that the parser hasn't seen a definition/declaration
2630 ;; is that the search start point will be zero.
2631 (if (or (null file
) (zerop (ebrowse-ms-point member
)))
2632 (if (y-or-n-p (concat "No information about "
2633 (if definition
"definition" "declaration")
2635 (if definition
"declaration" "definition")
2637 (ebrowse-ms-name member
)
2641 ;; Recurse with new info.
2642 (ebrowse-view/find-member-declaration
/definition
2643 prefix view
(not definition
) info header tags-file-name
))
2644 (error "Search canceled"))
2646 (ebrowse-view/find-file-and-search-pattern
2647 (make-ebrowse-bs :name
(ebrowse-ms-name member
)
2648 :pattern
(ebrowse-ms-pattern member
)
2649 :file
(ebrowse-ms-file member
)
2650 :flags
(ebrowse-ms-flags member
)
2651 :point
(ebrowse-ms-point member
))
2652 (list header member accessor
)
2660 ;;; Drawing the member buffer
2662 (defun ebrowse-redisplay-member-buffer ()
2663 "Force buffer redisplay."
2665 (let ((display-fn (if ebrowse--long-display-flag
2666 'ebrowse-draw-member-long-fn
2667 'ebrowse-draw-member-short-fn
)))
2671 (ebrowse-draw-member-buffer-class-line)
2672 (funcall display-fn ebrowse--member-list ebrowse--displayed-class
)
2673 ;; Show inherited members if corresponding switch is on
2674 (when ebrowse--show-inherited-flag
2675 (dolist (super (ebrowse-base-classes ebrowse--displayed-class
))
2676 (goto-char (point-max))
2677 (insert (if (bolp) "\n\n" "\n"))
2678 (ebrowse-draw-member-buffer-class-line super
)
2679 (funcall display-fn
(funcall ebrowse--accessor super
) super
)))
2680 (ebrowse-update-member-buffer-mode-line))))
2683 (defun ebrowse-draw-member-buffer-class-line (&optional class
)
2684 "Display the title line for a class section in the member buffer.
2685 CLASS non-nil means display that class' title. Otherwise use
2686 the class cursor is on."
2687 (let ((start (point))
2688 (tree (or class ebrowse--displayed-class
))
2692 (setq class-name-start
(point))
2693 (insert (ebrowse-qualified-class-name (ebrowse-ts-class tree
)))
2694 (when (ebrowse-template-p (ebrowse-ts-class tree
))
2696 (setq class-name-end
(point))
2698 (ebrowse-set-face start
(point) 'ebrowse-member-class
)
2699 (add-text-properties
2700 class-name-start class-name-end
2701 '(ebrowse-what class-name
2702 mouse-face highlight
2703 help-echo
"mouse-3: menu"))
2704 (put-text-property start class-name-end
'ebrowse-tree tree
)))
2707 (defun ebrowse-display-member-buffer (list &optional stand-alone class
)
2708 "Start point for member buffer creation.
2709 LIST is the member list to display. STAND-ALONE non-nil
2710 means the member buffer is standalone. CLASS is its class."
2711 (let* ((classes ebrowse--tree-obarray
)
2712 (tree ebrowse--tree
)
2713 (tags-file-name ebrowse--tags-file-name
)
2714 (header ebrowse--header
)
2715 temp-buffer-setup-hook
2716 (temp-buffer (get-buffer ebrowse-member-buffer-name
)))
2717 ;; Get the class description from the name the cursor
2718 ;; is on if not specified as an argument.
2720 (setq class
(ebrowse-tree-at-point)))
2721 (save-selected-window
2723 (pop-to-buffer temp-buffer
)
2724 (pop-to-buffer (get-buffer-create ebrowse-member-buffer-name
))
2725 ;; If new buffer, set the mode and initial values of locals
2726 (ebrowse-member-mode))
2727 ;; Set local variables
2728 (setq ebrowse--member-list
(funcall list class
)
2729 ebrowse--displayed-class class
2730 ebrowse--accessor list
2731 ebrowse--tree-obarray classes
2732 ebrowse--frozen-flag stand-alone
2733 ebrowse--tags-file-name tags-file-name
2734 ebrowse--header header
2737 (ebrowse-redisplay-member-buffer)
2741 (defun ebrowse-member-display-p (member)
2742 "Return t if MEMBER must be displayed under the current filter settings."
2743 (if (and (aref ebrowse--filters
(ebrowse-ms-visibility member
))
2744 (or (null ebrowse--const-display-flag
)
2745 (ebrowse-const-p member
))
2746 (or (null ebrowse--inline-display-flag
)
2747 (ebrowse-inline-p member
))
2748 (or (null ebrowse--pure-display-flag
)
2749 (ebrowse-bs-p member
))
2750 (or (null ebrowse--virtual-display-flag
)
2751 (ebrowse-virtual-p member
)))
2755 (defun ebrowse-draw-member-attributes (member)
2756 "Insert a string for the attributes of MEMBER."
2757 (insert (if (ebrowse-template-p member
) "T" "-")
2758 (if (ebrowse-extern-c-p member
) "C" "-")
2759 (if (ebrowse-virtual-p member
) "v" "-")
2760 (if (ebrowse-inline-p member
) "i" "-")
2761 (if (ebrowse-const-p member
) "c" "-")
2762 (if (ebrowse-pure-virtual-p member
) "0" "-")
2763 (if (ebrowse-mutable-p member
) "m" "-")
2764 (if (ebrowse-explicit-p member
) "e" "-")
2765 (if (ebrowse-throw-list-p member
) "t" "-")))
2768 (defun ebrowse-draw-member-regexp (member-struc)
2769 "Insert a string for the regular expression matching MEMBER-STRUC."
2770 (let ((pattern (if ebrowse--source-regexp-flag
2771 (ebrowse-ms-definition-pattern
2773 (ebrowse-ms-pattern member-struc
))))
2774 (cond ((stringp pattern
)
2775 (insert (ebrowse-trim-string pattern
) "...\n")
2776 (beginning-of-line 0)
2777 (move-to-column (+ 4 ebrowse--decl-column
))
2778 (while (re-search-forward "[ \t]+" nil t
)
2779 (delete-region (match-beginning 0) (match-end 0))
2781 (beginning-of-line 2))
2783 (insert "[not recorded or unknown]\n")))))
2786 (defun ebrowse-draw-member-long-fn (member-list tree
)
2787 "Display member buffer for MEMBER-LIST in long form.
2788 TREE is the class tree of MEMBER-LIST."
2789 (dolist (member-struc (mapcar 'ebrowse-member-display-p member-list
))
2791 (let ((name (ebrowse-ms-name member-struc
))
2793 ;; Insert member name truncated to the right length
2794 (insert (substring name
2797 (1- ebrowse--decl-column
))))
2798 (add-text-properties
2800 `(mouse-face highlight ebrowse-what member-name
2801 ebrowse-member
,member-struc
2803 help-echo
"mouse-2: view definition; mouse-3: menu"))
2804 ;; Display virtual, inline, and const status
2805 (setf start
(point))
2806 (indent-to ebrowse--decl-column
)
2807 (put-text-property start
(point) 'mouse-face nil
)
2808 (when ebrowse--attributes-flag
2809 (let ((start (point)))
2811 (ebrowse-draw-member-attributes member-struc
)
2813 (ebrowse-set-face start
(point)
2814 'ebrowse-member-attribute
)))
2816 (ebrowse-draw-member-regexp member-struc
))))
2818 (goto-char (point-min)))
2821 (defun ebrowse-draw-member-short-fn (member-list tree
)
2822 "Display MEMBER-LIST in short form.
2823 TREE is the class tree in which the members are found."
2825 (column-width (+ ebrowse--column-width
2826 (if ebrowse--attributes-flag
12 0))))
2827 ;; Get the number of columns to draw.
2828 (setq ebrowse--n-columns
2829 (max 1 (/ (ebrowse-width-of-drawable-area) column-width
)))
2830 (dolist (member (mapcar #'ebrowse-member-display-p member-list
))
2832 (let ((name (ebrowse-ms-name member
))
2834 (start-of-column (point))
2836 (indent-to (* i column-width
))
2837 (put-text-property start-of-column
(point) 'mouse-face nil
)
2838 (setq start-of-entry
(point))
2839 ;; Show various attributes
2840 (when ebrowse--attributes-flag
2842 (ebrowse-draw-member-attributes member
)
2844 (ebrowse-set-face start-of-entry
(point)
2845 'ebrowse-member-attribute
))
2846 ;; insert member name truncated to column width
2847 (setq start-of-name
(point))
2848 (insert (substring name
0
2850 (1- ebrowse--column-width
))))
2851 ;; set text properties
2852 (add-text-properties
2853 start-of-name
(point)
2854 `(ebrowse-what member-name
2855 ebrowse-member
,member
2856 mouse-face highlight
2858 help-echo
"mouse-2: view definition; mouse-3: menu"))
2860 (when (>= i ebrowse--n-columns
)
2865 (goto-char (point-min))))
2869 ;;; Killing members from tree
2871 (defun ebrowse-member-info-from-point ()
2872 "Ger information about the member at point.
2873 The result has the form (TREE MEMBER NULL-P). TREE is the tree
2874 we're in, MEMBER is the member we're on. NULL-P is t if MEMBER
2876 (let ((tree (or (get-text-property (point) 'ebrowse-tree
)
2877 (error "No information at point")))
2878 (member (get-text-property (point) 'ebrowse-member
)))
2879 (list tree member
(null member
))))
2883 ;;; Switching member buffer to display a selected member
2885 (defun ebrowse-goto-visible-member/all-member-lists
(prefix)
2886 "Position cursor on a member read from the minibuffer.
2887 With PREFIX, search all members in the tree. Otherwise consider
2888 only members visible in the buffer."
2890 (ebrowse-ignoring-completion-case
2891 (let* ((completion-list (ebrowse-name/accessor-alist-for-class-members
))
2892 (member (completing-read "Goto member: " completion-list nil t
))
2893 (accessor (cdr (assoc member completion-list
))))
2895 (error "`%s' not found" member
))
2896 (unless (eq accessor ebrowse--accessor
)
2897 (setf ebrowse--accessor accessor
2898 ebrowse--member-list
(funcall accessor ebrowse--displayed-class
))
2899 (ebrowse-redisplay-member-buffer))
2900 (ebrowse-move-point-to-member member
))))
2903 (defun ebrowse-goto-visible-member (repeat)
2904 "Position point on a member.
2905 Read the member's name from the minibuffer. Consider only members
2906 visible in the member buffer.
2907 REPEAT non-nil means repeat the search that number of times."
2909 (ebrowse-ignoring-completion-case
2911 (let* ((completion-list (ebrowse-name/accessor-alist-for-visible-members
))
2912 (member (completing-read "Goto member: " completion-list nil t
)))
2913 (ebrowse-move-point-to-member member repeat
))))
2917 ;;; Searching a member in the member buffer
2919 (defun ebrowse-repeat-member-search (repeat)
2920 "Repeat the last regular expression search.
2921 REPEAT, if specified, says repeat the search REPEAT times."
2923 (unless ebrowse--last-regexp
2924 (error "No regular expression remembered"))
2925 ;; Skip over word the point is on
2926 (skip-chars-forward "^ \t\n")
2927 ;; Search for regexp from point
2928 (if (re-search-forward ebrowse--last-regexp nil t repeat
)
2930 (goto-char (match-beginning 0))
2931 (skip-chars-forward " \t\n"))
2932 ;; If not found above, repeat search from buffer start
2933 (goto-char (point-min))
2934 (if (re-search-forward ebrowse--last-regexp nil t
)
2936 (goto-char (match-beginning 0))
2937 (skip-chars-forward " \t\n"))
2938 (error "Not found"))))
2941 (defun* ebrowse-move-point-to-member
(name &optional count
&aux member
)
2942 "Set point on member NAME in the member buffer
2943 COUNT, if specified, says search the COUNT'th member with the same name."
2944 (goto-char (point-min))
2947 (substring name
0 (min (length name
) (1- ebrowse--column-width
)))
2948 ebrowse--last-regexp
2949 (concat "[ \t\n]" (regexp-quote member
) "[ \n\t]"))
2950 (if (re-search-forward ebrowse--last-regexp nil t count
)
2951 (goto-char (1+ (match-beginning 0)))
2952 (error "Not found")))
2956 ;;; Switching member buffer to another class.
2958 (defun ebrowse-switch-member-buffer-to-other-class (title compl-list
)
2959 "Switch member buffer to a class read from the minibuffer.
2960 Use TITLE as minibuffer prompt.
2961 COMPL-LIST is a completion list to use."
2962 (let* ((initial (unless (second compl-list
)
2963 (first (first compl-list
))))
2964 (class (or (ebrowse-completing-read-value title compl-list initial
)
2965 (error "Not found"))))
2966 (setf ebrowse--displayed-class class
2967 ebrowse--member-list
(funcall ebrowse--accessor ebrowse--displayed-class
))
2968 (ebrowse-redisplay-member-buffer)))
2971 (defun ebrowse-switch-member-buffer-to-any-class ()
2972 "Switch member buffer to a class read from the minibuffer."
2974 (ebrowse-switch-member-buffer-to-other-class
2975 "Goto class: " (ebrowse-tree-obarray-as-alist)))
2978 (defun ebrowse-switch-member-buffer-to-base-class (arg)
2979 "Switch buffer to ARG'th base class."
2981 (let ((supers (or (ebrowse-direct-base-classes ebrowse--displayed-class
)
2982 (error "No base classes"))))
2983 (if (and arg
(second supers
))
2984 (let ((alist (loop for s in supers
2985 collect
(cons (ebrowse-qualified-class-name
2986 (ebrowse-ts-class s
))
2988 (ebrowse-switch-member-buffer-to-other-class
2989 "Goto base class: " alist
))
2990 (setq ebrowse--displayed-class
(first supers
)
2991 ebrowse--member-list
2992 (funcall ebrowse--accessor ebrowse--displayed-class
))
2993 (ebrowse-redisplay-member-buffer))))
2995 (defun ebrowse-switch-member-buffer-to-next-sibling-class (arg)
2996 "Move to ARG'th next sibling."
2998 (ebrowse-switch-member-buffer-to-sibling-class arg
))
3001 (defun ebrowse-switch-member-buffer-to-previous-sibling-class (arg)
3002 "Move to ARG'th previous sibling."
3004 (ebrowse-switch-member-buffer-to-sibling-class (- arg
)))
3007 (defun ebrowse-switch-member-buffer-to-sibling-class (inc)
3008 "Switch member display to nth sibling class.
3009 Prefix arg INC specifies which one."
3011 (let ((containing-list ebrowse--tree
)
3013 (supers (ebrowse-direct-base-classes ebrowse--displayed-class
)))
3014 (flet ((trees-alist (trees)
3015 (loop for tr in trees
3016 collect
(cons (ebrowse-cs-name
3017 (ebrowse-ts-class tr
)) tr
))))
3019 (let ((tree (if (second supers
)
3020 (ebrowse-completing-read-value
3021 "Relative to base class: "
3022 (trees-alist supers
) nil
)
3024 (unless tree
(error "Not found"))
3025 (setq containing-list
(ebrowse-ts-subclasses tree
)))))
3026 (setq index
(+ inc
(ebrowse-position ebrowse--displayed-class
3028 (cond ((minusp index
) (message "No previous class"))
3029 ((null (nth index containing-list
)) (message "No next class")))
3030 (setq index
(max 0 (min index
(1- (length containing-list
)))))
3031 (setq cls
(nth index containing-list
))
3032 (setf ebrowse--displayed-class cls
3033 ebrowse--member-list
(funcall ebrowse--accessor cls
))
3034 (ebrowse-redisplay-member-buffer)))
3037 (defun ebrowse-switch-member-buffer-to-derived-class (arg)
3038 "Switch member display to nth derived class.
3039 Prefix arg ARG says which class should be displayed. Default is
3040 the first derived class."
3042 (flet ((ebrowse-tree-obarray-as-alist ()
3043 (loop for s in
(ebrowse-ts-subclasses
3044 ebrowse--displayed-class
)
3045 collect
(cons (ebrowse-cs-name
3046 (ebrowse-ts-class s
)) s
))))
3047 (let ((subs (or (ebrowse-ts-subclasses ebrowse--displayed-class
)
3048 (error "No derived classes"))))
3049 (if (and arg
(second subs
))
3050 (ebrowse-switch-member-buffer-to-other-class
3051 "Goto derived class: " (ebrowse-tree-obarray-as-alist))
3052 (setq ebrowse--displayed-class
(first subs
)
3053 ebrowse--member-list
3054 (funcall ebrowse--accessor ebrowse--displayed-class
))
3055 (ebrowse-redisplay-member-buffer)))))
3059 ;;; Member buffer mouse functions
3061 (defun ebrowse-displaying-functions ()
3062 (eq ebrowse--accessor
'ebrowse-ts-member-functions
))
3063 (defun ebrowse-displaying-variables ()
3064 (eq ebrowse--accessor
'ebrowse-ts-member-variables
))
3065 (defun ebrowse-displaying-static-functions ()
3067 (defun ebrowse-displaying-static-variables ()
3069 (defun ebrowse-displaying-types ()
3070 (eq ebrowse--accessor
'ebrowse-ts-types
))
3071 (defun ebrowse-displaying-friends ()
3072 (eq ebrowse--accessor
'ebrowse-ts-friends
))
3075 ebrowse-member-buffer-object-menu ebrowse-member-mode-map
3076 "Object menu for the member buffer itself."
3079 ["Functions" ebrowse-display-function-member-list
3080 :help
"Show the list of member functions"
3082 :selected
(eq ebrowse--accessor
'ebrowse-ts-member-functions
)
3084 ["Variables" ebrowse-display-variables-member-list
3085 :help
"Show the list of member variables"
3087 :selected
(eq ebrowse--accessor
'ebrowse-ts-member-variables
)
3089 ["Static Functions" ebrowse-display-static-functions-member-list
3090 :help
"Show the list of static member functions"
3092 :selected
(eq ebrowse--accessor
'ebrowse-ts-static-functions
)
3094 ["Static Variables" ebrowse-display-static-variables-member-list
3095 :help
"Show the list of static member variables"
3097 :selected
(eq ebrowse--accessor
'ebrowse-ts-static-variables
)
3099 ["Types" ebrowse-display-types-member-list
3100 :help
"Show the list of nested types"
3102 :selected
(eq ebrowse--accessor
'ebrowse-ts-types
)
3104 ["Friends/Defines" ebrowse-display-friends-member-list
3105 :help
"Show the list of friends or defines"
3107 :selected
(eq ebrowse--accessor
'ebrowse-ts-friends
)
3110 ["Up" ebrowse-switch-member-buffer-to-base-class
3111 :help
"Show the base class of this class"
3113 ["Down" ebrowse-switch-member-buffer-to-derived-class
3114 :help
"Show a derived class class of this class"
3116 ["Next Sibling" ebrowse-switch-member-buffer-to-next-sibling-class
3117 :help
"Show the next sibling class"
3119 ["Previous Sibling" ebrowse-switch-member-buffer-to-previous-sibling-class
3120 :help
"Show the previous sibling class"
3123 ["Show in Tree" ebrowse-show-displayed-class-in-tree
3124 :help
"Show this class in the class tree"
3126 ["Find in this Class" ebrowse-goto-visible-member
3127 :help
"Search for a member of this class"
3129 ["Find in Tree" ebrowse-goto-visible-member
/all-member-lists
3130 :help
"Search for a member in any class"
3133 ["Inherited" ebrowse-toggle-base-class-display
3134 :help
"Toggle display of inherited members"
3136 :selected ebrowse--show-inherited-flag
3138 ["Attributes" ebrowse-toggle-member-attributes-display
3139 :help
"Show member attributes"
3141 :selected ebrowse--attributes-flag
3143 ["Long Display" ebrowse-toggle-long-short-display
3144 :help
"Toggle the member display format"
3146 :selected ebrowse--long-display-flag
3148 ["Column Width" ebrowse-set-member-buffer-column-width
3149 :help
"Set the display's column width"
3152 ["Public" ebrowse-toggle-public-member-filter
3153 :help
"Toggle the visibility of public members"
3155 :selected
(not (aref ebrowse--filters
0))
3157 ["Protected" ebrowse-toggle-protected-member-filter
3158 :help
"Toggle the visibility of protected members"
3160 :selected
(not (aref ebrowse--filters
1))
3162 ["Private" ebrowse-toggle-private-member-filter
3163 :help
"Toggle the visibility of private members"
3165 :selected
(not (aref ebrowse--filters
2))
3167 ["Virtual" ebrowse-toggle-virtual-member-filter
3168 :help
"Toggle the visibility of virtual members"
3170 :selected ebrowse--virtual-display-flag
3172 ["Inline" ebrowse-toggle-inline-member-filter
3173 :help
"Toggle the visibility of inline members"
3175 :selected ebrowse--inline-display-flag
3177 ["Const" ebrowse-toggle-const-member-filter
3178 :help
"Toggle the visibility of const members"
3180 :selected ebrowse--const-display-flag
3182 ["Pure" ebrowse-toggle-pure-member-filter
3183 :help
"Toggle the visibility of pure virtual members"
3185 :selected ebrowse--pure-display-flag
3188 ["Show all" ebrowse-remove-all-member-filters
3189 :help
"Remove any display filters"
3192 ["Tree" ebrowse-pop-from-member-to-tree-buffer
3193 :help
"Pop to the class tree buffer"
3195 ["Next Member Buffer" ebrowse-switch-to-next-member-buffer
3196 :help
"Switch to the next member buffer of this class tree"
3198 ["Freeze" ebrowse-freeze-member-buffer
3199 :help
"Freeze (do not reuse) this member buffer"
3203 (defun ebrowse-on-class-name ()
3204 "Value is non-nil if point is on a class name."
3205 (eq (get-text-property (point) 'ebrowse-what
) 'class-name
))
3208 (defun ebrowse-on-member-name ()
3209 "Value is non-nil if point is on a member name."
3210 (eq (get-text-property (point) 'ebrowse-what
) 'member-name
))
3214 ebrowse-member-class-name-object-menu ebrowse-member-mode-map
3215 "Object menu for class names in member buffer."
3217 ["Find" ebrowse-find-member-definition
3218 :help
"Find this class in the source files"
3219 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]
3220 ["View" ebrowse-view-member-definition
3221 :help
"View this class in the source files"
3222 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]))
3226 ebrowse-member-name-object-menu ebrowse-member-mode-map
3227 "Object menu for member names"
3229 ["Find Definition" ebrowse-find-member-definition
3230 :help
"Find this member's definition in the source files"
3231 :active
(ebrowse-on-member-name)]
3232 ["Find Declaration" ebrowse-find-member-declaration
3233 :help
"Find this member's declaration in the source files"
3234 :active
(ebrowse-on-member-name)]
3235 ["View Definition" ebrowse-view-member-definition
3236 :help
"View this member's definition in the source files"
3237 :active
(ebrowse-on-member-name)]
3238 ["View Declaration" ebrowse-view-member-declaration
3239 :help
"View this member's declaration in the source files"
3240 :active
(ebrowse-on-member-name)]))
3243 (defun ebrowse-member-mouse-3 (event)
3244 "Handle `mouse-3' events in member buffers.
3245 EVENT is the mouse event."
3247 (mouse-set-point event
)
3248 (case (event-click-count event
)
3249 (2 (ebrowse-find-member-definition))
3250 (1 (case (get-text-property (posn-point (event-start event
))
3253 (ebrowse-popup-menu ebrowse-member-name-object-menu event
))
3255 (ebrowse-popup-menu ebrowse-member-class-name-object-menu event
))
3257 (ebrowse-popup-menu ebrowse-member-buffer-object-menu event
))))))
3260 (defun ebrowse-member-mouse-2 (event)
3261 "Handle `mouse-2' events in member buffers.
3262 EVENT is the mouse event."
3264 (mouse-set-point event
)
3265 (case (event-click-count event
)
3266 (2 (ebrowse-find-member-definition))
3267 (1 (case (get-text-property (posn-point (event-start event
))
3270 (ebrowse-view-member-definition 0))))))
3276 (defun ebrowse-class-alist-for-member (tree-header name
)
3277 "Return information about a member in a class tree.
3278 TREE-HEADER is the header structure of the class tree.
3279 NAME is the name of the member.
3280 Value is an alist of elements (CLASS-NAME . (CLASS LIST NAME)),
3281 where each element describes one occurrence of member NAME in the tree.
3282 CLASS-NAME is the qualified name of the class in which the
3283 member was found. The CDR of the acons is described in function
3284 `ebrowse-class/index/member-for-member'."
3285 (let ((table (ebrowse-member-table tree-header
))
3289 (dolist (info (gethash name table
) alist
)
3290 (unless (memq (first info
) known-classes
)
3291 (setf alist
(acons (ebrowse-qualified-class-name
3292 (ebrowse-ts-class (first info
)))
3294 known-classes
(cons (first info
) known-classes
)))))))
3297 (defun ebrowse-choose-tree ()
3298 "Choose a class tree to use.
3299 If there's more than one class tree loaded, let the user choose
3300 the one he wants. Value is (TREE HEADER BUFFER), with TREE being
3301 the class tree, HEADER the header structure of the tree, and BUFFER
3302 being the tree or member buffer containing the tree."
3303 (let* ((buffer (ebrowse-choose-from-browser-buffers)))
3304 (if buffer
(list (ebrowse-value-in-buffer 'ebrowse--tree buffer
)
3305 (ebrowse-value-in-buffer 'ebrowse--header buffer
)
3309 (defun ebrowse-tags-read-name (header prompt
)
3310 "Read a C++ identifier from the minibuffer.
3311 HEADER is the `ebrowse-hs' structure of the class tree.
3312 Prompt with PROMPT. Insert into the minibuffer a C++ identifier read
3313 from point as default. Value is a list (CLASS-NAME MEMBER-NAME)."
3315 (let* (start member-info
(members (ebrowse-member-table header
)))
3316 (multiple-value-bind (class-name member-name
)
3317 (ebrowse-tags-read-member+class-name
)
3319 (error "No member name at point"))
3321 (let* ((name (ebrowse-ignoring-completion-case
3322 (completing-read prompt members nil nil member-name
)))
3323 (completion-result (try-completion name members
)))
3324 ;; Cannot rely on `try-completion' returning t for exact
3325 ;; matches! It returns the name as a string.
3326 (unless (setq member-info
(gethash name members
))
3327 (if (y-or-n-p "No exact match found. Try substrings? ")
3329 (or (first (ebrowse-list-of-matching-members
3330 members
(regexp-quote name
) name
))
3331 (error "Sorry, nothing found")))
3332 (error "Canceled")))
3333 (list class-name name
))
3334 (list class-name
(read-from-minibuffer prompt member-name
)))))))
3337 (defun ebrowse-tags-read-member+class-name
()
3338 "Read a C++ identifier from point.
3339 Value is (CLASS-NAME MEMBER-NAME).
3340 CLASS-NAME is the name of the class if the identifier was qualified.
3341 It is nil otherwise.
3342 MEMBER-NAME is the name of the member found."
3344 (skip-chars-backward "a-zA-Z0-9_")
3345 (let* ((start (point))
3346 (name (progn (skip-chars-forward "a-zA-Z0-9_")
3347 (buffer-substring start
(point))))
3349 (list class name
))))
3352 (defun ebrowse-tags-choose-class (tree header name initial-class-name
)
3353 "Read a class name for a member from the minibuffer.
3354 TREE is the class tree we operate on.
3355 HEADER is its header structure.
3356 NAME is the name of the member.
3357 INITIAL-CLASS-NAME is an initial class name to insert in the minibuffer.
3358 Value is a list (TREE ACCESSOR MEMBER) for the member."
3359 (let ((alist (or (ebrowse-class-alist-for-member header name
)
3360 (error "No classes with member `%s' found" name
))))
3361 (ebrowse-ignoring-completion-case
3362 (if (null (second alist
))
3364 (push ?
\? unread-command-events
)
3365 (cdr (assoc (completing-read "In class: "
3366 alist nil t initial-class-name
)
3370 (defun* ebrowse-tags-view
/find-member-decl
/defn
3371 (prefix &key view definition member-name
)
3372 "If VIEW is t, view, else find an occurrence of MEMBER-NAME.
3374 If DEFINITION is t, find or view the member definition else its
3375 declaration. This function reads the member's name from the
3376 current buffer like FIND-TAG. It then prepares a completion list
3377 of all classes containing a member with the given name and lets
3378 the user choose the class to use. As a last step, a tags search
3379 is performed that positions point on the member declaration or
3381 (multiple-value-bind
3382 (tree header tree-buffer
) (ebrowse-choose-tree)
3383 (unless tree
(error "No class tree"))
3384 (let* ((marker (point-marker))
3389 (multiple-value-setq (class-name name
)
3390 (ebrowse-tags-read-name
3392 (concat (if view
"View" "Find") " member "
3393 (if definition
"definition" "declaration") ": "))))
3394 (setq info
(ebrowse-tags-choose-class tree header name class-name
))
3395 (ebrowse-push-position marker info
)
3396 ;; Goto the occurrence of the member
3397 (ebrowse-view/find-member-declaration
/definition
3398 prefix view definition info
3400 (ebrowse-value-in-buffer 'ebrowse--tags-file-name tree-buffer
))
3401 ;; Record position jumped to
3402 (ebrowse-push-position (point-marker) info t
))))
3406 (defun ebrowse-tags-view-declaration ()
3407 "View declaration of member at point."
3409 (ebrowse-tags-view/find-member-decl
/defn
0 :view t
:definition nil
))
3413 (defun ebrowse-tags-find-declaration ()
3414 "Find declaration of member at point."
3416 (ebrowse-tags-view/find-member-decl
/defn
0 :view nil
:definition nil
))
3420 (defun ebrowse-tags-view-definition ()
3421 "View definition of member at point."
3423 (ebrowse-tags-view/find-member-decl
/defn
0 :view t
:definition t
))
3427 (defun ebrowse-tags-find-definition ()
3428 "Find definition of member at point."
3430 (ebrowse-tags-view/find-member-decl
/defn
0 :view nil
:definition t
))
3433 (defun ebrowse-tags-view-declaration-other-window ()
3434 "View declaration of member at point in other window."
3436 (ebrowse-tags-view/find-member-decl
/defn
4 :view t
:definition nil
))
3440 (defun ebrowse-tags-find-declaration-other-window ()
3441 "Find declaration of member at point in other window."
3443 (ebrowse-tags-view/find-member-decl
/defn
4 :view nil
:definition nil
))
3447 (defun ebrowse-tags-view-definition-other-window ()
3448 "View definition of member at point in other window."
3450 (ebrowse-tags-view/find-member-decl
/defn
4 :view t
:definition t
))
3454 (defun ebrowse-tags-find-definition-other-window ()
3455 "Find definition of member at point in other window."
3457 (ebrowse-tags-view/find-member-decl
/defn
4 :view nil
:definition t
))
3460 (defun ebrowse-tags-view-declaration-other-frame ()
3461 "View definition of member at point in other frame."
3463 (ebrowse-tags-view/find-member-decl
/defn
5 :view t
:definition nil
))
3467 (defun ebrowse-tags-find-declaration-other-frame ()
3468 "Find definition of member at point in other frame."
3470 (ebrowse-tags-view/find-member-decl
/defn
5 :view nil
:definition nil
))
3474 (defun ebrowse-tags-view-definition-other-frame ()
3475 "View definition of member at point in other frame."
3477 (ebrowse-tags-view/find-member-decl
/defn
5 :view t
:definition t
))
3481 (defun ebrowse-tags-find-definition-other-frame ()
3482 "Find definition of member at point in other frame."
3484 (ebrowse-tags-view/find-member-decl
/defn
5 :view nil
:definition t
))
3487 (defun ebrowse-tags-select/create-member-buffer
(tree-buffer info
)
3488 "Select or create member buffer.
3489 TREE-BUFFER specifies the tree to use. INFO describes the member.
3490 It is a list (TREE ACCESSOR MEMBER)."
3491 (let ((buffer (get-buffer ebrowse-member-buffer-name
)))
3492 (cond ((null buffer
)
3493 (set-buffer tree-buffer
)
3494 (switch-to-buffer (ebrowse-display-member-buffer
3495 (second info
) nil
(first info
))))
3497 (switch-to-buffer buffer
)
3498 (setq ebrowse--displayed-class
(first info
)
3499 ebrowse--accessor
(second info
)
3500 ebrowse--member-list
(funcall ebrowse--accessor ebrowse--displayed-class
))
3501 (ebrowse-redisplay-member-buffer)))
3502 (ebrowse-move-point-to-member (ebrowse-ms-name (third info
)))))
3505 (defun ebrowse-tags-display-member-buffer (&optional fix-name
)
3506 "Display a member buffer for a member.
3507 FIX-NAME non-nil means display the buffer for that member.
3508 Otherwise read a member name from point."
3510 (multiple-value-bind
3511 (tree header tree-buffer
) (ebrowse-choose-tree)
3512 (unless tree
(error "No class tree"))
3513 (let* ((marker (point-marker)) class-name
(name fix-name
) info
)
3515 (multiple-value-setq (class-name name
)
3516 (ebrowse-tags-read-name header
3517 (concat "Find member list of: "))))
3518 (setq info
(ebrowse-tags-choose-class tree header name class-name
))
3519 (ebrowse-push-position marker info
)
3520 (ebrowse-tags-select/create-member-buffer tree-buffer info
))))
3523 (defun ebrowse-list-of-matching-members (members regexp
&optional name
)
3524 "Return a list of members in table MEMBERS matching REGEXP or NAME.
3525 Both NAME and REGEXP may be nil in which case exact or regexp matches
3528 (when (or name regexp
)
3529 (maphash #'(lambda (member-name info
)
3530 (when (or (and name
(string= name member-name
))
3531 (and regexp
(string-match regexp member-name
)))
3532 (setq list
(cons member-name list
))))
3537 (defun ebrowse-tags-apropos ()
3538 "Display a list of members matching a regexp read from the minibuffer."
3540 (let* ((buffer (or (ebrowse-choose-from-browser-buffers)
3541 (error "No tree buffer")))
3542 (header (ebrowse-value-in-buffer 'ebrowse--header buffer
))
3543 (members (ebrowse-member-table header
))
3544 temp-buffer-setup-hook
3545 (regexp (read-from-minibuffer "List members matching regexp: ")))
3546 (with-output-to-temp-buffer (concat "*Apropos Members*")
3547 (set-buffer standard-output
)
3549 (insert "Members matching `" regexp
"'\n\n")
3550 (loop for s in
(ebrowse-list-of-matching-members members regexp
) do
3551 (loop for info in
(gethash s members
) do
3552 (ebrowse-draw-file-member-info info
))))))
3555 (defun ebrowse-tags-list-members-in-file ()
3556 "Display a list of members found in a file.
3557 The file name is read from the minibuffer."
3559 (let* ((buffer (or (ebrowse-choose-from-browser-buffers)
3560 (error "No tree buffer")))
3561 (files (save-excursion (set-buffer buffer
) (ebrowse-files-table)))
3562 (file (completing-read "List members in file: " files nil t
))
3563 (header (ebrowse-value-in-buffer 'ebrowse--header buffer
))
3564 temp-buffer-setup-hook
3565 (members (ebrowse-member-table header
)))
3566 (with-output-to-temp-buffer (concat "*Members in file " file
"*")
3567 (set-buffer standard-output
)
3569 #'(lambda (member-name list
)
3570 (loop for info in list
3571 as member
= (third info
)
3572 as class
= (ebrowse-ts-class (first info
))
3573 when
(or (and (null (ebrowse-ms-file member
))
3574 (string= (ebrowse-cs-file class
) file
))
3575 (string= file
(ebrowse-ms-file member
)))
3576 do
(ebrowse-draw-file-member-info info
"decl.")
3577 when
(or (and (null (ebrowse-ms-definition-file member
))
3578 (string= (ebrowse-cs-source-file class
) file
))
3579 (string= file
(ebrowse-ms-definition-file member
)))
3580 do
(ebrowse-draw-file-member-info info
"defn.")))
3584 (defun* ebrowse-draw-file-member-info
(info &optional
(kind ""))
3585 "Display a line in the members info buffer.
3586 INFO describes the member. It has the form (TREE ACCESSOR MEMBER).
3587 TREE is the class of the member to display.
3588 ACCESSOR is the accessor symbol of its member list.
3589 MEMBER is the member structure.
3590 KIND is an additional string printed in the buffer."
3591 (let* ((tree (first info
))
3592 (globals-p (ebrowse-globals-tree-p tree
)))
3594 (insert (ebrowse-cs-name (ebrowse-ts-class tree
))))
3595 (insert "::" (ebrowse-ms-name (third info
)))
3599 (insert (case (second info
)
3600 ('ebrowse-ts-member-functions
"member function")
3601 ('ebrowse-ts-member-variables
"member variable")
3602 ('ebrowse-ts-static-functions
"static function")
3603 ('ebrowse-ts-static-variables
"static variable")
3604 ('ebrowse-ts-friends
(if globals-p
"define" "friend"))
3605 ('ebrowse-ts-types
"type")
3609 (defvar ebrowse-last-completion nil
3610 "Text inserted by the last completion operation.")
3613 (defvar ebrowse-last-completion-start nil
3614 "String which was the basis for the last completion operation.")
3617 (defvar ebrowse-last-completion-location nil
3618 "Buffer position at which the last completion operation was initiated.")
3621 (defvar ebrowse-last-completion-obarray nil
3622 "Member used in last completion operation.")
3625 (make-variable-buffer-local 'ebrowse-last-completion-obarray
)
3626 (make-variable-buffer-local 'ebrowse-last-completion-location
)
3627 (make-variable-buffer-local 'ebrowse-last-completion
)
3628 (make-variable-buffer-local 'ebrowse-last-completion-start
)
3632 (defun ebrowse-some-member-table ()
3633 "Return a hash table containing all members of a tree.
3634 If there's only one tree loaded, use that. Otherwise let the
3636 (let* ((buffers (ebrowse-known-class-trees-buffer-list))
3637 (buffer (cond ((and (first buffers
) (not (second buffers
)))
3639 (t (or (ebrowse-electric-choose-tree)
3640 (error "No tree buffer")))))
3641 (header (ebrowse-value-in-buffer 'ebrowse--header buffer
)))
3642 (ebrowse-member-table header
)))
3645 (defun ebrowse-cyclic-successor-in-string-list (string list
)
3646 "Return the item following STRING in LIST.
3647 If STRING is the last element, return the first element as successor."
3648 (or (nth (1+ (ebrowse-position string list
'string
=)) list
)
3652 ;;; Symbol completion
3655 (defun* ebrowse-tags-complete-symbol
(prefix)
3656 "Perform completion on the C++ symbol preceding point.
3657 A second call of this function without changing point inserts the next match.
3658 A call with prefix PREFIX reads the symbol to insert from the minibuffer with
3661 (let* ((end (point))
3662 (begin (save-excursion (skip-chars-backward "a-zA-Z_0-9") (point)))
3663 (pattern (buffer-substring begin end
))
3666 ;; With prefix, read name from minibuffer with completion.
3668 (let* ((members (ebrowse-some-member-table))
3669 (completion (completing-read "Insert member: "
3670 members nil t pattern
)))
3672 (setf ebrowse-last-completion-location nil
)
3673 (delete-region begin end
)
3674 (insert completion
))))
3675 ;; If this function is called at the same point the last
3676 ;; expansion ended, insert the next expansion.
3677 ((eq (point) ebrowse-last-completion-location
)
3678 (setf list
(all-completions ebrowse-last-completion-start
3679 ebrowse-last-completion-obarray
)
3680 completion
(ebrowse-cyclic-successor-in-string-list
3681 ebrowse-last-completion list
))
3682 (cond ((null completion
)
3683 (error "No completion"))
3684 ((string= completion pattern
)
3685 (error "No further completion"))
3687 (delete-region begin end
)
3689 (setf ebrowse-last-completion completion
3690 ebrowse-last-completion-location
(point)))))
3691 ;; First time the function is called at some position in the
3692 ;; buffer: Start new completion.
3694 (let* ((members (ebrowse-some-member-table))
3695 (completion (first (all-completions pattern members nil
))))
3696 (cond ((eq completion t
))
3698 (error "Can't find completion for `%s'" pattern
))
3700 (delete-region begin end
)
3703 (setf ebrowse-last-completion-location
(point)
3704 ebrowse-last-completion-start pattern
3705 ebrowse-last-completion completion
3706 ebrowse-last-completion-obarray members
))))))))
3709 ;;; Tags query replace & search
3711 (defvar ebrowse-tags-loop-form
()
3712 "Form for `ebrowse-loop-continue'.
3713 Evaluated for each file in the tree. If it returns nil, proceed
3714 with the next file.")
3716 (defvar ebrowse-tags-next-file-list
()
3717 "A list of files to be processed.")
3720 (defvar ebrowse-tags-next-file-path nil
3721 "The path relative to which files have to be searched.")
3724 (defvar ebrowse-tags-loop-last-file nil
3725 "The last file visited via `ebrowse-tags-loop'.")
3728 (defun ebrowse-tags-next-file (&optional initialize tree-buffer
)
3729 "Select next file among files in current tag table.
3730 Non-nil argument INITIALIZE (prefix arg, if interactive) initializes
3731 to the beginning of the list of files in the tag table.
3732 TREE-BUFFER specifies the class tree we operate on."
3734 ;; Call with INITIALIZE non-nil initializes the files list.
3735 ;; If more than one tree buffer is loaded, let the user choose
3736 ;; on which tree (s)he wants to operate.
3738 (let ((buffer (or tree-buffer
(ebrowse-choose-from-browser-buffers))))
3741 (setq ebrowse-tags-next-file-list
3742 (ebrowse-files-list (ebrowse-marked-classes-p))
3743 ebrowse-tags-loop-last-file
3745 ebrowse-tags-next-file-path
3746 (file-name-directory ebrowse--tags-file-name
)))))
3747 ;; End of the loop if the stack of files is empty.
3748 (unless ebrowse-tags-next-file-list
3749 (error "All files processed"))
3750 ;; ebrowse-tags-loop-last-file is the last file that was visited due
3751 ;; to a call to BROWSE-LOOP (see below). If that file is still
3752 ;; in memory, and it wasn't modified, throw its buffer away to
3753 ;; prevent cluttering up the buffer list.
3754 (when ebrowse-tags-loop-last-file
3755 (let ((buffer (get-file-buffer ebrowse-tags-loop-last-file
)))
3757 (not (buffer-modified-p buffer
)))
3758 (kill-buffer buffer
))))
3759 ;; Remember this buffer file name for later deletion, if it
3760 ;; wasn't visited by other means.
3761 (let ((file (expand-file-name (car ebrowse-tags-next-file-list
)
3762 ebrowse-tags-next-file-path
)))
3763 (setq ebrowse-tags-loop-last-file
(if (get-file-buffer file
) nil file
))
3764 ;; Find the file and pop the file list. Pop has to be done
3765 ;; before the file is loaded because FIND-FILE might encounter
3766 ;; an error, and we want to be able to proceed with the next
3767 ;; file in this case.
3768 (pop ebrowse-tags-next-file-list
)
3773 (defun ebrowse-tags-loop-continue (&optional first-time tree-buffer
)
3774 "Repeat last operation on files in tree.
3775 FIRST-TIME non-nil means this is not a repetition, but the first time.
3776 TREE-BUFFER if indirectly specifies which files to loop over."
3779 (ebrowse-tags-next-file first-time tree-buffer
)
3780 (goto-char (point-min)))
3781 (while (not (eval ebrowse-tags-loop-form
))
3782 (ebrowse-tags-next-file)
3783 (message "Scanning file `%s'..." buffer-file-name
)
3784 (goto-char (point-min))))
3788 (defun ebrowse-tags-search (regexp)
3789 "Search for REGEXP in all files in a tree.
3790 If marked classes exist, process marked classes, only.
3791 If regular expression is nil, repeat last search."
3792 (interactive "sTree search (regexp): ")
3793 (if (and (string= regexp
"")
3794 (eq (car ebrowse-tags-loop-form
) 're-search-forward
))
3795 (ebrowse-tags-loop-continue)
3796 (setq ebrowse-tags-loop-form
(list 're-search-forward regexp nil t
))
3797 (ebrowse-tags-loop-continue 'first-time
)))
3801 (defun ebrowse-tags-query-replace (from to
)
3802 "Query replace FROM with TO in all files of a class tree.
3803 With prefix arg, process files of marked classes only."
3805 "sTree query replace (regexp): \nsTree query replace %s by: ")
3806 (setq ebrowse-tags-loop-form
3807 (list 'and
(list 'save-excursion
3808 (list 're-search-forward from nil t
))
3809 (list 'not
(list 'perform-replace from to t t nil
))))
3810 (ebrowse-tags-loop-continue 'first-time
))
3814 (defun ebrowse-tags-search-member-use (&optional fix-name
)
3815 "Search for call sites of a member.
3816 If FIX-NAME is specified, search uses of that member.
3817 Otherwise, read a member name from the minibuffer.
3818 Searches in all files mentioned in a class tree for something that
3819 looks like a function call to the member."
3821 ;; Choose the tree to use if there is more than one.
3822 (multiple-value-bind (tree header tree-buffer
)
3823 (ebrowse-choose-tree)
3825 (error "No class tree"))
3826 ;; Get the member name NAME (class-name is ignored).
3827 (let ((name fix-name
) class-name regexp
)
3829 (multiple-value-setq (class-name name
)
3830 (ebrowse-tags-read-name header
"Find calls of: ")))
3831 ;; Set tags loop form to search for member and begin loop.
3832 (setq regexp
(concat "\\<" name
"[ \t]*(")
3833 ebrowse-tags-loop-form
(list 're-search-forward regexp nil t
))
3834 (ebrowse-tags-loop-continue 'first-time tree-buffer
))))
3838 ;;; Tags position management
3840 ;;; Structures of this kind are the elements of the position stack.
3842 (defstruct (ebrowse-position (:type vector
) :named
)
3843 file-name
; in which file
3844 point
; point in file
3845 target
; t if target of a jump
3846 info
) ; (CLASS FUNC MEMBER) jumped to
3849 (defvar ebrowse-position-stack
()
3850 "Stack of `ebrowse-position' structured.")
3853 (defvar ebrowse-position-index
0
3854 "Current position in position stack.")
3857 (defun ebrowse-position-name (position)
3858 "Return an identifying string for POSITION.
3859 The string is printed in the electric position list buffer."
3860 (let ((info (ebrowse-position-info position
)))
3861 (concat (if (ebrowse-position-target position
) "at " "to ")
3862 (ebrowse-cs-name (ebrowse-ts-class (first info
)))
3863 "::" (ebrowse-ms-name (third info
)))))
3866 (defun ebrowse-view/find-position
(position &optional view
)
3867 "Position point on POSITION.
3868 If VIEW is non-nil, view the position, otherwise find it."
3870 (find-file (ebrowse-position-file-name position
))
3871 (goto-char (ebrowse-position-point position
)))
3877 (goto-char (ebrowse-position-point position
))))
3879 (view-file (ebrowse-position-file-name position
)))
3880 (pop view-mode-hook
)))))
3883 (defun ebrowse-push-position (marker info
&optional target
)
3884 "Push current position on position stack.
3885 MARKER is the marker to remember as position.
3886 INFO is a list (CLASS FUNC MEMBER) specifying what we jumped to.
3887 TARGET non-nil means we performed a jump.
3888 Positions in buffers that have no file names are not saved."
3889 (when (buffer-file-name (marker-buffer marker
))
3890 (let ((too-much (- (length ebrowse-position-stack
)
3891 ebrowse-max-positions
)))
3892 ;; Do not let the stack grow to infinity.
3893 (when (plusp too-much
)
3894 (setq ebrowse-position-stack
3895 (butlast ebrowse-position-stack too-much
)))
3896 ;; Push the position.
3897 (push (make-ebrowse-position
3898 :file-name
(buffer-file-name (marker-buffer marker
))
3899 :point
(marker-position marker
)
3902 ebrowse-position-stack
))))
3905 (defun ebrowse-move-in-position-stack (increment)
3906 "Move by INCREMENT in the position stack."
3907 (let ((length (length ebrowse-position-stack
)))
3908 (when (zerop length
)
3909 (error "No positions remembered"))
3910 (setq ebrowse-position-index
3911 (mod (+ increment ebrowse-position-index
) length
))
3912 (message "Position %d of %d " ebrowse-position-index length
)
3913 (ebrowse-view/find-position
(nth ebrowse-position-index
3914 ebrowse-position-stack
))))
3918 (defun ebrowse-back-in-position-stack (arg)
3919 "Move backward in the position stack.
3920 Prefix arg ARG says how much."
3922 (ebrowse-move-in-position-stack (max 1 arg
)))
3926 (defun ebrowse-forward-in-position-stack (arg)
3927 "Move forward in the position stack.
3928 Prefix arg ARG says how much."
3930 (ebrowse-move-in-position-stack (min -
1 (- arg
))))
3934 ;;; Electric position list
3936 (defvar ebrowse-electric-position-mode-map
()
3937 "Keymap used in electric position stack window.")
3940 (defvar ebrowse-electric-position-mode-hook nil
3941 "If non-nil, its value is called by `ebrowse-electric-position-mode'.")
3944 (unless ebrowse-electric-position-mode-map
3945 (let ((map (make-keymap))
3946 (submap (make-keymap)))
3947 (setq ebrowse-electric-position-mode-map map
)
3948 (fillarray (car (cdr map
)) 'ebrowse-electric-position-undefined
)
3949 (fillarray (car (cdr submap
)) 'ebrowse-electric-position-undefined
)
3950 (define-key map
"\e" submap
)
3951 (define-key map
"\C-z" 'suspend-emacs
)
3952 (define-key map
"\C-h" 'Helper-help
)
3953 (define-key map
"?" 'Helper-describe-bindings
)
3954 (define-key map
"\C-c" nil
)
3955 (define-key map
"\C-c\C-c" 'ebrowse-electric-position-quit
)
3956 (define-key map
"q" 'ebrowse-electric-position-quit
)
3957 (define-key map
" " 'ebrowse-electric-select-position
)
3958 (define-key map
"\C-l" 'recenter
)
3959 (define-key map
"\C-u" 'universal-argument
)
3960 (define-key map
"\C-p" 'previous-line
)
3961 (define-key map
"\C-n" 'next-line
)
3962 (define-key map
"p" 'previous-line
)
3963 (define-key map
"n" 'next-line
)
3964 (define-key map
"v" 'ebrowse-electric-view-position
)
3965 (define-key map
"\C-v" 'scroll-up
)
3966 (define-key map
"\ev" 'scroll-down
)
3967 (define-key map
"\e\C-v" 'scroll-other-window
)
3968 (define-key map
"\e>" 'end-of-buffer
)
3969 (define-key map
"\e<" 'beginning-of-buffer
)
3970 (define-key map
"\e>" 'end-of-buffer
)))
3972 (put 'ebrowse-electric-position-mode
'mode-class
'special
)
3973 (put 'ebrowse-electric-position-undefined
'suppress-keymap t
)
3976 (defun ebrowse-electric-position-mode ()
3977 "Mode for electric position buffers.
3978 Runs the hook `ebrowse-electric-position-mode-hook'."
3979 (kill-all-local-variables)
3980 (use-local-map ebrowse-electric-position-mode-map
)
3981 (setq mode-name
"Electric Position Menu"
3982 mode-line-buffer-identification
"Electric Position Menu")
3983 (when (memq 'mode-name mode-line-format
)
3984 (setq mode-line-format
(copy-sequence mode-line-format
))
3985 (setcar (memq 'mode-name mode-line-format
) "Positions"))
3986 (make-local-variable 'Helper-return-blurb
)
3987 (setq Helper-return-blurb
"return to buffer editing"
3990 major-mode
'ebrowse-electric-position-mode
)
3991 (run-mode-hooks 'ebrowse-electric-position-mode-hook
))
3994 (defun ebrowse-draw-position-buffer ()
3995 "Display positions in buffer *Positions*."
3996 (set-buffer (get-buffer-create "*Positions*"))
3997 (setq buffer-read-only nil
)
3999 (insert "File Point Description\n"
4000 "---- ----- -----------\n")
4001 (dolist (position ebrowse-position-stack
)
4002 (insert (file-name-nondirectory (ebrowse-position-file-name position
)))
4004 (insert (int-to-string (ebrowse-position-point position
)))
4006 (insert (ebrowse-position-name position
) "\n"))
4007 (setq buffer-read-only t
))
4011 (defun ebrowse-electric-position-menu ()
4012 "List positions in the position stack in an electric buffer."
4014 (unless ebrowse-position-stack
4015 (error "No positions remembered"))
4016 (let (select buffer window
)
4017 (save-window-excursion
4018 (save-window-excursion (ebrowse-draw-position-buffer))
4019 (setq window
(Electric-pop-up-window "*Positions*")
4020 buffer
(window-buffer window
))
4021 (shrink-window-if-larger-than-buffer window
)
4025 (ebrowse-electric-position-mode)
4027 (catch 'ebrowse-electric-select-position
4028 (message "<<< Press Space to bury the list >>>")
4029 (let ((first (progn (goto-char (point-min))
4032 (last (progn (goto-char (point-max))
4037 (Electric-command-loop 'ebrowse-electric-select-position
4039 'ebrowse-electric-position-looper
4040 (cons first last
))))))
4042 (bury-buffer buffer
)
4046 (ebrowse-electric-find-position select
))
4047 (kill-buffer buffer
)))
4050 (defun ebrowse-electric-position-looper (state condition
)
4051 "Prevent moving point on invalid lines.
4052 Called from `Electric-command-loop'. See there for the meaning
4053 of STATE and CONDITION."
4054 (cond ((and condition
4055 (not (memq (car condition
) '(buffer-read-only
4057 beginning-of-buffer
))))
4058 (signal (car condition
) (cdr condition
)))
4059 ((< (point) (car state
))
4060 (goto-char (point-min))
4062 ((> (point) (cdr state
))
4063 (goto-char (point-max))
4065 (if (pos-visible-in-window-p (point-max))
4069 (defun ebrowse-electric-position-undefined ()
4070 "Function called for undefined keys."
4072 (message "Type C-h for help, ? for commands, q to quit, Space to execute")
4076 (defun ebrowse-electric-position-quit ()
4077 "Leave the electric position list."
4079 (throw 'ebrowse-electric-select-position nil
))
4082 (defun ebrowse-electric-select-position ()
4083 "Select a position from the list."
4085 (throw 'ebrowse-electric-select-position
(point)))
4088 (defun ebrowse-electric-find-position (point &optional view
)
4089 "View/find what is described by the line at POINT.
4090 If VIEW is non-nil, view else find source files."
4091 (let ((index (- (count-lines (point-min) point
) 2)))
4092 (ebrowse-view/find-position
(nth index
4093 ebrowse-position-stack
) view
)))
4096 (defun ebrowse-electric-view-position ()
4097 "View the position described by the line point is in."
4099 (ebrowse-electric-find-position (point) t
))
4103 ;;; Saving trees to disk
4105 (defun ebrowse-write-file-hook-fn ()
4106 "Write current buffer as a class tree.
4107 Installed on `local-write-file-hooks'."
4113 (defun ebrowse-save-tree ()
4114 "Save current tree in same file it was loaded from."
4116 (ebrowse-save-tree-as (or buffer-file-name ebrowse--tags-file-name
)))
4120 (defun ebrowse-save-tree-as (&optional file-name
)
4121 "Write the current tree data structure to a file.
4122 Read the file name from the minibuffer if interactive.
4123 Otherwise, FILE-NAME specifies the file to save the tree in."
4124 (interactive "FSave tree as: ")
4125 (let ((temp-buffer (get-buffer-create "*Tree Output"))
4126 (old-standard-output standard-output
)
4127 (header (copy-ebrowse-hs ebrowse--header
))
4128 (tree ebrowse--tree
))
4131 (set-buffer (setq standard-output temp-buffer
))
4133 (setf (ebrowse-hs-member-table header
) nil
)
4134 (insert (prin1-to-string header
) " ")
4135 (mapcar 'ebrowse-save-class tree
)
4136 (write-file file-name
)
4137 (message "Tree written to file `%s'" file-name
))
4138 (kill-buffer temp-buffer
)
4139 (set-buffer-modified-p nil
)
4140 (ebrowse-update-tree-buffer-mode-line)
4141 (setq standard-output old-standard-output
))))
4144 (defun ebrowse-save-class (class)
4145 "Write single class CLASS to current buffer."
4146 (message "%s..." (ebrowse-cs-name (ebrowse-ts-class class
)))
4147 (insert "[ebrowse-ts ")
4148 (prin1 (ebrowse-ts-class class
)) ;class name
4149 (insert "(") ;list of subclasses
4150 (mapcar 'ebrowse-save-class
(ebrowse-ts-subclasses class
))
4152 (dolist (func ebrowse-member-list-accessors
)
4153 (prin1 (funcall func class
))
4155 (insert "()") ;base-classes slot
4156 (prin1 (ebrowse-ts-mark class
))
4164 (defun ebrowse-statistics ()
4165 "Display statistics for a class tree."
4167 (let ((tree-file (buffer-file-name))
4168 temp-buffer-setup-hook
)
4169 (with-output-to-temp-buffer "*Tree Statistics*"
4170 (multiple-value-bind (classes member-functions member-variables
4171 static-functions static-variables
)
4172 (ebrowse-gather-statistics)
4173 (set-buffer standard-output
)
4175 (insert "STATISTICS FOR TREE " (or tree-file
"unknown") ":\n\n")
4176 (ebrowse-print-statistics-line "Number of classes:" classes
)
4177 (ebrowse-print-statistics-line "Number of member functions:"
4179 (ebrowse-print-statistics-line "Number of member variables:"
4181 (ebrowse-print-statistics-line "Number of static functions:"
4183 (ebrowse-print-statistics-line "Number of static variables:"
4184 static-variables
)))))
4187 (defun ebrowse-print-statistics-line (title value
)
4188 "Print a line in the statistics buffer.
4189 TITLE is the title of the line, VALUE is a number to be printed
4193 (insert (format "%d\n" value
)))
4196 (defun ebrowse-gather-statistics ()
4197 "Return statistics for a class tree.
4198 The result is a list (NUMBER-OF-CLASSES NUMBER-OF-MEMBER-FUNCTIONS
4199 NUMBER-OF-INSTANCE-VARIABLES NUMBER-OF-STATIC-FUNCTIONS
4200 NUMBER-OF-STATIC-VARIABLES:"
4201 (let ((classes 0) (member-functions 0) (member-variables 0)
4202 (static-functions 0) (static-variables 0))
4203 (ebrowse-for-all-trees (tree ebrowse--tree-obarray
)
4205 (incf member-functions
(length (ebrowse-ts-member-functions tree
)))
4206 (incf member-variables
(length (ebrowse-ts-member-variables tree
)))
4207 (incf static-functions
(length (ebrowse-ts-static-functions tree
)))
4208 (incf static-variables
(length (ebrowse-ts-static-variables tree
))))
4209 (list classes member-functions member-variables
4210 static-functions static-variables
)))
4214 ;;; Global key bindings
4216 ;;; The following can be used to bind key sequences starting with
4217 ;;; prefix `\C-c\C-m' to browse commands.
4219 (defvar ebrowse-global-map nil
4220 "*Keymap for Ebrowse commands.")
4223 (defvar ebrowse-global-prefix-key
"\C-c\C-m"
4224 "Prefix key for Ebrowse commands.")
4227 (defvar ebrowse-global-submap-4 nil
4228 "Keymap used for `ebrowse-global-prefix' followed by `4'.")
4231 (defvar ebrowse-global-submap-5 nil
4232 "Keymap used for `ebrowse-global-prefix' followed by `5'.")
4235 (unless ebrowse-global-map
4236 (setq ebrowse-global-map
(make-sparse-keymap))
4237 (setq ebrowse-global-submap-4
(make-sparse-keymap))
4238 (setq ebrowse-global-submap-5
(make-sparse-keymap))
4239 (define-key ebrowse-global-map
"a" 'ebrowse-tags-apropos
)
4240 (define-key ebrowse-global-map
"b" 'ebrowse-pop-to-browser-buffer
)
4241 (define-key ebrowse-global-map
"-" 'ebrowse-back-in-position-stack
)
4242 (define-key ebrowse-global-map
"+" 'ebrowse-forward-in-position-stack
)
4243 (define-key ebrowse-global-map
"l" 'ebrowse-tags-list-members-in-file
)
4244 (define-key ebrowse-global-map
"m" 'ebrowse-tags-display-member-buffer
)
4245 (define-key ebrowse-global-map
"n" 'ebrowse-tags-next-file
)
4246 (define-key ebrowse-global-map
"p" 'ebrowse-electric-position-menu
)
4247 (define-key ebrowse-global-map
"s" 'ebrowse-tags-search
)
4248 (define-key ebrowse-global-map
"u" 'ebrowse-tags-search-member-use
)
4249 (define-key ebrowse-global-map
"v" 'ebrowse-tags-view-definition
)
4250 (define-key ebrowse-global-map
"V" 'ebrowse-tags-view-declaration
)
4251 (define-key ebrowse-global-map
"%" 'ebrowse-tags-query-replace
)
4252 (define-key ebrowse-global-map
"." 'ebrowse-tags-find-definition
)
4253 (define-key ebrowse-global-map
"f" 'ebrowse-tags-find-definition
)
4254 (define-key ebrowse-global-map
"F" 'ebrowse-tags-find-declaration
)
4255 (define-key ebrowse-global-map
"," 'ebrowse-tags-loop-continue
)
4256 (define-key ebrowse-global-map
" " 'ebrowse-electric-buffer-list
)
4257 (define-key ebrowse-global-map
"\t" 'ebrowse-tags-complete-symbol
)
4258 (define-key ebrowse-global-map
"4" ebrowse-global-submap-4
)
4259 (define-key ebrowse-global-submap-4
"." 'ebrowse-tags-find-definition-other-window
)
4260 (define-key ebrowse-global-submap-4
"f" 'ebrowse-tags-find-definition-other-window
)
4261 (define-key ebrowse-global-submap-4
"v" 'ebrowse-tags-find-declaration-other-window
)
4262 (define-key ebrowse-global-submap-4
"F" 'ebrowse-tags-view-definition-other-window
)
4263 (define-key ebrowse-global-submap-4
"V" 'ebrowse-tags-view-declaration-other-window
)
4264 (define-key ebrowse-global-map
"5" ebrowse-global-submap-5
)
4265 (define-key ebrowse-global-submap-5
"." 'ebrowse-tags-find-definition-other-frame
)
4266 (define-key ebrowse-global-submap-5
"f" 'ebrowse-tags-find-definition-other-frame
)
4267 (define-key ebrowse-global-submap-5
"v" 'ebrowse-tags-find-declaration-other-frame
)
4268 (define-key ebrowse-global-submap-5
"F" 'ebrowse-tags-view-definition-other-frame
)
4269 (define-key ebrowse-global-submap-5
"V" 'ebrowse-tags-view-declaration-other-frame
)
4270 (define-key global-map ebrowse-global-prefix-key ebrowse-global-map
))
4274 ;;; Electric C++ browser buffer menu
4276 ;;; Electric buffer menu customization to display only some buffers
4277 ;;; (in this case Tree buffers). There is only one problem with this:
4278 ;;; If the very first character typed in the buffer menu is a space,
4279 ;;; this will select the buffer from which the buffer menu was
4280 ;;; invoked. But this buffer is not displayed in the buffer list if
4281 ;;; it isn't a tree buffer. I therefore let the buffer menu command
4282 ;;; loop read the command `p' via `unread-command-char'. This command
4283 ;;; has no effect since we are on the first line of the buffer.
4285 (defvar electric-buffer-menu-mode-hook nil
)
4288 (defun ebrowse-hack-electric-buffer-menu ()
4289 "Hack the electric buffer menu to display browser buffers."
4293 (setq buffer-read-only nil
)
4297 (let ((b (Buffer-menu-buffer nil
)))
4298 (if (or (ebrowse-buffer-p b
)
4299 (string= (buffer-name b
) "*Apropos Members*"))
4300 (progn (forward-line 1)
4302 (delete-region (point)
4303 (save-excursion (end-of-line)
4307 (error "No tree buffers"))
4308 (setf unread-command-events
(listify-key-sequence "p"))
4309 (shrink-window-if-larger-than-buffer (selected-window))
4310 (setq buffer-read-only t
))))
4313 (defun ebrowse-select-1st-to-9nth ()
4314 "Select the nth entry in the list by the keys 1..9."
4316 (let* ((maxlin (count-lines (point-min) (point-max)))
4317 (n (min maxlin
(+ 2 (string-to-number (this-command-keys))))))
4319 (throw 'electric-buffer-menu-select
(point))))
4322 (defun ebrowse-install-1-to-9-keys ()
4323 "Define keys 1..9 to select the 1st to 9nth entry in the list."
4325 (define-key (current-local-map) (char-to-string (+ i ?
1))
4326 'ebrowse-select-1st-to-9nth
)))
4329 (defun ebrowse-electric-buffer-list ()
4330 "Display an electric list of Ebrowse buffers."
4334 (add-hook 'electric-buffer-menu-mode-hook
4335 'ebrowse-hack-electric-buffer-menu
)
4336 (add-hook 'electric-buffer-menu-mode-hook
4337 'ebrowse-install-1-to-9-keys
)
4338 (call-interactively 'electric-buffer-list
))
4339 (remove-hook 'electric-buffer-menu-mode-hook
4340 'ebrowse-hack-electric-buffer-menu
)))
4345 (defun ebrowse-mouse-find-member (event)
4346 "Find the member clicked on in another frame.
4347 EVENT is a mouse button event."
4349 (mouse-set-point event
)
4352 (skip-chars-backward "a-zA-Z0-9_")
4353 (setq start
(point))
4354 (skip-chars-forward "a-zA-Z0-9_")
4355 (setq name
(buffer-substring start
(point))))
4356 (ebrowse-tags-view/find-member-decl
/defn
4357 5 :view nil
:definition t
:member-name name
)))
4360 (defun ebrowse-popup-menu (menu event
)
4361 "Pop up MENU and perform an action if something was selected.
4362 EVENT is the mouse event."
4363 (save-selected-window
4364 (select-window (posn-window (event-start event
)))
4365 (let ((selection (x-popup-menu event menu
)) binding
)
4367 (setq binding
(lookup-key (or binding menu
) (vector (car selection
)))
4368 selection
(cdr selection
)))
4370 (call-interactively binding
)))))
4374 ebrowse-tree-buffer-class-object-menu ebrowse-tree-mode-map
4375 "Object menu for classes in the tree buffer"
4377 ["Functions" ebrowse-tree-command
:show-member-functions
4378 :help
"Display a list of member functions"
4380 ["Variables" ebrowse-tree-command
:show-member-variables
4381 :help
"Display a list of member variables"
4383 ["Static Functions" ebrowse-tree-command
:show-static-member-functions
4384 :help
"Display a list of static member functions"
4386 ["Static Variables" ebrowse-tree-command
:show-static-member-variables
4387 :help
"Display a list of static member variables"
4389 ["Friends/ Defines" ebrowse-tree-command
:show-friends
4390 :help
"Display a list of friends of a class"
4392 ["Types" ebrowse-tree-command
:show-types
4393 :help
"Display a list of types defined in a class"
4396 ["View" ebrowse-view-class-declaration
4397 :help
"View class declaration"
4398 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]
4399 ["Find" ebrowse-find-class-declaration
4400 :help
"Find class declaration in file"
4401 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]
4403 ["Mark" ebrowse-toggle-mark-at-point
4404 :help
"Mark class point is on"
4405 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]
4407 ["Collapse" ebrowse-collapse-branch
4408 :help
"Collapse subtree under class point is on"
4409 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]
4410 ["Expand" ebrowse-expand-branch
4411 :help
"Expand subtree under class point is on"
4412 :active
(eq (get-text-property (point) 'ebrowse-what
) 'class-name
)]))
4416 ebrowse-tree-buffer-object-menu ebrowse-tree-mode-map
4417 "Object menu for tree buffers"
4419 ["Filename Display" ebrowse-toggle-file-name-display
4420 :help
"Toggle display of source files names"
4422 :selected ebrowse--show-file-names-flag
4424 ["Tree Indentation" ebrowse-set-tree-indentation
4425 :help
"Set the tree's indentation"
4427 ["Unmark All Classes" ebrowse-mark-all-classes
4428 :help
"Unmark all classes in the class tree"
4430 ["Expand All" ebrowse-expand-all
4431 :help
"Expand all subtrees in the class tree"
4433 ["Statistics" ebrowse-statistics
4434 :help
"Show a buffer with class hierarchy statistics"
4436 ["Find Class" ebrowse-read-class-name-and-go
4437 :help
"Find a class in the tree"
4439 ["Member Buffer" ebrowse-pop
/switch-to-member-buffer-for-same-tree
4440 :help
"Show a member buffer for this class tree"
4444 (defun ebrowse-mouse-3-in-tree-buffer (event)
4445 "Perform mouse actions in tree buffers.
4446 EVENT is the mouse event."
4448 (mouse-set-point event
)
4449 (let* ((where (posn-point (event-start event
)))
4450 (property (get-text-property where
'ebrowse-what
)))
4451 (case (event-click-count event
)
4455 (ebrowse-popup-menu ebrowse-tree-buffer-class-object-menu event
))
4457 (ebrowse-popup-menu ebrowse-tree-buffer-object-menu event
)))))))
4460 (defun ebrowse-mouse-2-in-tree-buffer (event)
4461 "Perform mouse actions in tree buffers.
4462 EVENT is the mouse event."
4464 (mouse-set-point event
)
4465 (let* ((where (posn-point (event-start event
)))
4466 (property (get-text-property where
'ebrowse-what
)))
4467 (case (event-click-count event
)
4470 (ebrowse-tree-command:show-member-functions
)))))))
4473 (defun ebrowse-mouse-1-in-tree-buffer (event)
4474 "Perform mouse actions in tree buffers.
4475 EVENT is the mouse event."
4477 (mouse-set-point event
)
4478 (let* ((where (posn-point (event-start event
)))
4479 (property (get-text-property where
'ebrowse-what
)))
4480 (case (event-click-count event
)
4483 (let ((collapsed (save-excursion (skip-chars-forward "^\r\n")
4484 (looking-at "\r"))))
4485 (ebrowse-collapse-fn (not collapsed
))))
4487 (ebrowse-toggle-mark-at-point 1)))))))
4493 ;;; Local variables:
4494 ;;; eval:(put 'ebrowse-output 'lisp-indent-hook 0)
4495 ;;; eval:(put 'ebrowse-ignoring-completion-case 'lisp-indent-hook 0)
4496 ;;; eval:(put 'ebrowse-save-selective 'lisp-indent-hook 0)
4497 ;;; eval:(put 'ebrowse-for-all-trees 'lisp-indent-hook 1)
4500 ;;; arch-tag: 4fa3c8bf-1771-479b-bcd7-b029c7c9677b
4501 ;;; ebrowse.el ends here