LSSTApplications  18.1.0
LSSTDataManagementBasePackage
Functions
lsst::afw::table::io::python Namespace Reference

Functions

template<typename T >
void declarePersistableFacade (pybind11::module &module, std::string const &suffix)
 Wraps an instantiation of PersistableFacade. More...
 
template<typename Class , typename... Args>
void addPersistableMethods (pybind11::class_< Class, Args... > &cls)
 Add table::io::Persistable and PersistableFacade methods to the pybind11 wrapper for a class. More...
 

Function Documentation

◆ addPersistableMethods()

template<typename Class , typename... Args>
void lsst::afw::table::io::python::addPersistableMethods ( pybind11::class_< Class, Args... > &  cls)

Add table::io::Persistable and PersistableFacade methods to the pybind11 wrapper for a class.

Use this instead of declarePersistableFacade to avoid circular import issues in Python; it allows your class to be used without importing lsst.afw.table.

Use as follows:

  • When declaring the pybind11 class that wraps your Class do not list table::io::PersistableFacade<Class> and table::io::Persistable as subclasses.
  • Call this function to wrap the methods that make your object persistable.

Definition at line 88 of file python.h.

88  {
89  cls.def_static("readFits",
90  (std::shared_ptr<Class>(*)(std::string const &, int)) & PersistableFacade<Class>::readFits,
91  "fileName"_a, "hdu"_a = fits::DEFAULT_HDU);
92  cls.def_static(
93  "readFits",
94  (std::shared_ptr<Class>(*)(fits::MemFileManager &, int)) & PersistableFacade<Class>::readFits,
95  "manager"_a, "hdu"_a = fits::DEFAULT_HDU);
96  cls.def("writeFits", (void (Class::*)(std::string const &, std::string const &) const) & Class::writeFits,
97  "fileName"_a, "mode"_a = "w");
98  cls.def("writeFits",
99  (void (Class::*)(fits::MemFileManager &, std::string const &) const) & Class::writeFits,
100  "manager"_a, "mode"_a = "w");
101  cls.def("isPersistable", &Class::isPersistable);
102 }
STL class.
const int DEFAULT_HDU
Specify that the default HDU should be read.
Definition: fitsDefaults.h:18

◆ declarePersistableFacade()

template<typename T >
void lsst::afw::table::io::python::declarePersistableFacade ( pybind11::module &  module,
std::string const &  suffix 
)

Wraps an instantiation of PersistableFacade.

Deprecated:
Use addPersistableMethods for all new code.

Pybind11 shall assume that PersistableFacade is managed using std::shared_ptr, as this is required for compatibility with existing subclasses of PersistableFacade. This means that wrapping will only work if new classes also use std::shared_ptr as their holder type.

Template Parameters
TThe type of object this PersistableFacade is for.
Parameters
moduleThe pybind11 module that shall contain PersistableFacade<T>
suffixA string to disambiguate this class from other PersistableFacades. The Python name of this class shall be PersistableFacade<suffix>.

Definition at line 63 of file python.h.

63  {
64  using namespace pybind11::literals;
65 
66  pybind11::class_<PersistableFacade<T>, std::shared_ptr<PersistableFacade<T>>> cls(
67  module, ("PersistableFacade" + suffix).c_str());
68  cls.def_static("readFits",
69  (std::shared_ptr<T>(*)(std::string const &, int)) & PersistableFacade<T>::readFits,
70  "fileName"_a, "hdu"_a = fits::DEFAULT_HDU);
71  cls.def_static("readFits",
72  (std::shared_ptr<T>(*)(fits::MemFileManager &, int)) & PersistableFacade<T>::readFits,
73  "manager"_a, "hdu"_a = fits::DEFAULT_HDU);
74 }
STL class.
const int DEFAULT_HDU
Specify that the default HDU should be read.
Definition: fitsDefaults.h:18