Sha256: 85f4d19299bbb75c5952f346ac7500ca0808ac3ec2b1a700314736364bde398a

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

module PyCall
  module Eval
    Py_eval_input = 258

    def self.eval(str, filename: "pycall")
      globals_ptr = maindict_ptr
      locals_ptr = maindict_ptr
      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_module
        @main_module ||= PyCall.import_module("__main__")
      end

      def maindict_ptr
        @maindict_ptr ||= LibPython.PyModule_GetDict(main_module)
      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)
    return value.to_ruby unless value.null?
    raise PyError.fetch
  end

  def self.eval(str)
    Eval.eval(str).to_ruby
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pycall-0.1.0.alpha.20170302 lib/pycall/eval.rb
pycall-0.1.0.alpha.20170226 lib/pycall/eval.rb