2018-04-26 08:55:53 +00:00
|
|
|
require_dependency 'sequencer/units/attribute'
|
|
|
|
require_dependency 'sequencer/units/attributes'
|
2017-08-14 11:56:23 +00:00
|
|
|
|
|
|
|
class Sequencer
|
2017-09-01 12:28:06 +00:00
|
|
|
class Units < SimpleDelegator
|
2017-08-14 11:56:23 +00:00
|
|
|
include ::Enumerable
|
|
|
|
|
|
|
|
# Initializes a new Sequencer::Units instance with the given Units Array.
|
|
|
|
#
|
|
|
|
# @param [*Array<String>] *units a list of Units with or without the Sequencer::Unit prefix.
|
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# Sequencer::Units.new('Example::Unit', 'Sequencer::Unit::Second::Unit')
|
|
|
|
def initialize(*units)
|
2017-09-01 12:28:06 +00:00
|
|
|
super(units)
|
2017-08-14 11:56:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Required #each implementation for ::Enumerable functionality. Constantizes
|
|
|
|
# the list of units given when initialized.
|
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# units.each do |unit|
|
|
|
|
# unit.process(sequencer)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# @return [nil]
|
|
|
|
def each
|
2017-09-01 12:28:06 +00:00
|
|
|
__getobj__.each do |unit|
|
2017-08-14 11:56:23 +00:00
|
|
|
yield constantize(unit)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Provides an Array of :uses and :provides declarations for each Unit.
|
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# units.declarations
|
|
|
|
# #=> [{uses: [:question], provides: [:answer], ...}]
|
|
|
|
#
|
|
|
|
# @return [Array<Hash{Symbol => Array<Symbol>}>] the declarations of the Units
|
|
|
|
def declarations
|
|
|
|
collect do |unit|
|
|
|
|
{
|
|
|
|
uses: unit.uses,
|
|
|
|
provides: unit.provides,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Enables the access to an Unit class via index.
|
|
|
|
#
|
|
|
|
# @param [Integer] index the index for the requested Unit class.
|
|
|
|
#
|
|
|
|
# @example
|
|
|
|
# units[1]
|
|
|
|
# #=> Sequencer::Unit::Example
|
|
|
|
#
|
|
|
|
# @return [Object] the Unit class for the requested index
|
|
|
|
def [](index)
|
2017-09-01 12:28:06 +00:00
|
|
|
constantize(__getobj__[index])
|
2017-08-14 11:56:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def constantize(unit)
|
|
|
|
Sequencer::Unit.constantize(unit)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|