Sha256: 4a1f64b688ebbe63def2c3059afd4a38f509a767985af9441ffc40a0c01840b8

Contents?: true

Size: 1.26 KB

Versions: 5

Compression:

Stored size: 1.26 KB

Contents

# -*- encoding: binary -*-
module Rainbows

  class Error
    class << self

      # if we get any error, try to write something back to the client
      # assuming we haven't closed the socket, but don't get hung up
      # if the socket is already closed or broken.  We'll always ensure
      # the socket is closed at the end of this function
      def write(io, e)
        msg = Error.response(e) and io.write_nonblock(msg)
        rescue
      end

      def app(e)
        G.server.logger.error "app error: #{e.inspect}"
        G.server.logger.error e.backtrace.join("\n")
        rescue
      end

      def listen_loop(e)
        G.alive or return
        G.server.logger.error "listen loop error: #{e.inspect}."
        G.server.logger.error e.backtrace.join("\n")
        rescue
      end

      def response(e)
        case e
        when EOFError, Errno::ECONNRESET, Errno::EPIPE, Errno::EINVAL,
             Errno::EBADF, Errno::ENOTCONN
          # swallow error if client shuts down one end or disconnects
        when Unicorn::HttpParserError
          Const::ERROR_400_RESPONSE # try to tell the client they're bad
        when IOError # HttpParserError is an IOError
        else
          app(e)
          Const::ERROR_500_RESPONSE
        end
      end

    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rainbows-0.94.0 lib/rainbows/error.rb
rainbows-0.93.0 lib/rainbows/error.rb
rainbows-0.92.0 lib/rainbows/error.rb
rainbows-0.91.1 lib/rainbows/error.rb
rainbows-0.91.0 lib/rainbows/error.rb