Class: BinData::Primitive
- Inherits:
-
BasePrimitive
- Object
- Base
- BasePrimitive
- BinData::Primitive
- Includes:
- DSLMixin
- Defined in:
- lib/bindata/primitive.rb
Overview
A Primitive is a declarative way to define a new BinData data type. The data type must contain a primitive value only, i.e numbers or strings. For new data types that contain multiple values see BinData::Record.
To define a new data type, set fields as if for Record and add a #get and #set method to extract / convert the data between the fields and the #value of the object.
require 'bindata'
class PascalString < BinData::Primitive
uint8 :len, :value => lambda { data.length }
string :data, :read_length => :len
def get
self.data
end
def set(v)
self.data = v
end
end
ps = PascalString.new(:initial_value => "hello")
ps.to_binary_s #=> "\005hello"
ps.read("\003abcde")
ps.value #=> "abc"
# Unsigned 24 bit big endian integer
class Uint24be < BinData::Primitive
uint8 :byte1
uint8 :byte2
uint8 :byte3
def get
(self.byte1 << 16) | (self.byte2 << 8) | self.byte3
end
def set(v)
v = 0 if v < 0
v = 0xffffff if v > 0xffffff
self.byte1 = (v >> 16) & 0xff
self.byte2 = (v >> 8) & 0xff
self.byte3 = v & 0xff
end
end
u24 = Uint24be.new
u24.read("\x12\x34\x56")
"0x%x" % u24.value #=> 0x123456
Parameters
Primitive objects accept all the parameters that BinData::BasePrimitive do.
Constant Summary
Constants included from DSLMixin
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
-
#debug_name_of(child) ⇒ Object
:nodoc:.
-
#initialize(parameters = {}, parent = nil) ⇒ Primitive
constructor
A new instance of Primitive.
-
#method_missing(symbol, *args, &block) ⇒ Object
:nodoc:.
Methods included from DSLMixin
Methods inherited from BasePrimitive
#clear, #clear?, #eql?, #hash, #respond_to?, #value, #value=
Methods inherited from Base
#==, #assign, #clear, #clear?, #debug_name, #eval_parameter, #get_parameter, #has_parameter?, #inspect, #num_bytes, #offset, #offset_of, #pretty_print, #read, read, register, register_class, register_self, register_subclasses, #rel_offset, #snapshot, #to_binary_s, #to_s, #write
Methods included from AcceptedParametersMixin
Constructor Details
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(symbol, *args, &block) ⇒ Object
:nodoc:
82 83 84 |
# File 'lib/bindata/primitive.rb', line 82 def method_missing(symbol, *args, &block) #:nodoc: @struct.__send__(symbol, *args, &block) end |
Class Method Details
Instance Method Details
#debug_name_of(child) ⇒ Object
:nodoc:
86 87 88 |
# File 'lib/bindata/primitive.rb', line 86 def debug_name_of(child) #:nodoc: debug_name + "-internal-" end |