-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30148 from rwgk/pybind11k_merge_sh
git merge smart_holder
- Loading branch information
Showing
7 changed files
with
97 additions
and
98 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
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,51 @@ | ||
// Copyright (c) 2020-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 "pybind11/detail/struct_smart_holder.h" | ||
|
||
namespace pybindit { | ||
namespace memory { | ||
namespace smart_holder_poc { // Proof-of-Concept implementations. | ||
|
||
template <typename T> | ||
T &as_lvalue_ref(const smart_holder &hld) { | ||
static const char *context = "as_lvalue_ref"; | ||
hld.ensure_is_populated(context); | ||
hld.ensure_has_pointee(context); | ||
return *hld.as_raw_ptr_unowned<T>(); | ||
} | ||
|
||
template <typename T> | ||
T &&as_rvalue_ref(const smart_holder &hld) { | ||
static const char *context = "as_rvalue_ref"; | ||
hld.ensure_is_populated(context); | ||
hld.ensure_has_pointee(context); | ||
return std::move(*hld.as_raw_ptr_unowned<T>()); | ||
} | ||
|
||
template <typename T> | ||
T *as_raw_ptr_release_ownership(smart_holder &hld, | ||
const char *context = "as_raw_ptr_release_ownership") { | ||
hld.ensure_can_release_ownership(context); | ||
T *raw_ptr = hld.as_raw_ptr_unowned<T>(); | ||
hld.release_ownership(); | ||
return raw_ptr; | ||
} | ||
|
||
template <typename T, typename D = std::default_delete<T>> | ||
std::unique_ptr<T, D> as_unique_ptr(smart_holder &hld) { | ||
static const char *context = "as_unique_ptr"; | ||
hld.ensure_compatible_rtti_uqp_del<T, D>(context); | ||
hld.ensure_use_count_1(context); | ||
T *raw_ptr = hld.as_raw_ptr_unowned<T>(); | ||
hld.release_ownership(); | ||
// KNOWN DEFECT (see PR #4850): Does not copy the deleter. | ||
return std::unique_ptr<T, D>(raw_ptr); | ||
} | ||
|
||
} // namespace smart_holder_poc | ||
} // namespace memory | ||
} // namespace pybindit |
Oops, something went wrong.