Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0000d66e7c+4a51730b0a,g0485b4d2cb+be65c9c1d7,g0fba68d861+eb108e5914,g1ec0fe41b4+3ea9d11450,g1fd858c14a+41d169aaf2,g2440f9efcc+8c5ae1fdc5,g35bb328faa+8c5ae1fdc5,g470b45d79c+bb7d8e732a,g4d2262a081+972b13e66a,g53246c7159+8c5ae1fdc5,g55585698de+c657de43f9,g56a49b3a55+7eddd92ad8,g60b5630c4e+c657de43f9,g67b6fd64d1+97cc007aa2,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g7ac00fbb6c+088e1a4fa9,g8352419a5c+8c5ae1fdc5,g8852436030+3f3bba821f,g89139ef638+97cc007aa2,g94187f82dc+c657de43f9,g989de1cb63+97cc007aa2,g9d31334357+c657de43f9,g9f33ca652e+06d39d8afb,ga815be3f0b+8e7c4d07ad,gabe3b4be73+8856018cbb,gabf8522325+977d9fabaf,gb1101e3267+12c96a40b1,gb89ab40317+97cc007aa2,gc91f06edcd+2ffb87f22b,gcf25f946ba+3f3bba821f,gd6cbbdb0b4+1cc2750d2e,gde0f65d7ad+4ad7118dbf,ge278dab8ac+6b863515ed,ge410e46f29+97cc007aa2,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf67bdafdda+97cc007aa2,w.2025.19
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
lsst::log::detail::PyObjectPtr Class Reference

Smart pointer class for PyObject instances. More...

#include <PyObjectPtr.h>

Public Member Functions

 PyObjectPtr (PyObject *object=nullptr)
 Construct a pointer from a regular "new" object reference.
 
 PyObjectPtr (PyObjectPtr const &other)
 
 PyObjectPtr (PyObjectPtr &&other)
 
 ~PyObjectPtr ()
 
PyObjectPtroperator= (PyObjectPtr const &other)
 
PyObjectPtroperator= (PyObjectPtr &&other)
 
PyObjectPtroperator= (PyObject *object)
 
 operator PyObject * () const
 
PyObject * release ()
 
PyObject *& get ()
 
bool operator== (std::nullptr_t) const
 
bool operator!= (std::nullptr_t) const
 

Static Public Member Functions

static PyObjectPtr from_borrowed (PyObject *object)
 Wraps a "borrowed" object reference, reference counter is incremented.
 

Detailed Description

Smart pointer class for PyObject instances.

Definition at line 37 of file PyObjectPtr.h.

Constructor & Destructor Documentation

◆ PyObjectPtr() [1/3]

lsst::log::detail::PyObjectPtr::PyObjectPtr ( PyObject * object = nullptr)
inlineexplicit

Construct a pointer from a regular "new" object reference.

Definition at line 51 of file PyObjectPtr.h.

51: m_object(object) {}

◆ PyObjectPtr() [2/3]

lsst::log::detail::PyObjectPtr::PyObjectPtr ( PyObjectPtr const & other)
inline

Definition at line 54 of file PyObjectPtr.h.

54 : m_object(other.m_object) {
55 Py_XINCREF(m_object);
56 }

◆ PyObjectPtr() [3/3]

lsst::log::detail::PyObjectPtr::PyObjectPtr ( PyObjectPtr && other)
inline

Definition at line 59 of file PyObjectPtr.h.

59 : m_object(other.m_object) {
60 other.m_object = nullptr;
61 }

◆ ~PyObjectPtr()

lsst::log::detail::PyObjectPtr::~PyObjectPtr ( )
inline

Definition at line 64 of file PyObjectPtr.h.

64{ Py_CLEAR(m_object); }

Member Function Documentation

◆ from_borrowed()

static PyObjectPtr lsst::log::detail::PyObjectPtr::from_borrowed ( PyObject * object)
inlinestatic

Wraps a "borrowed" object reference, reference counter is incremented.

Definition at line 43 of file PyObjectPtr.h.

43 {
44 Py_XINCREF(object);
45 return PyObjectPtr(object);
46 }
PyObjectPtr(PyObject *object=nullptr)
Construct a pointer from a regular "new" object reference.
Definition PyObjectPtr.h:51

◆ get()

PyObject *& lsst::log::detail::PyObjectPtr::get ( )
inline

Definition at line 99 of file PyObjectPtr.h.

99{ return m_object; }

◆ operator PyObject *()

lsst::log::detail::PyObjectPtr::operator PyObject * ( ) const
inline

Definition at line 88 of file PyObjectPtr.h.

88{ return m_object; }

◆ operator!=()

bool lsst::log::detail::PyObjectPtr::operator!= ( std::nullptr_t ) const
inline

Definition at line 103 of file PyObjectPtr.h.

103{ return m_object != nullptr; }

◆ operator=() [1/3]

PyObjectPtr & lsst::log::detail::PyObjectPtr::operator= ( PyObject * object)
inline

Definition at line 80 of file PyObjectPtr.h.

80 {
81 Py_CLEAR(m_object);
82 m_object = object;
83 Py_XINCREF(m_object);
84 return *this;
85 }

◆ operator=() [2/3]

PyObjectPtr & lsst::log::detail::PyObjectPtr::operator= ( PyObjectPtr && other)
inline

Definition at line 73 of file PyObjectPtr.h.

73 {
74 Py_CLEAR(m_object);
75 m_object = other.m_object;
76 other.m_object = nullptr;
77 return *this;
78 }

◆ operator=() [3/3]

PyObjectPtr & lsst::log::detail::PyObjectPtr::operator= ( PyObjectPtr const & other)
inline

Definition at line 66 of file PyObjectPtr.h.

66 {
67 Py_CLEAR(m_object);
68 m_object = other.m_object;
69 Py_XINCREF(m_object);
70 return *this;
71 }

◆ operator==()

bool lsst::log::detail::PyObjectPtr::operator== ( std::nullptr_t ) const
inline

Definition at line 102 of file PyObjectPtr.h.

102{ return m_object == nullptr; }

◆ release()

PyObject * lsst::log::detail::PyObjectPtr::release ( )
inline

Definition at line 91 of file PyObjectPtr.h.

91 {
92 auto object = m_object;
93 m_object = nullptr;
94 return object;
95 }

The documentation for this class was generated from the following file: