Class: BinData::Primitive
- Inherits:
-
BasePrimitive
- Object
- Base
- BasePrimitive
- BinData::Primitive
- 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.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
- .endian(endian = nil) ⇒ Object
-
.inherited(subclass) ⇒ Object
:nodoc:.
- .method_missing(symbol, *args) ⇒ Object
- .sanitize_parameters!(params, sanitizer) ⇒ Object
Instance Method Summary collapse
- #debug_name_of(child) ⇒ Object
-
#initialize(params = {}, parent = nil) ⇒ Primitive
constructor
A new instance of Primitive.
- #method_missing(symbol, *args, &block) ⇒ Object
- #offset_of(child) ⇒ Object
Methods inherited from BasePrimitive
#clear, #clear?, #eql?, #hash, #respond_to?, #value, #value=
Methods inherited from Base
#==, accepted_parameters, #assign, #clear, #clear?, #debug_name, default_parameters, #eval_parameter, #get_parameter, #has_parameter?, #inspect, mandatory_parameters, mutually_exclusive_parameters, #num_bytes, #offset, optional_parameters, #read, read, #single_value?, #snapshot, #to_binary_s, #to_s, #write
Constructor Details
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(symbol, *args, &block) ⇒ Object
136 137 138 |
# File 'lib/bindata/primitive.rb', line 136 def method_missing(symbol, *args, &block) @struct.__send__(symbol, *args, &block) end |
Class Method Details
.endian(endian = nil) ⇒ Object
70 71 72 73 74 75 76 77 78 |
# File 'lib/bindata/primitive.rb', line 70 def endian(endian = nil) @endian ||= nil if [:little, :big].include?(endian) @endian = endian elsif endian != nil raise ArgumentError, "unknown value for endian '#{endian}'", caller(1) end @endian end |
.inherited(subclass) ⇒ Object
:nodoc:
65 66 67 68 |
# File 'lib/bindata/primitive.rb', line 65 def inherited(subclass) #:nodoc: # Register the names of all subclasses of this class. register(subclass.name, subclass) end |
.method_missing(symbol, *args) ⇒ Object
80 81 82 83 84 85 86 87 88 |
# File 'lib/bindata/primitive.rb', line 80 def method_missing(symbol, *args) name, params = args type = symbol name = name.to_s params ||= {} append_field(type, name, params) end |
.sanitize_parameters!(params, sanitizer) ⇒ Object
90 91 92 93 94 95 96 |
# File 'lib/bindata/primitive.rb', line 90 def sanitize_parameters!(params, sanitizer) struct_params = {} struct_params[:fields] = fields struct_params[:endian] = endian unless endian.nil? params[:struct_params] = struct_params end |
Instance Method Details
#debug_name_of(child) ⇒ Object
140 141 142 |
# File 'lib/bindata/primitive.rb', line 140 def debug_name_of(child) debug_name + "-internal-" end |
#offset_of(child) ⇒ Object
144 145 146 |
# File 'lib/bindata/primitive.rb', line 144 def offset_of(child) offset end |