#ifndef SQUID_CBC_POINTER_H #define SQUID_CBC_POINTER_H #include "base/TextException.h" #include "cbdata.h" /** \ingroup CBDATAAPI * * Safely points to a cbdata-protected class (cbc), such as an AsyncJob. * When a cbc we communicate with disappears without * notice or a notice has not reached us yet, this class prevents * dereferencing the pointer to the gone cbc object. */ template class CbcPointer { public: CbcPointer(); // a nil pointer CbcPointer(Cbc *aCbc); CbcPointer(const CbcPointer &p); ~CbcPointer(); Cbc *raw() const; ///< a temporary raw Cbc pointer; may be invalid Cbc *get() const; ///< a temporary valid raw Cbc pointer or NULL Cbc &operator *() const; ///< a valid Cbc reference or exception Cbc *operator ->() const; ///< a valid Cbc pointer or exception // no bool operator because set() != valid() bool set() const { return cbc != NULL; } ///< was set but may be invalid Cbc *valid() const { return get(); } ///< was set and is valid bool operator !() const { return !valid(); } ///< invalid or was not set bool operator ==(const CbcPointer &o) const { return lock == o.lock; } CbcPointer &operator =(const CbcPointer &p); /// support converting a child cbc pointer into a parent cbc pointer template CbcPointer(const CbcPointer &o): cbc(o.raw()), lock(NULL) { if (o.valid()) lock = cbdataReference(o->toCbdata()); } /// support assigning a child cbc pointer to a parent cbc pointer template CbcPointer &operator =(const CbcPointer &o) { if (this != &o) { // assignment to self clear(); cbc = o.raw(); // so that set() is accurate if (o.valid()) lock = cbdataReference(o->toCbdata()); } return *this; } void clear(); ///< make pointer not set; does not invalidate cbdata std::ostream &print(std::ostream &os) const; private: Cbc *cbc; // a possibly invalid pointer to a cbdata class void *lock; // a valid pointer to cbc's cbdata or nil }; template inline std::ostream &operator <<(std::ostream &os, const CbcPointer &p) { return p.print(os); } // inlined methods template CbcPointer::CbcPointer(): cbc(NULL), lock(NULL) { } template CbcPointer::CbcPointer(Cbc *aCbc): cbc(aCbc), lock(NULL) { if (cbc) lock = cbdataReference(cbc->toCbdata()); } template CbcPointer::CbcPointer(const CbcPointer &d): cbc(d.cbc), lock(NULL) { if (d.lock && cbdataReferenceValid(d.lock)) lock = cbdataReference(d.lock); } template CbcPointer::~CbcPointer() { clear(); } template CbcPointer &CbcPointer::operator =(const CbcPointer &d) { if (this != &d) { // assignment to self clear(); cbc = d.cbc; if (d.lock && cbdataReferenceValid(d.lock)) lock = cbdataReference(d.lock); } return *this; } template void CbcPointer::clear() { cbdataReferenceDone(lock); // lock may be nil before and will be nil after cbc = NULL; } template Cbc * CbcPointer::raw() const { return cbc; } template Cbc * CbcPointer::get() const { return (lock && cbdataReferenceValid(lock)) ? cbc : NULL; } template Cbc & CbcPointer::operator *() const { Cbc *c = get(); assert(c); return *c; } template Cbc * CbcPointer::operator ->() const { Cbc *c = get(); assert(c); return c; } template std::ostream &CbcPointer::print(std::ostream &os) const { return os << cbc << '/' << lock; } #endif /* SQUID_CBC_POINTER_H */