-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathble_bme_680_sqlite3.cpp
227 lines (193 loc) · 7.38 KB
/
ble_bme_680_sqlite3.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* BLE Sensor Service
*
* Copyright (C) 2020 Patrick K. Moffitt
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "ble_bme_680_sqlite3.hpp"
Ble_bme_680_db::Ble_bme_680_db(const char *sqlite3_db_dir,
const char *sqlite3_db_file) {
fs::path sqlite3_db_filename{sqlite3_db_dir};
if (!fs::is_directory(fs::status(sqlite3_db_dir))) {
cerr << sqlite3_db_dir << " is not a directory." << endl;
exit(EXIT_DB_DIRECTORY_ERROR);
}
// Connect and set the DB handle.
sqlite3_db_filename.append(sqlite3_db_file);
auto error = sqlite3_open(sqlite3_db_filename.c_str(), &db_h);
on_error_exit(error, SQLITE_OK, EXIT_DB_HANDLE_ERROR);
}
Ble_bme_680_db::~Ble_bme_680_db() {
sqlite3_close(db_h);
}
bool Ble_bme_680_db::sensor_table_exists() const {
const char *stmt = sensor_table_exists_stmt;
sqlite3_stmt *p_stmt;
auto error = sqlite3_prepare_v2(db_h, stmt, strlen(stmt),
&p_stmt, nullptr);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_TBL_COUNT);
error = sqlite3_step(p_stmt);
on_error_exit(error, SQLITE_ROW,
EXIT_DB_EXEC_STMT_SENSOR_TABLE_EXISTS);
auto count = sqlite3_column_int(p_stmt, 0);
sqlite3_finalize(p_stmt);
if (count == 1)
return true;
return false;
}
void Ble_bme_680_db::create_sensor_data_table() const {
const char *stmt = create_sensor_data_table_stmt;
sqlite3_stmt *p_stmt;
auto error = sqlite3_prepare_v2(db_h, stmt, strlen(stmt),
&p_stmt, nullptr);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_CREATE_SENSOR_TABLE);
error = sqlite3_step(p_stmt);
sqlite3_finalize(p_stmt);
on_error_exit(error, SQLITE_DONE,
EXIT_DB_EXEC_STMT_CREATE_SENSOR_TABLE);
}
void Ble_bme_680_db::create_sensor_data_table_idx() const {
const char *stmt = create_sensor_data_table_idx_stmt;
sqlite3_stmt *p_stmt;
auto error = sqlite3_prepare_v2(db_h, stmt, strlen(stmt),
&p_stmt, nullptr);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_CREATE_SENSOR_TABLE_IDX);
error = sqlite3_step(p_stmt);
sqlite3_finalize(p_stmt);
on_error_exit(error, SQLITE_DONE,
EXIT_DB_EXEC_STMT_CREATE_SENSOR_TABLE_IDX);
}
void Ble_bme_680_db::sensor_data_insert(int32_t t, int8_t t_exp,
int32_t h, int8_t h_exp,
int32_t p, int8_t p_exp,
int32_t g, int8_t g_exp,
int32_t b, int8_t b_exp) const {
const char *stmt = sensor_data_insert_stmt;
sqlite3_stmt *p_stmt;
auto error = sqlite3_prepare_v2(db_h, stmt, strlen(stmt),
&p_stmt, nullptr);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_INSERT);
// Bind Epoch
auto epoch = system_clock::to_time_t(system_clock::now());
error = sqlite3_bind_int(p_stmt, 1, epoch);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_E);
// Bind T
error = sqlite3_bind_double(p_stmt, 2, t * pow(10, t_exp));
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_T);
// Bind H
error = sqlite3_bind_double(p_stmt, 3, h * pow(10, h_exp));
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_H);
// Bind P
error = sqlite3_bind_double(p_stmt, 4, p * pow(10, p_exp));
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_P);
// Bind G
error = sqlite3_bind_int(p_stmt, 5, g * pow(10, g_exp));
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_G);
// Bind B
error = sqlite3_bind_double(p_stmt, 6, b * pow(10, b_exp));
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_SENSOR_DATA_BIND_B);
error = sqlite3_step(p_stmt);
sqlite3_finalize(p_stmt);
on_error_exit(error, SQLITE_DONE,
EXIT_DB_EXEC_STMT_SENSOR_DATA_INSERT);
}
/*
* @brief Get an epoch-range of sensor data
*
* @param begin the start of the range in seconds.
* @param end the end of the range in seconds.
*
* @return data in JSON format
*
* @note If end >= begin an empty object is returned.
* Hint, end is further into the past.
*/
string Ble_bme_680_db::get_sensor_data_range(int32_t epoch1,
int32_t epoch2) const {
int32_t begin, end;
if (epoch1 > epoch2) {
begin = epoch1;
end = epoch2;
} else {
begin = epoch2;
end = epoch1;
}
string data = "{}";
if (end >= begin) return data;
const char *stmt = get_sensor_data_range_stmt;
sqlite3_stmt *p_stmt;
auto error = sqlite3_prepare_v2(db_h, stmt, strlen(stmt),
&p_stmt, nullptr);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_GET_SENSOR_DATA_RANGE);
// Bind Begin
error = sqlite3_bind_int(p_stmt, 1, begin);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_GET_SENSOR_DATA_RANGE_BIND_B);
// Bind End
error = sqlite3_bind_int(p_stmt, 2, end);
on_error_exit(error, SQLITE_OK,
EXIT_DB_PREP_STMT_GET_SENSOR_DATA_RANGE_BIND_E);
Object object;
object << "epoch1" << epoch1;
object << "epoch2" << epoch2;
Array row;
row << "epoch";
row << "temperature_c";
row << "humidity_rh";
row << "pressure_kpa";
row << "gas_ohms";
row << "battery_volts";
object << "columns" << row;
row.reset();
Array rows;
while ((error = sqlite3_step(p_stmt)) == SQLITE_ROW) {
row << sqlite3_column_int(p_stmt, 0); // epoch;
row << sqlite3_column_double(p_stmt, 1); // temperature_c;
row << sqlite3_column_double(p_stmt, 2); // humidity_rh;
row << sqlite3_column_double(p_stmt, 3); // pressure_kpa;
row << sqlite3_column_int(p_stmt, 4); // gas_ohms;
row << sqlite3_column_double(p_stmt, 5); // battery_volts;
rows.append(row);
row.reset();
}
object << "sensor_data" << rows;
data = object.json();
on_error_exit(error, SQLITE_DONE,
EXIT_DB_EXEC_STMT_GET_SENSOR_DATA_RANGE);
sqlite3_finalize(p_stmt);
return data;
}
void Ble_bme_680_db::on_error_exit(int error,
int condition,
int exit_code) const {
if (error != condition) {
sqlite3_close(db_h);
cerr << sqlite3_errmsg(db_h) << endl;
exit(exit_code);
}
}