Class: RgGen::RegisterMap::RegisterFactory

Inherits:
ComponentFactory show all
Defined in:
lib/rggen/core_components/register_map/register_factory.rb

Instance Attribute Summary

Attributes inherited from InputBase::ComponentFactory

#loaders

Attributes inherited from Base::ComponentFactory

#child_factory, #item_factories, #target_component

Instance Method Summary collapse

Methods inherited from ComponentFactory

#create_component

Methods inherited from InputBase::ComponentFactory

#create

Methods inherited from Base::ComponentFactory

#create, #initialize, #root_factory

Constructor Details

This class inherits a constructor from RgGen::Base::ComponentFactory

Instance Method Details

#create_active_items(register, configuration, rows) ⇒ Object



4
5
6
7
8
# File 'lib/rggen/core_components/register_map/register_factory.rb', line 4

def create_active_items(register, configuration, rows)
  active_item_factories.each_value.with_index do |factory, index|
    create_item(factory, register, configuration, rows.first[index])
  end
end

#create_children(register, configuration, rows) ⇒ Object



10
11
12
13
14
15
# File 'lib/rggen/core_components/register_map/register_factory.rb', line 10

def create_children(register, configuration, rows)
  drop_size = active_item_factories.size
  rows.each do |row|
    create_child(register, configuration, row.drop(drop_size))
  end
end