// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you may not use this file except in compliance // with the License. You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, // software distributed under the License is distributed on an // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, either express or implied. See the License for the // specific language governing permissions and limitations // under the License. #pragma once #include #include #include #include #include "arrow/buffer.h" #include "arrow/python/pyarrow.h" #include "arrow/python/visibility.h" #include "arrow/result.h" #include "arrow/util/macros.h" namespace arrow { class MemoryPool; template class Result; namespace py { // Convert current Python error to a Status. The Python error state is cleared // and can be restored with RestorePyError(). ARROW_PYTHON_EXPORT Status ConvertPyError(StatusCode code = StatusCode::UnknownError); // Query whether the given Status is a Python error (as wrapped by ConvertPyError()). ARROW_PYTHON_EXPORT bool IsPyError(const Status& status); // Restore a Python error wrapped in a Status. ARROW_PYTHON_EXPORT void RestorePyError(const Status& status); // Catch a pending Python exception and return the corresponding Status. // If no exception is pending, Status::OK() is returned. inline Status CheckPyError(StatusCode code = StatusCode::UnknownError) { if (ARROW_PREDICT_TRUE(!PyErr_Occurred())) { return Status::OK(); } else { return ConvertPyError(code); } } #define RETURN_IF_PYERROR() ARROW_RETURN_NOT_OK(CheckPyError()) #define PY_RETURN_IF_ERROR(CODE) ARROW_RETURN_NOT_OK(CheckPyError(CODE)) // For Cython, as you can't define template C++ functions in Cython, only use them. // This function can set a Python exception. It assumes that T has a (cheap) // default constructor. template T GetResultValue(Result result) { if (ARROW_PREDICT_TRUE(result.ok())) { return *std::move(result); } else { int r = internal::check_status(result.status()); // takes the GIL assert(r == -1); // should have errored out ARROW_UNUSED(r); return {}; } } /// \brief Wrap a Result and return the corresponding Python object. /// /// If the Result is successful, py_wrapper is called with its result value /// and should return a PyObject*. If py_wrapper is successful (returns /// a non-NULL value), its return value is returned. /// /// If either the Result or py_wrapper fails, the associated Python exception /// is raised and NULL is returned. // /// \param result The Result whose value to wrap in a Python object. /// \param py_wrapper A function (likely defined in Cython) to convert the C++ /// value of the Result to a Python object. /// \return A new Python reference, or NULL if an exception occurred template PyObject* WrapResult(Result result, PyWrapper&& py_wrapper) { static_assert(std::is_same_v()))>, "PyWrapper argument to WrapResult should return a PyObject* " "when called with a T*"); Status st = result.status(); if (st.ok()) { PyObject* py_value = py_wrapper(result.MoveValueUnsafe()); st = CheckPyError(); if (st.ok()) { return py_value; } Py_XDECREF(py_value); // should be null, but who knows } // Status is an error, convert it to an exception. return internal::convert_status(st); } // A RAII-style helper that ensures the GIL is acquired inside a lexical block. class ARROW_PYTHON_EXPORT PyAcquireGIL { public: PyAcquireGIL() : acquired_gil_(false) { acquire(); } ~PyAcquireGIL() { release(); } void acquire() { if (!acquired_gil_) { state_ = PyGILState_Ensure(); acquired_gil_ = true; } } // idempotent void release() { if (acquired_gil_) { PyGILState_Release(state_); acquired_gil_ = false; } } private: bool acquired_gil_; PyGILState_STATE state_; ARROW_DISALLOW_COPY_AND_ASSIGN(PyAcquireGIL); }; // A RAII-style helper that releases the GIL until the end of a lexical block class ARROW_PYTHON_EXPORT PyReleaseGIL { public: PyReleaseGIL() : ptr_(PyEval_SaveThread(), &unique_ptr_deleter) {} private: static void unique_ptr_deleter(PyThreadState* state) { if (state) { PyEval_RestoreThread(state); } } std::unique_ptr ptr_; }; // A helper to call safely into the Python interpreter from arbitrary C++ code. // The GIL is acquired, and the current thread's error status is preserved. template auto SafeCallIntoPython(Function&& func) -> decltype(func()) { PyAcquireGIL lock; PyObject* exc_type; PyObject* exc_value; PyObject* exc_traceback; PyErr_Fetch(&exc_type, &exc_value, &exc_traceback); auto maybe_status = std::forward(func)(); // If the return Status is a "Python error", the current Python error status // describes the error and shouldn't be clobbered. if (!IsPyError(::arrow::internal::GenericToStatus(maybe_status)) && exc_type != NULLPTR) { PyErr_Restore(exc_type, exc_value, exc_traceback); } return maybe_status; } template auto SafeCallIntoPythonVoid(Function&& func) -> decltype(func()) { PyAcquireGIL lock; PyObject* exc_type; PyObject* exc_value; PyObject* exc_traceback; PyErr_Fetch(&exc_type, &exc_value, &exc_traceback); func(); if (exc_type != NULLPTR) { PyErr_Restore(exc_type, exc_value, exc_traceback); } } // A RAII primitive that DECREFs the underlying PyObject* when it // goes out of scope. class ARROW_PYTHON_EXPORT OwnedRef { public: OwnedRef() : obj_(NULLPTR) {} OwnedRef(OwnedRef&& other) : OwnedRef(other.detach()) {} explicit OwnedRef(PyObject* obj) : obj_(obj) {} OwnedRef& operator=(OwnedRef&& other) { obj_ = other.detach(); return *this; } ~OwnedRef() { // GH-38626: destructor may be called after the Python interpreter is finalized. if (Py_IsInitialized()) { reset(); } } void reset(PyObject* obj) { Py_XDECREF(obj_); obj_ = obj; } void reset() { reset(NULLPTR); } PyObject* detach() { PyObject* result = obj_; obj_ = NULLPTR; return result; } PyObject* obj() const { return obj_; } PyObject** ref() { return &obj_; } operator bool() const { return obj_ != NULLPTR; } private: ARROW_DISALLOW_COPY_AND_ASSIGN(OwnedRef); PyObject* obj_; }; // Same as OwnedRef, but ensures the GIL is taken when it goes out of scope. // This is for situations where the GIL is not always known to be held // (e.g. if it is released in the middle of a function for performance reasons) class ARROW_PYTHON_EXPORT OwnedRefNoGIL : public OwnedRef { public: OwnedRefNoGIL() : OwnedRef() {} OwnedRefNoGIL(OwnedRefNoGIL&& other) : OwnedRef(other.detach()) {} explicit OwnedRefNoGIL(PyObject* obj) : OwnedRef(obj) {} ~OwnedRefNoGIL() { // GH-38626: destructor may be called after the Python interpreter is finalized. if (Py_IsInitialized() && obj() != NULLPTR) { PyAcquireGIL lock; reset(); } } }; template