// file : odb/database.txx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include #include #include namespace odb { template result database:: query (const odb::query& q, bool cache) { // T is always object_type. We also don't need to check for transaction // here; object_traits::query () does this. // result r (query_::call (*this, q)); if (cache) r.cache (); return r; } // Implementations (i.e., the *_() functions). // template typename object_traits::id_type database:: persist_ (T& obj) { // T can be const T while object_type will always be T. // typedef typename object_traits::object_type object_type; typedef object_traits_impl object_traits; object_traits::persist (*this, obj); typename object_traits::reference_cache_traits::position_type p ( object_traits::reference_cache_traits::insert ( *this, reference_cache_type::convert (obj))); object_traits::reference_cache_traits::persist (p); return object_traits::id (obj); } template typename object_traits::id_type database:: persist_ (const typename object_traits::pointer_type& pobj) { // T can be const T while object_type will always be T. // typedef typename object_traits::object_type object_type; typedef typename object_traits::pointer_type pointer_type; typedef object_traits_impl object_traits; T& obj (pointer_traits::get_ref (pobj)); object_traits::persist (*this, obj); // Get the canonical object pointer and insert it into object cache. // typename object_traits::pointer_cache_traits::position_type p ( object_traits::pointer_cache_traits::insert ( *this, pointer_cache_type::convert (pobj))); object_traits::pointer_cache_traits::persist (p); return object_traits::id (obj); } template typename object_traits::pointer_type database:: load_ (const typename object_traits::id_type& id) { // T is always object_type. // typedef typename object_traits::pointer_type pointer_type; pointer_type r (find_ (id)); if (pointer_traits::null_ptr (r)) throw object_not_persistent (); return r; } template void database:: load_ (const typename object_traits::id_type& id, T& obj) { if (!find_ (id, obj)) throw object_not_persistent (); } template void database:: load_ (T& obj, section& s) { connection_type& c (transaction::current ().connection ()); // T is always object_type. // if (object_traits_impl::load (c, obj, s)) s.reset (true, false); // Loaded, unchanged. else throw section_not_in_object (); } template void database:: reload_ (T& obj) { // T should be object_type (cannot be const). We also don't need to // check for transaction here; object_traits::reload () does this. // if (!object_traits_impl::reload (*this, obj)) throw object_not_persistent (); } template void database:: update_ (const T& obj, const section& s) { if (!s.loaded ()) throw section_not_loaded (); transaction& t (transaction::current ()); // T is always object_type. // if (object_traits_impl::update (t.connection (), obj, s)) { if (s.changed ()) s.reset (true, false, &t); // Clear the change flag. } else throw section_not_in_object (); } template struct database::query_ { template static result call (database& db, const Q& q) { return object_traits_impl::query (db, q); } }; template struct database::query_ { template static result call (database& db, const Q& q) { return view_traits_impl::query (db, q); } }; }