]> gitweb.factorcode.org Git - factor.git/blob - basis/tools/scaffold/scaffold.factor
tools.scaffold: remove unused ERROR:
[factor.git] / basis / tools / scaffold / scaffold.factor
1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: assocs io.files io.pathnames io.directories
4 io.encodings.utf8 hashtables kernel namespaces sequences
5 vocabs.loader vocabs.metadata io combinators calendar accessors
6 math.parser io.streams.string ui.tools.operations quotations
7 strings arrays prettyprint words vocabs sorting sets classes
8 math alien urls splitting ascii combinators.short-circuit timers
9 words.symbol system summary ;
10 FROM: sets => members ;
11 IN: tools.scaffold
12
13 SYMBOL: developer-name
14 SYMBOL: using
15
16 ERROR: not-a-vocab-root string ;
17 ERROR: vocab-name-contains-separator path ;
18 ERROR: vocab-name-contains-dot path ;
19
20 <PRIVATE
21
22 : vocab-root? ( string -- ? )
23     trim-tail-separators
24     vocab-roots get member? ;
25
26 : contains-dot? ( string -- ? ) ".." swap subseq? ;
27
28 : contains-separator? ( string -- ? ) [ path-separator? ] any? ;
29
30 : ensure-vocab-exists ( string -- string )
31     dup vocabs member? [ no-vocab ] unless ;
32
33 : check-vocab-name ( string -- string )
34     [ ]
35     [ contains-dot? [ vocab-name-contains-dot ] when ]
36     [ contains-separator? [ vocab-name-contains-separator ] when ] tri ;
37
38 : check-root ( string -- string )
39     dup vocab-root? [ not-a-vocab-root ] unless ;
40
41 : check-vocab-root/vocab ( vocab-root string -- vocab-root string )
42     [ check-root ] [ check-vocab-name ] bi* ;
43
44 : replace-vocab-separators ( vocab -- path )
45     path-separator first CHAR: . associate substitute ; inline
46
47 : vocab-root/vocab>path ( vocab-root vocab -- path )
48     check-vocab-root/vocab
49     [ ] [ replace-vocab-separators ] bi* append-path ;
50
51 : vocab>path ( vocab -- path )
52     check-vocab
53     [ find-vocab-root ] keep vocab-root/vocab>path ;
54
55 : vocab-root/vocab/file>path ( vocab-root vocab file -- path )
56     [ vocab-root/vocab>path ] dip append-path ;
57
58 : vocab-root/vocab/suffix>path ( vocab-root vocab suffix -- path )
59     [ vocab-root/vocab>path dup file-name append-path ] dip append ;
60
61 : vocab/file>path ( vocab file -- path )
62     [ vocab>path ] dip append-path ;
63
64 : vocab/suffix>path ( vocab suffix -- path )
65     [ vocab>path dup file-name append-path ] dip append ;
66
67 : directory-exists ( path -- )
68     "Not creating a directory, it already exists: " write print ;
69
70 : scaffold-directory ( vocab-root vocab -- )
71     vocab-root/vocab>path
72     dup exists? [ directory-exists ] [ make-directories ] if ;
73
74 : not-scaffolding ( path -- path )
75     "Not creating scaffolding for " write dup <pathname> . ;
76
77 : scaffolding ( path -- path )
78     "Creating scaffolding for " write dup <pathname> . ;
79
80 : scaffolding? ( path -- path ? )
81     dup exists? [ not-scaffolding f ] [ scaffolding t ] if ;
82
83 : scaffold-copyright ( -- )
84     "! Copyright (C) " write now year>> number>string write
85     developer-name get [ "Your name" ] unless* bl write "." print
86     "! See http://factorcode.org/license.txt for BSD license." print ;
87
88 : main-file-string ( vocab -- string )
89     [
90         scaffold-copyright
91         "USING: ;" print
92         "IN: " write print
93     ] with-string-writer ;
94
95 : set-scaffold-main-file ( vocab path -- )
96     [ main-file-string 1array ] dip utf8 set-file-lines ;
97
98 : scaffold-main ( vocab-root vocab -- )
99     [ ".factor" vocab-root/vocab/suffix>path ] keep swap scaffolding? [
100         set-scaffold-main-file
101     ] [
102         2drop
103     ] if ;
104
105 : scaffold-metadata ( vocab file contents -- )
106     [ ensure-vocab-exists ] 2dip
107     [
108         [ vocab/file>path ] dip 1array swap scaffolding? [
109             utf8 set-file-lines
110         ] [
111             2drop
112         ] if
113     ] [
114         2drop
115     ] if* ;
116
117 : lookup-type ( string -- object/string ? )
118     "new" ?head drop [ { [ CHAR: ' = ] [ digit? ] } 1|| ] trim-tail
119     H{
120         { "object" object } { "obj" object }
121         { "quot" quotation }
122         { "string" string }
123         { "str" string }
124         { "hash" hashtable }
125         { "hashtable" hashtable }
126         { "?" boolean }
127         { "ch" "a character" }
128         { "word" word }
129         { "array" array }
130         { "timers" timer }
131         { "duration" duration }
132         { "path" "a pathname string" }
133         { "vocab" "a vocabulary specifier" }
134         { "vocab-root" "a vocabulary root string" }
135         { "c-ptr" c-ptr }
136         { "seq" sequence }
137         { "assoc" assoc }
138         { "alist" "an array of key/value pairs" }
139         { "keys" sequence } { "values" sequence }
140         { "class" class } { "tuple" tuple }
141         { "url" url }
142     } at* ;
143
144 : add-using ( object -- )
145     vocabulary>> using get [ conjoin ] [ drop ] if* ;
146
147 : ($values.) ( array -- )
148     [ bl ] [
149         "{ " write
150         dup array? [ first ] when
151         dup lookup-type [
152             [ unparse write bl ]
153             [ [ pprint ] [ dup string? [ drop ] [ add-using ] if ] bi ] bi*
154         ] [
155             drop unparse write bl null pprint
156             null add-using
157         ] if
158         " }" write
159     ] interleave ;
160
161 : 4bl ( -- )
162     "    " write ; inline
163
164 : ?print-nl ( seq1 seq2 -- )
165     [ empty? ] either? [ nl ] unless ;
166
167 : $values. ( word -- )
168     "declared-effect" word-prop [
169         [ in>> ] [ out>> ] bi
170         2dup [ empty? ] bi@ and [
171             2drop
172         ] [
173             [ members ] dip over diff
174             "{ $values" print
175             [ drop 4bl ($values.) ]
176             [ ?print-nl ]
177             [ nip 4bl ($values.) ] 2tri
178             nl "}" print
179         ] if
180     ] when* ;
181
182 : symbol-description. ( word -- )
183     drop
184     "{ $var-description \"\" } ;" print ;
185
186 : $description. ( word -- )
187     drop
188     "{ $description \"\" } ;" print ;
189
190 : docs-body. ( word/symbol -- )
191     dup symbol? [
192         symbol-description.
193     ] [
194         [ $values. ] [ $description. ] bi
195     ] if ;
196
197 : docs-header. ( word -- )
198     "HELP: " write name>> print ;
199
200 : (help.) ( word -- )
201     [ docs-header. ] [ docs-body. ] bi ;
202
203 : interesting-words ( vocab -- array )
204     words
205     [ { [ "help" word-prop ] [ predicate? ] } 1|| not ] filter
206     natural-sort ;
207
208 : interesting-words. ( vocab -- )
209     interesting-words [ (help.) nl ] each ;
210
211 : docs-file-string ( vocab -- str2 )
212     [
213         {
214             [ "IN: " write print nl ]
215             [ interesting-words. ]
216             [
217                 [ "ARTICLE: " write unparse dup write bl print ]
218                 [ "{ $vocab-link " write pprint " }" print ] bi
219                 ";" print nl
220             ]
221             [ "ABOUT: " write unparse print ]
222         } cleave
223     ] with-string-writer ;
224
225 : write-using ( vocab -- )
226     "USING:" write
227     using get keys
228     { "help.markup" "help.syntax" } append natural-sort remove
229     [ bl write ] each
230     " ;" print ;
231
232 : set-scaffold-docs-file ( vocab path -- )
233     utf8 <file-writer> [
234         scaffold-copyright
235         [ docs-file-string ] [ write-using ] bi
236         write
237     ] with-output-stream ;
238
239 : with-scaffold ( quot -- )
240     [ H{ } clone using ] dip with-variable ; inline
241
242 : link-vocab ( vocab -- )
243     check-vocab
244     "Edit documentation: " write
245     "-docs.factor" vocab/suffix>path <pathname> . ;
246
247 PRIVATE>
248
249 : help. ( word -- )
250     [ (help.) ] [ nl vocabulary>> link-vocab ] bi ;
251
252 : scaffold-help ( vocab -- )
253     ensure-vocab-exists
254     [
255         dup "-docs.factor" vocab/suffix>path scaffolding? [
256             set-scaffold-docs-file
257         ] [
258             2drop
259         ] if
260     ] with-scaffold ;
261
262 : scaffold-undocumented ( string -- )
263     [ interesting-words. ] [ link-vocab ] bi ;
264
265 : scaffold-authors ( vocab -- )
266     "authors.txt" developer-name get scaffold-metadata ;
267
268 : scaffold-tags ( vocab tags -- )
269     [ "tags.txt" ] dip scaffold-metadata ;
270
271 : scaffold-summary ( vocab summary -- )
272     [ "summary.txt" ] dip scaffold-metadata ;
273
274 : scaffold-platforms ( vocab platforms -- )
275     [ "platforms.txt" ] dip scaffold-metadata ;
276
277 : scaffold-vocab ( vocab-root string -- )
278     {
279         [ scaffold-directory ]
280         [ scaffold-main ]
281         [ nip require ]
282         [ nip scaffold-authors ]
283     } 2cleave ;
284
285 : scaffold-core ( string -- ) "resource:core" swap scaffold-vocab ;
286
287 : scaffold-basis ( string -- ) "resource:basis" swap scaffold-vocab ;
288
289 : scaffold-extra ( string -- ) "resource:extra" swap scaffold-vocab ;
290
291 : scaffold-work ( string -- ) "resource:work" swap scaffold-vocab ;
292
293 <PRIVATE
294
295 : tests-file-string ( vocab -- string )
296     [
297         scaffold-copyright
298         "USING: tools.test " write dup write " ;" print
299         "IN: " write write ".tests" print
300     ] with-string-writer ;
301
302 : set-scaffold-tests-file ( vocab path -- )
303     [ tests-file-string ] dip utf8 set-file-contents ;
304
305 PRIVATE>
306
307 : scaffold-tests ( vocab -- )
308     ensure-vocab-exists
309     dup "-tests.factor" vocab/suffix>path
310     scaffolding? [
311         set-scaffold-tests-file
312     ] [
313         2drop
314     ] if ;
315
316 SYMBOL: examples-flag
317
318 : example ( -- )
319     {
320         "{ $example \"\" \"USING: prettyprint ;\""
321         "           \"\""
322         "           \"\""
323         "}"
324     } [ examples-flag get [ 4bl ] when print ] each ;
325
326 : examples ( n -- )
327     t \ examples-flag [
328         "{ $examples " print
329         [ example ] times
330         "}" print
331     ] with-variable ;
332
333 : touch. ( path -- )
334     [ touch-file ]
335     [ "Click to edit: " write <pathname> . ] bi ;
336
337 : scaffold-rc ( path -- )
338     [ home ] dip append-path touch. ;
339
340 : scaffold-factor-boot-rc ( -- )
341     ".factor-boot-rc" scaffold-rc ;
342
343 : scaffold-factor-rc ( -- )
344     ".factor-rc" scaffold-rc ;
345
346 : scaffold-factor-roots ( -- )
347     ".factor-roots" scaffold-rc ;
348
349 HOOK: scaffold-emacs os ( -- )
350
351 M: unix scaffold-emacs ( -- ) ".emacs" scaffold-rc ;