summaryrefslogtreecommitdiffstats
path: root/tags.tl
blob: 48c1c7d1b3b0384f21100be9ddf1f316e8582d27 (plain)
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
#!/usr/bin/env txr

(define-option-struct tags-opts nil
  (nil help    :bool "List this help text.")
  (a   append  :bool "Append to existing tags file, without sorting.")
  (m   merge   :bool "Merge with existing tags file, sorting combined content.")
  (nil exclude (cumul :text) "Skip paths matching glob pattern given \ \
                              in TEXT. Multiple patterns can be specified."))

(defstruct tag ()
  ident
  path
  pattern
  (type "?")

  (:postinit (me)
    (upd me.ident tostringp))

  (:method text (me)
    `@{me.ident}\t@{me.path}\t/^@{me.pattern}$/;"\t@{me.type}`))

(defun escape (str)
  (mappend (do caseql @1
             ((#\^ #\$ #\/) (list #\\ @1))
             (t (list @1)))
           str))

(defstruct file-tag tag
  (:postinit (me)
    (set me.ident (base-name me.path)))
  (:method text (me)
    `@{me.ident}\t@{me.path}\t;"\tF`))

(defstruct fun-tag tag
  (type "f"))

(defstruct var-tag tag
  (type "v"))

(defstruct struct-tag tag
  (type "s"))

(defstruct type-tag tag
  (type "t"))

(defstruct slot-tag tag
  (type "m")
  parent
  expattern
  (:method text (me)
    `@{me.ident}\t@{me.path}\t/^@{me.pattern}$/ \
     @(if me.expattern `;/@(escape me.ident)/`);"\t \
     @{me.type}\tstruct:@{me.parent}`))

(defstruct orig-tag tag
  line
  (:method text (me) me.line))

(defvarl err-ret (gensym))

(defun get-pat (lines form)
  (tree-case (source-loc form)
    ((line . file) (escape [lines line]))))

(defun collect-tags (path)
  (let* ((text (file-get-string path))
         (text (if (starts-with "#!" text) `;@text` text))
         (lines (cons "" (spl #\newline text)))
         (stream (make-string-byte-input-stream text))
         (*rec-source-loc* t))
    (build
      (add (new file-tag
                path path))
      (macrolet ((ntag (type ident : parent pattern-obj)
                   ^(new ,type ident ,ident
                               path path
                               pattern ,*(if pattern-obj
                                           ^((get-pat lines ,pattern-obj))
                                           ^((get-pat lines obj)))
                               ,*(if parent ^(parent ,parent))
                               ,*(if pattern-obj ^(expattern t)))))
        (labels ((process-form (obj)
                   (when (consp obj)
                     (caseq (car obj)
                       ((progn eval-only compile-only with-dyn-lib)
                        [mapdo process-form (cdr obj)])
                       ((defun defmacro define-place-macro deffi deffi-cb)
                        (add (ntag fun-tag (cadr obj))))
                       ((defvar defvarl defparm defparml defsymacro)
                        (add (ntag var-tag (cadr obj))))
                       ((defmeth)
                        (add (ntag slot-tag (caddr obj) (cadr obj))))
                       ((defplace)
                        (tree-bind (op (name . args) . body) obj
                          (add (ntag fun-tag name))))
                       ((typedef)
                        (add (ntag type-tag (cadr obj))))
                       ((defpackage)
                        (add (ntag struct-tag (cadr obj))))
                       ((define-option-struct)
                        (let ((struct-name (cadr obj)))
                          (add (ntag struct-tag struct-name))
                          (each ((obj (cdddr obj)))
                            (tree-bind (short long . rest) obj
                              (cond
                                (long (add (ntag slot-tag long struct-name)))
                                (short (add (ntag slot-tag short struct-name))))))))
                       ((defstruct)
                        (let ((struct-obj obj)
                              (struct-name (tree-case (cadr obj)
                                             ((atom . rest) atom)
                                             (atom atom))))
                          (add (ntag struct-tag struct-name))
                          (each ((obj (cdddr obj)))
                            (tree-case obj
                              ((word name . rest)
                               (caseq word
                                 ((:method :function :static :instance)
                                  (add (ntag slot-tag name struct-name)))
                                 (t :)))
                              ((word (arg) . body)
                               (caseq word
                                 ((:init :postinit :fini))
                                 (t :)))
                              ((name . rest)
                               (add (ntag slot-tag name struct-name)))
                              (name
                               (add (ntag slot-tag name struct-name struct-obj)))))))))))
          (whilet ((obj (read stream *stderr* err-ret path))
                   ((neq obj err-ret)))
            (process-form obj)))))))

(defun write-tagfile (tags o)
  (when o.merge
    (catch
      (let* ((lines (file-get-lines "tags"))
             (orig-tags (collect-each ((line lines))
                          (new orig-tag ident (m^ #/[^\t]*/ line)
                                        line line))))
        (set tags (merge tags orig-tags : .ident)))
      (path-not-found (e))))
  (with-stream (stream (open-file "tags" (if o.append "a" "w")))
    (each ((tag tags))
      (put-line tag.(text) stream))))

(defvarl ftw-actionretval 0)
(defvarl ftw-continue 0)
(defvarl ftw-skip-subtree 0)

(defmacro static-when (expr . body)
  (when expr ^(progn ,*body)))

(let ((o (new tags-opts)))
  o.(getopts *args*)
  (when o.help
    (put-line "\nUsage:\n")
    (put-line `  @{*load-path*} [options] {file|dir}*\n`)
    (put-line `Directory arguments are recursively searched for *.tl files.`)
    (put-line `If no arguments are given, the current directory is searched.`)
    o.(opthelp)
    (exit t))

  (unless o.out-args
    (push "." o.out-args))

  (when (and o.merge o.append)
    (put-line `@{*load-path*}: --append and --merge are mutually exclusive`)
    (exit nil))

  (let* ((have-arv (boundp 'ftw-actionretval))
         (excf [apply orf (mapcar (do op fnmatch @@1 @1) o.exclude)])
         (skips ())
         (tags (build
                 (ftw o.out-args
                      (lambda (path type stat . rest)
                        (caseql* type
                          (ftw-f (when (and (or (member path o.out-args)
                                                (ends-with ".tl" path))
                                            (not [excf path])
                                            (not [excf (base-name path)])
                                            (not (some skips (op starts-with @1 path))))
                                   (pend (ignerr (collect-tags path)))
                                   ftw-continue))
                          (ftw-d (while (and skips (starts-with path (car skips)))
                                   (pop skips))
                                 (cond
                                   ((or [excf path] [excf (base-name path)])
                                    (static-when (plusp ftw-actionretval)
                                      (push `@path/` skips))
                                    ftw-skip-subtree)))
                          (t ftw-continue)))
                      (logior ftw-phys ftw-actionretval)))))
    (write-tagfile (sort tags : .ident) o)))