Sha256: 797433fa66ea472e443880e3dcca2f91eb7e73fa3995f05acff9950e4b12f613

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

module PyCall
  module Eval
    Py_eval_input = 258

    def self.eval(str, filename: "pycall")
      globals_ptr = main_dict.__pyobj__
      locals_ptr = main_dict.__pyobj__
      defer_sigint do
        py_code_ptr = LibPython.Py_CompileString(str, filename, Py_eval_input)
        raise PyError.fetch if py_code_ptr.null?
        LibPython.PyEval_EvalCode(py_code_ptr, globals_ptr, locals_ptr)
      end
    end

    class << self
      private

      def main_dict
        @main_dict ||= PyCall.import_module("__main__") do |main_module|
          PyCall.incref(LibPython.PyModule_GetDict(main_module.__pyobj__)).to_ruby
        end
      end

      def defer_sigint
        # TODO: should be implemented
        yield
      end
    end
  end

  def self.import_module(name)
    name = name.to_s if name.kind_of? Symbol
    raise TypeError, "name must be a String" unless name.kind_of? String
    value = LibPython.PyImport_ImportModule(name)
    raise PyError.fetch if value.null?
    value = value.to_ruby
    return value unless block_given?
    begin
      yield value
    ensure
      PyCall.decref(value.__pyobj__)
    end
  end

  def self.eval(str, conversion: true)
    result = Eval.eval(str)
    conversion ? result.to_ruby : result
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pycall-0.1.0.alpha.20170403 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170329 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170317 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170311 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170309 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170308 lib/pycall/eval.rb