public
Description: Paul Graham's Brand New Lisp
Homepage: http://arclanguage.org
Clone URL: git://github.com/nex3/arc.git
arc / code.arc
100644 62 lines (48 sloc) 1.614 kb
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
; Code analysis. Spun off 21 Dec 07.
 
; Ought to do more of this in Arc. One of the biggest advantages
; of Lisp is messing with code.
 
(def codelines (file)
  (w/infile in file
    (summing test
      (whilet line (readline in)
        (test (aand (find nonwhite line) (isnt it #\;)))))))
 
(def codeflat (file)
  (len (flat (readall (infile file)))))
 
(def codetree (file)
  (treewise + (fn (x) 1) (readall (infile file))))
 
(def code-density (file)
  (/ (codetree file) (codelines file)))
 
(def tokcount (files)
  (let counts (table)
    (each f files
      (each token (flat (readall (infile f)))
        (++ (counts token 0))))
    counts))
 
(def common-tokens (files)
  (let counts (tokcount files)
    (let ranking nil
      (maptable (fn (k v)
                  (unless (nonop k)
                    (insort (compare > cadr) (list k v) ranking)))
                counts)
      ranking)))
 
(def nonop (x)
  (in x 'quote 'unquote 'quasiquote 'unquote-splicing))
 
(def common-operators (files)
  (keep [and (isa (car _) 'sym) (bound (car _))] (common-tokens files)))
 
(def top40 (xs)
  (map prn (firstn 40 xs))
  t)
 
(def space-eaters (files)
  (let counts (tokcount files)
    (let ranking nil
      (maptable (fn (k v)
                  (when (and (isa k 'sym) (bound k))
                    (insort (compare > [* (len (string (car _)))
                                          (cadr _)])
                            (list k v (* (len (string k)) v))
                            ranking)))
                counts)
    ranking)))
 
;(top40 (space-eaters allfiles*))
 
(mac flatlen args `(len (flat ',args)))