]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/wrap/wrap.factor
basis: use lint.vocabs tool to trim using lists
[factor.git] / basis / wrap / wrap.factor
index 458d2f86d1ab074458e44ff4c48af91e8cc67fa9..4fe6247d991938c49d2ca43336ac465e808ab0e1 100644 (file)
-USING: kernel sequences math arrays locals fry accessors splitting
-make combinators.short-circuit namespaces grouping splitting.monotonic ;
+! Copyright (C) 2009 Daniel Ehrenberg
+! Copyright (C) 2017 John Benediktsson
+! See http://factorcode.org/license.txt for BSD license.
+USING: accessors arrays kernel math sequences sequences.private ;
 IN: wrap
 
-<PRIVATE
+TUPLE: element contents black white ;
 
-! black is the text length, white is the whitespace length
-TUPLE: word contents black white ;
-C: <word> word
-
-: word-length ( word -- n )
-    [ black>> ] [ white>> ] bi + ;
-
-TUPLE: cons cdr car ; ! This order works out better
-C: <cons> cons
-
-: >cons< ( cons -- cdr car )
-    [ cdr>> ] [ car>> ] bi ;
-
-: list-each ( list quot -- )
-    over [
-        [ [ car>> ] dip call ]
-        [ [ cdr>> ] dip list-each ] 2bi
-    ] [ 2drop ] if ; inline recursive
-
-: singleton? ( list -- ? )
-    { [ ] [ cdr>> not ] } 1&& ;
-
-: <singleton> ( elt -- list )
-    f swap <cons> ;
-
-: list>array ( list -- array )
-    [ [ , ] list-each ] { } make ;
-
-: lists>arrays ( lists -- arrays )
-    [ [ list>array , ] list-each ] { } make ;
-
-TUPLE: paragraph lines head-width tail-cost ;
-C: <paragraph> paragraph
-
-SYMBOL: line-max
-SYMBOL: line-ideal
-
-: deviation ( length -- n )
-    line-ideal get - sq ;
-
-: top-fits? ( paragraph -- ? )
-    [ head-width>> ]
-    [ lines>> singleton? line-ideal line-max ? get ] bi <= ;
-
-: fits? ( paragraph -- ? )
-    ! Make this not count spaces at end
-    { [ lines>> car>> singleton? ] [ top-fits? ] } 1|| ;
-
-:: min-by ( seq quot -- elt )
-    f 1.0/0.0 seq [| key value new |
-        new quot call :> newvalue
-        newvalue value < [ new newvalue ] [ key value ] if
-    ] each drop ; inline
-
-: paragraph-cost ( paragraph -- cost )
-    [ head-width>> deviation ]
-    [ tail-cost>> ] bi + ;
-
-: min-cost ( paragraphs -- paragraph )
-    [ paragraph-cost ] min-by ;
-
-: new-line ( paragraph word -- paragraph )
-    [ [ lines>> ] [ <singleton> ] bi* <cons> ]
-    [ nip black>> ]
-    [ drop paragraph-cost ] 2tri
-    <paragraph> ;
-
-: glue ( paragraph word -- paragraph )
-    [ [ lines>> >cons< ] dip <cons> <cons> ]
-    [ [ head-width>> ] [ word-length ] bi* + ]
-    [ drop tail-cost>> ] 2tri
-    <paragraph> ;
-
-: wrap-step ( paragraphs word -- paragraphs )
-    [ '[ _ glue ] map ]
-    [ [ min-cost ] dip new-line ]
-    2bi prefix
-    [ fits? ] filter ;
-
-: 1paragraph ( word -- paragraph )
-    [ <singleton> <singleton> ]
-    [ black>> ] bi
-    0 <paragraph> ;
-
-: post-process ( paragraph -- array )
-    lines>> lists>arrays
-    [ [ contents>> ] map ] map ;
-
-: initialize ( words -- words paragraph )
-    <reversed> unclip-slice 1paragraph 1array ;
-
-: wrap ( words line-max line-ideal -- paragraph )
-    [
-        line-ideal set
-        line-max set
-        initialize
-        [ wrap-step ] reduce
-        min-cost
-        post-process
-    ] with-scope ;
-
-PRIVATE>
-
-TUPLE: element key width break? ;
 C: <element> element
 
-<PRIVATE
-
-: elements-length ( elements -- length )
-    [ width>> ] map sum ;
-
-: make-word ( whites blacks -- word )
-    [ append ] [ [ elements-length ] bi@ ] 2bi <word> ;
-: ?first2 ( seq -- first/f second/f )
-    [ 0 swap ?nth ]
-    [ 1 swap ?nth ] bi ;
-
-: split-elements ( seq -- half-words )
-    [ [ break?>> ] bi@ = ] monotonic-split ;
-
-: ?first-break ( seq -- newseq f/word )
-    dup first first break?>>
-    [ unclip-slice f swap make-word ]
-    [ f ] if ;
-
-: make-words ( seq f/word -- words )
-    [ 2 <groups> [ ?first2 make-word ] map ] dip
-    [ prefix ] when* ;
-
-: elements>words ( seq -- newseq )
-    split-elements ?first-break make-words ;
-
-PRIVATE>
-
-: wrap-elements ( elements line-max line-ideal -- lines )
-    [ elements>words ] 2dip wrap [ concat ] map ;
-
-<PRIVATE
-
-: split-lines ( string -- words-lines )
-    string-lines [
-        " \t" split harvest
-        [ dup length 1 <word> ] map
-    ] map ;
-
-: join-words ( wrapped-lines -- lines )
-    [ " " join ] map ;
-
-: join-lines ( strings -- string )
-    "\n" join ;
-
-PRIVATE>
-
-: wrap-lines ( lines width -- newlines )
-    [ split-lines ] dip '[ _ dup wrap join-words ] map concat ;
-
-: wrap-string ( string width -- newstring )
-    wrap-lines join-lines ;
-
-: wrap-indented-string ( string width indent -- newstring )
-    [ length - wrap-lines ] keep '[ _ prepend ] map join-lines ;
+:: wrap ( elements width -- array )
+    elements length integer>fixnum-strict :> #elements
+    elements [ black>> ] { } map-as :> black
+    elements [ white>> ] { } map-as :> white
+
+    #elements 1 + f <array> :> minima
+    #elements 1 + 0 <array> :> breaks
+
+    0 0 minima set-nth-unsafe
+
+    minima [| base i |
+        0 i 1 + [ dup #elements <= ] [| j |
+            j 1 - black nth-unsafe + dup :> w
+            j 1 - white nth-unsafe +
+
+            w width > [
+                j 1 - i = [
+                    0 j minima set-nth-unsafe
+                    i j breaks set-nth-unsafe
+                ] when #elements
+            ] [
+                base
+                j #elements = [ width w - sq + ] unless :> cost
+                j minima nth-unsafe [ cost >= ] [ t ] if* [
+                    cost j minima set-nth-unsafe
+                    i j breaks set-nth-unsafe
+                ] when j
+            ] if 1 +
+        ] while 2drop
+    ] each-index
+
+    #elements [ dup 0 > ] [
+        [ breaks nth dup ] keep elements <slice>
+        [ contents>> ] map
+    ] produce nip reverse ;