#windows #pages #string #codec #decode #decoding #encoding

codepage-strings

encode / decode strings for Windows code pages

3 stable releases

1.0.2 Jan 29, 2022
1.0.1 Mar 15, 2021

#151 in Internationalization (i18n)

Download history 15/week @ 2023-12-24 4/week @ 2024-02-18 54/week @ 2024-02-25 3/week @ 2024-03-03 9/week @ 2024-03-10 14/week @ 2024-03-17

80 downloads per month
Used in ebustl

MIT license

16KB
186 lines

Maintenance CI crates-io api-docs dependency status

codepage-strings: encode / decode strings for Windows code pages

Bart Massey 2021 (version 1.0.2)

This Rust crate builds on the excellent work of the encoding_rs, codepage, and oem-cp crates in an attempt to provide idiomatic encoding and decoding of strings coded according to Windows code pages.

Because Windows code pages are a legacy rathole, it is difficult to transcode strings using them. Sadly, there are still a lot of files out there that use these encodings. This crate was specifically created for use with RIFF, a file format that has code pages baked in for text internationalization.

No effort has been made to deal with Windows code pages beyond those supported by codepage and oem-cp. If the single-byte codepage you need is missing, I suggest taking a look at adding it to oem-cp, which seems to be the main Rust repository for unusual Windows code page tables. I believe that most of the single-byte code pages supported by iconv are dealt with here, but I haven't checked carefully.

Other than UTF-16LE and UTF-16BE, multibyte Windows code pages are not (for now) currently supported — in particular various Asian languages. Code page 65001 (UTF-8) is supported as an identity transformation. UTF-32LE and UTF32-Be are not supported. EBCDIC code pages and UTF-7 are not supported and are low priority, because seriously?

No particular effort has been put into performance. The interface allows std::borrow::Cow to some extent, but this is limited by the minor impedance mismatches between encoding_rs and oem-cp.

Examples

Do some string conversions on Windows code page 869 (alternate Greek).

let coding = Coding::new(869)?;
assert_eq!(
    coding.encode("αβ")?,
    vec![214, 215],
);
assert_eq!(
    coding.decode(&[214, 215])?,
    "αβ",
);
assert_eq!(
    coding.decode_lossy(&[214, 147]),
    "α\u{fffd}",
);
assert_eq!(
    coding.decode(&[214, 147]),
    Err(ConvertError::StringDecoding),
);

This crate is made available under the "MIT license". Please see the file LICENSE in this distribution for license terms.

Thanks to the cargo-readme crate for generation of this README.

Dependencies

~4MB
~131K SLoC