In the Lumiera code base, we use C-String constants as unique error-IDs. Basically this allows to create new unique error IDs anywhere in the code. However, definition of such IDs in arbitrary namespaces tends to create slight confusion and ambiguities, while maintaining the proper use statements requires some manual work. Thus I introduce a new **standard scheme** * Error-IDs for widespread use shall be defined _exclusively_ into `namespace lumiera::error` * The shorthand-Macro `LERR_()` can now be used to simplify inclusion and referral * (for local or single-usage errors, a local or even hidden definition is OK)
160 lines
3.8 KiB
C++
160 lines
3.8 KiB
C++
/*
|
|
OPTIONAL-REF.hpp - optional and switchable reference
|
|
|
|
Copyright (C) Lumiera.org
|
|
2010, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
/** @file optional-ref.hpp
|
|
** a checked, switchable reference.
|
|
** Offers semantics similar to a pointer, but throws (not segfaults)
|
|
** on invalid dereferentiation
|
|
*/
|
|
|
|
|
|
#ifndef LIB_OPTIONAL_REF_H
|
|
#define LIB_OPTIONAL_REF_H
|
|
|
|
#include "lib/error.hpp"
|
|
|
|
|
|
namespace lib {
|
|
|
|
using LERR_(BOTTOM_VALUE);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* Optional or switchable link to an existing object.
|
|
* This reference wrapper is accessed like a functor,
|
|
* but has the ability to be \em disabled. This disabled state
|
|
* is managed automatically by ctor and dtor, can be detected
|
|
* through \c bool check and -- contrary to a \c NULL pointer
|
|
* -- produces a real exception instead of crashing.
|
|
*
|
|
* @note \em not taking ownership of the pointee
|
|
*
|
|
* @see OptionalRef_test
|
|
* @see lib::AutoRegistered usage example
|
|
* @see SessionInterfaceModules::~SessionInterfaceModules()
|
|
*
|
|
*/
|
|
template<typename T>
|
|
class OptionalRef
|
|
{
|
|
T* ref_;
|
|
|
|
|
|
public:
|
|
OptionalRef()
|
|
: ref_(0)
|
|
{ }
|
|
|
|
~OptionalRef()
|
|
{
|
|
clear();
|
|
}
|
|
|
|
// using default copy operations...
|
|
|
|
explicit
|
|
OptionalRef(T& target) ///< ...\em not allowing implicit conversion from T&
|
|
: ref_(&target)
|
|
{ }
|
|
|
|
explicit operator bool() const { return isValid(); }
|
|
|
|
|
|
T&
|
|
operator() () const
|
|
{
|
|
if (!isValid())
|
|
throw lumiera::error::Logic ("access to this object is (not/yet) enabled"
|
|
, LERR_(BOTTOM_VALUE));
|
|
return *ref_;
|
|
}
|
|
|
|
|
|
/* === mutations ===*/
|
|
|
|
void
|
|
link_to (T& target)
|
|
{
|
|
ref_ = ⌖
|
|
}
|
|
|
|
void
|
|
clear()
|
|
{
|
|
ref_ = 0;
|
|
}
|
|
|
|
|
|
/* === comparison and diagnostics === */
|
|
|
|
bool
|
|
isValid() const
|
|
{
|
|
return bool(ref_);
|
|
}
|
|
|
|
bool
|
|
points_to (T const& target) const
|
|
{
|
|
return isValid()
|
|
&& ref_ == ⌖
|
|
}
|
|
|
|
friend bool
|
|
operator== (OptionalRef const& r1, OptionalRef const& r2)
|
|
{
|
|
return r1.ref_ == r2.ref_;
|
|
}
|
|
friend bool
|
|
operator!= (OptionalRef const& r1, OptionalRef const& r2)
|
|
{
|
|
return r1.ref_ != r2.ref_;
|
|
}
|
|
|
|
// mixed comparisons
|
|
friend bool
|
|
operator== (OptionalRef const& ref, T const& otherTarget) ///< @note might throw
|
|
{
|
|
return ref() == otherTarget;
|
|
}
|
|
|
|
friend bool operator== (T const& otherTarget, OptionalRef const& ref) { return ref == otherTarget; }
|
|
friend bool operator!= (T const& otherTarget, OptionalRef const& ref) { return !(ref == otherTarget); }
|
|
friend bool operator!= (OptionalRef const& ref, T const& otherTarget) { return !(ref == otherTarget); }
|
|
};
|
|
|
|
|
|
template<typename T>
|
|
OptionalRef<T>
|
|
optionalRefTo (T& target)
|
|
{
|
|
return OptionalRef<T> (target);
|
|
}
|
|
|
|
|
|
|
|
} // namespace lib
|
|
#endif
|