factor/basis/help/lint/lint.factor

184 lines
4.6 KiB
Factor
Raw Normal View History

! Copyright (C) 2006, 2008 Slava Pestov.
2007-09-20 18:09:08 -04:00
! See http://factorcode.org/license.txt for BSD license.
USING: fry accessors sequences parser kernel help help.markup
help.topics words strings classes tools.vocabs namespaces make
io io.streams.string prettyprint definitions arrays vectors
2008-08-15 00:35:35 -04:00
combinators combinators.short-circuit splitting debugger
hashtables sorting effects vocabs vocabs.loader assocs editors
continuations classes.predicate macros math sets eval
vocabs.parser words.symbol values ;
2007-09-20 18:09:08 -04:00
IN: help.lint
2009-01-27 05:11:43 -05:00
SYMBOL: vocabs-quot
2007-09-20 18:09:08 -04:00
: check-example ( element -- )
2009-01-27 05:11:43 -05:00
[
rest [
but-last "\n" join 1vector
[ (eval>string) ] with-datastack
peek "\n" ?tail drop
] keep
peek assert=
] vocabs-quot get call ;
2007-09-20 18:09:08 -04:00
2009-01-27 02:41:57 -05:00
: check-examples ( element -- )
\ $example swap elements [ check-example ] each ;
2007-09-20 18:09:08 -04:00
: extract-values ( element -- seq )
\ $values swap elements dup empty? [
first rest [ first ] map prune natural-sort
2007-09-20 18:09:08 -04:00
] unless ;
: effect-values ( word -- seq )
stack-effect
[ in>> ] [ out>> ] bi append
2008-07-20 02:13:53 -04:00
[ dup pair? [ first ] when effect>string ] map
prune natural-sort ;
2007-09-20 18:09:08 -04:00
2007-12-11 22:36:40 -05:00
: contains-funky-elements? ( element -- ? )
2007-09-20 18:09:08 -04:00
{
$shuffle
$values-x/y
$predicate
$class-description
$error-description
2008-09-10 23:11:40 -04:00
} swap '[ _ elements empty? not ] contains? ;
2007-12-11 22:36:40 -05:00
: don't-check-word? ( word -- ? )
{
[ macro? ]
[ symbol? ]
[ value-word? ]
[ parsing-word? ]
[ "declared-effect" word-prop not ]
} 1|| ;
2007-12-11 22:36:40 -05:00
: check-values ( word element -- )
{
[
[ don't-check-word? ]
[ contains-funky-elements? ]
bi* or
] [
2009-01-16 15:20:29 -05:00
[ effect-values ]
[ extract-values ]
bi* sequence=
2007-12-11 22:36:40 -05:00
]
2008-08-15 00:35:35 -04:00
} 2|| [ "$values don't match stack effect" throw ] unless ;
2007-09-20 18:09:08 -04:00
2009-01-27 02:41:57 -05:00
: check-see-also ( element -- )
\ $see-also swap elements [
rest dup prune [ length ] bi@ assert=
2007-09-20 18:09:08 -04:00
] each ;
: vocab-exists? ( name -- ? )
2008-12-16 07:12:45 -05:00
[ vocab ] [ "all-vocabs" get member? ] bi or ;
2007-09-20 18:09:08 -04:00
2008-09-24 01:45:49 -04:00
: check-modules ( element -- )
\ $vocab-link swap elements [
2007-09-20 18:09:08 -04:00
second
2008-09-24 01:45:49 -04:00
vocab-exists? [ "$vocab-link to non-existent vocabulary" throw ] unless
2007-09-20 18:09:08 -04:00
] each ;
: check-rendering ( element -- )
2009-01-27 05:11:43 -05:00
[ print-content ] with-string-writer drop ;
: check-markup ( element -- )
[ check-rendering ]
[ check-examples ]
[ check-modules ]
tri ;
2007-09-20 18:09:08 -04:00
2007-12-11 22:36:40 -05:00
: all-word-help ( words -- seq )
[ word-help ] filter ;
2007-09-20 18:09:08 -04:00
2009-01-27 05:11:43 -05:00
TUPLE: help-error error topic ;
2007-09-20 18:09:08 -04:00
2008-06-30 02:44:46 -04:00
C: <help-error> help-error
2007-09-20 18:09:08 -04:00
2007-12-11 22:36:40 -05:00
M: help-error error.
2009-01-27 05:11:43 -05:00
[ "In " write topic>> pprint nl ]
[ error>> error. ]
bi ;
2007-12-11 22:36:40 -05:00
: check-something ( obj quot -- )
2009-01-27 05:11:43 -05:00
flush '[ _ assert-depth ] swap '[ _ <help-error> , ] recover ; inline
2007-09-20 18:09:08 -04:00
: check-word ( word -- )
2009-01-27 05:11:43 -05:00
[ with-file-vocabs ] vocabs-quot set
2007-12-11 22:36:40 -05:00
dup word-help [
2009-01-27 05:11:43 -05:00
dup '[
_ dup word-help
[ check-values ]
[ nip [ check-see-also ] [ check-markup ] bi ] 2bi
2007-12-11 22:36:40 -05:00
] check-something
] [ drop ] if ;
: check-words ( words -- ) [ check-word ] each ;
2007-09-20 18:09:08 -04:00
: check-article ( article -- )
2009-01-27 05:11:43 -05:00
[ with-interactive-vocabs ] vocabs-quot set
dup '[ _ article-content check-markup ] check-something ;
2007-09-20 18:09:08 -04:00
2008-09-24 01:45:49 -04:00
: files>vocabs ( -- assoc )
vocabs
[ [ [ vocab-docs-path ] keep ] H{ } map>assoc ]
[ [ [ vocab-source-path ] keep ] H{ } map>assoc ]
bi assoc-union ;
2008-02-26 21:20:30 -05:00
: group-articles ( -- assoc )
articles get keys
2008-09-24 01:45:49 -04:00
files>vocabs
2008-02-26 21:20:30 -05:00
H{ } clone [
'[
dup >link where dup
2008-09-10 23:11:40 -04:00
[ first _ at _ push-at ] [ 2drop ] if
] each
2008-02-26 21:20:30 -05:00
] keep ;
2008-06-30 02:44:46 -04:00
: check-about ( vocab -- )
2009-01-27 05:11:43 -05:00
dup '[ _ vocab-help [ article drop ] when* ] check-something ;
2008-06-30 02:44:46 -04:00
2008-02-26 21:20:30 -05:00
: check-vocab ( vocab -- seq )
"Checking " write dup write "..." print
[
2008-06-30 02:44:46 -04:00
[ check-about ]
[ words [ check-word ] each ]
[ "vocab-articles" get at [ check-article ] each ]
tri
2008-02-26 21:20:30 -05:00
] { } make ;
2007-09-20 18:09:08 -04:00
2008-02-26 21:20:30 -05:00
: run-help-lint ( prefix -- alist )
2007-12-11 22:36:40 -05:00
[
all-vocabs-seq [ vocab-name ] map "all-vocabs" set
2008-08-31 09:12:27 -04:00
group-articles "vocab-articles" set
2008-02-26 21:20:30 -05:00
child-vocabs
[ dup check-vocab ] { } map>assoc
[ nip empty? not ] assoc-filter
2008-02-26 21:20:30 -05:00
] with-scope ;
: typos. ( assoc -- )
2008-09-06 20:13:59 -04:00
[
2008-02-26 21:20:30 -05:00
"==== ALL CHECKS PASSED" print
] [
[
swap vocab-heading.
2008-12-08 15:58:00 -05:00
[ print-error nl ] each
2008-02-26 21:20:30 -05:00
] assoc-each
2008-09-06 20:13:59 -04:00
] if-empty ;
2007-12-11 22:36:40 -05:00
2008-02-26 21:20:30 -05:00
: help-lint ( prefix -- ) run-help-lint typos. ;
2007-12-11 22:36:40 -05:00
2008-02-26 21:20:30 -05:00
: help-lint-all ( -- ) "" help-lint ;
2007-09-20 18:09:08 -04:00
2007-12-11 22:36:40 -05:00
: unlinked-words ( words -- seq )
all-word-help [ article-parent not ] filter ;
2007-09-20 18:09:08 -04:00
: linked-undocumented-words ( -- seq )
all-words
[ word-help not ] filter
[ article-parent ] filter
[ "predicating" word-prop not ] filter ;
2007-09-20 18:09:08 -04:00
2008-02-26 21:20:30 -05:00
MAIN: help-lint