mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-21 12:45:11 +00:00
Removing // clang-format off
- on
directives from test_pickling.cpp (#3738)
This commit is contained in:
parent
0986af6182
commit
c14170a787
@ -1,4 +1,3 @@
|
|||||||
// clang-format off
|
|
||||||
/*
|
/*
|
||||||
tests/test_pickling.cpp -- pickle support
|
tests/test_pickling.cpp -- pickle support
|
||||||
|
|
||||||
@ -11,8 +10,6 @@
|
|||||||
|
|
||||||
#include "pybind11_tests.h"
|
#include "pybind11_tests.h"
|
||||||
|
|
||||||
// clang-format on
|
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
@ -63,19 +60,18 @@ void wrap(py::module m) {
|
|||||||
|
|
||||||
} // namespace exercise_trampoline
|
} // namespace exercise_trampoline
|
||||||
|
|
||||||
// clang-format off
|
|
||||||
|
|
||||||
TEST_SUBMODULE(pickling, m) {
|
TEST_SUBMODULE(pickling, m) {
|
||||||
// test_roundtrip
|
// test_roundtrip
|
||||||
class Pickleable {
|
class Pickleable {
|
||||||
public:
|
public:
|
||||||
explicit Pickleable(const std::string &value) : m_value(value) { }
|
explicit Pickleable(const std::string &value) : m_value(value) {}
|
||||||
const std::string &value() const { return m_value; }
|
const std::string &value() const { return m_value; }
|
||||||
|
|
||||||
void setExtra1(int extra1) { m_extra1 = extra1; }
|
void setExtra1(int extra1) { m_extra1 = extra1; }
|
||||||
void setExtra2(int extra2) { m_extra2 = extra2; }
|
void setExtra2(int extra2) { m_extra2 = extra2; }
|
||||||
int extra1() const { return m_extra1; }
|
int extra1() const { return m_extra1; }
|
||||||
int extra2() const { return m_extra2; }
|
int extra2() const { return m_extra2; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string m_value;
|
std::string m_value;
|
||||||
int m_extra1 = 0;
|
int m_extra1 = 0;
|
||||||
@ -88,8 +84,7 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
py::class_<Pickleable> pyPickleable(m, "Pickleable");
|
py::class_<Pickleable> pyPickleable(m, "Pickleable");
|
||||||
pyPickleable
|
pyPickleable.def(py::init<std::string>())
|
||||||
.def(py::init<std::string>())
|
|
||||||
.def("value", &Pickleable::value)
|
.def("value", &Pickleable::value)
|
||||||
.def("extra1", &Pickleable::extra1)
|
.def("extra1", &Pickleable::extra1)
|
||||||
.def("extra2", &Pickleable::extra2)
|
.def("extra2", &Pickleable::extra2)
|
||||||
@ -105,7 +100,7 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
pyPickleable.def("__setstate__", [](Pickleable &p, const py::tuple &t) {
|
pyPickleable.def("__setstate__", [](Pickleable &p, const py::tuple &t) {
|
||||||
if (t.size() != 3) {
|
if (t.size() != 3) {
|
||||||
throw std::runtime_error("Invalid state!");
|
throw std::runtime_error("Invalid state!");
|
||||||
}
|
}
|
||||||
/* Invoke the constructor (need to use in-place version) */
|
/* Invoke the constructor (need to use in-place version) */
|
||||||
new (&p) Pickleable(t[0].cast<std::string>());
|
new (&p) Pickleable(t[0].cast<std::string>());
|
||||||
|
|
||||||
@ -124,7 +119,7 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
[](const py::tuple &t) {
|
[](const py::tuple &t) {
|
||||||
if (t.size() != 3) {
|
if (t.size() != 3) {
|
||||||
throw std::runtime_error("Invalid state!");
|
throw std::runtime_error("Invalid state!");
|
||||||
}
|
}
|
||||||
auto p = PickleableNew(t[0].cast<std::string>());
|
auto p = PickleableNew(t[0].cast<std::string>());
|
||||||
|
|
||||||
p.setExtra1(t[1].cast<int>());
|
p.setExtra1(t[1].cast<int>());
|
||||||
@ -136,7 +131,7 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
// test_roundtrip_with_dict
|
// test_roundtrip_with_dict
|
||||||
class PickleableWithDict {
|
class PickleableWithDict {
|
||||||
public:
|
public:
|
||||||
explicit PickleableWithDict(const std::string &value) : value(value) { }
|
explicit PickleableWithDict(const std::string &value) : value(value) {}
|
||||||
|
|
||||||
std::string value;
|
std::string value;
|
||||||
int extra;
|
int extra;
|
||||||
@ -147,7 +142,8 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
using PickleableWithDict::PickleableWithDict;
|
using PickleableWithDict::PickleableWithDict;
|
||||||
};
|
};
|
||||||
|
|
||||||
py::class_<PickleableWithDict> pyPickleableWithDict(m, "PickleableWithDict", py::dynamic_attr());
|
py::class_<PickleableWithDict> pyPickleableWithDict(
|
||||||
|
m, "PickleableWithDict", py::dynamic_attr());
|
||||||
pyPickleableWithDict.def(py::init<std::string>())
|
pyPickleableWithDict.def(py::init<std::string>())
|
||||||
.def_readwrite("value", &PickleableWithDict::value)
|
.def_readwrite("value", &PickleableWithDict::value)
|
||||||
.def_readwrite("extra", &PickleableWithDict::extra)
|
.def_readwrite("extra", &PickleableWithDict::extra)
|
||||||
@ -159,7 +155,7 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
pyPickleableWithDict.def("__setstate__", [](const py::object &self, const py::tuple &t) {
|
pyPickleableWithDict.def("__setstate__", [](const py::object &self, const py::tuple &t) {
|
||||||
if (t.size() != 3) {
|
if (t.size() != 3) {
|
||||||
throw std::runtime_error("Invalid state!");
|
throw std::runtime_error("Invalid state!");
|
||||||
}
|
}
|
||||||
/* Cast and construct */
|
/* Cast and construct */
|
||||||
auto &p = self.cast<PickleableWithDict &>();
|
auto &p = self.cast<PickleableWithDict &>();
|
||||||
new (&p) PickleableWithDict(t[0].cast<std::string>());
|
new (&p) PickleableWithDict(t[0].cast<std::string>());
|
||||||
@ -176,12 +172,13 @@ TEST_SUBMODULE(pickling, m) {
|
|||||||
.def(py::init<std::string>())
|
.def(py::init<std::string>())
|
||||||
.def(py::pickle(
|
.def(py::pickle(
|
||||||
[](const py::object &self) {
|
[](const py::object &self) {
|
||||||
return py::make_tuple(self.attr("value"), self.attr("extra"), self.attr("__dict__"));
|
return py::make_tuple(
|
||||||
|
self.attr("value"), self.attr("extra"), self.attr("__dict__"));
|
||||||
},
|
},
|
||||||
[](const py::tuple &t) {
|
[](const py::tuple &t) {
|
||||||
if (t.size() != 3) {
|
if (t.size() != 3) {
|
||||||
throw std::runtime_error("Invalid state!");
|
throw std::runtime_error("Invalid state!");
|
||||||
}
|
}
|
||||||
|
|
||||||
auto cpp_state = PickleableWithDictNew(t[0].cast<std::string>());
|
auto cpp_state = PickleableWithDictNew(t[0].cast<std::string>());
|
||||||
cpp_state.extra = t[1].cast<int>();
|
cpp_state.extra = t[1].cast<int>();
|
||||||
|
Loading…
Reference in New Issue
Block a user