pyo3/src/lib.rs

313 lines
10 KiB
Rust
Raw Normal View History

2015-04-19 03:22:03 +00:00
// Copyright (c) 2015 Daniel Grunwald
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#![cfg_attr(feature="nightly", feature(
unsafe_no_drop_flag, filling_drop, // (#5016)
2016-04-14 10:02:35 +00:00
// ^ These two are crucial so that `PyObject` is binary compatible with
// `*mut ffi::PyObject`, which we use for efficient slice access and in
// some other cases.
const_fn, // for GILProtected::new (#24111)
shared, // for std::ptr::Shared (#27730)
2016-04-14 10:02:35 +00:00
//recover, // for converting panics to python exceptions (#27719)
// -- TODO wait for stable release and promote recover code from cfg(nightly)
))]
2015-06-27 21:49:53 +00:00
#![allow(unused_imports)] // because some imports are only necessary with python 2.x or 3.x
2015-01-05 16:05:53 +00:00
2016-03-06 12:33:57 +00:00
2015-06-27 20:45:35 +00:00
//! Rust bindings to the Python interpreter.
2015-04-18 20:20:19 +00:00
//!
2015-04-18 22:39:04 +00:00
//! # Ownership and Lifetimes
2015-06-27 20:45:35 +00:00
//! In Python, all objects are implicitly reference counted.
//! In rust, we will use the `PyObject` type to represent a reference to a Python object.
2015-04-18 22:39:04 +00:00
//!
//! The method `clone_ref()` (from trait `PyClone`) can be used to create additional
//! references to the same Python object.
//!
2016-01-29 03:13:39 +00:00
//! Because all Python objects potentially have multiple owners, the
//! concept of Rust mutability does not apply to Python objects.
2015-06-27 20:45:35 +00:00
//! As a result, this API will allow mutating Python objects even if they are not stored
//! in a mutable Rust variable.
2015-04-18 22:39:04 +00:00
//!
2015-06-27 20:45:35 +00:00
//! The Python interpreter uses a global interpreter lock (GIL)
2015-04-18 22:39:04 +00:00
//! to ensure thread-safety.
//! This API uses a zero-sized `struct Python<'p>` as a token to indicate
//! that a function can assume that the GIL is held.
2015-04-18 22:39:04 +00:00
//!
//! You obtain a `Python` instance by acquiring the GIL,
//! and have to pass it into all operations that call into the Python runtime.
2015-04-18 22:39:04 +00:00
//!
//! # Error Handling
//! The vast majority of operations in this library will return `PyResult<...>`.
//! This is an alias for the type `Result<..., PyErr>`.
2015-04-18 22:39:04 +00:00
//!
2015-06-27 20:45:35 +00:00
//! A `PyErr` represents a Python exception. Errors within the rust-cpython library are
//! also exposed as Python exceptions.
2015-04-18 22:39:04 +00:00
//!
2015-04-18 20:20:19 +00:00
//! # Example
//! ```
2015-04-18 22:39:04 +00:00
//! extern crate cpython;
2015-04-18 20:20:19 +00:00
//!
2015-04-18 22:39:04 +00:00
//! use cpython::{PythonObject, Python};
//! use cpython::ObjectProtocol; //for call method
//!
2015-04-18 20:20:19 +00:00
//! fn main() {
//! let gil = Python::acquire_gil();
//! let py = gil.python(); // obtain `Python` token
//!
2015-04-18 20:20:19 +00:00
//! let sys = py.import("sys").unwrap();
//! let version: String = sys.get(py, "version").unwrap().extract(py).unwrap();
//!
//! let os = py.import("os").unwrap();
//! let getenv = os.get(py, "getenv").unwrap();
//! let user: String = getenv.call(py, ("USER",), None).unwrap().extract(py).unwrap();
//!
//! println!("Hello {}, I'm Python {}", user, version);
2015-04-18 20:20:19 +00:00
//! }
//! ```
2015-01-05 16:05:53 +00:00
extern crate libc;
#[cfg(feature="python27-sys")]
2015-03-09 13:31:20 +00:00
extern crate python27_sys as ffi;
#[cfg(feature="python3-sys")]
extern crate python3_sys as ffi;
2015-01-05 16:05:53 +00:00
pub use ffi::Py_ssize_t;
pub use err::{PyErr, PyResult};
2015-01-05 16:02:30 +00:00
pub use objects::*;
pub use python::{Python, PythonObject, PythonObjectWithCheckedDowncast, PythonObjectDowncastError, PythonObjectWithTypeObject, PyClone, PyDrop};
2015-06-21 22:35:01 +00:00
pub use pythonrun::{GILGuard, GILProtected, prepare_freethreaded_python};
pub use conversion::{ExtractPyObject, ToPyObject};
2015-01-04 20:37:43 +00:00
pub use objectprotocol::{ObjectProtocol};
2015-03-08 14:29:44 +00:00
2015-06-28 16:55:20 +00:00
#[cfg(feature="python27-sys")]
#[allow(non_camel_case_types)]
pub type Py_hash_t = libc::c_long;
#[cfg(feature="python3-sys")]
#[allow(non_camel_case_types)]
pub type Py_hash_t = ffi::Py_hash_t;
use std::{ptr, mem};
2015-04-18 20:20:19 +00:00
/// Constructs a `&'static CStr` literal.
2015-03-08 14:29:44 +00:00
macro_rules! cstr(
($s: tt) => (
// TODO: verify that $s is a string literal without nuls
unsafe {
::std::ffi::CStr::from_ptr(concat!($s, "\0").as_ptr() as *const _)
}
);
);
2015-01-05 16:05:53 +00:00
2016-03-06 12:33:57 +00:00
// AST coercion macros (https://danielkeep.github.io/tlborm/book/blk-ast-coercion.html)
#[macro_export] #[doc(hidden)]
macro_rules! py_coerce_expr { ($s:expr) => {$s} }
#[macro_export] #[doc(hidden)]
macro_rules! py_coerce_item { ($s:item) => {$s} }
#[macro_export] #[doc(hidden)]
macro_rules! py_replace_expr {
($_t:tt $sub:expr) => {$sub};
}
2016-03-06 12:33:57 +00:00
2015-01-05 16:05:53 +00:00
mod python;
mod err;
mod conversion;
2015-01-05 16:02:30 +00:00
mod objects;
2015-01-04 20:37:43 +00:00
mod objectprotocol;
2015-01-05 16:05:53 +00:00
mod pythonrun;
pub mod argparse;
mod function;
//pub mod rustobject;
pub mod py_class;
2015-01-05 16:05:53 +00:00
2015-04-18 20:20:19 +00:00
/// Private re-exports for macros. Do not use.
2015-04-18 22:39:04 +00:00
#[doc(hidden)]
pub mod _detail {
pub mod ffi {
pub use ::ffi::*;
}
pub mod libc {
2016-04-14 14:24:23 +00:00
pub use ::libc::{c_char, c_void, c_int};
}
pub use err::{from_owned_ptr_or_panic, result_from_owned_ptr};
pub use function::{handle_callback, py_fn_impl, AbortOnDrop};
}
2015-06-27 20:45:35 +00:00
/// Expands to an `extern "C"` function that allows Python to load
/// the rust code as a Python extension module.
2015-04-18 20:20:19 +00:00
///
/// Macro syntax: `py_module_initializer!($name, $py2_init, $py3_init, |$py, $m| $body)`
2015-04-18 20:20:19 +00:00
///
/// 1. `name`: The module name as a Rust identifier.
/// 2. `py2_init`: "init" + $name. Necessary because macros can't use concat_idents!().
/// 3. `py3_init`: "PyInit_" + $name. Necessary because macros can't use concat_idents!().
/// 4. A lambda of type `Fn(Python, &PyModule) -> PyResult<()>`.
2015-04-18 20:20:19 +00:00
/// This function will be called when the module is imported, and is responsible
/// for adding the module's members.
///
/// # Example
/// ```
/// #![crate_type = "dylib"]
/// #[macro_use] extern crate cpython;
/// use cpython::{Python, PyResult, PyObject};
2015-04-18 20:20:19 +00:00
///
/// py_module_initializer!(example, initexample, PyInit_example, |py, m| {
/// try!(m.add(py, "__doc__", "Module documentation string"));
/// try!(m.add(py, "run", py_fn!(py, run())));
2015-04-18 20:20:19 +00:00
/// Ok(())
/// });
///
/// fn run(py: Python) -> PyResult<PyObject> {
2015-04-18 20:20:19 +00:00
/// println!("Rust says: Hello Python!");
/// Ok(py.None())
/// }
/// # fn main() {}
/// ```
/// The code must be compiled into a file `example.so`.
///
/// ```bash
/// rustc example.rs -o example.so
/// ```
2015-06-27 20:45:35 +00:00
/// It can then be imported into Python:
2015-04-18 20:20:19 +00:00
///
/// ```python
/// >>> import example
/// >>> example.run()
/// Rust says: Hello Python!
/// ```
///
2015-01-12 02:00:34 +00:00
#[macro_export]
2015-05-24 18:06:08 +00:00
#[cfg(feature="python27-sys")]
2015-01-12 02:00:34 +00:00
macro_rules! py_module_initializer {
($name: ident, $py2: ident, $py3: ident, |$py_id: ident, $m_id: ident| $body: expr) => {
#[no_mangle]
2015-05-24 18:06:08 +00:00
#[allow(non_snake_case)]
pub unsafe extern "C" fn $py2() {
// Nest init function so that $body isn't in unsafe context
fn init($py_id: $crate::Python, $m_id: &$crate::PyModule) -> $crate::PyResult<()> {
$body
2015-01-12 02:00:34 +00:00
}
let name = concat!(stringify!($name), "\0").as_ptr() as *const _;
$crate::py_module_initializer_impl(name, init)
}
}
}
#[doc(hidden)]
#[cfg(feature="python27-sys")]
pub unsafe fn py_module_initializer_impl(
name: *const libc::c_char,
init: fn(Python, &PyModule) -> PyResult<()>
) {
let guard = function::AbortOnDrop("py_module_initializer");
let py = Python::assume_gil_acquired();
ffi::PyEval_InitThreads();
let module = ffi::Py_InitModule(name, ptr::null_mut());
if module.is_null() {
mem::forget(guard);
return;
}
let module = match PyObject::from_borrowed_ptr(py, module).cast_into::<PyModule>(py) {
Ok(m) => m,
Err(e) => {
PyErr::from(e).restore(py);
mem::forget(guard);
return;
2015-01-12 02:00:34 +00:00
}
};
let ret = match init(py, &module) {
Ok(()) => (),
Err(e) => e.restore(py)
};
mem::forget(guard);
ret
2015-05-24 18:06:08 +00:00
}
#[macro_export]
#[cfg(feature="python3-sys")]
macro_rules! py_module_initializer {
($name: ident, $py2: ident, $py3: ident, |$py_id: ident, $m_id: ident| $body: expr) => {
#[no_mangle]
2015-05-24 18:06:08 +00:00
#[allow(non_snake_case)]
pub unsafe extern "C" fn $py3() -> *mut $crate::_detail::ffi::PyObject {
// Nest init function so that $body isn't in unsafe context
fn init($py_id: $crate::Python, $m_id: &$crate::PyModule) -> $crate::PyResult<()> {
$body
}
2015-05-24 18:06:08 +00:00
static mut module_def: $crate::_detail::ffi::PyModuleDef = $crate::_detail::ffi::PyModuleDef {
m_base: $crate::_detail::ffi::PyModuleDef_HEAD_INIT,
m_name: 0 as *const _,
m_doc: 0 as *const _,
m_size: 0, // we don't use per-module state
m_methods: 0 as *mut _,
m_reload: None,
m_traverse: None,
m_clear: None,
m_free: None
};
// We can't convert &'static str to *const c_char within a static initializer,
// so we'll do it here in the module initialization:
module_def.m_name = concat!(stringify!($name), "\0").as_ptr() as *const _;
$crate::py_module_initializer_impl(&mut module_def, init)
}
}
}
#[doc(hidden)]
#[cfg(feature="python3-sys")]
pub unsafe fn py_module_initializer_impl(
def: *mut ffi::PyModuleDef,
init: fn(Python, &PyModule) -> PyResult<()>
) -> *mut ffi::PyObject {
let guard = function::AbortOnDrop("py_module_initializer");
let py = Python::assume_gil_acquired();
ffi::PyEval_InitThreads();
let module = ffi::PyModule_Create(def);
if module.is_null() {
mem::forget(guard);
return module;
}
let module = match PyObject::from_owned_ptr(py, module).cast_into::<PyModule>(py) {
Ok(m) => m,
Err(e) => {
PyErr::from(e).restore(py);
mem::forget(guard);
return ptr::null_mut();
2015-05-24 18:06:08 +00:00
}
};
let ret = match init(py, &module) {
Ok(()) => module.into_object().steal_ptr(),
Err(e) => {
e.restore(py);
ptr::null_mut()
}
};
mem::forget(guard);
ret
2015-01-12 02:00:34 +00:00
}