LSST Applications g034a557a3c+0df69e75ff,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+1c8dc8730a,g1ce3e0751c+f991eae79d,g28da252d5a+a136f03385,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g6233c72cae+da9c58a417,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+4fc997592f,g8cd86fa7b1+5f14beadf5,g965a9036f2+4fc997592f,g979bb04a14+87f76c17e6,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+77117948e7,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+4fc997592f,gcd45df26be+4fc997592f,gcdd4ae20e8+0acf6430b1,gcf0d15dbbd+0acf6430b1,gdaeeff99f8+006e14e809,gdbce86181e+467b805b48,ge3d4d395c2+224150c836,ge5f7162a3a+1d9667e7ad,ge6cb8fbbf7+0992c83eee,ge79ae78c31+b6588ad223,gf048a9a2f4+41d6ddaca1,gf0baf85859+b4cca3d10f,w.2024.30
LSST Data Management Base Package
Loading...
Searching...
No Matches
Namespaces | Classes | Typedefs | Functions
lsst::afw::typehandling Namespace Reference

Namespaces

namespace  _GenericMap
 
namespace  _SimpleGenericMap
 
namespace  detail
 
namespace  test
 
namespace  testUtils
 

Classes

class  GenericMap
 Interface for a heterogeneous map. More...
 
class  Key
 Key for type-safe lookup in a GenericMap. More...
 
class  MutableGenericMap
 Interface for a GenericMap that allows element addition and removal. More...
 
class  PolymorphicValue
 Container that passes Storable objects by value while preserving type. More...
 
class  SimpleGenericMap
 A GenericMap that allows insertion and deletion of arbitrary values. More...
 
class  Storable
 Interface supporting iteration over heterogenous containers. More...
 
class  StorableHelper
 "Trampoline" for Storable to let it be used as a base class in Python. More...
 
class  UnsupportedOperationException
 Exception thrown by Storable operations for unimplemented operations. More...
 

Typedefs

using PyStorable = py::class_<Storable, PySharedPtr<Storable>, table::io::Persistable, StorableHelper<>>
 

Functions

template<typename V , typename K >
constexpr Key< K, V > makeKey (K const &id)
 Factory function for Key, to enable type parameter inference.
 
template<typename K , typename V >
std::ostreamoperator<< (std::ostream &os, Key< K, V > const &key)
 Output operator for Key.
 
void swap (PolymorphicValue &lhs, PolymorphicValue &rhs) noexcept
 Swap specialization for PolymorphicValue.
 
std::string declareGenericMapRestrictions (std::string const &className, std::string const &keyName)
 
std::ostreamoperator<< (std::ostream &os, Storable const &storable)
 Output operator for Storable.
 
void wrapGenericMap (utils::python::WrapperCollection &wrappers)
 
void wrapSimpleGenericMap (utils::python::WrapperCollection &wrappers)
 
void wrapStorable (utils::python::WrapperCollection &wrappers)
 
 PYBIND11_MODULE (_typehandling, mod)
 

Typedef Documentation

◆ PyStorable

Definition at line 41 of file _Storable.cc.

Function Documentation

◆ declareGenericMapRestrictions()

std::string lsst::afw::typehandling::declareGenericMapRestrictions ( std::string const & className,
std::string const & keyName )

Definition at line 37 of file python.cc.

37 {
38 // Give the class a custom docstring to avoid confusing Python users
39 std::string docstring = R"docstring(
40For compatibility with C++, ``)docstring" +
41 className + R"docstring(`` has the following restrictions:
42 - all keys must be )docstring" + keyName +
43 R"docstring(
44 - values must be built-in types or subclasses of `lsst.afw.typehandling.Storable`.
45 Almost any user-defined class in C++ or Python can have

◆ makeKey()

template<typename V , typename K >
constexpr Key< K, V > makeKey ( K const & id)
constexpr

Factory function for Key, to enable type parameter inference.

Parameters
idthe key ID to create.
Returns
a key of the desired type
Exception Safety
Provides the same exception safety as the copy-constructor of K.

Calling this function prevents you from having to explicitly name the key type:

auto key = makeKey<int>("foo");

Definition at line 173 of file Key.h.

173 {
174 return Key<K, V>(id);
175}
Key for type-safe lookup in a GenericMap.
Definition Key.h:52

◆ operator<<() [1/2]

template<typename K , typename V >
std::ostream & operator<< ( std::ostream & os,
Key< K, V > const & key )

Output operator for Key.

The output will use C++ template notation for the key; for example, a key "foo" pointing to an int may print as "foo<int>".

Parameters
osthe desired output stream
keythe key to print
Returns
a reference to os
Exception Safety
Provides basic exception safety if the output operator of K is exception-safe.
Warning
the type name is compiler-specific and may be mangled or unintuitive; for example, some compilers say "i" instead of "int"

Definition at line 196 of file Key.h.

196 {
197 static const std::string typeStr = boost::core::demangle(typeid(V).name());
198 static const std::string constStr = std::is_const<V>::value ? " const" : "";
199 static const std::string volatileStr = std::is_volatile<V>::value ? " volatile" : "";
200 os << key.getId() << "<" << typeStr << constStr << volatileStr << ">";
201 return os;
202}
table::Key< std::string > name
Definition Amplifier.cc:116
std::ostream * os
Definition Schema.cc:557
constexpr K const & getId() const noexcept
Return the identifier of this field.
Definition Key.h:105

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
Storable const & storable )
inline

Output operator for Storable.

Parameters
osthe desired output stream
storablethe object to print
Returns
a reference to os
Exceptions
UnsupportedOperationExceptionThrown if storable does not have an implementation of Storable::toString.

Definition at line 174 of file Storable.h.

174 {
175 return os << storable.toString();
176}

◆ PYBIND11_MODULE()

lsst::afw::typehandling::PYBIND11_MODULE ( _typehandling ,
mod  )

Definition at line 41 of file _typehandling.cc.

41 {
42 WrapperCollection w(mod, "lsst.afw.typehandling");
46 w.finish();
47}
void wrapSimpleGenericMap(utils::python::WrapperCollection &wrappers)
void wrapStorable(utils::python::WrapperCollection &wrappers)
Definition _Storable.cc:43
void wrapGenericMap(utils::python::WrapperCollection &wrappers)
double w
Definition CoaddPsf.cc:70

◆ swap()

void swap ( PolymorphicValue & lhs,
PolymorphicValue & rhs )
inlinenoexcept

Swap specialization for PolymorphicValue.

Definition at line 152 of file PolymorphicValue.h.

152{ lhs.swap(rhs); }
void swap(PolymorphicValue &other) noexcept
Exchange the contents of this container and another.

◆ wrapGenericMap()

void lsst::afw::typehandling::wrapGenericMap ( utils::python::WrapperCollection & wrappers)

Definition at line 221 of file _GenericMap.cc.

221 {
222 declareGenericMap<std::string>(wrappers, "S", "strings");
223 declareMutableGenericMap<std::string>(wrappers, "S", "strings");
224}

◆ wrapSimpleGenericMap()

void lsst::afw::typehandling::wrapSimpleGenericMap ( utils::python::WrapperCollection & wrappers)

Definition at line 79 of file _SimpleGenericMap.cc.

79 {
80 declareSimpleGenericMap<std::string>(wrappers, "S", "strings");
81}

◆ wrapStorable()

void lsst::afw::typehandling::wrapStorable ( utils::python::WrapperCollection & wrappers)

Definition at line 43 of file _Storable.cc.

43 {
44 wrappers.addInheritanceDependency("lsst.afw.table.io");
45
46 wrappers.wrapType(PyStorable(wrappers.module, "Storable"), [](auto& mod, auto& cls) {
47 // Do not wrap methods inherited from Persistable
48 cls.def(py::init<>()); // Dummy constructor for pure-Python subclasses
49 // Do not wrap optional Storable methods; let subclasses do it as appropriate
50 cls.def("__eq__", [](Storable const& self, Storable const& other) { return self.equals(other); },
51 "other"_a);
52 });
53
54 wrappers.wrapType(
55 py::class_<StorableHelperFactory>(
56 wrappers.module, "StorableHelperFactory"
57 ),
58 [](auto& mod, auto& cls) {
59 cls.def(py::init<std::string&, std::string&>());
60 }
61 );
62}
py::class_< Storable, PySharedPtr< Storable >, table::io::Persistable, StorableHelper<> > PyStorable
Definition _Storable.cc:41