// file : odb/sqlite/result.txx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include namespace odb { namespace sqlite { template result_impl:: ~result_impl () { } template result_impl:: result_impl (const query& q, details::shared_ptr st, object_statements& sts) : odb::result_impl (sts.connection ().database ()), result_impl_base (q, st), statements_ (sts) { } template void result_impl:: load (object_type& obj) { load_image (); // This is a top-level call so the statements cannot be locked. // assert (!statements_.locked ()); typename object_statements::auto_lock l (statements_); typename object_traits::image_type& im (statements_.image ()); object_traits::init (obj, im, this->database ()); // Initialize the id image and load the rest of the object // (containers, etc). // object_traits::init (statements_.id_image (), object_traits::id (im)); object_traits::load_ (statements_, obj); statements_.load_delayed (); l.unlock (); } template typename result_impl::id_type result_impl:: load_id () { load_image (); return object_traits::id (statements_.image ()); } template void result_impl:: next () { this->current (pointer_type ()); if (!statement_->next ()) this->end_ = true; } template void result_impl:: load_image () { // The image can grow between calls to load() as a result of other // statements execution. // typename object_traits::image_type& im (statements_.image ()); if (im.version != statements_.out_image_version ()) { binding& b (statements_.out_image_binding ()); object_traits::bind (b.bind, im, true); statements_.out_image_version (im.version); b.version++; } select_statement::result r (statement_->load ()); if (r == select_statement::truncated) { object_traits::grow (im, statements_.out_image_truncated ()); if (im.version != statements_.out_image_version ()) { binding& b (statements_.out_image_binding ()); object_traits::bind (b.bind, im, true); statements_.out_image_version (im.version); b.version++; statement_->reload (); } } } template void result_impl:: cache () { } template std::size_t result_impl:: size () { // @@ Should we rather throw unsupported_operation or some such? // throw result_not_cached (); } } }