Coder Social home page Coder Social logo

Comments (8)

nurse avatar nurse commented on May 23, 2024

Just FYI, I'm implementing similar feature (but C layer) https://github.com/nurse/msgpack-ruby/blob/94af4e565a1a849740acd11ba7623df2faa0f84c/ext/msgpack/unpacker.c#L918

from msgpack-ruby.

tagomoris avatar tagomoris commented on May 23, 2024

I found that what I really want is a method to know how many msgpack objects exist in a binary. Hmm.

from msgpack-ruby.

tagomoris avatar tagomoris commented on May 23, 2024

@nurse I updated the description above. Is it still similar to yours?

from msgpack-ruby.

nurse avatar nurse commented on May 23, 2024

Your proposal needs a cursor (or an API to really skip objects without allocating objects). Mime contains such implementation as a cursor, but yours seems to want to move the unpacker's position.

from msgpack-ruby.

frsyuki avatar frsyuki commented on May 23, 2024

Doesn't Unpacker#read_array_header or Unpacker#read_map_header work?
But anyways it sounds good idea to add methods in addition to above methods to tell:

  • type of next value
  • length of next str or bin
  • type and length of next ext

from msgpack-ruby.

frsyuki avatar frsyuki commented on May 23, 2024

Returning a class instance (immutable struct) is better than Hash in terms of performance.
I think it should be 2 methods because checking types needs only 1 byte but checking length need more bytes:

class Unpacker
  #
  # Returns type of next value.
  # This peeks 1 byte from the underlaying internal buffer.
  #
  # :nil, :string. :integer, :float, :array, :map, ...
  #
  # @return Symbol
  def peek_next_type
  end

  #
  # Returns ValueInfo of next value.
  # This peeks 1 - 5 bytes from the underlaying internal buffer.
  #
  # @return ValueInfo or its subclass
  def peek_next_value_info
  end
end

class ValueInfo
  # Returns type of the value (:string, :binary, :integer, ...)
  def type
  end

  # Returns of size of string, binary, or extention value
  def size
  end

  alias_method :length, :size

  # Returns type id of extension value
  def ext_type_id
  end

  # Returns true if type is :string or :binary
  def raw?
  end

  # Returns true if type is :integer or :float
  def number?
  end
end

These are optional (My bet is that NOT adding them until some actually need them):

class Unpacker
  #
  # Returns format of next value
  #
  # :nil, :str8, :str16, :str32, :positive_fixint, :negative_fixint, ...
  # 
  def peek_next_format
  end
end

This is how msgpack-java designs data model around types:

from msgpack-ruby.

frsyuki avatar frsyuki commented on May 23, 2024

I think it's NOT good idea to add read_next_type. Because moving cursor makes internal state of the Unpacker unusable. There're no methods to read payload only.

Adding such method as like msgpack-java does is another idea but it will need read_next_format instead of read_next_type to return MessageFormat class. Because read_next_type doesn't tell length of the payload users need to read next. It's another topic.

from msgpack-ruby.

chrisseaton avatar chrisseaton commented on May 23, 2024

Is anyone actively requesting this API today? Does someone need it and they're having to do a hack to get around it? Anything like that?

from msgpack-ruby.

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.