Giter Club home page Giter Club logo

Comments (4)

inexorabletash avatar inexorabletash commented on August 17, 2024

That's a discussion better suited to the Encoding standard:

https://encoding.spec.whatwg.org/
https://github.com/whatwg/encoding/issues

Other than the non-standard encoding capability (which is here primarily to validate the spec) I don't want to introduce anything not covered in Encoding.

(And the Encoding standard is trying to be as limited as possible - unless existing Web content demands it we are extremely unlikely to support any new encodings.)

from text-encoding.

tracker1 avatar tracker1 commented on August 17, 2024

@inexorabletash I understand... Would you be willing to clarify the questions regarding the structure of encoding-indexes so that I'd be able to add it in my own fork?

from text-encoding.

inexorabletash avatar inexorabletash commented on August 17, 2024

The existing indexes are defined in the Encoding Standard, https://encoding.spec.whatwg.org/#indexes

Basically the index for an encoding is a resource to make the decoder/encoder handler something other than a huge switch statement.

The decoder handler just takes the input byte (or bytes) does math to get an index pointer, and looks up index[pointer]. For CP437 you could just have 256 entries (the 95 printable ASCII ones would have value == index) or you could be more clever and do math to avoid those 95 values. I'd keep it simple, honestly.

The encode handler does the reverse - looks up the Unicode code point in the table (inefficiently!), and if found it returns the corresponding index, then does math to convert that to a byte. Again, if you go with a simple 256 entry table then it's just the index itself as the output byte.

Hope that helps!

from text-encoding.

tracker1 avatar tracker1 commented on August 17, 2024

@inexorabletash thanks, will look into this from here...

from text-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.