Class: Wukong::Processor::ToCsv

Inherits:
Serializer show all
Defined in:
lib/wukong/widget/serializers.rb

Overview

A widget for serializing inputs to CSV.

Examples:

Serializing to CSV at the end of a data flow


Wukong.dataflow(:emits_csv) do
  ... | to_csv
end

See Also:

Constant Summary

Constants inherited from Wukong::Processor

SerializerError

Instance Attribute Summary

Attributes included from Hanuman::StageInstanceMethods

#graph

Instance Method Summary collapse

Methods inherited from Serializer

#handle_error

Methods inherited from Wukong::Processor

configure, description, #finalize, #perform_action, #receive_action, #setup, #stop

Methods included from Logging

included

Methods inherited from Hanuman::Stage

#clone

Methods included from Hanuman::StageClassMethods

#builder, #label, #register, #set_builder

Methods included from Hanuman::StageInstanceMethods

#add_link, #linkable_name, #root

Instance Method Details

#process(record) {|csv| ... } ⇒ Object

Yields the input record serialized as CSV.

Parameters:

  • record (Object)

Yields:

  • (csv)

    the serialized CSV output

Yield Parameters:



165
166
167
168
169
170
171
172
173
# File 'lib/wukong/widget/serializers.rb', line 165

def process(record)
  begin
    csv = record.map(&:to_s).join(",")
  rescue => e
    # FIXME -- should we log here or what?
    return
  end
  yield csv
end