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.
339 340 341 342 343 344 |
# File 'lib/bindata/dsl.rb', line 339 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.
346 347 348 |
# File 'lib/bindata/dsl.rb', line 346 def name @name end |
#params ⇒ Object (readonly)
Returns the value of attribute params.
346 347 348 |
# File 'lib/bindata/dsl.rb', line 346 def params @params end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
346 347 348 |
# File 'lib/bindata/dsl.rb', line 346 def type @type end |
Instance Method Details
#name_from_field_declaration(args) ⇒ Object
348 349 350 351 352 353 354 355 |
# File 'lib/bindata/dsl.rb', line 348 def name_from_field_declaration(args) name, _ = args if name == "" || name.is_a?(Hash) nil else name end end |
#params_from_args(args) ⇒ Object
367 368 369 370 371 372 |
# File 'lib/bindata/dsl.rb', line 367 def params_from_args(args) name, params = args params = name if name.is_a?(Hash) params || {} end |
#params_from_block(&block) ⇒ Object
374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 |
# File 'lib/bindata/dsl.rb', line 374 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
357 358 359 360 361 362 363 364 365 |
# File 'lib/bindata/dsl.rb', line 357 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 |