Revision | 3.0 |
Authors | Misha Wolf, Ken Whistler, Charles Wicksteed, Mark Davis (mark.davis@us.ibm.com), and Asmus Freytag (asmus@unicode.org) |
Date | 1999-11-12 |
This Version | http://www.unicode.org/unicode/reports/tr6/tr6-3 |
Previous Version | http://www.unicode.org/unicode/reports/tr6/tr6-2 |
Latest Version | http://www.unicode.org/unicode/reports/tr6 |
The content of all technical reports must be understood in the context of the appropriate version of the Unicode Standard. References in this technical report to sections of the Unicode Standard refer to the Unicode Standard, Version 3.0. See http://www.unicode.org/unicode/standard/versions for more information.
The compression scheme is mainly intended for use with short to medium length Unicode strings. The resulting compressed format is intended for storage or transmission in bandwidth limited environments. It can be used stand-alone or as input to traditional general purpose data compression schemes. It is not intended as processing format or as general purpose interchange format.
Strings in languages using small alphabets contain runs of characters that are coded close together in Unicode. These runs are typically interrupted only by punctuation characters, which are themselves coded in proximity to each other in Unicode (usually in the Basic Latin range).
The basic concept of the compression scheme is to set up a so-called dynamically positioned window, which is region of 128 consecutive characters in Unicode. This window can be positioned to contain the alphabetic characters in question. Each character that fits this window is represented as a byte between 0x80 and 0xFF in the compressed data stream. A byte from 0x20 to 0x7F (as well as CR, LF, and TAB) always means a character from the Basic Latin range (or a control character).
Runs of characters from a selected window which are intermixed only with characters from the range U+0020--U+007F can be compressed without requiring tag bytes beyond the initial setup of the window.
Tag bytes are bytes in the range 0x00 to 0x1F (except CR, LF, TAB) that are used as commands to select, define and position windows, or to escape to an uncompressed stream of Unicode text. Strings from languages using large alphabets use this uncompressed mode.
There are scripts for which the characters ordinarily show larger fluctuation in code values than can be contained in a dynamically positioned window. For these areas of the Unicode code space, windows cannot be set. Instead, an escape to uncompressed Unicode can be used.
It is possible to write a simple encoder for this scheme which uses a subset of the allowed tags. For example it could use only SCU, SD0, UQU and UC0 and still achieve respectable compression with typical text.
Conformant Encoders must not emit illegal or reserved combinations of bytes. Encoders are not required to utilize (or be able to utilize) all the features of this compression scheme. Encoders must be able to encode strings containing any valid sequence of Unicode characters. The action of a conformant encoder on malformed input is undefined.
Encoders and decoders must always start in the initial state defined below.
The compression scheme is capable of compressing strings containing any Unicode character. Some control character and private use character values overlap with the tag byte values. They can still be encoded, though at a cost of an additional byte per character.
There are two compression modes:
In single byte mode, bytes between 00 and 1F are used as tags. The tags used in single mode are shown in Table X-1, their corresponding byte values are given in Table X-6.
Name | Meaning | Arguments | Function |
---|---|---|---|
SQU | Quote Unicode | hbyte, lbyte | Quote Unicode character = (hbyte << 8) + lbyte. Used for isolated characters that do not fit in any of the current windows. |
SCU | Change to Unicode | Change to Unicode mode (locking shift). Used for runs of characters not part of a small alphabet |
|
SQn | Quote from Window n . | byte | Non-locking shift to window n. If the byte is in the range 00 to 7F, use static window n. If the byte is in the range 80 to FF, use dynamically positioned window n. |
SCn | Change to Window n | Change to window n (locking shift). Use static window 0 for all following bytes that are in the range 20 to 7F, or CR, LF, HT. Use dynamically positioned window n for all following bytes that are in the range 80 to FF. |
|
SDn | Define Window n | byte | Define window position n as OffsetTable[byte], and change to window n. |
SDX | Define Extended | hbyte, lbyte | Define window n in the expansion space and change to it. n = top 3 bits of hbyte. Window base = 10000 + (80 * remaining 13 bits of hbyte and lbyte). |
Name | Meaning | Arguments | Function |
---|---|---|---|
UQU | Quote Unicode | hbyte, lbyte | Quote a Unicode character. Used to quote tag bytes. |
UCn | Change to Window n | Change to single mode, window n (locking shift). Use static window 0 for all following bytes that are in the range 20 to 7F, or CR, LF, HT. Use dynamically positioned window n for all following bytes that are in the range 80 to FF. |
|
UDn | Define Window n | byte | Define window position n as OffsetTable[byte], and change to window n. |
UDX | Define Extended | hbyte, lbyte | Define window n in the expansion space and change to it. n = top 3 bits of hbyte Window base = 10000 + (80 * remaining 13 bits of hbyte and lbyte) |
Unicode character = DynamicOffset[n] + (xx - 80)
The values for the starting offsets of dynamically positioned windows can change. Their initial values are specified in Table X-5. Bytes in the range 20 to 7F always represent the corresponding character from the Basic Latin block (U+0020 to U+007F). In addition, LF, CR and HT represent U+000A, U+000D and U+0009 respectively.
An SDn tag (or UDn tag) followed by an index byte repositions window n and makes it the active window. In order to keep the encoding compact, the positions of the dynamically positioned windows are not set directly but defined via a lookup table. Each window definition tag in the byte stream is followed by one byte that is used as an index into this table. The set of legal positions is defined by the Window Offset Table given in Table 6-3.
The first part of the Window Offset Table defines half blocks covering the alphabetic scripts, symbols and the private use area. The individual entries from F9 onwards cover the scripts that cross a half-block boundary, plus one useful segment of European characters. Some collections of miscellaneous symbols and punctuation would also cross half-block boundaries, but these characters are likely to occur rarely, or in isolation. Therefore no special offsets for them are included here.
Byte x | OffsetTable[x] | Comment |
---|---|---|
00 | reserved | reserved for internal use |
01..67 |
x*80 |
half-blocks from U+0080 to U+3380 |
68..A7 | x*80+AC00 | half-blocks from U+E000 to U+FF80 |
A8..F8 | reserved | reserved for future use |
F9 | 00C0 | Latin1 letters + half of Extended-A |
FA | 0250 | IPA Extensions |
FB | 0370 | Greek |
FC | 0530 | Armenian |
FD | 3040 | Hiragana |
FE | 30A0 | Katakana |
FF | FF60 |
Halfwidth Katakana |
offset = 10000 + (80 * ((hbyte & 1F) * 100 + lbyte))
where & is the bitwise AND operator and all values are in hexadecimal notation. After an extended Window is defined each subsequent byte in the range 80 to FF represents a surrogate pair.
The following diagram shows how the bits in the two bytes following the SDX (or UDX) and a subsequent data byte map onto the bits in the resulting surrogate pair.
hbyte lbyte data nnnwwwww zzzzzyyy 1xxxxxxx
high-surrogate low-surrogate 110110wwwwwzzzzz 110111yyyxxxxxxx
Unicode character = StartingOffset[n] + xx
The positions of static windows are as given in Table 6-4 and cannot be changed. They cover character ranges which contain characters that tend to occur in isolation and therefore are suitable for access via non-locking shifts. Static window 0 is also used when bytes following an SCn or UCn are in the range 80 to FF.
Window | Starting Offset | Major Area Covered |
---|---|---|
0 | 0000 | (for quoting of tags used in single-byte mode) |
1 | 0080 | Latin-1 Supplement |
2 | 0100 | Latin Extended-A |
3 | 0300 | Combining Diacritical Marks |
4 | 2000 | General Punctuation |
5 | 2080 | Currency Symbols |
6 | 2100 | Letterlike Symbols and Number Forms |
7 | 3000 | CJK Symbols & Punctuation |
As in the general case of SCn, a following byte value in the range 80 to FF indicates use of dynamically positioned window 0.
Default positions are assigned based on the following criteria:
The choice of offsets is intended to enable handling most languages by requiring at most the definition of one extra window, at the cost of a single byte. The default settings of the dynamically positioned windows are shown in Table 6-5. The static window positions are fixed and are shown above in Table 6-4.
Window | Starting Offset | Major Area Covered |
---|---|---|
0 | 0080 | Latin-1 Supplement |
1 | 00C0 | (combined partial Latin-1 Supplement/Latin Extended-A) |
2 | 0400 | Cyrillic |
3 | 0600 | Arabic |
4 | 0900 | Devanagari |
5 | 3040 | Hiragana |
6 | 30A0 | Katakana |
7 | FF00 | Fullwidth ASCII |
Name | Value | Comment |
---|---|---|
pass | 00 | NUL |
SQ0 - SQ7 | 01 - 08 | |
pass | 09 | HT |
pass | 0A | LF |
SDX | 0B | |
reserved | 0C | reserved for future use |
pass | 0D | CR |
SQU | 0E | |
SCU | 0F | |
SC0 - SC7 | 10 - 17 | |
SD0 - SD7 | 18 - 1F | |
pass | 20 - 7F |
The tag byte values used in Unicode mode are shown in Table 6-7. In this table MSB means that the byte value is used as the most significant byte of a two byte sequence representing a Unicode value. There are no restrictions on the values of the byte immediately following an MSB.
Name | Value | Comment |
---|---|---|
MSB | 00 - DF | Start of a Unicode character |
UC0 - UC7 | E0 - E7 | |
UD0 - UD7 | E8 - EF | |
UQU | F0 | |
UDX | F1 | |
reserved | F2 | reserved for future use |
MSB | F3 - FF | Start of a Unicode character |
Unicode values (9 characters):
00D6 006C 0020 0066 006C 0069 0065 00DF 0074
Compressed (9 bytes):
D6 6C 20 66 6C 69 65 DF 74
Unicode values (6 characters):
041C 043E 0441 043A 0432 0430
Compressed (7 bytes):
12 9C BE C1 BA B2 B0
Unicode values (116 characters)
3000 266a 30ea 30f3 30b4 53ef 611b
3044 3084 53ef 611b 3044 3084 30ea 30f3
30b4 3002 534a 4e16 7d00 3082 524d 306b
6d41 884c 3057 305f 300c 30ea 30f3 30b4
306e 6b4c 300d 304c 3074 3063 305f 308a
3059 308b 304b 3082 3057 308c 306a 3044
3002 7c73 30a2 30c3 30d7 30eb 30b3 30f3
30d4 30e5 30fc 30bf 793e 306e 30d1 30bd
30b3 30f3 300c 30de 30c3 30af ff08 30de
30c3 30ad 30f3 30c8 30c3 30b7 30e5 ff09
300d 3092 3001 3053 3088 306a 304f 611b
3059 308b 4eba 305f 3061 306e 3053 3068
3060 3002 300c 30a2 30c3 30d7 30eb 4fe1
8005 300d 306a 3093 3066 8a00 3044 65b9
307e 3067 3042 308b 3002
Compressed (178 bytes)
08 00 1b 4c ea 16 ca d3 94 0f 53 ef 61 1b e5
84
c4 0f 53 ef 61 1b e5 84 c4 16 ca d3 94 08 02 0f
53 4a 4e 16 7d 00 30 82 52 4d 30 6b 6d 41 88 4c
e5 97 9f 08 0c 16 ca d3 94 15 ae 0e 6b 4c 08 0d
8c b4 a3 9f ca 99 cb 8b c2 97 cc aa 84 08 02 0e
7c 73 e2 16 a3 b7 cb 93 d3 b4 c5 dc 9f 0e 79 3e
06 ae b1 9d 93 d3 08 0c be a3 8f 08 88 be a3 8d
d3 a8 a3 97 c5 17 89 08 0d 15 d2 08 01 93 c8 aa
8f 0e 61 1b 99 cb 0e 4e ba 9f a1 ae 93 a8 a0 08
02 08 0c e2 16 a3 b7 cb 0f 4f e1 80 05 ec 60 8d
ea 06 d3 e6 0f 8a 00 30 44 65 b9 e4 fe e7 c2 06
cb 82
Unicode values (20 characters)
0041 00df 0401 015f 00df 01df f000 dbff dfff 000d 000a 0041 00df 0401 015f 00df 01df f000 dbff dfff
Compressed (35 bytes)
41 df 12 81 03 5f 10 df 1b 03 df 1c 88 80 0b bf ff ff 0d 0a 41 10 df 12 81 03 5f 10 df 13 df 14 80 15 ff
1. Avoiding (most) control byte values
After encoding, replace any control byte by DLE (0x10) followed by the same byte + 0x40. NUL becomes DLE followed by '@' (0x40). DLE is replaced by DLE followed by U+0050. Before decoding, perform the opposite transformation.
2. Handling runs of the same character
Before encoding, replace any run of 4 or more Unicode characters by '@'
(U+0040), followed by the character to repeat, followed by a 16-bit count
(packed into one Unicode character). The sequence ------------------------
becomes '@' '-' '!'. The @ sign itself is replaced by @@U+0001. After
decoding, perform the reverse operation.
2. The 'All Features' example has been corrected.
3. A new Japanese example has been added.
4. Changed table 6-3 from
68..A7 | x*80+AE00 | half-blocks from U+E000 to U+FF80 |
to
68..A7 | x*80+AC00 | half-blocks from U+E000 to U+FF80 |
to match the correct value used in the sample code.
5. Corrected 1FFF to 1F in the offset calculation equation for defining extended windows.
6. Corrected a few minor typographical errors (6/5/99).
7. Corrected dynamic offset in for Window 1 in sample code to 0x00C0 to match table X-5 of specification (updated internal version number of SCSU.java to 005 and commented changed source line).
8. Changed methods in the expander from private to protected to support a minor update of the driver program. (Updated internal version number to 005 in Expand.java and added a comment).
9. Minor improvements to the driver program. (Updated internal version number to 005 in CompressMain.java)
10. Editorial reformatting. (11/12/99)
Copyright ? 1996-1999 Unicode, Inc. All Rights Reserved. The Unicode Consortium makes no expressed or implied warranty of any kind, and assumes no liability for errors or omissions. No liability is assumed for incidental and consequential damages in connection with or arising out of the use of the information or programs contained or accompanying this technical report.
Unicode and the Unicode logo are trademarks of Unicode, Inc., and are registered in some jurisdictions.