// file : odb/database.ixx // copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include // std::strlen() #include // std::move #include namespace odb { inline database:: database (database_id id) : id_ (id), tracer_ (0) { } inline database_id database:: id () const { return id_; } inline connection_ptr database:: connection () { return connection_ptr (connection_ ()); } inline void database:: query_factory (const char* name, query_factory_type f) { if (f) #ifdef ODB_CXX11 query_factory_map_[name] = std::move (f); #else query_factory_map_[name] = f; #endif else query_factory_map_.erase (name); } inline database::query_factory_type database:: lookup_query_factory (const char* name) const { query_factory_map::const_iterator i (query_factory_map_.find (name)); if (i == query_factory_map_.end ()) i = query_factory_map_.find (""); // Wildcard factory. return i != query_factory_map_.end () ? i->second : database::query_factory_type (); } inline void database:: tracer (tracer_type& t) { tracer_ = &t; } inline void database:: tracer (tracer_type* t) { tracer_ = t; } inline database::tracer_type* database:: tracer () const { return tracer_; } template inline typename object_traits::id_type database:: persist (T& obj) { return persist_ (obj); } template inline typename object_traits::id_type database:: persist (T* p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); return persist_ (pobj); } template class P> inline typename object_traits::id_type database:: persist (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); return persist_ (pobj); } template class P> inline typename object_traits::id_type database:: persist (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); return persist_ (pobj); } template class P> inline typename object_traits::id_type database:: persist (P& p) { const P& cr (p); return persist (cr); } template class P> inline typename object_traits::id_type database:: persist (P& p) { const P& cr (p); return persist (cr); } template inline typename object_traits::id_type database:: persist (const typename object_traits::pointer_type& pobj) { return persist_ (pobj); } template inline typename object_traits::pointer_type database:: load (const typename object_traits::id_type& id) { return load_ (id); } template inline void database:: load (const typename object_traits::id_type& id, T& obj) { return load_ (id, obj); } template inline typename object_traits::pointer_type database:: find (const typename object_traits::id_type& id) { return find_ (id); } template inline bool database:: find (const typename object_traits::id_type& id, T& obj) { return find_ (id, obj); } template inline void database:: reload (T& obj) { reload_ (obj); } template inline void database:: reload (T* p) { reload (*p); } template class P> inline void database:: reload (const P& p) { reload (odb::pointer_traits< P >::get_ref (p)); } template class P> inline void database:: reload (const P& p) { reload (odb::pointer_traits< P >::get_ref (p)); } template class P> inline void database:: reload (P& p) { reload (odb::pointer_traits< P >::get_ref (p)); } template class P> inline void database:: reload (P& p) { reload (odb::pointer_traits< P >::get_ref (p)); } template inline void database:: reload (const typename object_traits::pointer_type& pobj) { typedef typename object_traits::pointer_type pointer_type; reload (odb::pointer_traits::get_ref (pobj)); } template inline void database:: update (T& obj) { update_ (obj); } template inline void database:: update (T* p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); update_ (pobj); } template class P> inline void database:: update (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); update_ (pobj); } template class P> inline void database:: update (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); update_ (pobj); } template class P> inline void database:: update (P& p) { const P& cr (p); update (cr); } template class P> inline void database:: update (P& p) { const P& cr (p); update (cr); } template inline void database:: update (const typename object_traits::pointer_type& pobj) { update_ (pobj); } template inline void database:: erase (const typename object_traits::id_type& id) { return erase_ (id); } template inline void database:: erase (T& obj) { return erase_ (obj); } template inline void database:: erase (T* p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); erase_ (pobj); } template class P> inline void database:: erase (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); erase_ (pobj); } template class P> inline void database:: erase (const P& p) { typedef typename object_traits::pointer_type object_pointer; // The passed pointer should be the same or implicit-convertible // to the object pointer. This way we make sure the object pointer // does not assume ownership of the passed object. // const object_pointer& pobj (p); erase_ (pobj); } template class P> inline void database:: erase (P& p) { const P& cr (p); erase (cr); } template class P> inline void database:: erase (P& p) { const P& cr (p); erase (cr); } template inline void database:: erase (const typename object_traits::pointer_type& pobj) { erase_ (pobj); } template inline unsigned long long database:: erase_query () { // T is always object_type. // return erase_query (odb::query ()); } template inline unsigned long long database:: erase_query (const char* q) { // T is always object_type. // return erase_query (odb::query (q)); } template inline unsigned long long database:: erase_query (const std::string& q) { // T is always object_type. // return erase_query (odb::query (q)); } template inline unsigned long long database:: erase_query (const odb::query& q) { // T is always object_type. // return object_traits_impl::erase_query (*this, q); } template inline result database:: query (bool cache) { return query (odb::query (), cache); } template inline result database:: query (const char* q, bool cache) { return query (odb::query (q), cache); } template inline result database:: query (const std::string& q, bool cache) { return query (odb::query (q), cache); } template inline prepared_query database:: prepare_query (const char* n, const char* q) { return prepare_query (n, odb::query (q)); } template inline prepared_query database:: prepare_query (const char* n, const std::string& q) { return prepare_query (n, odb::query (q)); } template inline prepared_query database:: prepare_query (const char* n, const odb::query& q) { connection_type& c (transaction::current ().connection ()); return c.prepare_query (n, q); } template inline void database:: cache_query (const prepared_query& pq) { connection_type& c (transaction::current ().connection ()); c.cache_query (pq); } template inline void database:: cache_query (const prepared_query& pq, std::auto_ptr

params) { connection_type& c (transaction::current ().connection ()); c.cache_query (pq, params); } #ifdef ODB_CXX11 template inline void database:: cache_query (const prepared_query& pq, std::unique_ptr

params) { connection_type& c (transaction::current ().connection ()); c.cache_query (pq, std::move (params)); } #endif template inline prepared_query database:: lookup_query (const char* name) const { connection_type& c (transaction::current ().connection ()); return c.lookup_query (name); } template inline prepared_query database:: lookup_query (const char* name, P*& params) const { connection_type& c (transaction::current ().connection ()); return c.lookup_query (name, params); } // Implementations (i.e., the *_() functions). // template inline typename object_traits::pointer_type database:: find_ (const typename object_traits::id_type& id) { // T is always object_type. // // Compiler error pointing here? Perhaps the object doesn't have the // default constructor? // return object_traits_impl::find (*this, id); } template inline bool database:: find_ (const typename object_traits::id_type& id, T& obj) { // T is always object_type. // return object_traits_impl::find (*this, id, obj); } template inline void database:: update_ (T& obj) { // T can be const T while object_type will always be T. // typedef typename object_traits::object_type object_type; // Compiler error pointing here? Perhaps the object is readonly or // doesn't have an object id? Such objects cannot be updated. // object_traits_impl::update (*this, obj); } template inline void database:: update_ (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; T& obj (pointer_traits::get_ref (pobj)); // Compiler error pointing here? Perhaps the object is readonly or // doesn't have an object id? Such objects cannot be updated. // object_traits_impl::update (*this, obj); } template inline void database:: erase_ (const typename object_traits::id_type& id) { // T is always object_type. // object_traits_impl::erase (*this, id); } template inline void database:: erase_ (T& obj) { // T can be const T while object_type will always be T. // typedef typename object_traits::object_type object_type; object_traits_impl::erase (*this, obj); } template inline void database:: erase_ (const typename object_traits::pointer_type& pobj) { typedef typename object_traits::pointer_type pointer_type; erase_ (pointer_traits::get_ref (pobj)); } // execute() // inline unsigned long long database:: execute (const char* statement) { return execute (statement, std::strlen (statement)); } inline unsigned long long database:: execute (const std::string& statement) { return execute (statement.c_str (), statement.size ()); } }