database_connection.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 
34 #include <warehouse_ros_sqlite/warehouse_ros_sqlite_export.h>
35 
37 {
38 class WAREHOUSE_ROS_SQLITE_EXPORT DatabaseConnection : public warehouse_ros::DatabaseConnection
39 {
41  std::string uri_;
42 
43 public:
44  DatabaseConnection() = default;
45  DatabaseConnection(sqlite3_ptr db) : db_(std::move(db))
46  {
47  }
49  bool setParams(const std::string& host, unsigned /*port*/, float /*timeout*/ = 60.0) override
50  {
51  uri_ = host;
52  return true;
53  }
54 
56  bool setTimeout(float /*timeout*/) override
57  {
58  return true;
59  }
60 
63  bool connect() override;
64 
66  bool isConnected() override;
67 
70  void dropDatabase(const std::string& db_name) override;
71 
73  std::string messageType(const std::string& db_name, const std::string& collection_name) override;
74 
75  static const int BUSY_WAIT_MILLISECS = 20;
76  static const int BUSY_MAX_RETRIES = 10;
77 
78 protected:
79  warehouse_ros::MessageCollectionHelper::Ptr openCollectionHelper(const std::string& db_name,
80  const std::string& collection_name) override;
81  void initDb();
82  std::vector<std::string> getTablesOfDatabase(const std::string& db_name);
83  bool schemaVersionSet();
84 };
85 } // namespace warehouse_ros_sqlite
warehouse_ros_sqlite
Definition: database_connection.h:36
boost::shared_ptr< MessageCollectionHelper >
database_connection.h
warehouse_ros_sqlite::DatabaseConnection::setTimeout
bool setTimeout(float) override
Set database connection params.
Definition: database_connection.h:56
warehouse_ros_sqlite::DatabaseConnection::uri_
std::string uri_
Definition: database_connection.h:41
utils.h
warehouse_ros_sqlite::sqlite3_ptr
std::shared_ptr< sqlite3 > sqlite3_ptr
Definition: utils.h:51
warehouse_ros_sqlite::DatabaseConnection
Definition: database_connection.h:38
warehouse_ros::DatabaseConnection
std
warehouse_ros_sqlite::DatabaseConnection::DatabaseConnection
DatabaseConnection(sqlite3_ptr db)
Definition: database_connection.h:45
warehouse_ros_sqlite::DatabaseConnection::db_
sqlite3_ptr db_
Definition: database_connection.h:40
message_collection.h
warehouse_ros_sqlite::DatabaseConnection::setParams
bool setParams(const std::string &host, unsigned, float=60.0) override
Set database connection params.
Definition: database_connection.h:49


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