// file : odb/pgsql/no-id-object-result.txx // copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include namespace odb { namespace pgsql { template no_id_object_result_impl:: ~no_id_object_result_impl () { if (!this->end_) statement_->free_result (); } template void no_id_object_result_impl:: invalidate () { if (!this->end_) { statement_->free_result (); this->end_ = true; } statement_.reset (); } template no_id_object_result_impl:: no_id_object_result_impl (const query_base&, details::shared_ptr statement, statements_type& statements, const schema_version_migration* svm) : base_type (statements.connection ()), statement_ (statement), statements_ (statements), tc_ (svm), count_ (0) { } template void no_id_object_result_impl:: load (object_type& obj) { // 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_.select_image_version ()) { binding& b (statements_.select_image_binding ()); tc_.bind (b.bind, im, statement_select); statements_.select_image_version (im.version); b.version++; } select_statement::result r (statement_->load ()); if (r == select_statement::truncated) { if (tc_.grow (im, statements_.select_image_truncated ())) im.version++; if (im.version != statements_.select_image_version ()) { binding& b (statements_.select_image_binding ()); tc_.bind (b.bind, im, statement_select); statements_.select_image_version (im.version); b.version++; statement_->reload (); } } object_traits::callback (this->db_, obj, callback_event::pre_load); tc_.init (obj, im, &this->db_); object_traits::callback (this->db_, obj, callback_event::post_load); } template void no_id_object_result_impl:: next () { this->current (pointer_type ()); if (statement_->next ()) count_++; else { statement_->free_result (); this->end_ = true; } } template void no_id_object_result_impl:: cache () { } template std::size_t no_id_object_result_impl:: size () { return this->end_ ? count_ : statement_->result_size (); } } }