Class: Wukong::Processor::FromJson

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

Overview

A widget for deserializing inputs from JSON.

Examples:

Deserializing from JSON at the beginning of a data flow


Wukong.dataflow(:consumes_json) do
  from_json | ...
end

See Also:

Constant Summary

Constants inherited from Wukong::Processor

SerializerError

Instance Method Summary collapse

Methods inherited from Serializer

#handle_error

Methods inherited from Wukong::Processor

configure, consumes, description, #expected_record_type, #expected_serialization, #finalize, #perform_action, produces, #receive_action, #setup, #stop, valid_serializer?, validate_and_set_serialization

Methods included from Logging

included

Methods included from Hanuman::StageClassMethods

#builder, #label, #register, #set_builder

Instance Method Details

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

Yields the input record deserialized from JSON.

Parameters:

Yields:

  • (obj)

    the deserialized object

Yield Parameters:

  • obj (Object)


81
82
83
84
85
86
87
88
89
90
# File 'lib/wukong/widget/serializers.rb', line 81

def process(record)
  if record.respond_to?(:from_json)
    obj = record.from_json
  else
    obj = MultiJson.load(record)
  end
  yield obj
rescue => e
  handle_error(record, e)       
end