我正在寻找可以为我生成lisp程序中每个函数的代码行的统计信息的程序。在Lisp中,这意味着每个函数或宏可以计算顶级函数中递归包含的函数数量。
任何指针都会非常感激。
答案 0 :(得分:6)
为每个函数或宏计算在顶级函数中递归包含的函数数量
我不确定这意味着什么。
如果您想计算代码中的函数调用次数,则需要一个完整的code walker。
但是,对于文件中顶级表单数量的简单含义,问题非常容易处理。 我不知道有一个现有的程序可以做到这一点,但听起来并不难:
(defun read-file-as-string (file-name)
(with-open-file (in file-name :external-format charset:iso-8859-1)
(let ((ret (make-string (1- (file-length in)))))
(read-sequence ret in)
ret)))
:external-format
可能没有必要。
参见
(defun count-lines (string)
(count #\Newline string))
请参阅count
。
(defun count-forms (string)
(with-input-from-string (in string)
(loop with *read-suppress* = t
until (eq in (read in nil in))
count t)))
见
with-input-from-string
*read-suppress*
这是
read
工作所必需的
在包含此图像中当前不存在的包的文件上。
(defun file-code-stats (file-name)
(let* ((file-text (read-file-as-string file-name))
(lines (count-lines file-text))
(forms (count-forms file-text)))
(format t "File ~S contains ~:D characters, ~:D lines, ~:D forms (~,2F lines per form)"
file-name (length file-text) lines forms (/ lines forms))
(values (length file-text) lines forms)))
(file-code-stats "~/lisp/scratch.lisp")
File "~/lisp/scratch.lisp" contains 133,221 characters, 3,728 lines, 654 forms (5.70 lines per form)
133221 ;
3728 ;
654