query.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: BSD-3-Clause
2 
3 /*
4  * Copyright (c) 2020, Bjarne von Horn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  * * Redistributions of source code must retain the above copyright notice,
10  * this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright notice,
12  * this list of conditions and the following disclaimer in the documentation
13  * and/or other materials provided with the distribution.
14  * * Neither the name of the copyright holder nor the names of its contributors
15  * may be used to endorse or promote products derived from this software
16  * without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL BJARNE VON HORN BE LIABLE FOR ANY DIRECT,
22  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #pragma once
30 
31 #include <warehouse_ros/metadata.h>
32 
33 #include <boost/variant.hpp>
34 #include <sstream>
35 
37 #include <warehouse_ros_sqlite/warehouse_ros_sqlite_export.h>
38 
39 namespace warehouse_ros_sqlite
40 {
41 class WAREHOUSE_ROS_SQLITE_EXPORT Query : public warehouse_ros::Query
42 {
43 public:
44  using Variant = boost::variant<std::string, double, int>;
45  void append(const std::string& name, const std::string& val) override;
46  void append(const std::string& name, const double val) override;
47  void append(const std::string& name, const int val) override;
48  void append(const std::string& name, const bool val) override;
49  void appendLT(const std::string& name, const double val) override;
50  void appendLT(const std::string& name, const int val) override;
51  void appendLTE(const std::string& name, const double val) override;
52  void appendLTE(const std::string& name, const int val) override;
53  void appendGT(const std::string& name, const double val) override;
54  void appendGT(const std::string& name, const int val) override;
55  void appendGTE(const std::string& name, const double val) override;
56  void appendGTE(const std::string& name, const int val) override;
57  void appendRange(const std::string& name, const double lower, const double upper) override;
58  void appendRange(const std::string& name, const int lower, const int upper) override;
59  void appendRangeInclusive(const std::string& name, const double lower, const double upper) override;
60  void appendRangeInclusive(const std::string& name, const int lower, const int upper) override;
61 
62  sqlite3_stmt_ptr prepare(sqlite3* db_conn, const std::string& intro, const std::string& outro = "",
63  int bind_start_col = 1) const;
64  bool empty() const
65  {
66  return values_.empty();
67  }
68 
69 private:
70  template <typename T>
71  void doappend(const std::string& name, const char* op, T val)
72  {
73  if (!values_.empty())
74  query_ << " AND ";
75  values_.emplace_back(val);
76  query_ << schema::escape_columnname_with_prefix(name) << op << '?';
77  }
78  std::vector<Variant> values_;
79  std::stringstream query_;
80 };
81 
82 } // namespace warehouse_ros_sqlite
warehouse_ros_sqlite
Definition: database_connection.h:36
warehouse_ros_sqlite::schema::escape_columnname_with_prefix
escaped_columnname escape_columnname_with_prefix(const std::string &c)
Definition: utils.h:102
warehouse_ros_sqlite::Query::empty
bool empty() const
Definition: query.h:64
warehouse_ros_sqlite::Query
Definition: query.h:41
utils.h
warehouse_ros_sqlite::sqlite3_stmt_ptr
std::unique_ptr< sqlite3_stmt, Sqlite3StmtDeleter > sqlite3_stmt_ptr
Definition: utils.h:50
warehouse_ros_sqlite::Query::doappend
void doappend(const std::string &name, const char *op, T val)
Definition: query.h:71
metadata.h
warehouse_ros_sqlite::Query::values_
std::vector< Variant > values_
Definition: query.h:78
warehouse_ros_sqlite::Query::query_
std::stringstream query_
Definition: query.h:79
append
ROSCPP_DECL std::string append(const std::string &left, const std::string &right)
warehouse_ros::Query
warehouse_ros_sqlite::Query::Variant
boost::variant< std::string, double, int > Variant
Definition: query.h:44


warehouse_ros_sqlite
Author(s): Bjarne von Horn
autogenerated on Mon Oct 14 2024 02:16:58