Add font and line cache to core text binding
parent
12d693f3fb
commit
e6e831c577
|
@ -1,7 +1,8 @@
|
||||||
! Copyright (C) 2009 Slava Pestov.
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: arrays alien alien.c-types alien.syntax kernel destructors
|
USING: arrays alien alien.c-types alien.syntax kernel destructors words
|
||||||
parser accessors fry words hashtables sequences math math.functions locals
|
parser accessors fry words hashtables sequences memoize
|
||||||
|
assocs math math.functions locals init
|
||||||
core-foundation core-foundation.strings
|
core-foundation core-foundation.strings
|
||||||
core-foundation.attributed-strings
|
core-foundation.attributed-strings
|
||||||
core-graphics core-graphics.types ;
|
core-graphics core-graphics.types ;
|
||||||
|
@ -21,6 +22,8 @@ FUNCTION: CTFontRef CTFontCreateWithName (
|
||||||
[ <CFString> &CFRelease ] dip f CTFontCreateWithName
|
[ <CFString> &CFRelease ] dip f CTFontCreateWithName
|
||||||
] with-destructors ;
|
] with-destructors ;
|
||||||
|
|
||||||
|
MEMO: cached-font ( name size -- font ) <CTFont> ;
|
||||||
|
|
||||||
<<
|
<<
|
||||||
|
|
||||||
: C-GLOBAL:
|
: C-GLOBAL:
|
||||||
|
@ -64,7 +67,7 @@ TUPLE: typographic-bounds width ascent descent leading ;
|
||||||
[ CTLineGetTypographicBounds ] 3keep [ *CGFloat ] tri@
|
[ CTLineGetTypographicBounds ] 3keep [ *CGFloat ] tri@
|
||||||
typographic-bounds boa ;
|
typographic-bounds boa ;
|
||||||
|
|
||||||
TUPLE: line string font line bounds dim bitmap disposed ;
|
TUPLE: line string font line bounds dim bitmap age disposed ;
|
||||||
|
|
||||||
: bounds>dim ( bounds -- dim )
|
: bounds>dim ( bounds -- dim )
|
||||||
[ width>> ] [ [ ascent>> ] [ descent>> ] bi + ] bi
|
[ width>> ] [ [ ascent>> ] [ descent>> ] bi + ] bi
|
||||||
|
@ -81,11 +84,37 @@ TUPLE: line string font line bounds dim bitmap disposed ;
|
||||||
2dup <CTLine> |CFRelease
|
2dup <CTLine> |CFRelease
|
||||||
dup line-typographic-bounds
|
dup line-typographic-bounds
|
||||||
dup bounds>dim 3dup [ draw-line ] with-bitmap-context
|
dup bounds>dim 3dup [ draw-line ] with-bitmap-context
|
||||||
f line boa
|
0 f line boa
|
||||||
] with-destructors ;
|
] with-destructors ;
|
||||||
|
|
||||||
M: line dispose*
|
M: line dispose*
|
||||||
[
|
[
|
||||||
[ font>> &CFRelease drop ]
|
[ font>> &CFRelease drop ]
|
||||||
[ line>> &CFRelease drop ] bi
|
[ line>> &CFRelease drop ] bi
|
||||||
] with-destructors ;
|
] with-destructors ;
|
||||||
|
|
||||||
|
<PRIVATE
|
||||||
|
|
||||||
|
MEMO: (cached-line) ( string font -- line ) <line> ;
|
||||||
|
|
||||||
|
: cached-lines ( -- assoc )
|
||||||
|
\ (cached-line) "memoize" word-prop ;
|
||||||
|
|
||||||
|
: set-cached-lines ( assoc -- )
|
||||||
|
\ (cached-line) "memoize" set-word-prop ;
|
||||||
|
|
||||||
|
CONSTANT: max-line-age 5
|
||||||
|
|
||||||
|
PRIVATE>
|
||||||
|
|
||||||
|
: age-lines ( -- )
|
||||||
|
cached-lines
|
||||||
|
[ nip [ 1+ ] change-age age>> max-line-age <= ] assoc-filter
|
||||||
|
set-cached-lines ;
|
||||||
|
|
||||||
|
: cached-line ( string font -- line ) (cached-line) 0 >>age ;
|
||||||
|
|
||||||
|
[
|
||||||
|
\ cached-font reset-memoized
|
||||||
|
\ (cached-line) reset-memoized
|
||||||
|
] "core-text" add-init-hook
|
Loading…
Reference in New Issue