File: cflow.el

package info (click to toggle)
cxref 1.4-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,392 kB
  • ctags: 1,519
  • sloc: ansic: 16,776; sh: 2,233; yacc: 1,906; lex: 377; lisp: 256; makefile: 249; perl: 70
file content (200 lines) | stat: -rw-r--r-- 5,821 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
;;; CFLOW.EL --- C flow graph 

;; Copyright (C) 1997 Paul Barham

;; Author: Paul Barham Paul.Barham@cl.cam.ac.uk
;; Maintainer: Paul Barham Paul.Barham@cl.cam.ac.uk
;; Created: 19 Mar 1997
;; Version: 1.0
;; Keywords: C language cxref flow static call graph browser

 
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 1, or (at your option)
;; any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; A copy of the GNU General Public License can be obtained from this
;; program's author (send electronic mail to Paul.Barham@cl.cam.ac.uk)
;; or from the Free Software Foundation, Inc., 675 Mass Ave,
;; Cambridge, MA 02139, USA.

;; LCD Archive Entry:
;; cflow|Paul Barham|Paul.Barham@cl.cam.ac.uk
;; |C flow graph 
;; |$Date$|$Revision$|~/packages/cflow.el

;;; Commentary:

;; This package is intended to be used in conjunction with cxref
;; packeage (http://www.gedanken.demon.co.uk/cxref/index.html)

;; It parses the cxref.function file generated by cxref and fires up 
;; a sort of folding mode which allows the hierarchical flow graph
;; to be recursively expanded.  
;;
;; Simply find the file cxref.function in a buffer and type M-x cflow
;;
;; Then you can use:
;;
;; SPC or RETURN   Expand the current line
;; x               Close up the flow graph under the current node
;; .               Find the function on the current line in another window
;; q               Quit
;;

;;; Change log:
;; $Log$

;;; Variables:

(defvar cflow-filenames t 
  "Show filenames where each function is declared")

(defvar cflow-main "main" 
  "The name of the function at the root of the flowgraph")

(defvar cflow-indent "|   " 
  "The indentation string added per-level of the flowgraph")

;;; Code:

;;;
;;; This reads in the output of cxref 
;;;
(defun cxref-readline ()
  (interactive)
  (let (file fn scope refs 
	(eol (progn (end-of-line) (point))))
    (beginning-of-line)
    (re-search-forward "\\([^ \t]+\\)[ \t]*" eol t) 
    (setq file (buffer-substring-no-properties 
		(match-beginning 1) (match-end 1)))
    (re-search-forward "\\([^ \t]+\\)[ \t]*" eol t) 
    (setq fn   (buffer-substring-no-properties 
		(match-beginning 1) (match-end 1)))
    (re-search-forward "\\([0-9]+\\)[ \t]*" eol t) 
    (setq scope (car (read-from-string
		      (buffer-substring-no-properties 
		       (match-beginning 1) (match-end 1)))))
    (setq refs nil)
    (while (re-search-forward "\\([^ \t]+\\)[ \t]*" eol t) 
      (setq refs (cons (buffer-substring-no-properties 
			(match-beginning 1) (match-end 1)) refs)))
    (list fn file scope (nreverse refs))
  ))

(defun cxref-parse ()
  (interactive)
  (let (fns)
    (save-excursion 
      (beginning-of-buffer)
      (while (< (point) (point-max))
	(setq fns (cons (cxref-readline) fns))
	(forward-line 1))
      )
    fns)
)

(defun cflow-insert (indent fname)
  (string-match "[&%]*\\(.*\\)" fname)
  (let* ((basename (substring fname (match-beginning 1)))
	 (fun (assoc basename cflow-fns)))
    (if fun 
	(insert (concat indent 
			fname
			(if cflow-filenames
			    (concat " (" (nth 1 fun) ")")
			  "")
			"\n"))
      (insert (concat indent fname "\n")))
    ))
  
(defun cflow-expand ()
  "Expand this node in the flow graph"
  (interactive)
  (let (name indent fun)
    (save-excursion
      (beginning-of-line)
      (re-search-forward "\\(^[| ]*\\)[&%]*\\([*a-zA-Z0-9_$]+\\)")
      (setq indent (concat (buffer-substring-no-properties 
			     (match-beginning 1)
			     (match-end 1)) cflow-indent))
      (setq name (buffer-substring-no-properties 
		 (match-beginning 2)
		 (match-end 2)))
      (setq fun (assoc name cflow-fns))
      (forward-line 1)
      (beginning-of-line)
      (or (looking-at indent)
	  (mapcar (lambda (fname) 
		    (cflow-insert indent fname))
		  (nth 3 fun)))

      ))
)
(defun cflow-contract ()
  "Close up this section of the flow graph"
  (interactive)
  (let (name indent fun)
    (save-excursion
      (beginning-of-line)
      (re-search-forward "\\(^[| ]*\\)")
      (setq indent (concat (buffer-substring-no-properties 
			     (match-beginning 1)
			     (match-end 1)) cflow-indent))
      (forward-line 1)
      (beginning-of-line)
      (while (looking-at indent)
	(kill-line 1))
      ))
)  

(defun cflow-tag ()
  "Find the function on the current line using TAGS"
  (interactive)
  (let (name indent fun)
    (save-excursion
      (beginning-of-line)
      (re-search-forward "\\(^[| ]*\\)[&%]*\\([*a-zA-Z0-9_$]+\\)")
      (setq indent (concat (buffer-substring-no-properties 
			     (match-beginning 1)
			     (match-end 1)) cflow-indent))
      (setq name (buffer-substring-no-properties 
		 (match-beginning 2)
		 (match-end 2)))
      (message "Finding %s" name)
      (find-tag-other-window name)))
)

(define-derived-mode cflow-mode fundamental-mode "CFlow"
  (setq cflow-mode t)
  ;; Linemenu simply highlights the current line
  ;  (linemenu-initialize) 
)

(define-key cflow-mode-map " " 'cflow-expand)    
(define-key cflow-mode-map "" 'cflow-expand)  
(define-key cflow-mode-map "x" 'cflow-contract)    
(define-key cflow-mode-map "." 'cflow-tag)    
(define-key cflow-mode-map "q" 'bury-buffer)    

(defun cflow ()
  (interactive)
  (let ((buf (get-buffer-create "*cflow*")))
    (setq cflow-fns (cxref-parse))
    (switch-to-buffer buf)
    (cflow-mode)
    (erase-buffer)
    ;; Don't understand this :-)
    ; (make-local-variable 'cflow-fns)
    (cflow-insert "" "$")
    (cflow-insert "" cflow-main))
)

;;; CFLOW.EL ends here