Sha256: fff16147dc84ad8688f4c2ec42d246c47028c2d00018770bb7a370015ce7cae8

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

require "#{File.dirname(__FILE__)}/../lib/stages"

include Stages

#count the occurance of each letter in these song lyrics
def sing
  { :do => 'doe a deer a female deer',
    :re => 'ray a drop of golden sun',
    :mi => 'me a name I call myself',
    :fa => 'far a long long way to run',
    :so => 'a needle pulling thread',
    :la => 'a note to follow so',
    :ti => 'a drink with jam and bread'}
end

def setup_pipeline
  generator = EachElement.new sing.keys
  loop = Restrict.new
  get_lyric = HashLookup.new sing
  each_character = EachInput.new{ |x| x.chars }
  whitespace = Select.new{ |x| x != ' '}
  pool = ResumeCount.new
  subtotals = Map.new { |x| x.values.first }
  iterator = EachInput.new
  aggregator = SuperAggregator.new
  
  generator | loop | get_lyric | each_character | whitespace | pool | subtotals | iterator  |  aggregator
end

class SuperAggregator < Stage
  def initialize
    @accumulator = Hash.new{ |h,k| h[k] = 0}
    super()
  end
  
  def handle_value(value)
    @accumulator[value[0]] += value[1]
    while v = input
      @accumulator[v[0]] += v[1]
    end
    output @accumulator
  end
end

puts setup_pipeline.run.inspect



Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stages-0.1.1 examples/sing.rb
stages-0.1.0 examples/sing.rb