Class: BinData::DSLMixin::DSLFieldParser
- Inherits:
-
Object
- Object
- BinData::DSLMixin::DSLFieldParser
- Defined in:
- lib/bindata/dsl.rb
Overview
Extracts the details from a field declaration.
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#params ⇒ Object
readonly
Returns the value of attribute params.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(hints, symbol, *args, &block) ⇒ DSLFieldParser
constructor
A new instance of DSLFieldParser.
- #name_from_field_declaration(args) ⇒ Object
- #params_from_args(args) ⇒ Object
- #params_from_block(&block) ⇒ Object
- #params_from_field_declaration(args, &block) ⇒ Object
Constructor Details
#initialize(hints, symbol, *args, &block) ⇒ DSLFieldParser
Returns a new instance of DSLFieldParser.
343 344 345 346 347 348 |
# File 'lib/bindata/dsl.rb', line 343 def initialize(hints, symbol, *args, &block) @hints = hints @type = symbol @name = name_from_field_declaration(args) @params = params_from_field_declaration(args, &block) end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
350 351 352 |
# File 'lib/bindata/dsl.rb', line 350 def name @name end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
350 351 352 |
# File 'lib/bindata/dsl.rb', line 350 def params @params end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
350 351 352 |
# File 'lib/bindata/dsl.rb', line 350 def type @type end |
Instance Method Details
#name_from_field_declaration(args) ⇒ Object
352 353 354 355 356 357 358 359 |
# File 'lib/bindata/dsl.rb', line 352 def name_from_field_declaration(args) name, _ = args if name == "" || name.is_a?(Hash) nil else name end end |
#params_from_args(args) ⇒ Object
371 372 373 374 375 376 |
# File 'lib/bindata/dsl.rb', line 371 def params_from_args(args) name, params = args params = name if name.is_a?(Hash) params || {} end |
#params_from_block(&block) ⇒ Object
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
# File 'lib/bindata/dsl.rb', line 378 def params_from_block(&block) bindata_classes = { array: BinData::Array, buffer: BinData::Buffer, choice: BinData::Choice, delayed_io: BinData::DelayedIO, skip: BinData::Skip, struct: BinData::Struct, } if bindata_classes.include?(@type) parser = DSLParser.new(bindata_classes[@type], @type) parser.endian(@hints[:endian]) parser.search_prefix(*@hints[:search_prefix]) parser.instance_eval(&block) parser.dsl_params else {} end end |
#params_from_field_declaration(args, &block) ⇒ Object
361 362 363 364 365 366 367 368 369 |
# File 'lib/bindata/dsl.rb', line 361 def params_from_field_declaration(args, &block) params = params_from_args(args) if block_given? params.merge(params_from_block(&block)) else params end end |