LSST Applications g180d380827+0f66a164bb,g2079a07aa2+86d27d4dc4,g2305ad1205+7d304bc7a0,g29320951ab+500695df56,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g33d1c0ed96+0e5473021a,g3a166c0a6a+0e5473021a,g3ddfee87b4+e42ea45bea,g48712c4677+36a86eeaa5,g487adcacf7+2dd8f347ac,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+c70619cc9d,g5a732f18d5+53520f316c,g5ea96fc03c+341ea1ce94,g64a986408d+f7cd9c7162,g858d7b2824+f7cd9c7162,g8a8a8dda67+585e252eca,g99cad8db69+469ab8c039,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,gb0e22166c9+60f28cb32d,gba4ed39666+c2a2e4ac27,gbb8dafda3b+c92fc63c7e,gbd866b1f37+f7cd9c7162,gc120e1dc64+02c66aa596,gc28159a63d+0e5473021a,gc3e9b769f7+b0068a2d9f,gcf0d15dbbd+e42ea45bea,gdaeeff99f8+f9a426f77a,ge6526c86ff+84383d05b3,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gff1a9f87cc+f7cd9c7162,w.2024.17
LSST Data Management Base Package
Loading...
Searching...
No Matches
PropertySet.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
2
3/*
4 * LSST Data Management System
5 * Copyright 2008, 2009, 2010 LSST Corporation.
6 *
7 * This product includes software developed by the
8 * LSST Project (http://www.lsst.org/).
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the LSST License Statement and
21 * the GNU General Public License along with this program. If not,
22 * see <http://www.lsstcorp.org/LegalNotices/>.
23 */
24
25#ifndef LSST_DAF_BASE_PROPERTYSET
26#define LSST_DAF_BASE_PROPERTYSET
27
46#include <memory>
47#include <string>
48#include <typeinfo>
49#include <unordered_map>
50#include <vector>
51#include <any>
52
53#include "lsst/base.h"
55#include "lsst/pex/exceptions.h"
56
57namespace lsst {
58namespace daf {
59namespace base {
60
61#if defined(__ICC)
62#pragma warning(push)
63#pragma warning(disable : 444)
64#endif
65
67public:
68 // Typedefs
71
77 explicit PropertySet(bool flat = false);
78
80 virtual ~PropertySet() noexcept;
81
82 // No copying
83 PropertySet(const PropertySet&) = delete;
84 PropertySet& operator=(const PropertySet&) = delete;
85
86 // No moving
88 PropertySet& operator=(PropertySet&&) = delete;
89
90 // Accessors
91
97 virtual std::shared_ptr<PropertySet> deepCopy() const;
98
105 size_t nameCount(bool topLevelOnly = true) const;
106
114 std::vector<std::string> names(bool topLevelOnly = true) const;
115
119 std::vector<std::string> paramNames(bool topLevelOnly = true) const;
120
124 std::vector<std::string> propertySetNames(bool topLevelOnly = true) const;
125
132 bool exists(std::string const& name) const;
133
140 bool isArray(std::string const& name) const;
141
148 bool isPropertySetPtr(std::string const& name) const;
149
156 bool isUndefined(std::string const& name) const;
157
164 size_t valueCount() const;
165
172 size_t valueCount(std::string const& name) const;
173
183 std::type_info const& typeOf(std::string const& name) const;
184
188 // Implemented in the .cc file to work around symbol visiblity issues on macOS
189 // e.g. https://github.com/pybind/pybind11/issues/1503
190 template <typename T>
191 static std::type_info const& typeOfT();
192
193 // The following throw an exception if the type does not match exactly.
194
206 template <typename T>
207 T get(std::string const& name) const;
208
221 template <typename T>
222 T get(std::string const& name, T const& defaultValue) const;
223
235 template <typename T>
236 std::vector<T> getArray(std::string const& name) const;
237
238 // The following throw an exception if the conversion is inappropriate.
239
250 bool getAsBool(std::string const& name) const;
251
261 int getAsInt(std::string const& name) const;
262
274 int64_t getAsInt64(std::string const& name) const;
275
285 uint64_t getAsUInt64(std::string const& name) const;
286
296 double getAsDouble(std::string const& name) const;
297
309 std::string getAsString(std::string const& name) const;
310
319 std::shared_ptr<PropertySet> getAsPropertySetPtr(std::string const& name) const;
320
329 Persistable::Ptr getAsPersistablePtr(std::string const& name) const;
330
340 virtual std::string toString(bool topLevelOnly = false, std::string const& indent = "") const;
341
342 // Modifiers
343
358 template <typename T>
359 void set(std::string const& name, T const& value);
360
369 template <typename T>
370 void set(std::string const& name, std::vector<T> const& value);
371
379 void set(std::string const& name, char const* value);
380
396 template <typename T>
397 void add(std::string const& name, T const& value);
398
410 template <typename T>
411 void add(std::string const& name, std::vector<T> const& value);
412
423 void add(std::string const& name, char const* value);
424
426
439 virtual void copy(std::string const& dest, PropertySet const & source, std::string const& name,
440 bool asScalar = false);
442
444
457 virtual void combine(PropertySet const & source);
459
466 virtual void remove(std::string const& name);
467
468protected:
469 /*
470 * Find the property name (possibly hierarchical) and set or replace its
471 * value with the given vector of values. Hook for subclass overrides of
472 * top-level setting.
473 *
474 * @param[in] name Property name to find, possibly hierarchical.
475 * @param[in] vp shared_ptr to vector of values.
476 * @throws InvalidParameterError Hierarchical name uses non-PropertySet.
477 */
478 virtual void _set(std::string const& name, std::shared_ptr<std::vector<std::any> > vp);
479
480 /*
481 * Find the property name (possibly hierarchical) and append or set its
482 * value with the given vector of values.
483 *
484 * @param[in] name Property name to find, possibly hierarchical.
485 * @param[in] vp shared_ptr to vector of values.
486 * @throws InvalidParameterError Hierarchical name uses non-PropertySet.
487 */
488 virtual void _add(std::string const& name, std::shared_ptr<std::vector<std::any> > vp);
489
490 // Format a value in human-readable form; called by toString
491 virtual std::string _format(std::string const& name) const;
492
493private:
494
495 typedef std::unordered_map<std::string, std::shared_ptr<std::vector<std::any> > > AnyMap;
496
497 /*
498 * Find the property name (possibly hierarchical).
499 *
500 * @param[in] name Property name to find, possibly hierarchical.
501 * @return unordered_map::iterator to the property or end() if nonexistent.
502 */
503 AnyMap::iterator _find(std::string const& name);
504
505 /*
506 * Find the property name (possibly hierarchical). Const version.
507 *
508 * @param[in] name Property name to find, possibly hierarchical.
509 * @return unordered_map::const_iterator to the property or end().
510 */
511 AnyMap::const_iterator _find(std::string const& name) const;
512
513 /*
514 * Find the property name (possibly hierarchical) and set or replace its
515 * value with the given vector of values.
516 *
517 * @param[in] name Property name to find, possibly hierarchical.
518 * @param[in] vp shared_ptr to vector of values.
519 * @throws InvalidParameterError Hierarchical name uses non-PropertySet.
520 */
521 virtual void _findOrInsert(std::string const& name, std::shared_ptr<std::vector<std::any> > vp);
522 void _cycleCheckPtrVec(std::vector<std::shared_ptr<PropertySet>> const& v, std::string const& name);
523 void _cycleCheckAnyVec(std::vector<std::any> const& v, std::string const& name);
524 void _cycleCheckPtr(std::shared_ptr<PropertySet> const & v, std::string const& name);
525
526 AnyMap _map;
527 bool _flat;
528};
529
530#if defined(__ICC)
531#pragma warning(pop)
532#endif
533
534template <>
535void PropertySet::add<std::shared_ptr<PropertySet>>(
536 std::string const& name,
538);
539
540template <>
541void PropertySet::add<std::shared_ptr<PropertySet>>(
542 std::string const& name,
544);
545
546}
547} // namespace daf
548} // namespace lsst
549
550#endif
table::Key< std::string > name
Definition Amplifier.cc:116
Basic LSST definitions.
#define LSST_EXPORT
Make a symbol visible even if visiblity is hidden (e.g.
Definition base.h:37
Base class for all persistable classes.
Definition Persistable.h:75
Class for storing generic metadata.
Definition PropertySet.h:66
std::shared_ptr< PropertySet > Ptr
Definition PropertySet.h:69
std::shared_ptr< PropertySet const > ConstPtr
Definition PropertySet.h:70
PropertySet(bool flat=false)
Construct an empty PropertySet.
virtual ~PropertySet() noexcept
Destructor.
Interface for Persistable base class.
daf::base::PropertySet * set
Definition fits.cc:931
STL namespace.