CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HandleBase.h
Go to the documentation of this file.
1 #ifndef DataFormats_Common_HandleBase_h
2 #define DataFormats_Common_HandleBase_h
3 
4 /*----------------------------------------------------------------------
5 
6 Handle: Non-owning "smart pointer" for reference to products and
7 their provenances.
8 
9 This is a very preliminary version, and lacks safety features and
10 elegance.
11 
12 If the pointed-to product or provenance is destroyed, use of the
13 Handle becomes undefined. There is no way to query the Handle to
14 discover if this has happened.
15 
16 Handles can have:
17  -- Product and Provenance pointers both null;
18  -- Both pointers valid
19 
20 To check validity, one can use the isValid() function.
21 
22 If failedToGet() returns true then the requested data is not available
23 If failedToGet() returns false but isValid() is also false then no attempt
24  to get data has occurred
25 
26 ----------------------------------------------------------------------*/
27 
28 #include <cassert>
32 #include <algorithm>
33 
34 #include <memory>
35 
36 namespace cms {
37  class Exception;
38 }
39 namespace edm {
40  class HandleBase {
41  public:
42  HandleBase() : product_(nullptr), prov_(nullptr) {}
43 
44  HandleBase(void const* prod, Provenance const* prov) : product_(prod), prov_(prov) {
45  assert(prod);
46  assert(prov);
47  }
48 
50 
51  void clear() {
52  product_ = nullptr;
53  prov_ = nullptr;
54  whyFailedFactory_.reset();
55  }
56 
58  using std::swap;
59  swap(product_, other.product_);
60  std::swap(prov_, other.prov_);
61  swap(whyFailedFactory_, other.whyFailedFactory_);
62  }
63 
65  HandleBase temp(rhs);
66  this->swap(temp);
67  return *this;
68  }
69 
70  bool isValid() const { return product_ && prov_; }
71 
72  bool failedToGet() const { return bool(whyFailedFactory_); }
73 
74  Provenance const* provenance() const { return prov_; }
75 
76  ProductID id() const;
77 
78  HandleBase(HandleBase const&) = default;
79 
81  HandleBase(std::shared_ptr<HandleExceptionFactory>&& iWhyFailed)
82  : product_(), prov_(nullptr), whyFailedFactory_(iWhyFailed) {}
83 
85  product_ = rhs.product_;
86  prov_ = rhs.prov_;
87  whyFailedFactory_ = std::move(rhs.whyFailedFactory_);
88  return *this;
89  }
90 
91  std::shared_ptr<cms::Exception> whyFailed() const {
92  if (whyFailedFactory_.get()) {
93  return whyFailedFactory_->make();
94  }
95  return std::shared_ptr<cms::Exception>();
96  }
97 
98  std::shared_ptr<HandleExceptionFactory> const& whyFailedFactory() const { return whyFailedFactory_; }
99 
100  explicit operator bool() const { return isValid(); }
101 
102  bool operator!() const { return not isValid(); }
103 
104  protected:
105  void const* productStorage() const;
106 
107  private:
108  void const* product_;
110  std::shared_ptr<HandleExceptionFactory> whyFailedFactory_;
111  };
112 
113  // Free swap function
114  inline void swap(HandleBase& a, HandleBase& b) { a.swap(b); }
115 } // namespace edm
116 
117 #endif
std::shared_ptr< HandleExceptionFactory > const & whyFailedFactory() const
Definition: HandleBase.h:98
bool operator!() const
Definition: HandleBase.h:102
#define nullptr
std::shared_ptr< HandleExceptionFactory > whyFailedFactory_
Definition: HandleBase.h:110
void swap(HandleBase &a, HandleBase &b)
Definition: HandleBase.h:114
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
bool isValid() const
Definition: HandleBase.h:70
HandleBase(std::shared_ptr< HandleExceptionFactory > &&iWhyFailed)
Used when the attempt to get the data failed.
Definition: HandleBase.h:81
void swap(HandleBase &other)
Definition: HandleBase.h:57
Namespace of DDCMS conversion namespace.
bool failedToGet() const
Definition: HandleBase.h:72
double b
Definition: hdecay.h:118
HandleBase & operator=(HandleBase &&rhs)
Definition: HandleBase.h:84
HLT enums.
double a
Definition: hdecay.h:119
Provenance const * prov_
Definition: HandleBase.h:109
void const * product_
Definition: HandleBase.h:108
std::shared_ptr< cms::Exception > whyFailed() const
Definition: HandleBase.h:91
HandleBase(void const *prod, Provenance const *prov)
Definition: HandleBase.h:44
def move(src, dest)
Definition: eostools.py:511
Provenance const * provenance() const
Definition: HandleBase.h:74
HandleBase & operator=(HandleBase const &rhs)
Definition: HandleBase.h:64