2017-06-20 21:10:12 +00:00
|
|
|
|
// Copyright (c) 2017-present PyO3 Project and Contributors
|
2019-02-23 17:01:22 +00:00
|
|
|
|
|
|
|
|
|
//! Interaction with python's global interpreter lock
|
|
|
|
|
|
2020-05-01 16:09:10 +00:00
|
|
|
|
use crate::{ffi, internal_tricks::Unsendable, Python};
|
2020-04-12 07:31:35 +00:00
|
|
|
|
use std::cell::{Cell, UnsafeCell};
|
|
|
|
|
use std::{any, mem::ManuallyDrop, ptr::NonNull, sync};
|
2015-01-05 16:05:53 +00:00
|
|
|
|
|
2019-07-07 09:52:25 +00:00
|
|
|
|
static START: sync::Once = sync::Once::new();
|
2015-01-05 16:05:53 +00:00
|
|
|
|
|
2020-04-07 19:37:02 +00:00
|
|
|
|
thread_local! {
|
|
|
|
|
/// This is a internal counter in pyo3 monitoring whether this thread has the GIL.
|
|
|
|
|
///
|
|
|
|
|
/// It will be incremented whenever a GIL-holding RAII struct is created, and decremented
|
|
|
|
|
/// whenever they are dropped.
|
|
|
|
|
///
|
|
|
|
|
/// As a result, if this thread has the GIL, GIL_COUNT is greater than zero.
|
|
|
|
|
static GIL_COUNT: Cell<u32> = Cell::new(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Check whether the GIL is acquired.
|
|
|
|
|
///
|
|
|
|
|
/// Note: This uses pyo3's internal count rather than PyGILState_Check for two reasons:
|
|
|
|
|
/// 1) for performance
|
|
|
|
|
/// 2) PyGILState_Check always returns 1 if the sub-interpreter APIs have ever been called,
|
|
|
|
|
/// which could lead to incorrect conclusions that the GIL is held.
|
|
|
|
|
fn gil_is_acquired() -> bool {
|
|
|
|
|
GIL_COUNT.with(|c| c.get() > 0)
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-27 20:45:35 +00:00
|
|
|
|
/// Prepares the use of Python in a free-threaded context.
|
2015-04-18 20:20:19 +00:00
|
|
|
|
///
|
2015-06-27 20:45:35 +00:00
|
|
|
|
/// If the Python interpreter is not already initialized, this function
|
2015-04-18 20:20:19 +00:00
|
|
|
|
/// will initialize it with disabled signal handling
|
2015-06-27 20:45:35 +00:00
|
|
|
|
/// (Python will not raise the `KeyboardInterrupt` exception).
|
2015-04-18 20:20:19 +00:00
|
|
|
|
/// Python signal handling depends on the notion of a 'main thread', which must be
|
2015-06-27 20:45:35 +00:00
|
|
|
|
/// the thread that initializes the Python interpreter.
|
|
|
|
|
///
|
|
|
|
|
/// If both the Python interpreter and Python threading are already initialized,
|
|
|
|
|
/// this function has no effect.
|
|
|
|
|
///
|
|
|
|
|
/// # Panic
|
|
|
|
|
/// If the Python interpreter is initialized but Python threading is not,
|
|
|
|
|
/// a panic occurs.
|
|
|
|
|
/// It is not possible to safely access the Python runtime unless the main
|
|
|
|
|
/// thread (the thread which originally initialized Python) also initializes
|
|
|
|
|
/// threading.
|
|
|
|
|
///
|
2018-11-12 21:28:45 +00:00
|
|
|
|
/// When writing an extension module, the `#[pymodule]` macro
|
2015-06-27 20:45:35 +00:00
|
|
|
|
/// will ensure that Python threading is initialized.
|
|
|
|
|
///
|
2015-01-04 04:50:28 +00:00
|
|
|
|
pub fn prepare_freethreaded_python() {
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// Protect against race conditions when Python is not yet initialized
|
2015-01-04 19:11:18 +00:00
|
|
|
|
// and multiple threads concurrently call 'prepare_freethreaded_python()'.
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// Note that we do not protect against concurrent initialization of the Python runtime
|
|
|
|
|
// by other users of the Python C API.
|
2015-01-04 04:50:28 +00:00
|
|
|
|
START.call_once(|| unsafe {
|
2015-01-04 19:11:18 +00:00
|
|
|
|
if ffi::Py_IsInitialized() != 0 {
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// If Python is already initialized, we expect Python threading to also be initialized,
|
|
|
|
|
// as we can't make the existing Python main thread acquire the GIL.
|
2019-04-23 11:18:42 +00:00
|
|
|
|
#[cfg(not(Py_3_7))]
|
2017-07-18 11:28:49 +00:00
|
|
|
|
assert_ne!(ffi::PyEval_ThreadsInitialized(), 0);
|
2015-01-04 19:11:18 +00:00
|
|
|
|
} else {
|
2018-02-21 18:06:48 +00:00
|
|
|
|
// If Python isn't initialized yet, we expect that Python threading
|
|
|
|
|
// isn't initialized either.
|
2018-02-21 18:29:14 +00:00
|
|
|
|
#[cfg(not(Py_3_7))]
|
2018-02-21 18:06:48 +00:00
|
|
|
|
assert_eq!(ffi::PyEval_ThreadsInitialized(), 0);
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// Initialize Python.
|
2015-01-04 19:11:18 +00:00
|
|
|
|
// We use Py_InitializeEx() with initsigs=0 to disable Python signal handling.
|
|
|
|
|
// Signal handling depends on the notion of a 'main thread', which doesn't exist in this case.
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// Note that the 'main thread' notion in Python isn't documented properly;
|
|
|
|
|
// and running Python without one is not officially supported.
|
2019-04-23 11:18:42 +00:00
|
|
|
|
|
|
|
|
|
// PyPy does not support the embedding API
|
|
|
|
|
#[cfg(not(PyPy))]
|
2015-01-04 19:11:18 +00:00
|
|
|
|
ffi::Py_InitializeEx(0);
|
2019-04-23 11:18:42 +00:00
|
|
|
|
|
|
|
|
|
// > Changed in version 3.7: This function is now called by Py_Initialize(), so you don’t have
|
|
|
|
|
// > to call it yourself anymore.
|
|
|
|
|
#[cfg(not(Py_3_7))]
|
2015-01-04 19:11:18 +00:00
|
|
|
|
ffi::PyEval_InitThreads();
|
|
|
|
|
// PyEval_InitThreads() will acquire the GIL,
|
|
|
|
|
// but we don't want to hold it at this point
|
2015-01-04 04:50:28 +00:00
|
|
|
|
// (it's not acquired in the other code paths)
|
2015-01-04 19:11:18 +00:00
|
|
|
|
// So immediately release the GIL:
|
2019-04-23 11:18:42 +00:00
|
|
|
|
#[cfg(not(PyPy))]
|
2015-01-04 19:11:18 +00:00
|
|
|
|
let _thread_state = ffi::PyEval_SaveThread();
|
2015-06-27 20:45:35 +00:00
|
|
|
|
// Note that the PyThreadState returned by PyEval_SaveThread is also held in TLS by the Python runtime,
|
2015-01-04 19:11:18 +00:00
|
|
|
|
// and will be restored by PyGILState_Ensure.
|
2015-01-04 04:50:28 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2015-01-05 16:05:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-05 16:41:04 +00:00
|
|
|
|
/// RAII type that represents the Global Interpreter Lock acquisition.
|
2015-06-27 20:45:35 +00:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
/// ```
|
2017-05-13 05:43:17 +00:00
|
|
|
|
/// use pyo3::Python;
|
2015-06-27 20:45:35 +00:00
|
|
|
|
///
|
|
|
|
|
/// {
|
|
|
|
|
/// let gil_guard = Python::acquire_gil();
|
|
|
|
|
/// let py = gil_guard.python();
|
|
|
|
|
/// } // GIL is released when gil_guard is dropped
|
|
|
|
|
/// ```
|
2015-01-04 23:07:31 +00:00
|
|
|
|
#[must_use]
|
|
|
|
|
pub struct GILGuard {
|
2016-03-05 23:22:16 +00:00
|
|
|
|
gstate: ffi::PyGILState_STATE,
|
2020-04-12 07:31:35 +00:00
|
|
|
|
pool: ManuallyDrop<GILPool>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl GILGuard {
|
|
|
|
|
/// Acquires the global interpreter lock, which allows access to the Python runtime.
|
|
|
|
|
///
|
|
|
|
|
/// If the Python runtime is not already initialized, this function will initialize it.
|
|
|
|
|
/// See [prepare_freethreaded_python()](fn.prepare_freethreaded_python.html) for details.
|
|
|
|
|
pub fn acquire() -> GILGuard {
|
|
|
|
|
prepare_freethreaded_python();
|
|
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
|
let gstate = ffi::PyGILState_Ensure(); // acquire GIL
|
|
|
|
|
GILGuard {
|
|
|
|
|
gstate,
|
|
|
|
|
pool: ManuallyDrop::new(GILPool::new()),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Retrieves the marker type that proves that the GIL was acquired.
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn python(&self) -> Python {
|
|
|
|
|
unsafe { Python::assume_gil_acquired() }
|
|
|
|
|
}
|
2015-01-04 23:07:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-11 15:46:23 +00:00
|
|
|
|
/// The Drop implementation for `GILGuard` will release the GIL.
|
2015-01-04 23:07:31 +00:00
|
|
|
|
impl Drop for GILGuard {
|
|
|
|
|
fn drop(&mut self) {
|
2017-06-21 06:26:28 +00:00
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
ManuallyDrop::drop(&mut self.pool);
|
2017-06-21 06:26:28 +00:00
|
|
|
|
ffi::PyGILState_Release(self.gstate);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
/// Implementation of release pool
|
|
|
|
|
struct ReleasePoolImpl {
|
2020-05-01 16:09:10 +00:00
|
|
|
|
owned: Vec<NonNull<ffi::PyObject>>,
|
2018-11-14 06:39:07 +00:00
|
|
|
|
pointers: *mut Vec<NonNull<ffi::PyObject>>,
|
2019-06-05 10:01:09 +00:00
|
|
|
|
obj: Vec<Box<dyn any::Any>>,
|
2020-01-16 13:53:54 +00:00
|
|
|
|
p: parking_lot::Mutex<*mut Vec<NonNull<ffi::PyObject>>>,
|
2017-07-09 06:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
impl ReleasePoolImpl {
|
|
|
|
|
fn new() -> Self {
|
|
|
|
|
Self {
|
2020-05-01 16:09:10 +00:00
|
|
|
|
owned: Vec::with_capacity(256),
|
2018-01-19 17:04:42 +00:00
|
|
|
|
pointers: Box::into_raw(Box::new(Vec::with_capacity(256))),
|
2018-11-20 07:21:36 +00:00
|
|
|
|
obj: Vec::with_capacity(8),
|
2020-01-16 13:53:54 +00:00
|
|
|
|
p: parking_lot::Mutex::new(Box::into_raw(Box::new(Vec::with_capacity(256)))),
|
2017-07-09 06:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe fn release_pointers(&mut self) {
|
|
|
|
|
let mut v = self.p.lock();
|
2018-11-18 14:14:00 +00:00
|
|
|
|
let vec = &mut **v;
|
2017-07-13 20:01:31 +00:00
|
|
|
|
if vec.is_empty() {
|
2018-07-30 21:01:46 +00:00
|
|
|
|
return;
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// switch vectors
|
2018-11-18 14:14:00 +00:00
|
|
|
|
std::mem::swap(&mut self.pointers, &mut *v);
|
2017-07-09 06:08:57 +00:00
|
|
|
|
drop(v);
|
|
|
|
|
|
2018-11-18 14:14:00 +00:00
|
|
|
|
// release PyObjects
|
2018-11-20 07:21:36 +00:00
|
|
|
|
for ptr in vec.iter_mut() {
|
2018-11-14 06:39:07 +00:00
|
|
|
|
ffi::Py_DECREF(ptr.as_ptr());
|
2017-07-09 06:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
vec.set_len(0);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-01 16:09:10 +00:00
|
|
|
|
pub unsafe fn drain(&mut self, _py: Python, owned: usize) {
|
2018-11-18 13:10:13 +00:00
|
|
|
|
// Release owned objects(call decref)
|
2020-05-01 16:09:10 +00:00
|
|
|
|
for i in owned..self.owned.len() {
|
|
|
|
|
ffi::Py_DECREF(self.owned[i].as_ptr());
|
2017-07-09 06:08:57 +00:00
|
|
|
|
}
|
2020-05-01 16:09:10 +00:00
|
|
|
|
self.owned.truncate(owned);
|
2020-03-26 05:50:00 +00:00
|
|
|
|
self.release_pointers();
|
2018-01-19 17:04:42 +00:00
|
|
|
|
self.obj.clear();
|
2017-07-09 06:08:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
/// Sync wrapper of ReleasePoolImpl
|
|
|
|
|
struct ReleasePool {
|
|
|
|
|
value: UnsafeCell<Option<ReleasePoolImpl>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl ReleasePool {
|
|
|
|
|
const fn new() -> Self {
|
|
|
|
|
Self {
|
|
|
|
|
value: UnsafeCell::new(None),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/// # Safety
|
|
|
|
|
/// This function is not thread safe. Thus, the caller has to have GIL.
|
|
|
|
|
#[allow(clippy::mut_from_ref)]
|
|
|
|
|
unsafe fn get_or_init(&self) -> &mut ReleasePoolImpl {
|
|
|
|
|
(*self.value.get()).get_or_insert_with(ReleasePoolImpl::new)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static POOL: ReleasePool = ReleasePool::new();
|
|
|
|
|
|
|
|
|
|
unsafe impl Sync for ReleasePool {}
|
2017-06-21 06:26:28 +00:00
|
|
|
|
|
2017-07-20 21:21:57 +00:00
|
|
|
|
#[doc(hidden)]
|
2020-04-12 07:31:35 +00:00
|
|
|
|
pub struct GILPool {
|
2017-06-23 20:42:46 +00:00
|
|
|
|
owned: usize,
|
2020-04-12 07:31:35 +00:00
|
|
|
|
// Stable solution for impl !Send
|
2019-10-27 09:03:01 +00:00
|
|
|
|
no_send: Unsendable,
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
impl GILPool {
|
|
|
|
|
/// # Safety
|
|
|
|
|
/// This function requires that GIL is already acquired.
|
2017-06-22 19:32:01 +00:00
|
|
|
|
#[inline]
|
2020-04-12 07:31:35 +00:00
|
|
|
|
pub unsafe fn new() -> GILPool {
|
2020-04-07 19:37:02 +00:00
|
|
|
|
increment_gil_count();
|
2020-04-12 07:31:35 +00:00
|
|
|
|
// Release objects that were dropped since last GIL acquisition
|
|
|
|
|
let pool = POOL.get_or_init();
|
|
|
|
|
pool.release_pointers();
|
2018-07-30 21:01:46 +00:00
|
|
|
|
GILPool {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
owned: pool.owned.len(),
|
2019-10-27 09:03:01 +00:00
|
|
|
|
no_send: Unsendable::default(),
|
2018-07-30 21:01:46 +00:00
|
|
|
|
}
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
2020-04-12 07:31:35 +00:00
|
|
|
|
pub unsafe fn python(&self) -> Python {
|
|
|
|
|
Python::assume_gil_acquired()
|
|
|
|
|
}
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
impl Drop for GILPool {
|
2017-06-22 17:26:07 +00:00
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool = POOL.get_or_init();
|
2020-05-01 16:09:10 +00:00
|
|
|
|
pool.drain(self.python(), self.owned);
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
2020-04-07 19:37:02 +00:00
|
|
|
|
decrement_gil_count();
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-30 21:01:46 +00:00
|
|
|
|
pub unsafe fn register_any<'p, T: 'static>(obj: T) -> &'p T {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool = POOL.get_or_init();
|
2018-01-19 17:04:42 +00:00
|
|
|
|
|
2018-11-18 10:15:40 +00:00
|
|
|
|
pool.obj.push(Box::new(obj));
|
2018-07-30 21:01:46 +00:00
|
|
|
|
pool.obj
|
2018-11-18 10:15:40 +00:00
|
|
|
|
.last()
|
2018-07-30 21:01:46 +00:00
|
|
|
|
.unwrap()
|
|
|
|
|
.as_ref()
|
|
|
|
|
.downcast_ref::<T>()
|
|
|
|
|
.unwrap()
|
2018-01-19 17:04:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-12 20:36:08 +00:00
|
|
|
|
pub unsafe fn register_pointer(obj: NonNull<ffi::PyObject>) {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool = POOL.get_or_init();
|
2020-04-07 19:37:02 +00:00
|
|
|
|
if gil_is_acquired() {
|
|
|
|
|
ffi::Py_DECREF(obj.as_ptr())
|
|
|
|
|
} else {
|
|
|
|
|
(**pool.p.lock()).push(obj);
|
|
|
|
|
}
|
2017-06-22 17:26:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-01 16:09:10 +00:00
|
|
|
|
pub unsafe fn register_owned(_py: Python, obj: NonNull<ffi::PyObject>) {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool = POOL.get_or_init();
|
2020-05-01 16:09:10 +00:00
|
|
|
|
pool.owned.push(obj);
|
2015-01-04 23:07:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-07 19:37:02 +00:00
|
|
|
|
/// Increment pyo3's internal GIL count - to be called whenever GILPool or GILGuard is created.
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn increment_gil_count() {
|
|
|
|
|
GIL_COUNT.with(|c| c.set(c.get() + 1))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Decrement pyo3's internal GIL count - to be called whenever GILPool or GILGuard is dropped.
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn decrement_gil_count() {
|
|
|
|
|
GIL_COUNT.with(|c| {
|
|
|
|
|
let current = c.get();
|
|
|
|
|
debug_assert!(
|
|
|
|
|
current > 0,
|
|
|
|
|
"Negative GIL count detected. Please report this error to the PyO3 repo as a bug."
|
|
|
|
|
);
|
|
|
|
|
c.set(current - 1);
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 20:01:31 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod test {
|
2020-05-01 16:09:10 +00:00
|
|
|
|
use super::{GILPool, GIL_COUNT, POOL};
|
|
|
|
|
use crate::{ffi, gil, AsPyPointer, PyObject, Python, ToPyObject};
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
2018-08-22 00:16:25 +00:00
|
|
|
|
fn get_object() -> PyObject {
|
|
|
|
|
// Convenience function for getting a single unique object
|
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
|
|
|
|
|
|
|
|
|
let obj = py.eval("object()", None, None).unwrap();
|
|
|
|
|
|
|
|
|
|
obj.to_object(py)
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-13 20:01:31 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_owned() {
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
|
|
|
|
let obj = get_object();
|
|
|
|
|
let obj_ptr = obj.as_ptr();
|
|
|
|
|
// Ensure that obj does not get freed
|
|
|
|
|
let _ref = obj.clone_ref(py);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let p = POOL.get_or_init();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let _ = gil::register_owned(py, obj.into_nonnull());
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
2019-03-09 23:28:25 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 2);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
assert_eq!(p.owned.len(), 1);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
let _gil = Python::acquire_gil();
|
|
|
|
|
assert_eq!(p.owned.len(), 0);
|
2019-03-09 23:28:25 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 1);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_owned_nested() {
|
2017-08-08 06:52:24 +00:00
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let obj = get_object();
|
|
|
|
|
// Ensure that obj does not get freed
|
|
|
|
|
let _ref = obj.clone_ref(py);
|
|
|
|
|
let obj_ptr = obj.as_ptr();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let p = POOL.get_or_init();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
{
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let _pool = GILPool::new();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
assert_eq!(p.owned.len(), 0);
|
|
|
|
|
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let _ = gil::register_owned(py, obj.into_nonnull());
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
assert_eq!(p.owned.len(), 1);
|
2019-03-09 23:28:25 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 2);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
{
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let _pool = GILPool::new();
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let obj = get_object();
|
|
|
|
|
let _ = gil::register_owned(py, obj.into_nonnull());
|
2017-07-13 20:01:31 +00:00
|
|
|
|
assert_eq!(p.owned.len(), 2);
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(p.owned.len(), 1);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
assert_eq!(p.owned.len(), 0);
|
2019-03-09 23:28:25 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 1);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2020-04-07 19:37:02 +00:00
|
|
|
|
fn test_pyobject_drop_with_gil_decreases_refcnt() {
|
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
|
|
|
|
let obj = get_object();
|
|
|
|
|
// Ensure that obj does not get freed
|
|
|
|
|
let _ref = obj.clone_ref(py);
|
|
|
|
|
let obj_ptr = obj.as_ptr();
|
|
|
|
|
|
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let p = POOL.get_or_init();
|
2020-04-07 19:37:02 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
assert_eq!(p.owned.len(), 0);
|
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// With the GIL held, obj can be dropped immediately
|
|
|
|
|
drop(obj);
|
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_pyobject_drop_without_gil_doesnt_decrease_refcnt() {
|
2019-03-09 23:28:25 +00:00
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
let py = gil.python();
|
|
|
|
|
let obj = get_object();
|
|
|
|
|
// Ensure that obj does not get freed
|
|
|
|
|
let _ref = obj.clone_ref(py);
|
|
|
|
|
let obj_ptr = obj.as_ptr();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
unsafe {
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let p = POOL.get_or_init();
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
assert_eq!(p.owned.len(), 0);
|
2019-03-09 23:28:25 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 2);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|
2020-04-07 19:37:02 +00:00
|
|
|
|
|
|
|
|
|
// Without the GIL held, obj cannot be dropped until the next GIL acquire
|
|
|
|
|
drop(gil);
|
2019-03-05 20:52:44 +00:00
|
|
|
|
drop(obj);
|
2019-04-24 20:41:59 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 2);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
|
|
|
|
|
{
|
2020-04-07 19:37:02 +00:00
|
|
|
|
// Next time the GIL is acquired, the object is released
|
2017-07-13 20:01:31 +00:00
|
|
|
|
let _gil = Python::acquire_gil();
|
2020-04-07 19:37:02 +00:00
|
|
|
|
assert_eq!(ffi::Py_REFCNT(obj_ptr), 1);
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-07 19:37:02 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_gil_counts() {
|
|
|
|
|
// Check GILGuard and GILPool both increase counts correctly
|
|
|
|
|
let get_gil_count = || GIL_COUNT.with(|c| c.get());
|
|
|
|
|
|
|
|
|
|
assert_eq!(get_gil_count(), 0);
|
|
|
|
|
let gil = Python::acquire_gil();
|
|
|
|
|
assert_eq!(get_gil_count(), 1);
|
|
|
|
|
|
|
|
|
|
assert_eq!(get_gil_count(), 1);
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool = unsafe { GILPool::new() };
|
2020-04-07 19:37:02 +00:00
|
|
|
|
assert_eq!(get_gil_count(), 2);
|
|
|
|
|
|
2020-04-12 07:31:35 +00:00
|
|
|
|
let pool2 = unsafe { GILPool::new() };
|
2020-04-07 19:37:02 +00:00
|
|
|
|
assert_eq!(get_gil_count(), 3);
|
|
|
|
|
|
|
|
|
|
drop(pool);
|
|
|
|
|
assert_eq!(get_gil_count(), 2);
|
|
|
|
|
|
|
|
|
|
let gil2 = Python::acquire_gil();
|
|
|
|
|
assert_eq!(get_gil_count(), 3);
|
|
|
|
|
|
|
|
|
|
drop(gil2);
|
|
|
|
|
assert_eq!(get_gil_count(), 2);
|
|
|
|
|
|
|
|
|
|
drop(pool2);
|
|
|
|
|
assert_eq!(get_gil_count(), 1);
|
|
|
|
|
|
|
|
|
|
drop(gil);
|
|
|
|
|
assert_eq!(get_gil_count(), 0);
|
|
|
|
|
}
|
2017-07-13 20:01:31 +00:00
|
|
|
|
}
|