lib/pycall/libpython.rb in pycall-0.1.0.alpha.20170711 vs lib/pycall/libpython.rb in pycall-1.0.0

- old
+ new

@@ -1,386 +1,12 @@ -require 'ffi' -require 'pycall/libpython/pyobject_struct' -require 'pycall/libpython/pytypeobject_struct' - module PyCall module LibPython - extend FFI::Library + require 'pycall/libpython/finder' - private_class_method - - def self.find_libpython(python = nil) - debug = (ENV['DEBUG_FIND_LIBPYTHON'] == '1') - dir_sep = File::ALT_SEPARATOR || File::SEPARATOR - python ||= 'python' - python_config = investigate_python_config(python) - - v = python_config[:VERSION] - libprefix = FFI::Platform::LIBPREFIX - libs = [] - %i(INSTSONAME LDLIBRARY).each do |key| - lib = python_config[key] - libs << lib << File.basename(lib) if lib - end - if (lib = python_config[:LIBRARY]) - libs << File.basename(lib, File.extname(lib)) - end - libs << "#{libprefix}python#{v}" << "#{libprefix}python" - libs.uniq! - - $stderr.puts "DEBUG(find_libpython) libs: #{libs.inspect}" if debug - - executable = python_config[:executable] - libpaths = [ python_config[:LIBDIR] ] - if FFI::Platform.windows? - libpaths << File.dirname(executable) - else - libpaths << File.expand_path('../../lib', executable) - end - libpaths << python_config[:PYTHONFRAMEWORKPREFIX] if FFI::Platform.mac? - exec_prefix = python_config[:exec_prefix] - libpaths << exec_prefix << [exec_prefix, 'lib'].join(dir_sep) - libpaths.compact! - - $stderr.puts "DEBUG(find_libpython) libpaths: #{libpaths.inspect}" if debug - - unless ENV['PYTHONHOME'] - # PYTHONHOME tells python where to look for both pure python and binary modules. - # When it is set, it replaces both `prefix` and `exec_prefix` - # and we thus need to set it to both in case they differ. - # This is also what the documentation recommends. - # However, they are documented to always be the same on Windows, - # where it causes problems if we try to include both. - if FFI::Platform.windows? - ENV['PYTHONHOME'] = exec_prefix - else - ENV['PYTHONHOME'] = [python_config[:prefix], exec_prefix].join(':') - end - - # Unfortunately, setting PYTHONHOME screws up Canopy's Python distribution? - unless system(python, '-c', 'import site', out: File::NULL, err: File::NULL) - ENV['PYTHONHOME'] = nil - end - end - - # Try LIBPYTHON environment variable first. - if ENV['LIBPYTHON'] - if File.file?(ENV['LIBPYTHON']) - begin - libs = ffi_lib(ENV['LIBPYTHON']) - return libs.first - rescue LoadError - end - end - $stderr.puts '[WARN] Ignore the wrong libpython location specified in LIBPYTHON environment variable.' - end - - # Find libpython (we hope): - libsuffix = FFI::Platform::LIBSUFFIX - multiarch = python_config[:MULTIARCH] || python_config[:multiarch] - libs.each do |lib| - libpaths.each do |libpath| - # NOTE: File.join doesn't use File::ALT_SEPARATOR - libpath_libs = [ [libpath, lib].join(dir_sep) ] - libpath_libs << [libpath, multiarch, lib].join(dir_sep) if multiarch - libpath_libs.each do |libpath_lib| - [ - libpath_lib, - "#{libpath_lib}.#{libsuffix}" - ].each do |fullname| - unless File.file?(fullname) - $stderr.puts "DEBUG(find_libpython) Unable to find #{fullname}" if debug - next - end - begin - dynlibs = ffi_lib(fullname) - $stderr.puts "DEBUG(find_libpython) ffi_lib(#{fullname.inspect}) = #{dynlibs.inspect}" if debug - return dynlibs.first - rescue LoadError - # skip load error - end - end - end - end - end - - # Find libpython in the system path - libs.each do |lib| - begin - dynlibs = ffi_lib(lib) - $stderr.puts "DEBUG(find_libpython) ffi_lib(#{lib.inspect}) = #{dynlibs.inspect}" if debug - return dynlibs.first - rescue LoadError - # skip load error - end - end + def self.handle + # NOTE: PyCall.init redefine this method. + # See pycall/init.rb for the detail. + PyCall.init + handle end - - def self.investigate_python_config(python) - python_env = { 'PYTHONIOENCODING' => 'UTF-8' } - IO.popen(python_env, [python, python_investigator_py], 'r') do |io| - {}.tap do |config| - io.each_line do |line| - key, value = line.chomp.split(': ', 2) - config[key.to_sym] = value if value != 'None' - end - end - end - end - - def self.python_investigator_py - File.expand_path('../python/investigator.py', __FILE__) - end - - ffi_lib_flags :lazy, :global - libpython = find_libpython ENV['PYTHON'] - - define_singleton_method(:find_symbol) {|name| libpython.find_symbol(name.to_s) } - - attach_function :Py_GetVersion, [], :string - PYTHON_DESCRIPTION = LibPython.Py_GetVersion().freeze - PYTHON_VERSION = PYTHON_DESCRIPTION.split(' ', 2)[0].freeze - - # --- types --- - - if PYTHON_VERSION < '3.2' - typedef :long, :Py_hash_t - else - typedef :ssize_t, :Py_hash_t - end - - # --- global variables --- - - attach_variable :_Py_NoneStruct, PyObjectStruct - - def self.Py_None - _Py_NoneStruct - end - - attach_variable :PyType_Type, PyTypeObjectStruct - - if libpython.find_variable('PyInt_Type') - has_PyInt_Type = true - attach_variable :PyInt_Type, PyTypeObjectStruct - else - has_PyInt_Type = false - attach_variable :PyInt_Type, :PyLong_Type, PyTypeObjectStruct - end - - attach_variable :PyLong_Type, PyTypeObjectStruct - attach_variable :PyBool_Type, PyTypeObjectStruct - attach_variable :PyFloat_Type, PyTypeObjectStruct - attach_variable :PyComplex_Type, PyTypeObjectStruct - attach_variable :PyUnicode_Type, PyTypeObjectStruct - - if libpython.find_symbol('PyString_FromStringAndSize') - string_as_bytes = false - attach_variable :PyString_Type, PyTypeObjectStruct - else - string_as_bytes = true - attach_variable :PyString_Type, :PyBytes_Type, PyTypeObjectStruct - end - - attach_variable :PyList_Type, PyTypeObjectStruct - attach_variable :PyTuple_Type, PyTypeObjectStruct - attach_variable :PyDict_Type, PyTypeObjectStruct - attach_variable :PySet_Type, PyTypeObjectStruct - - attach_variable :PyFunction_Type, PyTypeObjectStruct - attach_variable :PyMethod_Type, PyTypeObjectStruct - - # --- exceptions --- - - attach_variable :PyExc_RuntimeError, PyObjectStruct.ptr - attach_variable :PyExc_TypeError, PyObjectStruct.ptr - - # --- functions --- - - attach_function :Py_InitializeEx, [:int], :void - attach_function :Py_IsInitialized, [], :int - attach_function :PySys_SetArgvEx, [:int, :pointer, :int], :void - - # Reference count - - attach_function :Py_IncRef, [PyObjectStruct.by_ref], :void - attach_function :Py_DecRef, [PyObjectStruct.by_ref], :void - - # Object - - attach_function :_PyObject_New, [PyTypeObjectStruct.ptr], PyObjectStruct.ptr - attach_function :PyObject_RichCompare, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, :int], PyObjectStruct.by_ref - attach_function :PyObject_GetAttrString, [PyObjectStruct.by_ref, :string], PyObjectStruct.by_ref - attach_function :PyObject_SetAttrString, [PyObjectStruct.by_ref, :string, PyObjectStruct.by_ref], :int - attach_function :PyObject_HasAttrString, [PyObjectStruct.by_ref, :string], :int - attach_function :PyObject_GetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyObject_SetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - attach_function :PyObject_Call, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyObject_IsInstance, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - attach_function :PyObject_Dir, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyObject_Hash, [PyObjectStruct.by_ref], :Py_hash_t - attach_function :PyObject_Repr, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyObject_Str, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyObject_Type, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyCallable_Check, [PyObjectStruct.by_ref], :int - - # Type - - attach_function :PyType_Ready, [PyTypeObjectStruct.ptr], :int - - # Bool - - attach_function :PyBool_FromLong, [:long], PyObjectStruct.by_ref - - # Integer - - if has_PyInt_Type - attach_function :PyInt_AsSsize_t, [PyObjectStruct.by_ref], :ssize_t - else - attach_function :PyInt_AsSsize_t, :PyLong_AsSsize_t, [PyObjectStruct.by_ref], :ssize_t - end - - if has_PyInt_Type - attach_function :PyInt_FromSsize_t, [:ssize_t], PyObjectStruct.by_ref - else - attach_function :PyInt_FromSsize_t, :PyLong_FromSsize_t, [:ssize_t], PyObjectStruct.by_ref - end - - # Float - - attach_function :PyFloat_FromDouble, [:double], PyObjectStruct.by_ref - attach_function :PyFloat_AsDouble, [PyObjectStruct.by_ref], :double - - # Complex - - attach_function :PyComplex_RealAsDouble, [PyObjectStruct.by_ref], :double - attach_function :PyComplex_ImagAsDouble, [PyObjectStruct.by_ref], :double - - # String - - if string_as_bytes - attach_function :PyString_FromStringAndSize, :PyBytes_FromStringAndSize, [:string, :ssize_t], PyObjectStruct.by_ref - else - attach_function :PyString_FromStringAndSize, [:string, :ssize_t], PyObjectStruct.by_ref - end - - # PyString_AsStringAndSize :: (PyPtr, char**, int*) -> int - if string_as_bytes - attach_function :PyString_AsStringAndSize, :PyBytes_AsStringAndSize, [PyObjectStruct.by_ref, :pointer, :pointer], :int - else - attach_function :PyString_AsStringAndSize, [PyObjectStruct.by_ref, :pointer, :pointer], :int - end - - # Unicode - - # PyUnicode_DecodeUTF8 - case - when libpython.find_symbol('PyUnicode_DecodeUTF8') - attach_function :PyUnicode_DecodeUTF8, [:string, :ssize_t, :string], PyObjectStruct.by_ref - when libpython.find_symbol('PyUnicodeUCS4_DecodeUTF8') - attach_function :PyUnicode_DecodeUTF8, :PyUnicodeUCS4_DecodeUTF8, [:string, :ssize_t, :string], PyObjectStruct.by_ref - when libpython.find_symbol('PyUnicodeUCS2_DecodeUTF8') - attach_function :PyUnicode_DecodeUTF8, :PyUnicodeUCS2_DecodeUTF8, [:string, :ssize_t, :string], PyObjectStruct.by_ref - end - - # PyUnicode_AsUTF8String - case - when libpython.find_symbol('PyUnicode_AsUTF8String') - attach_function :PyUnicode_AsUTF8String, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - when libpython.find_symbol('PyUnicodeUCS4_AsUTF8String') - attach_function :PyUnicode_AsUTF8String, :PyUnicodeUCS4_AsUTF8String, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - when libpython.find_symbol('PyUnicodeUCS2_AsUTF8String') - attach_function :PyUnicode_AsUTF8String, :PyUnicodeUCS2_AsUTF8String, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - end - - # Tuple - - attach_function :PyTuple_New, [:ssize_t], PyObjectStruct.by_ref - attach_function :PyTuple_GetItem, [PyObjectStruct.by_ref, :ssize_t], PyObjectStruct.by_ref - attach_function :PyTuple_SetItem, [PyObjectStruct.by_ref, :ssize_t, PyObjectStruct.by_ref], :int - attach_function :PyTuple_Size, [PyObjectStruct.by_ref], :ssize_t - - # Slice - - attach_function :PySlice_New, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - - # List - - attach_function :PyList_New, [:ssize_t], PyObjectStruct.by_ref - attach_function :PyList_Size, [PyObjectStruct.by_ref], :ssize_t - attach_function :PyList_Append, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - - # Sequence - - attach_function :PySequence_Size, [PyObjectStruct.by_ref], :ssize_t - attach_function :PySequence_GetItem, [PyObjectStruct.by_ref, :ssize_t], PyObjectStruct.by_ref - attach_function :PySequence_Contains, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - - # Dict - - attach_function :PyDict_New, [], PyObjectStruct.by_ref - attach_function :PyDict_GetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyDict_GetItemString, [PyObjectStruct.by_ref, :string], PyObjectStruct.by_ref - attach_function :PyDict_SetItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - attach_function :PyDict_SetItemString, [PyObjectStruct.by_ref, :string, PyObjectStruct.by_ref], :int - attach_function :PyDict_DelItem, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - attach_function :PyDict_DelItemString, [PyObjectStruct.by_ref, :string], :int - attach_function :PyDict_Size, [PyObjectStruct.by_ref], :ssize_t - attach_function :PyDict_Keys, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyDict_Values, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyDict_Items, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyDict_Contains, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - - # Set - - attach_function :PySet_Size, [PyObjectStruct.by_ref], :ssize_t - attach_function :PySet_Contains, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], :int - - # Method - - attach_function :PyCFunction_NewEx, [PyMethodDef.ptr, :pointer, :pointer], PyObjectStruct.ptr - - # Weakref - - attach_function :PyWeakref_NewRef, [PyObjectStruct.ptr, PyObjectStruct.ptr], PyObjectStruct.ptr - - # Module - - attach_function :PyModule_GetDict, [PyObjectStruct.by_ref], PyObjectStruct.by_ref - - # Import - - attach_function :PyImport_GetModuleDict, [], PyObjectStruct.by_ref - attach_function :PyImport_ImportModule, [:string], PyObjectStruct.by_ref - attach_function :PyImport_ImportModuleLevel, [:string, PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref, :int], PyObjectStruct.by_ref - - # Operators - - attach_function :PyNumber_Add, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyNumber_Subtract, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyNumber_Multiply, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyNumber_TrueDivide, [PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - attach_function :PyNumber_Power, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - - # Compiler - - attach_function :Py_CompileString, [:string, :string, :int], PyObjectStruct.by_ref - attach_function :PyEval_EvalCode, [PyObjectStruct.by_ref, PyObjectStruct.by_ref, PyObjectStruct.by_ref], PyObjectStruct.by_ref - - # Error - - attach_function :PyErr_Clear, [], :void - attach_function :PyErr_Print, [], :void - attach_function :PyErr_Occurred, [], PyObjectStruct.by_ref - attach_function :PyErr_Fetch, [:pointer, :pointer, :pointer], :void - attach_function :PyErr_NormalizeException, [:pointer, :pointer, :pointer], :void - attach_function :PyErr_SetString, [PyObjectStruct.ptr, :string], :void - - public_class_method - end - - PYTHON_DESCRIPTION = LibPython::PYTHON_DESCRIPTION - PYTHON_VERSION = LibPython::PYTHON_VERSION - - def self.unicode_literals? - @unicode_literals ||= (PYTHON_VERSION >= '3.0') end end