Sha256: 90c087dc62d4145afd6890fef40eb50d1e7816e867e37f9d3ac16d0b7110a83e

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

module PyCall
  class PyError < StandardError
    def self.fetch
      ptrs = FFI::MemoryPointer.new(:pointer, 3)
      ptype      = ptrs + 0 * ptrs.type_size
      pvalue     = ptrs + 1 * ptrs.type_size
      ptraceback = ptrs + 2 * ptrs.type_size
      LibPython.PyErr_Fetch(ptype, pvalue, ptraceback)
      LibPython.PyErr_NormalizeException(ptype, pvalue, ptraceback)
      type = Conversions.to_ruby(ptype.read(:pointer))
      value = Conversions.to_ruby(pvalue.read(:pointer))
      traceback = Conversions.to_ruby(ptraceback.read(:pointer))
      new(type, value, traceback)
    end

    def initialize(type, value, traceback)
      @type = type
      @value = value
      @traceback = traceback
      super("Error occurred in Python")
    end

    attr_reader :type, :value, :traceback

    def to_s
      "#{type}: #{value}".tap do |msg|
        unless traceback.nil? || traceback.null?
          if (strs = PyCall.format_traceback(traceback))
            msg << "\n"
            strs.each {|s| msg << s }
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pycall-0.1.0.alpha.20170711 lib/pycall/pyerror.rb
pycall-0.1.0.alpha.20170502 lib/pycall/pyerror.rb
pycall-0.1.0.alpha.20170426 lib/pycall/pyerror.rb
pycall-0.1.0.alpha.20170419b lib/pycall/pyerror.rb
pycall-0.1.0.alpha.20170419a lib/pycall/pyerror.rb