Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / basis / tr / tr.factor
blobce535f335aa9e1eeb1b2b4ab67c6a9e67e3248f3
1 ! Copyright (C) 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: byte-arrays strings sequences sequences.private ascii
4 fry kernel words parser lexer assocs math math.order summary ;
5 IN: tr
7 ERROR: bad-tr ;
9 M: bad-tr summary
10     drop "TR: can only be used with ASCII characters" ;
12 <PRIVATE
14 : tr-nth ( n mapping -- ch ) nth-unsafe 127 bitand ; inline
16 : check-tr ( from to -- )
17     [ [ ascii? ] all? ] both? [ bad-tr ] unless ;
19 : compute-tr ( quot from to -- mapping )
20     zip [ 128 ] 2dip '[ [ @ _ at ] keep or ] B{ } map-as ; inline
22 : tr-hints ( word -- )
23     { { byte-array } { string } } "specializer" set-word-prop ;
25 : create-tr ( token -- word )
26     create-in dup tr-hints ;
28 : tr-quot ( mapping -- quot )
29     '[ [ dup ascii? [ _ tr-nth ] when ] map ] ;
31 : define-tr ( word mapping -- )
32     tr-quot (( seq -- translated )) define-declared ;
34 : fast-tr-quot ( mapping -- quot )
35     '[ [ _ tr-nth ] change-each ] ;
37 : define-fast-tr ( word mapping -- )
38     fast-tr-quot (( seq -- )) define-declared ;
40 PRIVATE>
42 : TR:
43     scan parse-definition
44     unclip-last [ unclip-last ] dip compute-tr
45     [ check-tr ]
46     [ [ create-tr ] dip define-tr ]
47     [ [ "-fast" append create-tr ] dip define-fast-tr ] 2tri ;
48     parsing