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
|
/*
Copyright (©) 2003-2025 Teus Benschop.
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 3 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <database/bibleactions.h>
#include <filter/url.h>
#include <filter/string.h>
#include <config/globals.h>
#include <database/sqlite.h>
constexpr const auto database_name {"bibleactions"};
namespace database::bible_actions {
void create ()
{
SqliteDatabase sql (database_name);
sql.add ("CREATE TABLE IF NOT EXISTS bibleactions ("
" bible text,"
" book integer,"
" chapter integer,"
" usfm text"
");");
sql.execute ();
}
void clear ()
{
SqliteDatabase sql (database_name);
sql.add ("DROP TABLE IF EXISTS bibleactions;");
sql.execute ();
}
void optimize ()
{
SqliteDatabase sql (database_name);
sql.add ("VACUUM;");
sql.execute ();
}
void record (std::string bible, int book, int chapter, std::string usfm)
{
if (get_usfm (bible, book, chapter).empty ()) {
SqliteDatabase sql (database_name);
sql.add ("INSERT INTO bibleactions VALUES (");
sql.add (bible);
sql.add (",");
sql.add (book);
sql.add (",");
sql.add (chapter);
sql.add (",");
sql.add (usfm);
sql.add (");");
sql.execute ();
}
}
std::vector <std::string> get_bibles ()
{
SqliteDatabase sql (database_name);
sql.add ("SELECT DISTINCT bible FROM bibleactions ORDER BY bible;");
std::vector <std::string> notes = sql.query ()["bible"];
return notes;
}
std::vector <int> get_books (std::string bible)
{
SqliteDatabase sql (database_name);
sql.add ("SELECT DISTINCT book FROM bibleactions WHERE bible =");
sql.add (bible);
sql.add ("ORDER BY book;");
std::vector <std::string> result = sql.query ()["book"];
std::vector <int> books;
for (auto book : result) books.push_back (filter::strings::convert_to_int (book));
return books;
}
std::vector <int> get_chapters (std::string bible, int book)
{
SqliteDatabase sql (database_name);
sql.add ("SELECT DISTINCT chapter FROM bibleactions WHERE bible =");
sql.add (bible);
sql.add ("AND book =");
sql.add (book);
sql.add ("ORDER BY chapter;");
std::vector <std::string> result = sql.query ()["chapter"];
std::vector <int> chapters;
for (auto chapter : result) chapters.push_back (filter::strings::convert_to_int (chapter));
return chapters;
}
std::string get_usfm (std::string bible, int book, int chapter)
{
SqliteDatabase sql (database_name);
sql.add ("SELECT usfm FROM bibleactions WHERE bible =");
sql.add (bible);
sql.add ("AND book =");
sql.add (book);
sql.add ("AND chapter =");
sql.add (chapter);
sql.add (";");
std::vector <std::string> result = sql.query ()["usfm"];
if (!result.empty()) {
std::string usfm = result[0];
return usfm;
};
return std::string();
}
void erase (std::string bible, int book, int chapter)
{
SqliteDatabase sql (database_name);
sql.add ("DELETE FROM bibleactions WHERE bible =");
sql.add (bible);
sql.add ("AND book =");
sql.add (book);
sql.add ("AND chapter =");
sql.add (chapter);
sql.add (";");
sql.execute ();
}
} // Namespace.
|