2021-06-20 01:13:27 +00:00
|
|
|
// Copyright (c) 2021 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.
|
|
|
|
|
|
|
|
#include "pybind11/smart_holder.h"
|
|
|
|
#include "pybind11_tests.h"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2021-06-20 15:35:51 +00:00
|
|
|
struct Sft : std::enable_shared_from_this<Sft> {
|
|
|
|
std::string history;
|
|
|
|
explicit Sft(const std::string &history) : history{history} {}
|
2021-06-20 16:45:39 +00:00
|
|
|
long use_count() const {
|
|
|
|
#if defined(__cpp_lib_enable_shared_from_this) && (!defined(_MSC_VER) || _MSC_VER >= 1912)
|
|
|
|
return this->shared_from_this().use_count();
|
|
|
|
#else
|
|
|
|
return -1;
|
|
|
|
#endif
|
|
|
|
}
|
2021-06-20 15:35:51 +00:00
|
|
|
virtual ~Sft() = default;
|
|
|
|
|
2021-06-20 16:45:39 +00:00
|
|
|
#if defined(__clang__)
|
2021-06-20 15:35:51 +00:00
|
|
|
// "Group of 4" begin.
|
|
|
|
// This group is not meant to be used, but will leave a trace in the
|
|
|
|
// history in case something goes wrong.
|
2021-06-20 16:45:39 +00:00
|
|
|
// However, compilers other than clang have a variety of issues. It is not
|
|
|
|
// worth the trouble covering all platforms.
|
|
|
|
Sft(const Sft &other) { history = other.history + "_CpCtor"; }
|
2021-06-20 15:35:51 +00:00
|
|
|
|
|
|
|
Sft(Sft &&other) { history = other.history + "_MvCtor"; }
|
|
|
|
|
|
|
|
Sft &operator=(const Sft &other) {
|
|
|
|
history = other.history + "_OpEqLv";
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Sft &operator=(Sft &&other) {
|
|
|
|
history = other.history + "_OpEqRv";
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
// "Group of 4" end.
|
2021-06-20 16:45:39 +00:00
|
|
|
#endif
|
2021-06-20 01:13:27 +00:00
|
|
|
};
|
|
|
|
|
2021-06-20 15:35:51 +00:00
|
|
|
struct SftSharedPtrStash {
|
|
|
|
int ser_no;
|
|
|
|
std::vector<std::shared_ptr<Sft>> stash;
|
|
|
|
explicit SftSharedPtrStash(int ser_no) : ser_no{ser_no} {}
|
|
|
|
void Add(const std::shared_ptr<Sft> &obj) {
|
|
|
|
obj->history += "_Stash" + std::to_string(ser_no) + "Add";
|
|
|
|
stash.push_back(obj);
|
|
|
|
}
|
|
|
|
void AddSharedFromThis(Sft *obj) {
|
|
|
|
auto sft = obj->shared_from_this();
|
|
|
|
sft->history += "_Stash" + std::to_string(ser_no) + "AddSharedFromThis";
|
|
|
|
stash.push_back(sft);
|
|
|
|
}
|
|
|
|
std::string history(unsigned i) {
|
|
|
|
if (i < stash.size())
|
|
|
|
return stash[i]->history;
|
|
|
|
return "OutOfRange";
|
|
|
|
}
|
|
|
|
long use_count(unsigned i) {
|
|
|
|
if (i < stash.size())
|
|
|
|
return stash[i].use_count();
|
|
|
|
return -1;
|
|
|
|
}
|
2021-06-20 01:13:27 +00:00
|
|
|
};
|
|
|
|
|
2021-06-21 23:16:37 +00:00
|
|
|
struct SftTrampoline : Sft, py::trampoline_self_life_support {
|
2021-06-20 15:35:51 +00:00
|
|
|
using Sft::Sft;
|
|
|
|
};
|
|
|
|
|
2021-06-22 01:09:14 +00:00
|
|
|
long pass_shared_ptr(const std::shared_ptr<Sft> &obj) {
|
|
|
|
auto sft = obj->shared_from_this();
|
|
|
|
sft->history += "_PassSharedPtr";
|
|
|
|
return sft.use_count();
|
2021-06-20 01:13:27 +00:00
|
|
|
}
|
|
|
|
|
2021-06-21 23:16:37 +00:00
|
|
|
void pass_unique_ptr(const std::unique_ptr<Sft> &) {}
|
|
|
|
|
2021-06-20 01:13:27 +00:00
|
|
|
} // namespace
|
|
|
|
|
2021-06-20 15:35:51 +00:00
|
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(Sft)
|
|
|
|
PYBIND11_SMART_HOLDER_TYPE_CASTERS(SftSharedPtrStash)
|
2021-06-20 01:13:27 +00:00
|
|
|
|
|
|
|
TEST_SUBMODULE(class_sh_trampoline_shared_from_this, m) {
|
2021-06-20 15:35:51 +00:00
|
|
|
py::classh<Sft, SftTrampoline>(m, "Sft")
|
|
|
|
.def(py::init<std::string>())
|
|
|
|
.def_readonly("history", &Sft::history)
|
|
|
|
.def("use_count", &Sft::use_count);
|
|
|
|
|
|
|
|
py::classh<SftSharedPtrStash>(m, "SftSharedPtrStash")
|
|
|
|
.def(py::init<int>())
|
|
|
|
.def("Add", &SftSharedPtrStash::Add)
|
|
|
|
.def("AddSharedFromThis", &SftSharedPtrStash::AddSharedFromThis)
|
|
|
|
.def("history", &SftSharedPtrStash::history)
|
|
|
|
.def("use_count", &SftSharedPtrStash::use_count);
|
|
|
|
|
2021-06-20 01:13:27 +00:00
|
|
|
m.def("pass_shared_ptr", pass_shared_ptr);
|
2021-06-21 23:16:37 +00:00
|
|
|
m.def("pass_unique_ptr", pass_unique_ptr);
|
2021-06-20 01:13:27 +00:00
|
|
|
}
|