]> gitweb.factorcode.org Git - factor.git/blob - core/io/encodings/utf16/utf16.factor
use radix literals
[factor.git] / core / io / encodings / utf16 / utf16.factor
1 ! Copyright (C) 2006, 2009 Daniel Ehrenberg.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors byte-arrays combinators io io.binary
4 io.encodings kernel math math.private namespaces sbufs
5 sequences sequences.private splitting strings.private vectors ;
6 IN: io.encodings.utf16
7
8 SINGLETON: utf16be
9
10 SINGLETON: utf16le
11
12 SINGLETON: utf16
13
14 ERROR: missing-bom ;
15
16 <PRIVATE
17
18 ! UTF-16BE decoding
19
20 : append-nums ( byte ch -- ch )
21     over [ 8 shift bitor ] [ 2drop replacement-char ] if ;
22
23 : double-be ( stream byte -- stream char )
24     over stream-read1 swap append-nums ;
25
26 : quad-be ( stream byte -- stream char )
27     double-be over stream-read1 [
28         dup -2 shift 0b110111 number= [
29             [ 2 shift ] dip 0b11 bitand bitor
30             over stream-read1 swap append-nums 0x10000 +
31         ] [ 2drop dup stream-read1 drop replacement-char ] if
32     ] when* ;
33
34 : ignore ( stream -- stream char )
35     dup stream-read1 drop replacement-char ;
36
37 : begin-utf16be ( stream byte -- stream char )
38     dup -3 shift 0b11011 number= [
39         dup 0b00000100 bitand zero?
40         [ 0b11 bitand quad-be ]
41         [ drop ignore ] if
42     ] [ double-be ] if ;
43     
44 M: utf16be decode-char
45     drop dup stream-read1 dup [ begin-utf16be ] when nip ;
46
47 ! UTF-16LE decoding
48
49 : quad-le ( stream ch -- stream char )
50     over stream-read1 swap 10 shift bitor
51     over stream-read1 dup -2 shift 0b110111 = [
52         0b11 bitand append-nums 0x10000 +
53     ] [ 2drop replacement-char ] if ;
54
55 : double-le ( stream byte1 byte2 -- stream char )
56     dup -3 shift 0b11011 = [
57         dup 0b100 bitand 0 number=
58         [ 0b11 bitand 8 shift bitor quad-le ]
59         [ 2drop replacement-char ] if
60     ] [ append-nums ] if ;
61
62 : begin-utf16le ( stream byte -- stream char )
63     over stream-read1 dup [ double-le ] [ 2drop replacement-char ] if ;
64
65 M: utf16le decode-char
66     drop dup stream-read1 dup [ begin-utf16le ] when nip ;
67
68 ! UTF-16LE/BE encoding
69
70 : encode-first ( char -- byte1 byte2 )
71     -10 shift
72     [ -8 shift 0b11011000 bitor ] [ 0xFF bitand ] bi ; inline
73
74 : encode-second ( char -- byte3 byte4 )
75     0b1111111111 bitand
76     [ -8 shift 0b11011100 bitor ] [ 0b11111111 bitand ] bi ; inline
77
78 : stream-write2 ( char1 char2 stream -- )
79     [ B{ } 2sequence ] dip stream-write ; inline
80     ! [ stream-write1 ] curry bi@ ; inline
81
82 : char>utf16be ( char stream -- )
83     over 0xFFFF > [
84         [ 0x10000 - ] dip
85         [ [ encode-first ] dip stream-write2 ]
86         [ [ encode-second ] dip stream-write2 ] 2bi
87     ] [ [ h>b/b swap ] dip stream-write2 ] if ; inline
88
89 M: utf16be encode-char ( char stream encoding -- )
90     drop char>utf16be ;
91
92 : char>utf16le ( char stream -- )
93     over 0xFFFF > [
94         [ 0x10000 - ] dip
95         [ [ encode-first swap ] dip stream-write2 ]
96         [ [ encode-second swap ] dip stream-write2 ] 2bi
97     ] [ [ h>b/b ] dip stream-write2 ] if ; inline
98
99 M: utf16le encode-char ( char stream encoding -- )
100     drop char>utf16le ;
101
102 : ascii-char>utf16-byte-array ( off n byte-array string -- )
103     [ over ] dip string-nth-fast -rot
104     [ 2 fixnum*fast rot fixnum+fast ] dip
105     set-nth-unsafe ; inline
106
107 : ascii-string>utf16-byte-array ( off string -- byte-array )
108     [ length >fixnum [ iota ] [ 2 fixnum*fast <byte-array> ] bi ] keep
109     [ [ ascii-char>utf16-byte-array ] 2curry with each ] 2keep drop ; inline
110
111 : ascii-string>utf16le ( string stream -- )
112     [ 0 swap ascii-string>utf16-byte-array ] dip stream-write ; inline
113 : ascii-string>utf16be ( string stream -- )
114     [ 1 swap ascii-string>utf16-byte-array ] dip stream-write ; inline
115
116 M: utf16le encode-string
117     drop
118     over aux>>
119     [ [ char>utf16le ] curry each ]
120     [ ascii-string>utf16le ] if ;
121
122 M: utf16be encode-string
123     drop
124     over aux>>
125     [ [ char>utf16be ] curry each ]
126     [ ascii-string>utf16be ] if ;
127
128 M: utf16le guess-encoded-length drop 2 * ; inline
129 M: utf16le guess-decoded-length drop 2 /i ; inline
130
131 M: utf16be guess-encoded-length drop 2 * ; inline
132 M: utf16be guess-decoded-length drop 2 /i ; inline
133
134 ! UTF-16
135
136 CONSTANT: bom-le B{ 0xff 0xfe }
137
138 CONSTANT: bom-be B{ 0xfe 0xff }
139
140 : bom>le/be ( bom -- le/be )
141     dup bom-le sequence= [ drop utf16le ] [
142         bom-be sequence= [ utf16be ] [ missing-bom ] if
143     ] if ;
144
145 M: utf16 <decoder> ( stream utf16 -- decoder )
146     drop 2 over stream-read bom>le/be <decoder> ;
147
148 M: utf16 <encoder> ( stream utf16 -- encoder )
149     drop bom-le over stream-write utf16le <encoder> ;
150
151 PRIVATE>