Giter Club home page Giter Club logo

Comments (10)

marcusklaas avatar marcusklaas commented on September 25, 2024 2

Sorry for my vague description. I meant some kind of adapter between a stream of bytes in for examples Windows-1252 and a stream of bytes in utf-8. The unicode stream would be very nice, but there's a lot of code that already works with std::io::Read.

from rust-encoding.

BurntSushi avatar BurntSushi commented on September 25, 2024 1

I have to write these impls for a project of mine and would also like to hear whether @lifthrasiir thinks they might be in scope for this crate.

I've also started a conversation on the encoding_rs crate: hsivonen/encoding_rs#8

from rust-encoding.

SimonSapin avatar SimonSapin commented on September 25, 2024

It sounds like you want something that implements not std::io::Read (which is a stream of bytes) but another trait for a Unicode stream. But as discussed in this RFC: rust-lang/rfcs#57, doing it for reading is tricky. The bytes one takes a &mut [u8] argument, writes to it, and returns the number of written bytes. But doing that with &mut str might require some zeroing, or something. The contents of str must be well-formed UTF-8.

I’m experimenting with things that could help here. I’ll post again where there’s something more fully formed to show.

from rust-encoding.

SimonSapin avatar SimonSapin commented on September 25, 2024

That sounds like it could be built on top of "raw" decoders.

from rust-encoding.

SimonSapin avatar SimonSapin commented on September 25, 2024

… probably with an impl of encoding::types::StringWriter for &mut [u8], to be used with the argument to Read::read.

from rust-encoding.

bbigras avatar bbigras commented on September 25, 2024

Any progress?
Anything changed since last time that would make it easier?

from rust-encoding.

mitsuhiko avatar mitsuhiko commented on September 25, 2024

I just came across the same myself. Would this be something that is in the scope of the crate?

from rust-encoding.

BurntSushi avatar BurntSushi commented on September 25, 2024

To cross pollinate a bit here from the encoding_rs crate... @SimonSapin and I worked on our own versions of Read trait implementations (except @SimonSapin did quite a bit more!). @SimonSapin's work is in this PR: hsivonen/encoding_rs#9 My work is here: https://github.com/BurntSushi/ripgrep/blob/75f1855a91ca00b5d0e62740595b1b91bc5142a2/src/decoder.rs

The big idea here is that implementing these traits is quite tricky, and neither of our implementations is fully correct. Mine gets most of the way there, but doesn't support single-byte-reads, which means the bytes adapter method doesn't work at all. It's possible to make this work, but requires a bit more book-keeping.

from rust-encoding.

mitsuhiko avatar mitsuhiko commented on September 25, 2024

I wonder if the traits are misdesigned for non utf-8 usage. It's weird that they work with both strings and bytes.

from rust-encoding.

BurntSushi avatar BurntSushi commented on September 25, 2024

In my case, I very much wanted to ever avoid materializing a &str and the costs associated with it. So operating on &[u8] is perfect.

from rust-encoding.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.