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 232 233 234 235 236 237 238 239 240 241
|
/*
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/oshb.h>
#include <filter/url.h>
#include <filter/string.h>
#include <config/globals.h>
#include <database/sqlite.h>
// This is the database for the Hebrew Bible text plus lemmas and morphology.
// Resilience: It is never written to.
// Chances of corruption are nearly zero.
const char * Database_OsHb::filename ()
{
return "oshb";
}
void Database_OsHb::create ()
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("DROP TABLE IF EXISTS oshb;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE oshb (book int, chapter int, verse int, lemma int, word int, morph int);");
sql.execute ();
sql.clear ();
sql.add ("DROP TABLE IF EXISTS lemma;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE IF NOT EXISTS lemma (lemma text);");
sql.execute ();
sql.clear ();
sql.add ("DROP TABLE IF EXISTS word;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE IF NOT EXISTS word (word text);");
sql.execute ();
sql.clear ();
sql.add ("DROP TABLE IF EXISTS morph;");
sql.execute ();
sql.clear ();
sql.add ("CREATE TABLE IF NOT EXISTS morph (morph text);");
sql.execute ();
}
void Database_OsHb::optimize ()
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("VACUUM;");
sql.execute ();
}
// Get Hebrew words for $book $chapter $verse.
std::vector <std::string> Database_OsHb::getVerse (int book, int chapter, int verse)
{
std::vector <std::string> words;
std::vector <int> rows = rowids (book, chapter, verse);
for (auto row : rows) {
words.push_back (word (row));
}
return words;
}
// Get array of book / chapter / verse of all passages that contain a $hebrew word.
std::vector <Passage> Database_OsHb::searchHebrew (std::string hebrew)
{
int word_id = get_id ("word", hebrew);
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("SELECT DISTINCT book, chapter, verse FROM oshb WHERE word =");
sql.add (word_id);
sql.add ("ORDER BY book, chapter, verse ASC;");
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_OsHb::store (int book, int chapter, int verse, std::string lemma, std::string word, std::string morph)
{
int lemma_id = get_id ("lemma", lemma);
int word_id = get_id ("word", word);
int morph_id = get_id ("morph", morph);
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 oshb VALUES (");
sql.add (book);
sql.add (",");
sql.add (chapter);
sql.add (",");
sql.add (verse);
sql.add (",");
sql.add (lemma_id);
sql.add (",");
sql.add (word_id);
sql.add (",");
sql.add (morph_id);
sql.add (");");
sql.execute ();
}
std::vector <int> Database_OsHb::rowids (int book, int chapter, int verse)
{
SqliteDatabase sql = SqliteDatabase (filename ());
sql.add ("SELECT rowid FROM oshb 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_OsHb::lemma (int rowid)
{
return get_item ("lemma", rowid);
}
std::string Database_OsHb::word (int rowid)
{
return get_item ("word", rowid);
}
std::string Database_OsHb::morph (int rowid)
{
return get_item ("morph", rowid);
}
int Database_OsHb::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_OsHb::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 oshb 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();
}
|