Code Monkey home page Code Monkey logo

Comments (4)

GreyCat avatar GreyCat commented on May 18, 2024

Um, ok, I'm on that. The main problem here is that [0x11, 0x22, 0x33] you're proposing is not a byte array (as in byte[] in Java), but array of integers, that will be ArrayList<Integer> in Java. We need to somehow convert one into another.

from kaitai_struct.

GreyCat avatar GreyCat commented on May 18, 2024

Well, it's more or less done, at least for Ruby that you were most interested in: see http://kaitai.io/ci

The syntax is just as you've requested, but note that there's a crazy catch here: argument must be "byte array", not just any "array of integers". And here's the subtle difference:

  • [0x11, 0x22, 0x33] is treated as byte array now
  • [0x11, 0x222, 0x33] would be treated as array of integers, because of 0x222, which does not fit 1 byte and thus is represented by "generic integer" (i.e. CalcIntType) and not 1-byte type (Int1Type)
  • [0x11, 0x222 - 0x200, 0x33] would be treated as array of integers too, despite 0x222 - 0x200 being able to fit in one byte, calculations would keep types promoted to CalcIntType.

from kaitai_struct.

mnakamura1337 avatar mnakamura1337 commented on May 18, 2024

Thanks, testing now.
Works like a charm!
I believe that you'd want to close this issue yourself, after adding support to all other languages?

from kaitai_struct.

GreyCat avatar GreyCat commented on May 18, 2024

Yeah. It's fully done now - http://kaitai.io/ci - except for 2 WIP languages, C# and Swift.

from kaitai_struct.

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.