// file : odb/sqlite/query.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include // std::size_t #include // std::memset #include using namespace std; namespace odb { namespace sqlite { // query_param // query_param:: ~query_param () { } // query_params // query_params:: query_params (const query_params& x) : details::shared_base (x), params_ (x.params_), bind_ (x.bind_), binding_ (0, 0) { // Here and below we want to maintain up to date binding info so // that the call to binding() below is an immutable operation, // provided the query does not have any by-reference parameters. // This way a by-value-only query can be shared between multiple // threads without the need for synchronization. // if (size_t n = bind_.size ()) { binding_.bind = &bind_[0]; binding_.count = n; binding_.version++; } } query_params& query_params:: operator= (const query_params& x) { if (this != &x) { params_ = x.params_; bind_ = x.bind_; size_t n (bind_.size ()); binding_.bind = n != 0 ? &bind_[0] : 0; binding_.count = n; binding_.version++; } return *this; } query_params& query_params:: operator+= (const query_params& x) { size_t n (bind_.size ()); params_.insert (params_.end (), x.params_.begin (), x.params_.end ()); bind_.insert (bind_.end (), x.bind_.begin (), x.bind_.end ()); if (n != bind_.size ()) { binding_.bind = &bind_[0]; binding_.count = bind_.size (); binding_.version++; } return *this; } void query_params:: add (details::shared_ptr p) { params_.push_back (p); bind_.push_back (sqlite::bind ()); binding_.bind = &bind_[0]; binding_.count = bind_.size (); binding_.version++; sqlite::bind* b (&bind_.back ()); memset (b, 0, sizeof (sqlite::bind)); p->bind (b); } query_params::binding_type& query_params:: binding () { size_t n (params_.size ()); binding_type& r (binding_); if (n == 0) return r; bool inc_ver (false); sqlite::bind* b (&bind_[0]); for (size_t i (0); i < n; ++i) { query_param& p (*params_[i]); if (p.reference ()) { if (p.init ()) { p.bind (b + i); inc_ver = true; } } } if (inc_ver) r.version++; return r; } // query // query:: query (const query& q) : clause_ (q.clause_), parameters_ (new (details::shared) query_params (*q.parameters_)) { } query& query:: operator= (const query& q) { if (this != &q) { clause_ = q.clause_; *parameters_ = *q.parameters_; } return *this; } query& query:: operator+= (const query& q) { clause_.insert (clause_.end (), q.clause_.begin (), q.clause_.end ()); *parameters_ += *q.parameters_; return *this; } void query:: append (const string& q, clause_part::kind_type k) { if (k == clause_part::native && !clause_.empty () && clause_.back ().kind == clause_part::native) { string& s (clause_.back ().part); char first (!q.empty () ? q[0] : ' '); char last (!s.empty () ? s[s.size () - 1] : ' '); // We don't want extra spaces after '(' as well as before ',' // and ')'. // if (last != ' ' && last != '(' && first != ' ' && first != ',' && first != ')') s += ' '; s += q; } else clause_.push_back (clause_part (k, q)); } void query:: add (details::shared_ptr p) { clause_.push_back (clause_part (clause_part::param)); parameters_->add (p); } string query:: clause (string const& table) const { string r; for (clause_type::const_iterator i (clause_.begin ()), end (clause_.end ()); i != end; ++i) { char last (!r.empty () ? r[r.size () - 1] : ' '); switch (i->kind) { case clause_part::column: { if (last != ' ' && last != '(') r += ' '; if (i->part[0] == '.') r += table; r += i->part; break; } case clause_part::param: { if (last != ' ' && last != '(') r += ' '; r += '?'; break; } case clause_part::native: { // We don't want extra spaces after '(' as well as before ',' // and ')'. // const string& p (i->part); char first (!p.empty () ? p[0] : ' '); if (last != ' ' && last != '(' && first != ' ' && first != ',' && first != ')') r += ' '; r += p; break; } } } if (r.empty () || r.compare (0, 6, "WHERE ") == 0 || r.compare (0, 9, "ORDER BY ") == 0 || r.compare (0, 9, "GROUP BY ") == 0 || r.compare (0, 7, "HAVING ") == 0) return r; else return "WHERE " + r; } } }