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
IdFactory.cc
Go to the documentation of this file.
1#include <memory>
2#include "boost/format.hpp"
3
6
7namespace lsst {
8namespace afw {
9namespace table {
10
11namespace {
12
13class SimpleIdFactory : public IdFactory {
14public:
15 RecordId operator()() override { return ++_current; }
16
17 void notify(RecordId id) override { _current = id; }
18
19 std::shared_ptr<IdFactory> clone() const override { return std::make_shared<SimpleIdFactory>(*this); }
20
21 SimpleIdFactory() {}
22
23private:
24 RecordId _current{0};
25};
26
27class SourceIdFactory : public IdFactory {
28public:
29 RecordId operator()() override {
30 if (++_lower & _upperMask) {
31 --_lower;
32 throw LSST_EXCEPT(pex::exceptions::LengthError,
33 (boost::format("Next ID '%s' is too large for the number of reserved bits") %
34 (_lower + 1))
35 .str());
36 }
37 return _upper | _lower;
38 }
39
40 void notify(RecordId id) override {
41 RecordId newLower = id & (~_upper); // chop off the exact exposure ID
42 if (newLower & _upperMask) {
43 throw LSST_EXCEPT(
44 pex::exceptions::InvalidParameterError,
45 (boost::format("Explicit ID '%s' does not have the correct form.") % newLower).str());
46 }
47 _lower = newLower;
48 }
49
50 std::shared_ptr<IdFactory> clone() const override { return std::make_shared<SourceIdFactory>(*this); }
51
52 SourceIdFactory(RecordId expId, int reserved)
53 : _upper(expId << reserved),
54 _upperMask(std::numeric_limits<RecordId>::max() << reserved),
55 _lower(0) {
56 if (_upper >> reserved != expId) {
57 throw LSST_EXCEPT(pex::exceptions::InvalidParameterError,
58 (boost::format("Exposure ID '%s' is too large.") % expId).str());
59 }
60 }
61
62private:
63 RecordId const _upper;
64 RecordId const _upperMask;
65 RecordId _lower;
66};
67
68} // namespace
69
70std::shared_ptr<IdFactory> IdFactory::makeSimple() { return std::make_shared<SimpleIdFactory>(); }
71
73 return std::make_shared<SourceIdFactory>(expId, reserved);
74}
75} // namespace table
76} // namespace afw
77} // namespace lsst
int max
table::Key< int > id
Definition Detector.cc:162
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition Exception.h:48
Tag types used to declare specialized field types.
Definition misc.h:31
static std::shared_ptr< IdFactory > makeSimple()
Return a simple IdFactory that simply counts from 1.
Definition IdFactory.cc:70
static std::shared_ptr< IdFactory > makeSource(RecordId expId, int reserved)
Return an IdFactory that includes another, fixed ID in the higher-order bits.
Definition IdFactory.cc:72
std::int64_t RecordId
Type used for unique IDs for records.
Definition misc.h:21
STL namespace.