From 539c92147e8d58c49f350c4070051a6ddf6b2354 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 20 Jan 2013 08:20:56 +0200 Subject: Add cache_ suffix to session cache functions This way they won't conflict with other functions (e.g., delayed database operations) that may have the same names. --- common/session/custom/session.hxx | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) (limited to 'common/session/custom/session.hxx') diff --git a/common/session/custom/session.hxx b/common/session/custom/session.hxx index ce7e43c..b0a6694 100644 --- a/common/session/custom/session.hxx +++ b/common/session/custom/session.hxx @@ -96,13 +96,13 @@ private: // public: template - struct position + struct cache_position { typedef object_map map; typedef typename map::iterator iterator; - position (): map_ (0) {} - position (map& m, const iterator& p): map_ (&m), pos_ (p) {} + cache_position (): map_ (0) {} + cache_position (map& m, const iterator& p): map_ (&m), pos_ (p) {} map* map_; iterator pos_; @@ -111,18 +111,18 @@ public: // Cache management. // template - static position - insert (odb::database&, - const typename odb::object_traits::id_type&, - const typename odb::object_traits::pointer_type&); + static cache_position + _cache_insert (odb::database&, + const typename odb::object_traits::id_type&, + const typename odb::object_traits::pointer_type&); template static typename odb::object_traits::pointer_type - find (odb::database&, const typename odb::object_traits::id_type&); + _cache_find (odb::database&, const typename odb::object_traits::id_type&); template static void - erase (const position& p) + _cache_erase (const cache_position& p) { if (p.map_ != 0) p.map_->erase (p.pos_); @@ -132,22 +132,23 @@ public: // template static void - persist (const position& p) + _cache_persist (const cache_position& p) { - load (p); + _cache_load (p); } template static void - load (const position&); + _cache_load (const cache_position&); template static void - update (odb::database&, const T&); + _cache_update (odb::database&, const T&); template static void - erase (odb::database&, const typename odb::object_traits::id_type&); + _cache_erase (odb::database&, + const typename odb::object_traits::id_type&); private: // Post-commit/rollback callback. -- cgit v1.1