! Copyright (C) 2003, 2005 Slava Pestov. ! See http://factor.sf.net/license.txt for BSD license. IN: prettyprint USING: alien generic hashtables io kernel lists math namespaces parser sequences strings styles vectors words ; ! State SYMBOL: column SYMBOL: indent SYMBOL: last-newline? SYMBOL: last-newline SYMBOL: recursion-check SYMBOL: line-count SYMBOL: end-printing ! Configuration SYMBOL: tab-size SYMBOL: margin SYMBOL: nesting-limit SYMBOL: length-limit SYMBOL: line-limit SYMBOL: string-limit global [ 4 tab-size set 64 margin set recursion-check off 0 column set 0 indent set last-newline? off 0 last-newline set 0 line-count set string-limit off ] bind TUPLE: pprinter stack ; GENERIC: pprint-section* TUPLE: section start end nl-after? indent ; C: section ( length -- section ) >r column [ dup rot + dup ] change r> [ set-section-end ] keep [ set-section-start ] keep 0 over set-section-indent ; : section-fits? ( section -- ? ) section-end last-newline get - indent get + margin get <= ; : line-limit? ( -- ? ) line-limit get dup [ line-count get <= ] when ; : do-indent indent get CHAR: \s fill write ; : fresh-line ( n -- ) last-newline set line-count inc line-limit? [ " ..." write end-printing get call ] when "\n" write do-indent ; TUPLE: text string style ; C: text ( string style -- section ) pick length
over set-delegate [ set-text-style ] keep [ set-text-string ] keep ; M: text pprint-section* dup text-string swap text-style format ; TUPLE: block sections ; C: block ( -- block ) 0
over set-delegate { } clone over set-block-sections t over set-section-nl-after? tab-size get over set-section-indent ; : pprinter-block pprinter-stack peek ; : block-empty? ( section -- ? ) dup block? [ block-sections empty? ] [ drop f ] ifte ; : add-section ( section stream -- ) over block-empty? [ 2drop ] [ pprinter-block block-sections push ] ifte ; : text ( string style -- ) pprinter get add-section ; : bl ( -- ) " " f text ; : ( section -- ) section-indent indent [ swap - ] change ; : inset-section ( section -- ) dup dup section-nl-after? [ section-end fresh-line ] [ drop ] ifte ; : advance ( section -- ) section-start last-newline get = [ last-newline inc ] [ " " write ] ifte ; : pprint-section ( section -- ) last-newline? get [ last-newline? off dup section-fits? [ dup advance pprint-section* ] [ inset-section ] ifte ] [ pprint-section* ] ifte ; TUPLE: newline forced? ; C: newline ( forced -- section ) 1
over set-delegate [ set-newline-forced? ] keep ; M: newline pprint-section* dup newline-forced? [ section-start fresh-line ] [ drop last-newline? on ] ifte ; M: block pprint-section* ( block -- ) block-sections [ pprint-section ] each ; : pprinter get pprinter-stack push ; : newline ( forced -- ) pprinter get add-section ; : end-block ( block -- ) column get swap set-section-end ; : pop-block ( pprinter -- ) pprinter-stack pop drop ; : block> ( -- ) pprinter get dup pprinter-block dup end-block swap dup pop-block add-section ; : block; ( -- ) pprinter get pprinter-block f swap set-section-nl-after? block> ; C: pprinter ( -- stream ) 1vector over set-pprinter-stack ; : do-pprint ( pprinter -- ) [ end-printing set dup pprinter-block pprint-section ] callcc0 drop ; GENERIC: pprint* ( obj -- ) : vocab-style ( vocab -- style ) {{ [[ "syntax" [ [[ foreground [ 128 128 128 ] ]] ] ]] [[ "kernel" [ [[ foreground [ 0 0 128 ] ]] ] ]] [[ "sequences" [ [[ foreground [ 128 0 0 ] ]] ] ]] [[ "math" [ [[ foreground [ 0 128 0 ] ]] ] ]] [[ "math-internals" [ [[ foreground [ 192 0 0 ] ]] ] ]] [[ "kernel-internals" [ [[ foreground [ 192 0 0 ] ]] ] ]] [[ "io-internals" [ [[ foreground [ 192 0 0 ] ]] ] ]] }} hash ; : word-style ( word -- style ) dup word-vocabulary vocab-style swap presented swons add ; : pprint-word ( obj -- ) dup word-name [ "( unnamed )" ] unless* swap word-style text ; M: object pprint* ( obj -- ) "( unprintable object: " swap class word-name " )" append3 f text ; M: real pprint* ( obj -- ) number>string f text ; M: complex pprint* ( num -- ) \ #{ pprint-word bl dup real pprint* bl imaginary pprint* bl \ }# pprint-word ; : ch>ascii-escape ( ch -- esc ) {{ [[ CHAR: \e "\\e" ]] [[ CHAR: \n "\\n" ]] [[ CHAR: \r "\\r" ]] [[ CHAR: \t "\\t" ]] [[ CHAR: \0 "\\0" ]] [[ CHAR: \\ "\\\\" ]] [[ CHAR: \" "\\\"" ]] }} hash ; : ch>unicode-escape ( ch -- esc ) >hex 4 CHAR: 0 pad-left "\\u" swap append ; : unparse-ch ( ch -- ch/str ) dup quotable? [ , ] [ dup ch>ascii-escape [ ] [ ch>unicode-escape ] ?ifte % ] ifte ; : do-string-limit ( string -- string ) string-limit get [ dup length margin get > [ margin get 3 - swap head "..." append ] when ] when ; : pprint-string ( string prefix -- ) [ % [ unparse-ch ] each CHAR: " , ] make-string do-string-limit f text ; M: string pprint* ( str -- str ) "\"" pprint-string ; M: sbuf pprint* ( str -- str ) "SBUF\" " pprint-string ; M: word pprint* ( word -- ) dup parsing? [ \ POSTPONE: pprint-word bl ] when pprint-word ; M: t pprint* drop "t" f text ; M: f pprint* drop "f" f text ; M: dll pprint* ( obj -- str ) dll-path "DLL\" " pprint-string ; : nesting-limit? ( -- ? ) nesting-limit get dup [ pprinter get pprinter-stack length < ] when ; : check-recursion ( obj quot -- indent ) #! We detect circular structure. nesting-limit? [ 2drop "#" f text ] [ over recursion-check get memq? [ 2drop "&" f text ] [ over recursion-check [ cons ] change call recursion-check [ cdr ] change ] ifte ] ifte ; inline : length-limit? ( seq -- seq ? ) length-limit get dup [ swap 2dup length < [ head t ] [ nip f ] ifte ] [ drop f ] ifte ; : pprint-elements ( seq -- ) length-limit? >r [ pprint* f newline ] each r> [ "... " f text ] when ; : pprint-sequence ( seq start end -- ) swap pprint-word f newline pprint-word ; M: cons pprint* ( list -- ) [ dup list? [ \ [ \ ] ] [ uncons 2vector \ [[ \ ]] ] ifte pprint-sequence ] check-recursion ; M: vector pprint* ( vector -- ) [ \ { \ } pprint-sequence ] check-recursion ; M: hashtable pprint* ( hashtable -- ) [ hash>alist \ {{ \ }} pprint-sequence ] check-recursion ; M: tuple pprint* ( tuple -- ) [ \ << \ >> pprint-sequence ] check-recursion ; M: alien pprint* ( alien -- ) dup expired? [ drop "( alien expired )" ] [ \ ALIEN: pprint-word bl alien-address number>string ] ifte f text ; M: wrapper pprint* ( wrapper -- ) dup wrapped word? [ \ \ pprint-word bl wrapped pprint-word ] [ wrapped 1vector \ W[ \ ]W pprint-sequence ] ifte ; : with-pprint ( quot -- ) [ pprinter set call pprinter get do-pprint ] with-scope ; inline : pprint ( object -- ) [ pprint* ] with-pprint ; : unparse ( object -- str ) [ pprint ] string-out ; : . ( obj -- ) pprint terpri ; : pprint-short ( object -- string ) [ 1 line-limit set 5 length-limit set 2 nesting-limit set string-limit on pprint ] with-scope ; : unparse-short ( object -- str ) [ pprint-short ] string-out ; : short. ( object -- ) dup unparse-short swap write-object terpri ; : [.] ( sequence -- ) [ short. ] each ; : stack. reverse-slice [.] ; : .s datastack stack. ; : .r callstack stack. ; ! For integers only : .b >bin print ; : .o >oct print ; : .h >hex print ;