Method: Jets::Processors::MainProcessor#run
- Defined in:
- lib/jets/processors/main_processor.rb
#run ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/jets/processors/main_processor.rb', line 13 def run # Use the handler to deduce app code to run. # Example handlers: handlers/controllers/posts.create, handlers/jobs/sleep.perform # # deducer = Jets::Processors::Deducer.new("handlers/controllers/posts.create") # deducer = Jets::Processors::Deducer.new(handler) begin # Examples: # deducer.code => PostsController.process(event, context, "show") # deducer.path => app/controllers/posts_controller.rb # # deducer.code => HardJob.process(event, context, "dig") # deducer.path => app/jobs/hard_job.rb # # deducer.code => HelloFunction.process(event, context, "world") # deducer.path => app/functions/hello.rb deducer.load_class # result = PostsController.process(event, context, "create") result = instance_eval(deducer.code, deducer.path) result = HashWithIndifferentAccess.new(result) if result.is_a?(Hash) Jets.increase_call_count if result.is_a?(Hash) && result["headers"] result["headers"]["x-jets-call-count"] = Jets.call_count result["headers"]["x-jets-prewarm-count"] = Jets.prewarm_count end result rescue Exception => e unless ENV['TEST'] # Customize error message slightly so nodejs shim can process the # returned error message. # The "RubyError: " is a marker that the javascript shim scans for. $stderr.puts("RubyError: #{e.class}: #{e.message}") # js needs this as the first line backtrace = e.backtrace.map {|l| " #{l}" } $stderr.puts(backtrace) # No need to having error in stderr above anymore because errors are handled in memory # at ruby_server.rb but keeping around for posterity. end Jets.on_exception(e) raise(e) # raise error to ruby_server.rb to rescue and handle end end |