From 3067453a4c623c364286e7d68a446ce15e00b397 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 26 Apr 2012 11:29:05 +0200 Subject: Make session optional --- odb/cache-traits.hxx | 180 +-------------------------------- odb/database.txx | 3 +- odb/no-op-cache-traits.hxx | 208 ++++++++++++++++++++++++++++++++++++++ odb/polymorphic-object-result.txx | 1 - odb/simple-object-result.txx | 2 - 5 files changed, 210 insertions(+), 184 deletions(-) create mode 100644 odb/no-op-cache-traits.hxx diff --git a/odb/cache-traits.hxx b/odb/cache-traits.hxx index 1e5ccdb..c0c1272 100644 --- a/odb/cache-traits.hxx +++ b/odb/cache-traits.hxx @@ -11,145 +11,15 @@ #include #include #include +#include namespace odb { - // pointer_cache_type - // - // Used to convert an object pointer to the canonical form (non-const), - // suitable for insertion into the cache. - // - template ::element_type, - typename O = typename object_traits::object_type, - pointer_kind pk = pointer_traits

::kind> - struct pointer_cache_type - { - typedef typename object_traits::pointer_type pointer_type; - - static pointer_type - convert (const P& p) - { - return pointer_traits

::const_pointer_cast (p); - } - }; - - template - struct pointer_cache_type - { - // If element_type and object_type are the same, then it is already - // the canonical pointer. - // - static const P& - convert (const P& p) {return p;} - }; - - template - struct pointer_cache_type - { - // If the pointer is unique, then casting it can transfer ownership. - // So return null pointer, which will be ignored down the chain. - // - typedef typename object_traits::pointer_type pointer_type; - - static pointer_type - convert (const P&) {return pointer_type ();} - }; - - template - struct pointer_cache_type - { - typedef typename object_traits::pointer_type pointer_type; - - static pointer_type - convert (const P&) {return pointer_type ();} - }; - - // reference_cache_type - // - // Used to convert an object reference to the canonical form (non-const), - // suitable for insertion into the cache. - // - template ::object_type> - struct reference_cache_type - { - static O& - convert (T& r) - { - return const_cast (r); - } - }; - - template - struct reference_cache_type - { - // If the types are the same, then it is already the canonical form. - // - static T& - convert (T& r) {return r;} - }; - // pointer_cache_traits // // Caching traits for objects passed by pointer. P should be the canonical // pointer (non-const). // - template - struct no_id_pointer_cache_traits - { - typedef P pointer_type; - struct position_type {}; - - static position_type - insert (odb::database&, const pointer_type&) - { - return position_type (); - } - }; - - template - struct no_op_pointer_cache_traits - { - typedef P pointer_type; - typedef typename pointer_traits::element_type object_type; - typedef typename object_traits::id_type id_type; - struct position_type {}; - - struct insert_guard - { - insert_guard () {} - insert_guard (const position_type&) {} - - position_type - position () const {return position_type ();} - - void - release () {} - - void - reset (const position_type&) {} - }; - - static position_type - insert (odb::database&, const id_type&, const pointer_type&) - { - return position_type (); - } - - static position_type - insert (odb::database&, const pointer_type&) {return position_type ();} - - static pointer_type - find (odb::database&, const id_type&) {return pointer_type ();} - - static void - erase (odb::database&, const id_type&) {} - - static void - erase (const position_type&) {} - }; - template struct pointer_cache_traits_impl { @@ -245,54 +115,6 @@ namespace odb // canonical object type (non-const). Only if the object pointer // kind is raw do we add the object to the session. // - template - struct no_id_reference_cache_traits - { - typedef T object_type; - struct position_type {}; - - static position_type - insert (odb::database&, object_type&) - { - return position_type (); - } - }; - - template - struct no_op_reference_cache_traits - { - typedef T object_type; - typedef typename object_traits::id_type id_type; - struct position_type {}; - - struct insert_guard - { - insert_guard () {} - insert_guard (const position_type&) {} - - position_type - position () const {return position_type ();} - - void - release () {} - - void - reset () {} - }; - - static position_type - insert (odb::database&, const id_type&, object_type&) - { - return position_type (); - } - - static position_type - insert (odb::database&, object_type&) - { - return position_type (); - } - }; - template struct reference_cache_traits_impl: no_op_reference_cache_traits {}; diff --git a/odb/database.txx b/odb/database.txx index abc6ba3..7f7b90f 100644 --- a/odb/database.txx +++ b/odb/database.txx @@ -4,8 +4,7 @@ #include #include -#include -#include +#include #include namespace odb diff --git a/odb/no-op-cache-traits.hxx b/odb/no-op-cache-traits.hxx new file mode 100644 index 0000000..84d1c7a --- /dev/null +++ b/odb/no-op-cache-traits.hxx @@ -0,0 +1,208 @@ +// file : odb/no-op-cache-traits.hxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_NO_OP_CACHE_TRAITS_HXX +#define ODB_NO_OP_CACHE_TRAITS_HXX + +#include + +#include +#include +#include + +namespace odb +{ + // pointer_cache_type + // + // Used to convert an object pointer to the canonical form (non-const), + // suitable for insertion into the cache. + // + template ::element_type, + typename O = typename object_traits::object_type, + pointer_kind pk = pointer_traits

::kind> + struct pointer_cache_type + { + typedef typename object_traits::pointer_type pointer_type; + + static pointer_type + convert (const P& p) + { + return pointer_traits

::const_pointer_cast (p); + } + }; + + template + struct pointer_cache_type + { + // If element_type and object_type are the same, then it is already + // the canonical pointer. + // + static const P& + convert (const P& p) {return p;} + }; + + template + struct pointer_cache_type + { + // If the pointer is unique, then casting it can transfer ownership. + // So return null pointer, which will be ignored down the chain. + // + typedef typename object_traits::pointer_type pointer_type; + + static pointer_type + convert (const P&) {return pointer_type ();} + }; + + template + struct pointer_cache_type + { + typedef typename object_traits::pointer_type pointer_type; + + static pointer_type + convert (const P&) {return pointer_type ();} + }; + + // reference_cache_type + // + // Used to convert an object reference to the canonical form (non-const), + // suitable for insertion into the cache. + // + template ::object_type> + struct reference_cache_type + { + static O& + convert (T& r) + { + return const_cast (r); + } + }; + + template + struct reference_cache_type + { + // If the types are the same, then it is already the canonical form. + // + static T& + convert (T& r) {return r;} + }; + + // pointer_cache_traits + // + // Caching traits for objects passed by pointer. P should be the canonical + // pointer (non-const). + // + template + struct no_op_pointer_cache_traits + { + typedef P pointer_type; + typedef typename pointer_traits::element_type object_type; + typedef typename object_traits::id_type id_type; + struct position_type {}; + + struct insert_guard + { + insert_guard () {} + insert_guard (const position_type&) {} + + position_type + position () const {return position_type ();} + + void + release () {} + + void + reset (const position_type&) {} + }; + + static position_type + insert (odb::database&, const id_type&, const pointer_type&) + { + return position_type (); + } + + static position_type + insert (odb::database&, const pointer_type&) {return position_type ();} + + static pointer_type + find (odb::database&, const id_type&) {return pointer_type ();} + + static void + erase (odb::database&, const id_type&) {} + + static void + erase (const position_type&) {} + }; + + template + struct no_id_pointer_cache_traits + { + typedef P pointer_type; + struct position_type {}; + + static position_type + insert (odb::database&, const pointer_type&) + { + return position_type (); + } + }; + + // reference_cache_traits + // + // Caching traits for objects passed by reference. T should be the + // canonical object type (non-const). + // + template + struct no_op_reference_cache_traits + { + typedef T object_type; + typedef typename object_traits::id_type id_type; + struct position_type {}; + + struct insert_guard + { + insert_guard () {} + insert_guard (const position_type&) {} + + position_type + position () const {return position_type ();} + + void + release () {} + + void + reset () {} + }; + + static position_type + insert (odb::database&, const id_type&, object_type&) + { + return position_type (); + } + + static position_type + insert (odb::database&, object_type&) + { + return position_type (); + } + }; + + template + struct no_id_reference_cache_traits + { + typedef T object_type; + struct position_type {}; + + static position_type + insert (odb::database&, object_type&) + { + return position_type (); + } + }; +} + +#include + +#endif // ODB_NO_OP_CACHE_TRAITS_HXX diff --git a/odb/polymorphic-object-result.txx b/odb/polymorphic-object-result.txx index 28331c6..e673483 100644 --- a/odb/polymorphic-object-result.txx +++ b/odb/polymorphic-object-result.txx @@ -2,7 +2,6 @@ // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file -#include #include namespace odb diff --git a/odb/simple-object-result.txx b/odb/simple-object-result.txx index 832ff7f..b440f13 100644 --- a/odb/simple-object-result.txx +++ b/odb/simple-object-result.txx @@ -2,8 +2,6 @@ // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file -#include - namespace odb { // -- cgit v1.1