File: git.cpp

package info (click to toggle)
bibledit-cloud 5.1.036-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 250,636 kB
  • sloc: xml: 915,934; ansic: 261,349; cpp: 92,628; javascript: 32,542; sh: 4,915; makefile: 586; php: 69
file content (195 lines) | stat: -rw-r--r-- 5,211 bytes parent folder | download | duplicates (5)
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
/*
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/git.h>
#include <filter/url.h>
#include <filter/string.h>
#include <filter/date.h>
#include <database/sqlite.h>


// Database resilience: It contains statistical and non-essential data.
// It is checked and optionally recreated at least once a day.


#ifdef HAVE_CLOUD


constexpr const char * database_name {"git"};


namespace database::git {


void create ()
{
  SqliteDatabase sql (database_name);
  sql.add ("CREATE TABLE IF NOT EXISTS changes ("
           " timestamp integer,"
           " user text,"
           " bible text,"
           " book integer,"
           " chapter integer,"
           " oldusfm text,"
           " newusfm text"
           ");");
  sql.execute ();
}


void optimize ()
{
  const bool healthy_database = database::sqlite::healthy (database_name);
  if (!healthy_database) {
    filter_url_unlink (database::sqlite::get_file (database_name));
    create ();
  }
  
  SqliteDatabase sql (database_name);
  
  // On Android, this pragma prevents the following error: VACUUM; Unable to open database file.
  sql.add ("PRAGMA temp_store = MEMORY;");
  sql.execute ();
  
  sql.clear ();
  
  // Delete entries older than 10 days.
  const int timestamp = filter::date::seconds_since_epoch () - 432000;
  sql.add ("DELETE FROM changes WHERE timestamp <");
  sql.add (timestamp);
  sql.add (";");
  sql.execute ();
  
  sql.clear ();
  
  sql.add ("VACUUM;");
  sql.execute ();
}


void store_chapter (const std::string& user, const std::string& bible, int book, int chapter,
                                  const std::string& oldusfm, const std::string& newusfm)
{
  SqliteDatabase sql (database_name);
  sql.add ("INSERT INTO changes VALUES (");
  sql.add (filter::date::seconds_since_epoch ());
  sql.add (",");
  sql.add (user);
  sql.add (",");
  sql.add (bible);
  sql.add (",");
  sql.add (book);
  sql.add (",");
  sql.add (chapter);
  sql.add (",");
  sql.add (oldusfm);
  sql.add (",");
  sql.add (newusfm);
  sql.add (");");
  sql.execute ();
}


// Fetches the distinct users from the database for $bible.
std::vector <std::string> get_users (const std::string& bible)
{
  SqliteDatabase sql (database_name);
  sql.add ("SELECT DISTINCT user FROM changes WHERE bible =");
  sql.add (bible);
  sql.add (";");
  std::vector <std::string> users = sql.query () ["user"];
  return users;
}


// Fetches the rowids from the database for $user and $bible.
std::vector <int> get_rowids (const std::string& user, const std::string& bible)
{
  SqliteDatabase sql (database_name);
  sql.add ("SELECT rowid FROM changes WHERE user =");
  sql.add (user);
  sql.add ("AND bible =");
  sql.add (bible);
  sql.add ("ORDER BY rowid;");
  const std::vector <std::string> values = sql.query () ["rowid"];
  std::vector <int> rowids;
  for (const auto& value : values) {
    rowids.push_back (filter::strings::convert_to_int (value));
  }
  return rowids;
}


bool get_chapter (int rowid,
                  std::string & user, std::string & bible, int & book, int & chapter,
                  std::string & oldusfm, std::string & newusfm)
{
  SqliteDatabase sql (database_name);
  sql.add ("SELECT * FROM changes WHERE rowid =");
  sql.add (rowid);
  sql.add (";");
  std::map <std::string, std::vector <std::string> > result = sql.query ();
  const std::vector <std::string> users = result ["user"];
  const std::vector <std::string> bibles = result ["bible"];
  const std::vector <std::string> books = result ["book"];
  const std::vector <std::string> chapters = result ["chapter"];
  const std::vector <std::string> oldusfms = result ["oldusfm"];
  const std::vector <std::string> newusfms = result ["newusfm"];
  if (bibles.empty ()) 
    return false;
  if (!users.empty ())
    user = users.at(0);
  if (!bibles.empty ())
    bible = bibles.at(0);
  if (!books.empty ())
    book = filter::strings::convert_to_int (books.at(0));
  if (!chapters.empty ())
    chapter = filter::strings::convert_to_int (chapters.at(0));
  if (oldusfm.empty ())
    oldusfm = oldusfms.at(0);
  if (newusfm.empty ())
    newusfm = newusfms.at(0);
  return true;
}


void erase_rowid (int rowid)
{
  SqliteDatabase sql (database_name);
  sql.add ("DELETE FROM changes WHERE rowid =");
  sql.add (rowid);
  sql.add (";");
  sql.execute ();
}


void touch_timestamps (int timestamp)
{
  SqliteDatabase sql (database_name);
  sql.add ("UPDATE changes SET timestamp =");
  sql.add (timestamp);
  sql.add (";");
  sql.execute ();
}


} // Namespace.


#endif