From 9ac9bb98f307156c02fa19ea747cf5eb1d2dcadf Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 4 Aug 2011 13:29:42 +0200 Subject: Add support for value wrappers Wrapper is a class that wraps another type. Examples of wrappers are various smart pointers, holders, etc. A wrapper can be transparent or it can handle the NULL semantics. The new odb::nullable class template is a NULL wrapper that helps to add the NULL semantics to a value type. New test: common/wrapper. --- odb/nullable.hxx | 199 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 odb/nullable.hxx (limited to 'odb/nullable.hxx') diff --git a/odb/nullable.hxx b/odb/nullable.hxx new file mode 100644 index 0000000..4b33564 --- /dev/null +++ b/odb/nullable.hxx @@ -0,0 +1,199 @@ +// file : odb/nullable.hxx +// author : Boris Kolpackov +// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_NULLABLE_HXX +#define ODB_NULLABLE_HXX + +#include + +namespace odb +{ + template + class nullable + { + public: + typedef T value_type; + + nullable (); + nullable (const T&); + nullable (const nullable&); + template explicit nullable (const nullable&); + + nullable& operator= (const T&); + nullable& operator= (const nullable&); + template nullable& operator= (const nullable&); + + void swap (nullable&); + + bool null () const; + + T& get (); + const T& get () const; + + T* operator-> (); + const T* operator-> () const; + + T& operator* (); + const T& operator* () const; + + typedef void (nullable::*bool_convertible) (); + operator bool_convertible () const + { + return null_ ? 0 : &nullable::true_value; + } + + void reset (); + + private: + void true_value () {}; + + T value_; + bool null_; + }; + + namespace core + { + using odb::nullable; + } + + template + inline nullable:: + nullable () + : null_ (true) + { + } + + template + inline nullable:: + nullable (const T& v) + : value_ (v), null_ (false) + { + } + + template + inline nullable:: + nullable (const nullable& y) + : value_ (y.value_), null_ (y.null_) + { + } + + template + template + inline nullable:: + nullable (const nullable& y) + : value_ (y.value_), null_ (y.null_) + { + } + + template + inline nullable& nullable:: + operator= (const T& v) + { + value_ = v; + null_ = false; + return *this; + } + + template + inline nullable& nullable:: + operator= (const nullable& y) + { + if (this != &y) + { + if (!y.null_) + value_ = y.value_; + + null_ = y.null_; + } + + return *this; + } + + template + template + inline nullable& nullable:: + operator= (const nullable& y) + { + if (!y.null_) + value_ = y.value_; + + null_ = y.null_; + return *this; + } + + template + inline void nullable:: + swap (nullable& y) + { + T v (value_); + bool n (null_); + + value_ = y.value_; + null_ = y.null_; + + y.value_ = v; + y.null_ = n; + } + + template + inline bool nullable:: + null () const + { + return null_; + } + + template + inline T& nullable:: + get () + { + return value_; + } + + template + inline const T& nullable:: + get () const + { + return value_; + } + + template + inline T* nullable:: + operator-> () + { + return null_ ? 0 : &value_; + } + + template + inline const T* nullable:: + operator-> () const + { + return null_ ? 0 : &value_; + } + + template + inline T& nullable:: + operator* () + { + return value_; + } + + template + inline const T& nullable:: + operator* () const + { + return value_; + } + + template + inline void nullable:: + reset () + { + null_ = true; + } +} + +#include + +#endif // ODB_NULLABLE_HXX -- cgit v1.1