171 lines
4.4 KiB
Factor
171 lines
4.4 KiB
Factor
! Copyright (C) 2006, 2008 Slava Pestov.
|
|
! 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
|
|
combinators combinators.short-circuit splitting debugger
|
|
hashtables sorting effects vocabs vocabs.loader assocs editors
|
|
continuations classes.predicate macros math sets eval ;
|
|
IN: help.lint
|
|
|
|
: check-example ( element -- )
|
|
rest [
|
|
but-last "\n" join 1vector
|
|
[
|
|
use [ clone ] change
|
|
[ eval>string ] with-datastack
|
|
] with-scope peek "\n" ?tail drop
|
|
] keep
|
|
peek assert= ;
|
|
|
|
: check-examples ( word element -- )
|
|
nip \ $example swap elements [ check-example ] each ;
|
|
|
|
: extract-values ( element -- seq )
|
|
\ $values swap elements dup empty? [
|
|
first rest [ first ] map prune natural-sort
|
|
] unless ;
|
|
|
|
: effect-values ( word -- seq )
|
|
stack-effect
|
|
[ in>> ] [ out>> ] bi append
|
|
[ dup pair? [ first ] when effect>string ] map
|
|
prune natural-sort ;
|
|
|
|
: contains-funky-elements? ( element -- ? )
|
|
{
|
|
$shuffle
|
|
$values-x/y
|
|
$predicate
|
|
$class-description
|
|
$error-description
|
|
} swap '[ _ elements empty? not ] contains? ;
|
|
|
|
: check-values ( word element -- )
|
|
{
|
|
[ drop "declared-effect" word-prop not ]
|
|
[ nip contains-funky-elements? ]
|
|
[ drop macro? ]
|
|
[
|
|
[ effect-values >array ]
|
|
[ extract-values >array ]
|
|
bi* =
|
|
]
|
|
} 2|| [ "$values don't match stack effect" throw ] unless ;
|
|
|
|
: check-see-also ( word element -- )
|
|
nip \ $see-also swap elements [
|
|
rest dup prune [ length ] bi@ assert=
|
|
] each ;
|
|
|
|
: vocab-exists? ( name -- ? )
|
|
dup vocab swap "all-vocabs" get member? or ;
|
|
|
|
: check-modules ( element -- )
|
|
\ $vocab-link swap elements [
|
|
second
|
|
vocab-exists? [ "$vocab-link to non-existent vocabulary" throw ] unless
|
|
] each ;
|
|
|
|
: check-rendering ( element -- )
|
|
[ print-topic ] with-string-writer drop ;
|
|
|
|
: all-word-help ( words -- seq )
|
|
[ word-help ] filter ;
|
|
|
|
TUPLE: help-error topic error ;
|
|
|
|
C: <help-error> help-error
|
|
|
|
M: help-error error.
|
|
"In " write dup topic>> pprint nl
|
|
error>> error. ;
|
|
|
|
: check-something ( obj quot -- )
|
|
flush [ <help-error> , ] recover ; inline
|
|
|
|
: check-word ( word -- )
|
|
dup word-help [
|
|
[
|
|
dup word-help '[
|
|
_ _ {
|
|
[ check-examples ]
|
|
[ check-values ]
|
|
[ check-see-also ]
|
|
[ [ check-rendering ] [ check-modules ] bi* ]
|
|
} 2cleave
|
|
] assert-depth
|
|
] check-something
|
|
] [ drop ] if ;
|
|
|
|
: check-words ( words -- ) [ check-word ] each ;
|
|
|
|
: check-article ( article -- )
|
|
[
|
|
dup article-content
|
|
'[ _ check-rendering _ check-modules ]
|
|
assert-depth
|
|
] check-something ;
|
|
|
|
: files>vocabs ( -- assoc )
|
|
vocabs
|
|
[ [ [ vocab-docs-path ] keep ] H{ } map>assoc ]
|
|
[ [ [ vocab-source-path ] keep ] H{ } map>assoc ]
|
|
bi assoc-union ;
|
|
|
|
: group-articles ( -- assoc )
|
|
articles get keys
|
|
files>vocabs
|
|
H{ } clone [
|
|
'[
|
|
dup >link where dup
|
|
[ first _ at _ push-at ] [ 2drop ] if
|
|
] each
|
|
] keep ;
|
|
|
|
: check-about ( vocab -- )
|
|
[ vocab-help [ article drop ] when* ] check-something ;
|
|
|
|
: check-vocab ( vocab -- seq )
|
|
"Checking " write dup write "..." print
|
|
[
|
|
[ check-about ]
|
|
[ words [ check-word ] each ]
|
|
[ "vocab-articles" get at [ check-article ] each ]
|
|
tri
|
|
] { } make ;
|
|
|
|
: run-help-lint ( prefix -- alist )
|
|
[
|
|
all-vocabs-seq [ vocab-name ] map "all-vocabs" set
|
|
group-articles "vocab-articles" set
|
|
child-vocabs
|
|
[ dup check-vocab ] { } map>assoc
|
|
[ nip empty? not ] assoc-filter
|
|
] with-scope ;
|
|
|
|
: typos. ( assoc -- )
|
|
[
|
|
"==== ALL CHECKS PASSED" print
|
|
] [
|
|
[
|
|
swap vocab-heading.
|
|
[ print-error nl ] each
|
|
] assoc-each
|
|
] if-empty ;
|
|
|
|
: help-lint ( prefix -- ) run-help-lint typos. ;
|
|
|
|
: help-lint-all ( -- ) "" help-lint ;
|
|
|
|
: unlinked-words ( words -- seq )
|
|
all-word-help [ article-parent not ] filter ;
|
|
|
|
: linked-undocumented-words ( -- seq )
|
|
all-words
|
|
[ word-help not ] filter
|
|
[ article-parent ] filter
|
|
[ "predicating" word-prop not ] filter ;
|
|
|
|
MAIN: help-lint
|