Sha256: 406e8649948f2a1926c35bf22745dfa88f66bc2f1b7fdb951799e34341fdc07c

Contents?: true

Size: 930 Bytes

Versions: 4

Compression:

Stored size: 930 Bytes

Contents

# The task dispatcher is responsible for taking incoming messages
# from the socket channel and dispatching them to the proper handler.
class Dispatcher

  def dispatch(channel, message)
    callback_id, class_name, method_name, *args = message

    # TODO: Think about security?
    if class_name[/Tasks$/] && !class_name['::']
      # TODO: Improve error on a class we don't have
      require(class_name.underscore)

      # Get the class
      klass = Object.send(:const_get, class_name)

      # Init and send the method
      begin
        result = klass.new(channel, self).send(method_name, *args)
        error = nil
      rescue => e
        # TODO: Log these errors better
        puts e.inspect
        puts e.backtrace
        result = nil
        error = e
      end

      if callback_id
        # Callback with result
        channel.send_message('response', callback_id, result, error)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
volt-0.8.8 lib/volt/tasks/dispatcher.rb
volt-0.8.7 lib/volt/tasks/dispatcher.rb
volt-0.8.6 lib/volt/tasks/dispatcher.rb
volt-0.8.5 lib/volt/tasks/dispatcher.rb