Class: BinData::Primitive
- Inherits:
-
BasePrimitive
- Object
- Base
- BasePrimitive
- BinData::Primitive
- Includes:
- DSLMixin
- Defined in:
- lib/bindata/primitive.rb,
lib/bindata/alignment.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 #=> "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 #=> 0x123456
Parameters
Primitive objects accept all the parameters that BinData::BasePrimitive do.
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
-
#debug_name_of(child) ⇒ Object
:nodoc:.
- #do_num_bytes ⇒ Object
- #do_write(io) ⇒ Object
- #initialize_instance ⇒ Object
-
#method_missing(symbol, *args, &block) ⇒ Object
:nodoc:.
-
#respond_to?(symbol, include_private = false) ⇒ Boolean
:nodoc:.
Methods included from DSLMixin
Methods inherited from BasePrimitive
#<=>, #assign, #clear, #clear?, #do_read, #do_read_with_check_value, #eql?, #hash, #initialize_shared_instance, #snapshot, turn_off_tracing, turn_on_tracing, #value
Methods inherited from Base
#==, #=~, arg_extractor, #assign, bindata_name, #clear, #clear?, #debug_name, #eval_parameter, #get_parameter, #has_parameter?, #initialize_with_warning, #inspect, #lazy_evaluator, #new, #num_bytes, #offset, #offset_of, #pretty_print, #read, read, register_subclasses, #rel_offset, #safe_respond_to?, #snapshot, #to_binary_s, #to_s, unregister_self, #write
Methods included from CheckOrAdjustOffsetMixin
#do_read_with_adjust_offset, #do_read_with_check_offset, included
Methods included from AcceptedParametersMixin
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(symbol, *args, &block) ⇒ Object
:nodoc:
84 85 86 87 88 89 90 |
# File 'lib/bindata/primitive.rb', line 84 def method_missing(symbol, *args, &block) #:nodoc: if @struct.respond_to?(symbol) @struct.__send__(symbol, *args, &block) else super end end |
Class Method Details
.bit_aligned ⇒ Object
79 80 81 |
# File 'lib/bindata/alignment.rb', line 79 def self.bit_aligned fail "'bit_aligned' is not needed for BinData::Primitives" end |
Instance Method Details
#debug_name_of(child) ⇒ Object
:nodoc:
92 93 94 |
# File 'lib/bindata/primitive.rb', line 92 def debug_name_of(child) #:nodoc: debug_name + "-internal-" end |
#do_num_bytes ⇒ Object
101 102 103 104 |
# File 'lib/bindata/primitive.rb', line 101 def do_num_bytes set(_value) @struct.do_num_bytes end |
#do_write(io) ⇒ Object
96 97 98 99 |
# File 'lib/bindata/primitive.rb', line 96 def do_write(io) set(_value) @struct.do_write(io) end |
#initialize_instance ⇒ Object
76 77 78 |
# File 'lib/bindata/primitive.rb', line 76 def initialize_instance @struct = BinData::Struct.new(get_parameter(:struct_params), self) end |
#respond_to?(symbol, include_private = false) ⇒ Boolean
:nodoc:
80 81 82 |
# File 'lib/bindata/primitive.rb', line 80 def respond_to?(symbol, include_private = false) #:nodoc: @struct.respond_to?(symbol, include_private) || super end |