doc/list-exports.lisp: Insert correct Emacs dropping.
[sod] / doc / list-exports.lisp
1 #! /bin/sh
2 ":"; ### -*-lisp-*-
3 ":"; CL_SOURCE_REGISTRY=$(pwd)/build/src/:; export CL_SOURCE_REGISTRY
4 ":"; exec cl-launch -X -l "sbcl cmucl" -s asdf -i "(sod-exports::main)" -- "$0" "$@" || exit 1
5
6 (cl:defpackage #:sod-exports
7 (:use #:common-lisp
8 #+cmu #:mop
9 #+sbcl #:sb-mop))
10
11 (cl:in-package #:sod-exports)
12 (eval-when (:compile-toplevel :load-toplevel :execute)
13 (mapc #'asdf:load-system '(:sod :sod-frontend)))
14
15 (defun symbolicate (&rest things)
16 (intern (apply #'concatenate 'string (mapcar #'string things))))
17
18 (defun incomprehensible-form (head tail)
19 (format *error-output* ";; incomprehensible: ~S~%" (cons head tail)))
20
21 (defgeneric form-list-exports (head tail)
22 (:method (head tail)
23 (declare (ignore head tail))
24 nil))
25
26 (defmethod form-list-exports ((head (eql 'cl:export)) tail)
27 (let ((symbols (car tail)))
28 (if (and (consp symbols)
29 (eq (car symbols) 'quote))
30 (let ((thing (cadr symbols)))
31 (if (atom thing) (list thing) thing))
32 (incomprehensible-form head tail))))
33
34 (defmethod form-list-exports ((head (eql 'sod:definst)) tail)
35 (destructuring-bind (code (streamvar &key export) args &body body) tail
36 (declare (ignore streamvar body))
37 (and export
38 (list* (symbolicate code '-inst)
39 (symbolicate 'make- code '-inst)
40 (mapcan (lambda (arg)
41 (let ((sym (if (listp arg) (car arg) arg)))
42 (cond ((char= (char (symbol-name sym) 0) #\&)
43 nil)
44 (t
45 (list (symbolicate 'inst- sym))))))
46 args)))))
47
48 (defmethod form-list-exports ((head (eql 'sod::define-tagged-type)) tail)
49 (destructuring-bind (kind what) tail
50 (declare (ignore what))
51 (list kind
52 (symbolicate 'c- kind '-type)
53 (symbolicate 'make- kind '-type))))
54
55 (defmethod form-list-exports ((head (eql 'sod:defctype)) tail)
56 (destructuring-bind (names value &key export) tail
57 (declare (ignore value))
58 (let ((names (if (listp names) names (list names))))
59 (and export
60 (list* (symbolicate 'c-type- (car names)) names)))))
61
62 (defmethod form-list-exports ((head (eql 'sod:define-simple-c-type)) tail)
63 (destructuring-bind (names type &key export) tail
64 (declare (ignore type))
65 (let ((names (if (listp names) names (list names))))
66 (and export
67 (list* (symbolicate 'c-type- (car names)) names)))))
68
69 (defmethod form-list-exports ((head (eql 'cl:macrolet)) tail)
70 (mapcan #'form-exports (cdr tail)))
71
72 (defmethod form-list-exports ((head (eql 'cl:eval-when)) tail)
73 (mapcan #'form-exports (cdr tail)))
74
75 (defmethod form-list-exports ((head (eql 'cl:progn)) tail)
76 (mapcan #'form-exports tail))
77
78 (defgeneric form-exports (form)
79 (:method (form) nil)
80 (:method ((form cons)) (form-list-exports (car form) (cdr form))))
81
82 (defgeneric list-exports (thing))
83
84 (defmethod list-exports ((stream stream))
85 (loop with eof = '#:eof
86 for form = (read stream nil eof)
87 until (eq form eof)
88 when (consp form) nconc (form-exports form)))
89
90 (defmethod list-exports ((path pathname))
91 (mapcar (lambda (each)
92 (cons each (with-open-file (stream each) (list-exports stream))))
93 (directory (merge-pathnames path #p"*.lisp"))))
94
95 (defmethod list-exports ((path string))
96 (list-exports (pathname path)))
97
98 (defun list-exported-symbols (package)
99 (sort (loop for s being the external-symbols of package collect s)
100 #'string< :key #'symbol-name))
101
102 (defun find-symbol-homes (paths package)
103 (let* ((symbols (list-exported-symbols package))
104 (exports-alist (let ((*package* package))
105 (mapcan #'list-exports paths)))
106 (homes (make-hash-table :test #'equal)))
107 (dolist (assoc exports-alist)
108 (let ((home (car assoc)))
109 (dolist (symbol (cdr assoc))
110 (let ((name (symbol-name symbol)))
111 (unless (nth-value 1 (find-symbol name package))
112 (format *error-output* ";; unexported: ~S~%" symbol))
113 (setf (gethash name homes) home)))))
114 (dolist (symbol symbols)
115 (unless (gethash (symbol-name symbol) homes)
116 (format *error-output* ";; mysterious: ~S~%" symbol)))
117 exports-alist))
118
119 (defun boring-setf-expansion-p (symbol)
120 (multiple-value-bind (temps args stores store fetch)
121 (ignore-errors (get-setf-expansion (list symbol)))
122 (declare (ignore temps args stores fetch))
123 (and (consp store)
124 (eq (car store) 'funcall)
125 (consp (cdr store)) (consp (cadr store))
126 (eq (caadr store) 'function)
127 (let ((func (cadadr store)))
128 (and (consp func) (consp (cdr func))
129 (eq (car func) 'setf))))))
130
131 (defun specialized-on-p (func arg what)
132 (some (lambda (method)
133 (let ((spec (nth arg (method-specializers method))))
134 (and (typep spec 'eql-specializer)
135 (eql (eql-specializer-object spec) what))))
136 (generic-function-methods func)))
137
138 (defun categorize (symbol)
139 (let ((things nil))
140 (when (boundp symbol)
141 (push (if (constantp symbol) :constant :variable) things))
142 (when (fboundp symbol)
143 (push (cond ((macro-function symbol) :macro)
144 ((typep (fdefinition symbol) 'generic-function)
145 :generic)
146 (t :function))
147 things)
148 (when (or ;;(not (boring-setf-expansion-p symbol))
149 (ignore-errors (fdefinition (list 'setf symbol))))
150 (push :setf things)))
151 (when (find-class symbol nil)
152 (push :class things))
153 (when (or (specialized-on-p #'sod:expand-c-type-spec 0 symbol)
154 (specialized-on-p #'sod:expand-c-type-form 0 symbol))
155 (push :c-type things))
156 (when (or (specialized-on-p #'sod-parser:expand-parser-spec 1 symbol)
157 (specialized-on-p #'sod-parser:expand-parser-form 1 symbol))
158 (push :parser things))
159 (when (get symbol 'optparse::opthandler)
160 (push :opthandler things))
161 (when (get symbol 'optparse::optmacro)
162 (push :optmacro things))
163 (nreverse things)))
164
165 (defun categorize-symbols (paths package)
166 (mapcar (lambda (assoc)
167 (let ((home (car assoc))
168 (symbols (delete-duplicates
169 (sort (mapcan (lambda (sym)
170 (multiple-value-bind
171 (symbol foundp)
172 (find-symbol
173 (symbol-name sym)
174 package)
175 (and foundp (list symbol))))
176 (cdr assoc))
177 #'string< :key #'symbol-name))))
178 (cons home (mapcar (lambda (symbol)
179 (cons symbol (categorize symbol)))
180 symbols))))
181
182 (find-symbol-homes paths package)))
183
184 (defun best-package-name (package)
185 (car (sort (cons (package-name package)
186 (copy-list (package-nicknames package)))
187 #'< :key #'length)))
188
189 (defvar charbuf-size 0)
190
191 (defun exported-symbol-p (symbol &optional (package (symbol-package symbol)))
192 (and package
193 (multiple-value-bind (sym how)
194 (find-symbol (symbol-name symbol) package)
195 (and (eq sym symbol)
196 (eq how :external)))))
197
198 (defun pretty-symbol-name (symbol package)
199 (let ((pkg (symbol-package symbol))
200 (exportp (exported-symbol-p symbol)))
201 (format nil "~(~:[~A:~:[:~;~]~;~2*~]~A~)"
202 (and exportp (eq pkg package))
203 (cond ((keywordp symbol) "")
204 ((eq pkg nil) "#")
205 (t (best-package-name pkg)))
206 (or exportp (null pkg)) (symbol-name symbol))))
207
208 (defun analyse-classes (package)
209 (setf package (find-package package))
210 (let ((classes (mapcan (lambda (symbol)
211 (let ((class (find-class symbol nil)))
212 (and class
213 (typep class '(or standard-class
214 structure-class))
215 (list class))))
216 (list-exported-symbols package)))
217 (subs (make-hash-table)))
218 (let ((done (make-hash-table)))
219 (labels ((walk-up (class)
220 (unless (gethash class done)
221 (dolist (super (class-direct-superclasses class))
222 (push class (gethash super subs))
223 (walk-up super))
224 (setf (gethash class done) t))))
225 (dolist (class classes)
226 (walk-up class))))
227 (labels ((walk-down (this super depth)
228 (format t "~v,0T~A~@[ [~{~A~^ ~}]~]~%"
229 (* 2 depth)
230 (pretty-symbol-name (class-name this) package)
231 (mapcar (lambda (class)
232 (pretty-symbol-name (class-name class)
233 package))
234 (remove super
235 (class-direct-superclasses this))))
236 (dolist (sub (sort (copy-list (gethash this subs))
237 #'string< :key #'class-name))
238 (walk-down sub this (1+ depth)))))
239 (walk-down (find-class t) nil 0))))
240
241 (defmacro deep-compare ((left right) &body body)
242 (let ((block (gensym "BLOCK-")) (func (gensym "FUNC-"))
243 (l (gensym "LEFT-")) (r (gensym "RIGHT-")))
244 `(macrolet ((focus (expr &body body)
245 `(flet ((,',func (it) ,expr))
246 (let ((,',l (,',func ,',l))
247 (,',r (,',func ,',r)))
248 ,@body)))
249 (update (expr)
250 `(flet ((,',func (it) ,expr))
251 (psetf ,',l (,',func ,',l)
252 ,',r (,',func ,',r))))
253 (compare (expr)
254 `(cond ((let ((left ,',l) (right ,',r)) ,expr)
255 (return-from ,',block t))
256 ((let ((right ,',l) (left ,',r)) ,expr)
257 (return-from ,',block nil))))
258 (typesw (&rest clauses)
259 (labels ((iter (clauses)
260 (if (null clauses)
261 'nil
262 (destructuring-bind (type &rest body)
263 (car clauses)
264 (if (eq type t)
265 `(progn ,@body)
266 `(if (typep ,',l ',type)
267 (if (typep ,',r ',type)
268 (progn ,@body)
269 (return-from ,',block t))
270 (if (typep ,',r ',type)
271 (return-from ,',block nil)
272 ,(iter (cdr clauses)))))))))
273 (iter clauses))))
274 (let ((,l ,left) (,r ,right))
275 (block ,block
276 ,@body)))))
277
278 (defun order-specializers (la lb)
279 (deep-compare (la lb)
280 (loop (typesw (null (return nil)))
281 (focus (car it)
282 (typesw (eql-specializer
283 (focus (eql-specializer-object it)
284 (typesw (keyword
285 (compare (string< left right)))
286 (symbol
287 (focus (package-name (symbol-package it))
288 (compare (string< left right)))
289 (compare (string< left right)))
290 (t
291 (focus (with-output-to-string (out)
292 (prin1 it out)
293 (write-char #\nul))
294 (compare (string< left right)))))))
295 (class
296 (focus (class-name it)
297 (focus (package-name (symbol-package it))
298 (compare (string< left right)))
299 (compare (string< left right))))
300 (t
301 (error "unexpected things"))))
302 (update (cdr it)))))
303
304 (defun analyse-generic-functions (package)
305 (setf package (find-package package))
306 (flet ((function-name-core (name)
307 (typecase name
308 (symbol (values name t))
309 ((cons (eql setf) t) (values (cadr name) t))
310 (t (values nil nil)))))
311 (let ((methods (make-hash-table))
312 (functions (make-hash-table))
313 (externs (make-hash-table)))
314 (dolist (symbol (list-exported-symbols package))
315 (setf (gethash symbol externs) t))
316 (dolist (symbol (list-exported-symbols package))
317 (flet ((dofunc (func)
318 (when (typep func 'generic-function)
319 (setf (gethash func functions) t)
320 (dolist (method (generic-function-methods func))
321 (setf (gethash method methods) t)))))
322 (dofunc (and (fboundp symbol) (fdefinition symbol)))
323 (dofunc (ignore-errors (fdefinition (list 'setf symbol)))))
324 (when (eq (symbol-package symbol) package)
325 (let ((class (find-class symbol nil)))
326 (when class
327 (dolist
328 (func (specializer-direct-generic-functions class))
329 (multiple-value-bind (name knownp)
330 (function-name-core (generic-function-name func))
331 (when (and knownp
332 (or (not (eq (symbol-package name) package))
333 (gethash name externs)))
334 (setf (gethash func functions) t)
335 (dolist (method (specializer-direct-methods class))
336 (setf (gethash method methods) t)))))))))
337 (let ((funclist nil))
338 (maphash (lambda (func value)
339 (declare (ignore value))
340 (push func funclist))
341 functions)
342 (setf funclist (sort funclist
343 (lambda (a b)
344 (let ((core-a (function-name-core a))
345 (core-b (function-name-core b)))
346 (if (eq core-a core-b)
347 (and (atom a) (consp b))
348 (string< core-a core-b))))
349 :key #'generic-function-name))
350 (dolist (function funclist)
351 (let ((name (generic-function-name function)))
352 (etypecase name
353 (symbol
354 (format t "~A~%" (pretty-symbol-name name package)))
355 ((cons (eql setf) t)
356 (format t "(setf ~A)~%"
357 (pretty-symbol-name (cadr name) package)))))
358 (dolist (method (sort (copy-list
359 (generic-function-methods function))
360 #'order-specializers
361 :key #'method-specializers))
362 (when (gethash method methods)
363 (format t "~2T~{~A~^ ~}~%"
364 (mapcar
365 (lambda (spec)
366 (etypecase spec
367 (class
368 (let ((name (class-name spec)))
369 (if (eq name t) "t"
370 (pretty-symbol-name name package))))
371 (eql-specializer
372 (let ((obj (eql-specializer-object spec)))
373 (format nil "(eql ~A)"
374 (if (symbolp obj)
375 (pretty-symbol-name obj package)
376 obj))))))
377 (method-specializers method))))))))))
378
379 (defun check-slot-names (package)
380 (setf package (find-package package))
381 (let* ((symbols (list-exported-symbols package))
382 (classes (mapcan (lambda (symbol)
383 (when (eq (symbol-package symbol) package)
384 (let ((class (find-class symbol nil)))
385 (and class (list class)))))
386 symbols))
387 (offenders (mapcan
388 (lambda (class)
389 (let* ((slot-names
390 (mapcar #'slot-definition-name
391 (class-direct-slots class)))
392 (exported (remove-if
393 (lambda (sym)
394 (or (not (symbol-package sym))
395 (and (not (exported-symbol-p
396 sym))
397 (eq (symbol-package sym)
398 package))))
399 slot-names)))
400 (and exported
401 (list (cons (class-name class)
402 exported)))))
403 classes))
404 (bad-words (remove-duplicates (mapcan (lambda (list)
405 (copy-list (cdr list)))
406 offenders))))
407 (values offenders bad-words)))
408
409 (defun report-symbols (paths package)
410 (setf package (find-package package))
411 (format t "~A~%Package `~(~A~)'~2%"
412 (make-string 77 :initial-element #\-)
413 (package-name package))
414 (dolist (assoc (sort (categorize-symbols paths package) #'string<
415 :key (lambda (assoc)
416 (file-namestring (car assoc)))))
417 (when (cdr assoc)
418 (format t "~A~%" (file-namestring (car assoc)))
419 (dolist (def (cdr assoc))
420 (let ((sym (car def)))
421 (format t " ~A~@[~48T~{~(~A~)~^ ~}~]~%"
422 (pretty-symbol-name sym package)
423 (cdr def))))
424 (terpri)))
425 (multiple-value-bind (alist names) (check-slot-names package)
426 (when names
427 (format t "Leaked slot names: ~{~A~^, ~}~%"
428 (mapcar (lambda (name) (pretty-symbol-name name package))
429 names))
430 (dolist (assoc alist)
431 (format t "~2T~A: ~{~A~^, ~}~%"
432 (pretty-symbol-name (car assoc) package)
433 (mapcar (lambda (name) (pretty-symbol-name name package))
434 (cdr assoc))))
435 (terpri)))
436 (format t "Classes:~%")
437 (analyse-classes package)
438 (terpri)
439 (format t "Methods:~%")
440 (analyse-generic-functions package)
441 (terpri))
442
443 (export 'report-project-symbols)
444 (defun report-project-symbols ()
445 (labels ((components (comp)
446 (asdf:component-children comp))
447 (files (comp)
448 (sort (remove-if-not (lambda (comp)
449 (typep comp 'asdf:cl-source-file))
450 (components comp))
451 #'string< :key #'asdf:component-name))
452 (by-name (comp name)
453 (gethash name (asdf:component-children-by-name comp)))
454 (file-name (file)
455 (slot-value file 'asdf/component:absolute-pathname)))
456 (let* ((sod (asdf:find-system "sod"))
457 (parser-files (files (by-name sod "parser")))
458 (utilities (by-name sod "utilities"))
459 (sod-frontend (asdf:find-system "sod-frontend"))
460 (optparse (by-name sod-frontend "optparse"))
461 (frontend (by-name sod-frontend "frontend"))
462 (sod-files (set-difference (files sod) (list utilities))))
463 (report-symbols (mapcar #'file-name sod-files) "SOD")
464 (report-symbols (mapcar #'file-name (list frontend)) "SOD-FRONTEND")
465 (report-symbols (mapcar #'file-name parser-files) "SOD-PARSER")
466 (report-symbols (mapcar #'file-name (list optparse)) "OPTPARSE")
467 (report-symbols (mapcar #'file-name (list utilities)) "SOD-UTILITIES"))))
468
469 (defun main ()
470 (with-open-file (*standard-output* #p"doc/SYMBOLS"
471 :direction :output
472 :if-exists :supersede
473 :if-does-not-exist :create)
474 (report-project-symbols)))
475
476 #+interactive (main)