From 19c89827d68440780c918d32cae26eaa2241861d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 19 Oct 2011 10:47:40 +0200 Subject: Add support for const data members Const data members are automatically treated as readonly. New test: const-member. --- odb/tr1/wrapper-traits.hxx | 12 +++++++++--- odb/wrapper-traits.hxx | 44 ++++++++++++++++++++++++++++++++++---------- 2 files changed, 43 insertions(+), 13 deletions(-) diff --git a/odb/tr1/wrapper-traits.hxx b/odb/tr1/wrapper-traits.hxx index e65e2d7..f8a9f6c 100644 --- a/odb/tr1/wrapper-traits.hxx +++ b/odb/tr1/wrapper-traits.hxx @@ -26,6 +26,12 @@ namespace odb typedef T wrapped_type; typedef std::tr1::shared_ptr wrapper_type; + // T can be const. + // + typedef + typename details::meta::remove_const::result + unrestricted_wrapped_type; + static const bool null_handler = true; static const bool null_default = false; @@ -47,13 +53,13 @@ namespace odb return *p; } - static wrapped_type& + static unrestricted_wrapped_type& set_ref (wrapper_type& p) { if (!p) - p.reset (new wrapped_type); + p.reset (new unrestricted_wrapped_type); - return *p; + return const_cast (*p); } }; } diff --git a/odb/wrapper-traits.hxx b/odb/wrapper-traits.hxx index fdfb872..f0686e7 100644 --- a/odb/wrapper-traits.hxx +++ b/odb/wrapper-traits.hxx @@ -12,6 +12,8 @@ #include +#include + namespace odb { template @@ -34,6 +36,12 @@ namespace odb typedef T wrapped_type; typedef T* wrapper_type; + // T can be const. + // + typedef + typename details::meta::remove_const::result + unrestricted_wrapped_type; + static const bool null_handler = true; static const bool null_default = false; @@ -50,19 +58,19 @@ namespace odb p = 0; } - static const type& + static const wrapped_type& get_ref (const wrapper_type& p) { return *p; } - static type& + static unrestricted_wrapped_type& set_ref (wrapper_type& p) { if (p == 0) - p = new type; + p = new unrestricted_wrapped_type; - return *p; + return const_cast (*p); } }; #endif @@ -73,9 +81,17 @@ namespace odb class wrapper_traits< std::auto_ptr > { public: + // T can be const. + // typedef T wrapped_type; typedef std::auto_ptr wrapper_type; + // T can be const. + // + typedef + typename details::meta::remove_const::result + unrestricted_wrapped_type; + static const bool null_handler = true; static const bool null_default = false; @@ -97,13 +113,13 @@ namespace odb return *p; } - static wrapped_type& + static unrestricted_wrapped_type& set_ref (wrapper_type& p) { if (p.get () == 0) - p.reset (new wrapped_type); + p.reset (new unrestricted_wrapped_type ()); - return *p; + return const_cast (*p); } }; @@ -113,9 +129,17 @@ namespace odb class wrapper_traits< nullable > { public: + // T can be const. + // typedef T wrapped_type; typedef nullable wrapper_type; + // T can be const. + // + typedef + typename details::meta::remove_const::result + unrestricted_wrapped_type; + static const bool null_handler = true; static const bool null_default = true; @@ -137,13 +161,13 @@ namespace odb return *n; } - static wrapped_type& + static unrestricted_wrapped_type& set_ref (wrapper_type& n) { if (n.null ()) - n = T (); + n = unrestricted_wrapped_type (); - return *n; + return const_cast (*n); } }; } -- cgit v1.1