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 223 224 225 226 227 228 229 230 231
|
/*
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/kjv.h>
#include <filter/url.h>
#include <filter/string.h>
#include <config/globals.h>
#include <database/sqlite.h>
// This is the database for the Strong's numbers and English glosses.
// Resilience: It is not written to.
// Chances of corruption are nearly zero.
void Database_Kjv::create ()
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("DROP TABLE IF EXISTS kjv2;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE kjv2 (book int, chapter int, verse int, strong int, english int);");
sql.execute ();
sql.clear ();
sql.add ("DROP TABLE IF EXISTS strong;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE IF NOT EXISTS strong (strong text);");
sql.execute ();
sql.clear ();
sql.add ("DROP TABLE IF EXISTS english;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE IF NOT EXISTS english (english text);");
sql.execute ();
sql.clear ();
sql.add ("VACUUM;");
sql.execute ();
}
void Database_Kjv::optimize ()
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("VACUUM;");
sql.execute ();
}
const char * Database_Kjv::filename ()
{
return "kjv";
}
// Get Strong's numbers and English snippets for book / chapter / verse.
std::vector <Database_Kjv_Item> Database_Kjv::getVerse (int book, int chapter, int verse)
{
std::vector <Database_Kjv_Item> hits;
std::vector <int> rows = rowids (book, chapter, verse);
for (auto row : rows) {
Database_Kjv_Item item;
item.strong = strong (row);
item.english = english (row);
hits.push_back (item);
}
return hits;
}
// Get all passages that contain a strong's number.
std::vector <Passage> Database_Kjv::searchStrong (std::string strong)
{
int strongid = get_id ("strong", strong);
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("SELECT DISTINCT book, chapter, verse FROM kjv2 WHERE strong =");
sql.add (strongid);
sql.add ("ORDER BY rowid;");
std::vector <Passage> hits;
std::map <std::string, std::vector <std::string> > result = sql.query ();
std::vector <std::string> books = result ["book"];
std::vector <std::string> chapters = result ["chapter"];
std::vector <std::string> verses = result ["verse"];
for (unsigned int i = 0; i < books.size (); i++) {
Passage passage;
passage.m_book = filter::strings::convert_to_int (books [i]);
passage.m_chapter = filter::strings::convert_to_int (chapters [i]);
passage.m_verse = verses [i];
hits.push_back (passage);
}
return hits;
}
void Database_Kjv::store (int book, int chapter, int verse, std::string strong, std::string english)
{
int strongid = get_id ("strong", strong);
int englishid = get_id ("english", english);
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("PRAGMA temp_store = MEMORY;");
sql.execute ();
sql.clear ();
sql.add ("PRAGMA synchronous = OFF;");
sql.execute ();
sql.clear ();
sql.add ("PRAGMA journal_mode = OFF;");
sql.execute ();
sql.clear ();
sql.add ("INSERT INTO kjv2 VALUES (");
sql.add (book);
sql.add (",");
sql.add (chapter);
sql.add (",");
sql.add (verse);
sql.add (",");
sql.add (strongid);
sql.add (",");
sql.add (englishid);
sql.add (");");
sql.execute ();
}
std::vector <int> Database_Kjv::rowids (int book, int chapter, int verse)
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("SELECT rowid FROM kjv2 WHERE book =");
sql.add (book);
sql.add ("AND chapter =");
sql.add (chapter);
sql.add ("AND verse =");
sql.add (verse);
sql.add ("ORDER BY rowid;");
std::vector <std::string> result = sql.query () ["rowid"];
std::vector <int> rowids;
for (auto rowid : result) rowids.push_back (filter::strings::convert_to_int (rowid));
return rowids;
}
std::string Database_Kjv::strong (int rowid)
{
return get_item ("strong", rowid);
}
std::string Database_Kjv::english (int rowid)
{
return get_item ("english", rowid);
}
int Database_Kjv::get_id (const char * table_row, std::string item)
{
SqliteDatabase sql = SqliteDatabase (filename ());
// Two iterations to be sure a rowid can be returned.
for (unsigned int i = 0; i < 2; i++) {
// Check on the rowid and return it if it's there.
sql.clear ();
sql.add ("SELECT rowid FROM");
sql.add (table_row);
sql.add ("WHERE");
sql.add (table_row);
sql.add ("=");
sql.add (item);
sql.add (";");
std::vector <std::string> result = sql.query () ["rowid"];
if (!result.empty ()) return filter::strings::convert_to_int (result [0]);
// The rowid was not found: Insert the word into the table.
// The rowid will now be found during the second iteration.
sql.clear ();
sql.add ("INSERT INTO");
sql.add (table_row);
sql.add ("VALUES (");
sql.add (item);
sql.add (");");
sql.execute ();
}
return 0;
}
std::string Database_Kjv::get_item (const char * item, int rowid)
{
// The $rowid refers to the main table.
// Update it so it refers to the sub table.
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("SELECT");
sql.add (item);
sql.add ("FROM kjv2 WHERE rowid =");
sql.add (rowid);
sql.add (";");
std::vector <std::string> result = sql.query () [item];
rowid = 0;
if (!result.empty ()) rowid = filter::strings::convert_to_int (result [0]);
// Retrieve the requested value from the sub table.
sql.clear ();
sql.add ("SELECT");
sql.add (item);
sql.add ("FROM");
sql.add (item);
sql.add ("WHERE rowid =");
sql.add (rowid);
sql.add (";");
result = sql.query () [item];
if (!result.empty ()) return result [0];
// Not found.
return std::string();
}
|