-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* 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: * https://github.com/pybind/pybind11/blob/dbf848aff7c37ef8798bc9459a86193e28b1032f/include/pybind11/detail/type_caster_base.h#L634 * https://github.com/pybind/pybind11/blob/dbf848aff7c37ef8798bc9459a86193e28b1032f/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).
- Loading branch information
Showing
6 changed files
with
86 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters