lib/midori/sandbox.rb in em-midori-0.1.7.1 vs lib/midori/sandbox.rb in em-midori-0.1.8
- old
+ new
@@ -7,32 +7,32 @@
@handlers[Midori::Exception::InternalError] = proc {|e| Midori::Response.new(500, {}, "#{e.inspect} #{e.backtrace}")}
@handlers[Midori::Exception::NotFound] = proc {|_e| Midori::Response.new(404, {}, '404 Not Found')}
end
# Add a rule to Sandbox
- # @param [ Class ] class_name the class to capture
- # @param [ Proc ] block what to do when captured
- # @return [ nil ] nil
+ # @param [Class] class_name the class to capture
+ # @param [Proc] block what to do when captured
+ # @return [nil] nil
def add_rule(class_name, block)
@handlers[class_name] = block
nil
end
# Detect what to run with given error
- # @param [ StandardError ] error the error captured
- # @return [ nil ] nil
+ # @param [StandardError] error the error captured
+ # @return [nil] nil
def capture(error)
if @handlers[error.class].nil?
@handlers[Midori::Exception::InternalError].call(error)
else
@handlers[error.class].call(error)
end
end
# Run sandbox inside given clean room
- # @param [ Midori::CleanRoom ] clean_room Clean room to run
- # @param [ Proc ] function the block to run
- # @return [ nil ] nil
+ # @param [Midori::CleanRoom] clean_room Clean room to run
+ # @param [Proc] function the block to run
+ # @return [nil] nil
def run(clean_room, function, *args)
begin
function.to_lambda(clean_room).call(*args)
rescue StandardError => e
capture(e)