From d2c1f5f1a3063553483d09dec261efa44c6bc9bf Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 9 Jan 2013 14:50:26 +0200 Subject: Implement two-phase session insertion On the first step an uninitialized object is inserted into the cache as before (this is necessary to handle recursive loading). The second step is to notify the session that the object has been initialized. On this second step the session can perform change tracking preparations, such as make a copy of the object or reset the modification flag. New test: common/session/custom (implements a custom session that uses copies to track changes). --- odb/session.hxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'odb/session.hxx') diff --git a/odb/session.hxx b/odb/session.hxx index 472ea79..3f58a80 100644 --- a/odb/session.hxx +++ b/odb/session.hxx @@ -106,6 +106,10 @@ namespace odb const typename object_traits::pointer_type&); template + static void + initialize (const position&) {} + + template typename object_traits::pointer_type find (database_type&, const typename object_traits::id_type&) const; @@ -114,7 +118,7 @@ namespace odb erase (database_type&, const typename object_traits::id_type&); template - void + static void erase (const position&); -- cgit v1.1