Git Product home page Git Product logo

Comments (3)

aidansteele avatar aidansteele commented on July 17, 2024

I banged away at my keyboard and eventually ended up with this:

module BinData
  class Base
    def real_abs_offset
      if @params[:adjust_offset].nil?
        parent.real_abs_offset + parent.offset_of(self)
      else
        @lazy.lazy_eval @params[:adjust_offset]
      end
    end
  end
end

I can't really explain how/why it works (and I feel like a monkey at a typewriter) or it's terribly wrong, but it's allowed me to continue on with my current task. I thought it would be worth posting here to see your thoughts on it.

from bindata.

dmendel avatar dmendel commented on July 17, 2024

:adjust_offset is an experimental feature (which is why it is undocumented see #52). I'm still working out how to achieve seeking fuctionality in a structured way. :adjust_offset, as it currently stands, is analogous to using goto to achieve looping.

:adjust_offset will eventually be replaced with a better solution. Your above monkey patch looks like a good fix to your problem.

Do be aware that :adjust_offset is only in effect when reading. It will not automatically do any seeking when writing.

from bindata.

dmendel avatar dmendel commented on July 17, 2024

BinData::Skip now has the :to_abs_offset option. This is the official way to perform seeking in a stream. Skip will ensure that #abs_offset is calculated correctly.

:adjust_offset remains for backwards compatibility.

Your example can be written as:

class KeychainFile < BinData::Record
  endian :big
  string :magic, length: 4, asserted_value: 'kych'
  string :padding, read_length: 8
  uint32 :schema_offset # in this example, the value is 20
  skip   to_abs_offset: lambda { schema_offset + 4 }
  uint32 :table_count
end

from bindata.

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.