]> gitweb.factorcode.org Git - factor.git/commitdiff
io.streams.256color: faster by caching styles
authorJohn Benediktsson <mrjbq7@gmail.com>
Tue, 9 Aug 2022 23:03:37 +0000 (16:03 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Tue, 9 Aug 2022 23:03:37 +0000 (16:03 -0700)
extra/io/streams/256color/256color.factor

index 2401cfa7121120bb6e5626ffe004c1b5bf2c95d5..6bce05a25d1ee31fc23d3984ab8a6924b496008b 100644 (file)
@@ -60,23 +60,23 @@ intensities [| r i |
     color>rgb '[ _ distance ]
     256colors [ keys swap infimum-by ] [ at ] bi ;
 
     color>rgb '[ _ distance ]
     256colors [ keys swap infimum-by ] [ at ] bi ;
 
-: color>foreground ( color -- string )
+MEMO: color>foreground ( color -- string )
     color>256color "\e[38;5;%sm" sprintf ;
 
     color>256color "\e[38;5;%sm" sprintf ;
 
-: color>background ( color -- string )
+MEMO: color>background ( color -- string )
     color>256color "\e[48;5;%sm" sprintf ;
 
 TUPLE: 256color < filter-writer ;
 
 C: <256color> 256color
 
     color>256color "\e[48;5;%sm" sprintf ;
 
 TUPLE: 256color < filter-writer ;
 
 C: <256color> 256color
 
-M: 256color stream-format
-    [
-        [ foreground of [ color>foreground ] [ "" ] if* ]
-        [ background of [ color>background ] [ "" ] if* ]
-        [ font-style of [ font-styles ] [ "" ] if* ]
-        tri 3append [ "\e[0m" surround ] unless-empty
-    ] dip stream>> stream-write ;
+M:: 256color stream-format ( str style stream -- )
+    stream stream>> :> out
+    style foreground of [ color>foreground out stream-write t ] [ f ] if*
+    style background of [ color>background out stream-write t ] [ f ] if*
+    style font-style of [ font-styles out stream-write t ] [ f ] if*
+    or or [ "\e[0m" out stream-write ] unless
+    str out stream-write ;
 
 M: 256color make-span-stream
     swap <style-stream> <ignore-close-stream> ;
 
 M: 256color make-span-stream
     swap <style-stream> <ignore-close-stream> ;