mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-24 22:25:10 +00:00
129934ad9f
* Factor out detail/value_and_holder.h (from detail/type_caster_base.h) This is in support of PR #5213: * trampoline_self_life_support.h depends on value_and_holder.h * type_caster_base.h depends on trampoline_self_life_support.h * Fix a minor and inconsequential inconsistency in `copyable_holder_caster`: the correct `load_value()` return type is `void` (as defined in `type_caster_generic`) For easy future reference, this is the long-standing inconsistency: *dbf848aff7/include/pybind11/detail/type_caster_base.h (L634)
*dbf848aff7/include/pybind11/cast.h (L797)
Noticed in passing while working on PR #5213. * Add `DANGER ZONE` comment in detail/init.h, similar to a comment added on the smart_holder branch (all the way back in 2021).
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
// Copyright (c) 2016-2024 The Pybind Development Team.
|
|
// All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
#include <cstddef>
|
|
#include <typeinfo>
|
|
|
|
PYBIND11_NAMESPACE_BEGIN(PYBIND11_NAMESPACE)
|
|
PYBIND11_NAMESPACE_BEGIN(detail)
|
|
|
|
struct value_and_holder {
|
|
instance *inst = nullptr;
|
|
size_t index = 0u;
|
|
const detail::type_info *type = nullptr;
|
|
void **vh = nullptr;
|
|
|
|
// Main constructor for a found value/holder:
|
|
value_and_holder(instance *i, const detail::type_info *type, size_t vpos, size_t index)
|
|
: inst{i}, index{index}, type{type},
|
|
vh{inst->simple_layout ? inst->simple_value_holder
|
|
: &inst->nonsimple.values_and_holders[vpos]} {}
|
|
|
|
// Default constructor (used to signal a value-and-holder not found by get_value_and_holder())
|
|
value_and_holder() = default;
|
|
|
|
// Used for past-the-end iterator
|
|
explicit value_and_holder(size_t index) : index{index} {}
|
|
|
|
template <typename V = void>
|
|
V *&value_ptr() const {
|
|
return reinterpret_cast<V *&>(vh[0]);
|
|
}
|
|
// True if this `value_and_holder` has a non-null value pointer
|
|
explicit operator bool() const { return value_ptr() != nullptr; }
|
|
|
|
template <typename H>
|
|
H &holder() const {
|
|
return reinterpret_cast<H &>(vh[1]);
|
|
}
|
|
bool holder_constructed() const {
|
|
return inst->simple_layout
|
|
? inst->simple_holder_constructed
|
|
: (inst->nonsimple.status[index] & instance::status_holder_constructed) != 0u;
|
|
}
|
|
// NOLINTNEXTLINE(readability-make-member-function-const)
|
|
void set_holder_constructed(bool v = true) {
|
|
if (inst->simple_layout) {
|
|
inst->simple_holder_constructed = v;
|
|
} else if (v) {
|
|
inst->nonsimple.status[index] |= instance::status_holder_constructed;
|
|
} else {
|
|
inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_holder_constructed;
|
|
}
|
|
}
|
|
bool instance_registered() const {
|
|
return inst->simple_layout
|
|
? inst->simple_instance_registered
|
|
: ((inst->nonsimple.status[index] & instance::status_instance_registered) != 0);
|
|
}
|
|
// NOLINTNEXTLINE(readability-make-member-function-const)
|
|
void set_instance_registered(bool v = true) {
|
|
if (inst->simple_layout) {
|
|
inst->simple_instance_registered = v;
|
|
} else if (v) {
|
|
inst->nonsimple.status[index] |= instance::status_instance_registered;
|
|
} else {
|
|
inst->nonsimple.status[index] &= (std::uint8_t) ~instance::status_instance_registered;
|
|
}
|
|
}
|
|
};
|
|
|
|
PYBIND11_NAMESPACE_END(detail)
|
|
PYBIND11_NAMESPACE_END(PYBIND11_NAMESPACE)
|