]> gitweb.factorcode.org Git - factor.git/commitdiff
help.syntax: merge easy-help ideas into HELP:.
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Dec 2020 03:59:33 +0000 (19:59 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 15 Dec 2020 03:59:33 +0000 (19:59 -0800)
basis/help/syntax/syntax-tests.factor
basis/help/syntax/syntax.factor

index e97db1af85fa221d64146d17be85260d40aa2bd1..8f020a8e573cafedd0ea73529a6d96817a968f72 100644 (file)
@@ -15,3 +15,29 @@ IN: help.syntax.tests
 
     [ ] [ "help.syntax.tests" lookup-vocab f >>help drop ] unit-test
 ] with-file-vocabs
+
+{ { $description } } [ HELP{ $description } ] unit-test
+
+{ { $description "this and that" } } [
+    HELP{ $description this and that }
+] unit-test
+
+{ { $description { $snippet "this" } " and that" } } [
+    HELP{ $description { $snippet "this" } and that }
+] unit-test
+
+{ { $description "this " { $snippet "and" } " that" } } [
+    HELP{ $description this { $snippet "and" } that }
+] unit-test
+
+{ { $description "this and " { $snippet "that" } } } [
+    HELP{ $description this and { $snippet "that" } }
+] unit-test
+
+{ { $description "this and " { $snippet "that" } "." } } [
+    HELP{ $description this and { $snippet "that" } . }
+] unit-test
+
+{ { $description "this, " { $snippet "that" } ", and the other." } } [
+    HELP{ $description this, { $snippet "that" } , and the other. }
+] unit-test
index 73f72e7b22e24f529fb8092ac024704153ca8d11..bd0cfd0d460af0902171a8dffcf5a60cdcd68db1 100644 (file)
 ! Copyright (C) 2005, 2009 Slava Pestov.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays compiler.units definitions help
-help.topics kernel math parser sequences vocabs.parser words ;
+USING: accessors arrays ascii combinators
+combinators.short-circuit compiler.units definitions help
+help.markup help.topics kernel lexer math namespaces parser
+sequences splitting strings vocabs.parser words ;
 IN: help.syntax
 
+<PRIVATE
+
+:: parse-help-token ( -- str/obj/f )
+    ?scan-token dup search {
+        { [ dup \ } eq? ] [ 2drop f ] }
+        { [ dup parsing-word? ] [
+            nip V{ } clone swap execute-parsing first
+            dup wrapper? [ wrapped>> \ $link swap 2array ] when ] }
+        [ drop ]
+    } cond ;
+
+: push-help-text ( accum sbuf obj -- accum sbuf' )
+    [ dup empty? [ >string suffix! SBUF" " clone ] unless ]
+    [ [ suffix! ] curry dip ] bi* ;
+
+: push-help-space ( accum sbuf -- accum sbuf )
+    {
+        [ dup empty? not ]
+        [ over empty? not pick ?last \ $nl eq? not and ]
+    } 0|| [ CHAR: \s suffix! ] when ;
+
+:: parse-help-text ( -- seq )
+    V{ } clone SBUF" " clone [
+        lexer get line>> parse-help-token [
+            lexer get line>> swap - 1 > [
+                \ $nl push-help-text
+            ] when
+        ] dip [
+            [
+                dup string? [
+                    dup ?first ".,;:" member? [
+                        [ push-help-space ] dip
+                    ] unless append!
+                ] [
+                    [ push-help-space ]
+                    [ push-help-text ] bi*
+                ] if
+            ] when*
+        ] keep
+    ] loop [ >string suffix! ] unless-empty >array ; inline
+
+: parse-help-values ( -- seq )
+    [ scan-token dup "}" = not ] [
+        dup "{" = [
+            parse-datum dup parsing-word?
+            [ V{ } clone swap execute-parsing first ] when
+        ] [
+            ":" ?tail drop scan-object 2array
+        ] if
+    ] produce nip ;
+
+: example-lines ( seq -- seq' )
+    dup string? [ string-lines [ [ blank? ] trim ] map harvest ] when ;
+
+: make-example ( str type -- seq )
+    over string? [
+        [ example-lines ] [ prefix ] bi*
+    ] [ drop ] if ;
+
+: parse-help-examples ( -- seq )
+    \ } parse-until [ \ $example make-example ] { } map-as ;
+
+: parse-help-example ( -- seq )
+    \ } parse-until dup { [ length 1 = ] [ first string? ] } 1&&
+    [ first example-lines ] when ;
+
+: help-text? ( word -- ? )
+    {
+        $description $snippet $emphasis $strong $url $heading
+        $subheading $code $syntax $class-description
+        $error-description $var-description $contract $notes
+        $curious $deprecated $errors $side-effects $content
+        $slot $image
+    } member-eq? ;
+
+: help-values? ( word -- ? )
+    { $values $inputs $outputs } member-eq? ;
+
+: help-examples? ( word -- ? )
+    { $examples } member-eq? ;
+
+: help-example? ( word -- ? )
+    { $example $unchecked-example } member-eq? ;
+
+PRIVATE>
+
+SYNTAX: HELP{
+    scan-word dup \ } eq? [ drop { } ] [
+        {
+            { [ dup help-text? ] [ parse-help-text ] }
+            { [ dup help-values? ] [ parse-help-values ] }
+            { [ dup help-example? ] [ parse-help-example ] }
+            { [ dup help-examples? ] [ parse-help-examples ] }
+            [ \ } parse-until >array ]
+        } cond swap prefix
+    ] if suffix! ;
+
 SYNTAX: HELP:
-    scan-word bootstrap-word
-    [ >link save-location ]
-    [ [ parse-array-def ] dip set-word-help ]
-    bi ;
+    H{ { "{" POSTPONE: HELP{ } } [
+        scan-word bootstrap-word
+        [ >link save-location ]
+        [ [ parse-array-def ] dip set-word-help ]
+        bi
+    ] with-words ;
 
 ERROR: article-expects-name-and-title got ;