//Uno_and_above.ino
/*
This example demonstrates how the Sqlite Micro Logger library
can be used to write Analog data into Sqlite database.
Works on any Arduino compatible microcontroller with SD Card attachment
having 2kb RAM or more (such as Arduino Uno).
How Sqlite Micro Logger works:
https://github.com/siara-cc/sqlite_micro_logger_c
Copyright @ 2019 Arundale Ramanathan, Siara Logics (cc)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "ulog_sqlite.h"
#include <SPI.h>
#include <SD.h>
// Set the CS Pin connected to the MicroSD
// 8 on most shields such as Sparkfun Micro SD Shield
// 4 on WeMos D1 Mini
#define SD_CS_PIN 4
// If you would like to read DBs created with this repo
// with page size more than 512, change here,
// but ensure as much SRAM can be allocated.
// Please Arduino Uno cannot support page size > 512.
#define BUF_SIZE 512
byte buf[BUF_SIZE];
char filename[30];
extern const char sqlite_sig[];
//DEBUG_Brincando_com_Idéias_INÍCIO
#define pinBotaoDebug 7
#define habilitaDebugSerial true //define se envia informações do funcionamento para o monitor serial. "true" envia e "false" não envia. Utilizado apenas para identificar problemas de funcionamento atraves do monitor serial do IDE Arduino. Em situações normais, definir este parametro como "false". Quando usar o monitor, ele deve ser configurado para a velocidade de 115200.
#if habilitaDebugSerial == true
void debug(int pontoParada, String nomeVariavel, String valorVariavel, int tempoParada = -1) { //TempoParada faz delay. Com -1, para até porta 13 mudar de nível
Serial.print("(");
Serial.print(pontoParada);
Serial.print(") ");
Serial.print(nomeVariavel);
Serial.print(":");
Serial.print(valorVariavel);
Serial.println();
if (tempoParada == -1) {
static bool estadoBotaoAnt = digitalRead(pinBotaoDebug);
static unsigned long delayDebounce;
bool estadoBotao;
bool aguarda = true;
while (aguarda) {
estadoBotao = digitalRead(pinBotaoDebug);
if ( (estadoBotao != estadoBotaoAnt) && !estadoBotao ) {
if ((millis() - delayDebounce) > 100) {
aguarda = false;
delayDebounce = millis();
}
} else if (estadoBotao != estadoBotaoAnt) {
delayDebounce = millis();
}
estadoBotaoAnt = estadoBotao;
}
} else if (tempoParada > 0) {
delay(tempoParada);
}
}
#endif
//DEBUG_Brincando_com_Idéias_FIM
File myFile;
int32_t read_fn_wctx(struct dblog_write_context *ctx, void *buf, uint32_t pos, size_t len) {
myFile.seek(pos);
size_t ret = myFile.read((byte *)buf, len);
if (ret != len)
return DBLOG_RES_READ_ERR;
return ret;
}
int32_t read_fn_rctx(struct dblog_read_context *ctx, void *buf, uint32_t pos, size_t len) {
myFile.seek(pos);
size_t ret = myFile.read((byte *)buf, len);
if (ret != len)
return DBLOG_RES_READ_ERR;
return ret;
}
int32_t write_fn(struct dblog_write_context *ctx, void *buf, uint32_t pos, size_t len) {
myFile.seek(pos);
size_t ret = myFile.write((byte *)buf, len);
if (ret != len)
return DBLOG_RES_ERR;
myFile.flush();
return ret;
}
int flush_fn(struct dblog_write_context *ctx) {
//myFile.flush(); // Anyway being flushed after write
return DBLOG_RES_OK;
}
void print_error(int res) {
Serial.print(F("Err:"));
Serial.print(res);
Serial.print(F("\n"));
}
int input_string(char *str, int max_len) {
int ctr = 0;
str[ctr] = 0;
while (str[ctr] != '\n') {
if (Serial.available()) {
str[ctr] = Serial.read();
if (str[ctr] >= ' ' && str[ctr] <= '~')
ctr++;
if (ctr >= max_len)
break;
}
}
str[ctr] = 0;
Serial.print(str);
Serial.print(F("\n"));
return ctr;
}
int32_t input_num() {
char in[20];
int ctr = 0;
in[ctr] = 0;
while (in[ctr] != '\n') {
if (Serial.available()) {
in[ctr] = Serial.read();
if (in[ctr] >= '0' && in[ctr] <= '9')
ctr++;
if (ctr >= sizeof(in))
break;
}
}
in[ctr] = 0;
int32_t ret = atol(in);
Serial.print(ret);
Serial.print(F("\n"));
return ret;
}
int16_t read_int16(const byte *ptr) {
return (*ptr << 8) | ptr[1];
}
int32_t read_int32(const byte *ptr) {
int32_t ret;
ret = ((int32_t)*ptr++) << 24;
ret |= ((int32_t)*ptr++) << 16;
ret |= ((int32_t)*ptr++) << 8;
ret |= *ptr;
return ret;
}
int64_t read_int64(const byte *ptr) {
int64_t ret;
ret = ((int64_t)*ptr++) << 56;
ret |= ((int64_t)*ptr++) << 48;
ret |= ((int64_t)*ptr++) << 40;
ret |= ((int64_t)*ptr++) << 32;
ret |= ((int64_t)*ptr++) << 24;
ret |= ((int64_t)*ptr++) << 16;
ret |= ((int64_t)*ptr++) << 8;
ret |= *ptr;
return ret;
}
int pow10(int8_t len) {
return (len == 3 ? 1000 : (len == 2 ? 100 : (len == 1 ? 10 : 1)));
}
void set_ts_part(char *s, int val, int8_t len) {
while (len--) {
*s++ = '0' + val / pow10(len);
val %= pow10(len);
}
}
int get_ts_part(char *s, int8_t len) {
int i = 0;
while (len--)
i += ((*s++ - '0') * pow10(len));
return i;
}
int update_ts_part(char *ptr, int8_t len, int limit, int ovflw) {
int8_t is_one_based = (limit == 1000 || limit == 60 || limit == 24) ? 0 : 1;
int part = get_ts_part(ptr, len) + ovflw - is_one_based;
ovflw = part / limit;
part %= limit;
set_ts_part(ptr, part + is_one_based, len);
return ovflw;
}
// 012345678901234567890
// YYYY-MM-DD HH:MM:SS.SSS
void update_ts(char *ts, int diff) {
int ovflw = update_ts_part(ts + 20, 3, 1000, diff); // ms
if (ovflw) {
ovflw = update_ts_part(ts + 17, 2, 60, ovflw); // seconds
if (ovflw) {
ovflw = update_ts_part(ts + 14, 2, 60, ovflw); // minutes
if (ovflw) {
ovflw = update_ts_part(ts + 11, 2, 24, ovflw); // hours
if (ovflw) {
int8_t month = get_ts_part(ts + 5, 2);
int year = get_ts_part(ts, 4);
int8_t limit = (month == 2 ? (year % 4 ? 28 : 29) :
(month == 4 || month == 6 || month == 9 || month == 11 ? 30 : 31));
ovflw = update_ts_part(ts + 8, 2, limit, ovflw); // day
if (ovflw) {
ovflw = update_ts_part(ts + 5, 2, 12, ovflw); // month
if (ovflw)
set_ts_part(ts, year + ovflw, 4); // year
}
}
}
}
}
}
void display_row(struct dblog_read_context *ctx) {
int i = 0;
do {
uint32_t col_type;
const byte *col_val = (const byte *) dblog_read_col_val(ctx, i, &col_type);
if (!col_val) {
if (i == 0)
Serial.print(F("Error reading value\n"));
Serial.print(F("\n"));
return;
}
if (i)
Serial.print(F("|"));
switch (col_type) {
case 0:
Serial.print(F("null"));
break;
case 1:
Serial.print(*((int8_t *)col_val));
break;
case 2: {
int16_t ival = read_int16(col_val);
Serial.print(ival);
}
break;
case 4: {
int32_t ival = read_int32(col_val);
Serial.print(ival);
break;
}
// Arduino Serial.print not capable of printing
// int64_t and double. Need to implement manually
case 6: // int64_t
case 7: // double
Serial.print(F("todo"));
break;
default: {
uint32_t col_len = dblog_derive_data_len(col_type);
for (int j = 0; j < col_len; j++) {
if (col_type % 2)
Serial.print((char)col_val[j]);
else {
Serial.print((int)col_val[j]);
Serial.print(F(" "));
}
}
}
}
} while (++i);
}
void input_db_name() {
Serial.print(F("DB name (max 8.3): "));
input_string(filename, sizeof(filename));
}
int input_ts(char *datetime) {
Serial.print(F("\nEnter timestamp (YYYY-MM-DD HH:MM:SS.SSS): "));
return input_string(datetime, 24);
}
void log_analog_data() {
int32_t num_entries;
int dly;
input_db_name();
Serial.print(F("\nRecord count (1 to 32767 on UNO): "));
num_entries = input_num();
Serial.print(F("\nStarting analog pin (14=A0 on Uno, 17=A0 on ESP8266): "));
int8_t analog_pin_start = input_num();
Serial.print(F("\nNo. of pins: "));
int8_t analog_pin_count = input_num();
char ts[24];
if (input_ts(ts) < 23) {
Serial.print(F("Input full timestamp\n"));
return;
}
Serial.print(F("\nDelay(ms): "));
dly = input_num();
SD.remove(filename);
myFile = SD.open(filename, O_READ | O_WRITE | O_CREAT);
// if the file opened okay, write to it:
if (myFile) {
unsigned long start = millis();
unsigned long last_ms = start;
struct dblog_write_context ctx;
ctx.buf = buf;
ctx.col_count = analog_pin_count + 1;
ctx.page_resv_bytes = 0;
ctx.page_size_exp = 9;
ctx.max_pages_exp = 0;
ctx.read_fn = read_fn_wctx;
ctx.flush_fn = flush_fn;
ctx.write_fn = write_fn;
int res = dblog_write_init(&ctx);
if (!res) {
while (num_entries--) {
res = dblog_set_col_val(&ctx, 0, DBLOG_TYPE_TEXT, ts, 23);
if (res)
break;
update_ts(ts, (int) (millis() - last_ms));
last_ms = millis();
for (int8_t i = 0; i < analog_pin_count; i++) {
int val = analogRead(analog_pin_start + i);
res = dblog_set_col_val(&ctx, i + 1, DBLOG_TYPE_INT, &val, sizeof(int));
if (res)
break;
}
if (num_entries) {
res = dblog_append_empty_row(&ctx);
if (res)
break;
delay(dly);
}
}
}
if (!res)
res = dblog_finalize(&ctx);
myFile.close();
if (res)
print_error(res);
else {
Serial.print(F("\nDone. Elapsed time (ms): "));
Serial.print((millis() - start));
Serial.print("\n");
}
} else {
// if the file didn't open, print an error:
Serial.print(F("Open Error\n"));
}
}
void locate_records(int8_t choice) {
int num_entries;
int dly;
input_db_name();
struct dblog_read_context rctx;
rctx.page_size_exp = 9;
rctx.read_fn = read_fn_rctx;
myFile = SD.open(filename, FILE_READ);
if (myFile) {
Serial.print(F("Size:"));
Serial.print(myFile.size());
Serial.print(F("\n"));
rctx.buf = buf;
int res = dblog_read_init(&rctx);
if (res) {
print_error(res);
myFile.close();
return;
}
Serial.print(F("Page size:"));
Serial.print((int32_t) 1 << rctx.page_size_exp);
Serial.print(F("\nLast data page:"));
Serial.print(rctx.last_leaf_page);
Serial.print(F("\n"));
if (memcmp(buf, sqlite_sig, 16) || buf[68] != 0xA5) {
Serial.print(F("Invalid DB. Try recovery.\n"));
myFile.close();
return;
}
if (BUF_SIZE < (int32_t) 1 << rctx.page_size_exp) {
Serial.print(F("Buffer size less than Page size. Try increasing if enough SRAM\n"));
myFile.close();
return;
}
Serial.print(F("\nFirst record:\n"));
display_row(&rctx);
uint32_t rowid;
char srch_datetime[24]; // YYYY-MM-DD HH:MM:SS.SSS
int8_t dt_len;
if (choice == 2) {
Serial.print(F("\nEnter RowID (1 to 32767 on UNO): "));
rowid = input_num();
} else
dt_len = input_ts(srch_datetime);
Serial.print(F("No. of records to display: "));
num_entries = input_num();
unsigned long start = millis();
if (choice == 2)
res = dblog_srch_row_by_id(&rctx, rowid);
else
res = dblog_bin_srch_row_by_val(&rctx, 0, DBLOG_TYPE_TEXT, srch_datetime, dt_len, 0);
if (res == DBLOG_RES_NOT_FOUND)
Serial.print(F("Not Found\n"));
else if (res == 0) {
Serial.print(F("\nTime taken (ms): "));
Serial.print((millis() - start));
Serial.print("\n\n");
do {
display_row(&rctx);
} while (--num_entries && !dblog_read_next_row(&rctx));
} else
print_error(res);
myFile.close();
} else {
// if the file didn't open, print an error:
Serial.print(F("Open Error\n"));
}
}
void recover_db() {
struct dblog_write_context ctx;
ctx.buf = buf;
ctx.read_fn = read_fn_wctx;
ctx.write_fn = write_fn;
ctx.flush_fn = flush_fn;
input_db_name();
myFile = SD.open(filename, FILE_WRITE);
if (!myFile) {
print_error(0);
return;
}
int32_t page_size = dblog_read_page_size(&ctx);
if (page_size < 512) {
Serial.print(F("Error reading page size\n"));
myFile.close();
return;
}
if (dblog_recover(&ctx)) {
Serial.print(F("Error during recover\n"));
myFile.close();
return;
}
myFile.close();
}
bool INICIOU = false;
void setup() {
File root;
File testando_var_arquivo;
Serial.begin(9600);
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
//Serial.begin(9600);
pinMode(pinBotaoDebug, INPUT_PULLUP);
#endif
//DEBUG_Brincando_com_Idéias_FIM
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(1, "INICIOU", String(INICIOU));
#endif
//DEBUG_Brincando_com_Idéias_FIM
while (!Serial) {
}
Serial.print(F("Iniciando Cartao SD..\n"));
if (!SD.begin(SD_CS_PIN)) {
Serial.print(F("Falha ao iniciar Cartao SD!\n"));
while (1);
}
Serial.println(F("Icicializacao Cartao SD ok."));
root = SD.open("/");
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(2, "root", String(root));
#endif
//DEBUG_Brincando_com_Idéias_FIM
printDirectory(root, 0);
Serial.println("done!");
root.close();
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(3, "root", String(root));
#endif
//DEBUG_Brincando_com_Idéias_FIM
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(4, "INICIOU", String(INICIOU));
#endif
//DEBUG_Brincando_com_Idéias_FIM
//SD.begin(SD_CS_PIN);
INICIOU = true;
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(5, "INICIOU", String(INICIOU));
#endif
//DEBUG_Brincando_com_Idéias_FIM
}
void loop() {
if (!INICIOU)
return;
Serial.println(F("\n\nSqlite µLogger\n\n"));
Serial.println(F("1. Log analog data\n"));
Serial.println(F("2. Locate records by RowID\n"));
Serial.println(F("3. Locate records using Binary Search\n"));
Serial.println(F("4. Recover DB\n\n"));
Serial.println(F("Enter choice: "));
int8_t choice = input_num();
switch (choice) {
case 1:
log_analog_data();
break;
case 2:
case 3:
locate_records(choice);
break;
case 4:
recover_db();
break;
default:
Serial.print(F("Invalid choice\n"));
}
}
void printDirectory(File dir, int numTabs) {
while (true) {
File entry = dir.openNextFile();
//DEBUG_Brincando_com_Idéias_INÍCIO
#if habilitaDebugSerial == true
debug(6, "entry", String(entry));
#endif
//DEBUG_Brincando_com_Idéias_FIM
if (! entry) {
// no more files
break;
}
for (uint8_t i = 0; i < numTabs; i++) {
Serial.print('\t');
}
Serial.print(entry.name());
if (entry.isDirectory()) {
Serial.println("/");
printDirectory(entry, numTabs + 1);
} else {
// files have sizes, directories do not
Serial.print("\t\t");
Serial.println(entry.size(), DEC);
}
entry.close();
}
}