-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDbManager.cpp
292 lines (244 loc) · 9.36 KB
/
DbManager.cpp
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#include "DbManager.h"
#include "IniParser.h"
#include <algorithm>
DbManager::DbManager()
{
IniParser parser(CONFIG_PATH);
std::string host = parser.get_value<std::string>("Db.host");
std::string port = parser.get_value<std::string>("Db.port");
std::string dbname = parser.get_value<std::string>("Db.name");
std::string user = parser.get_value<std::string>("Db.userName");
std::string password = parser.get_value<std::string>("Db.password");
try {
conn = new pqxx::connection("host=" + host +
" port=" + port +
" dbname=" + dbname +
" user=" + user +
" password=" + password);
createTables();
} catch (pqxx::sql_error e) {
std::cout << e.what() << std::endl;
}
}
DbManager::~DbManager()
{
conn = nullptr;
delete conn;
}
void DbManager::createTables()
{
// создание таблиц при первом запуске
pqxx::transaction<> tx{ *conn };
// таблица слов
tx.exec("CREATE TABLE IF NOT EXISTS words ( "
"id SERIAL primary key, "
"word varchar(32) not null unique "
");");
// таблица ресурсов
tx.exec("CREATE TABLE IF NOT exists urls ( "
"id SERIAL primary key, "
"url varchar(256) not null unique "
");");
// таблица частот слов по ресурсам
tx.exec("CREATE TABLE IF NOT exists frequencies ( "
"id SERIAL primary key, "
"word_id serial, "
"url_id serial, "
"frequency int not null, "
"CONSTRAINT uniq_word_url UNIQUE(word_id, url_id), "
"FOREIGN KEY (word_id) REFERENCES words (id), "
"FOREIGN KEY (url_id) REFERENCES urls (id) "
");");
tx.commit();
}
std::string DbManager::getStringFromVector(std::vector<int> sourceVector)
{
// преобразование верктора int к их перечислению через запятую (для использования в SELECT)
std::string line = "";
auto it = sourceVector.begin();
int val = *it;
line += std::to_string(val);
while(it != sourceVector.end() - 1)
{
++it;
line += ',';
int val = *it;
line += std::to_string(val);
}
return line;
}
template <typename T>
std::vector<std::pair<T, std::size_t>> DbManager::adjacent_count(const std::vector<T>& v)
{
// преобразование списка ресурсов к таблице ресурс - количество
// источник готовой функции:
// https://stackoverflow.com/questions/39596336/how-to-count-equal-adjacent-elements-in-a-vector
std::vector<std::pair<T, std::size_t>> res;
for (auto it = v.begin(), e = v.end(); it != e; /*Empty*/) {
auto it2 = std::adjacent_find(it, e, std::not_equal_to<>{});
if (it2 != e) {
++it2;
}
res.emplace_back(*it, std::distance(it, it2));
it = it2;
}
return res;
}
unsigned int DbManager::insertWord(std::string word)
{
// добавление слова в базу данных
try {
pqxx::transaction<> tx{ *conn };
pqxx::result r = tx.exec(
"insert into words (word)"
"values ('" + tx.esc(word) + "') returning id;"
);
tx.commit();
if (!r.empty()) {
return r[0][0].as<unsigned int>();
}
return 0;
} catch(std::exception const& e) {
return 0;
}
}
unsigned int DbManager::insertUrl(std::string url)
{
// добавление ресурса в базу данных
try {
pqxx::transaction<> tx{ *conn };
pqxx::result r = tx.exec(
"insert into urls (url)"
"values ('" + tx.esc(url) + "') RETURNING id;"
);
tx.commit();
if (!r.empty()) {
return r[0][0].as<unsigned int>();
}
return 0;
} catch(std::exception const& e) {
return 0;
}
}
bool DbManager::insertPresence(WordPresence presence)
{
// добавление новой частоты в базу данных, а также слова и ресурса, если их еще нет
try {
std::string word = presence.word;
std::string url = presence.url;
unsigned short frequency = presence.frequency;
// если слова нет в таблице слов, добавляем
unsigned int wordId = getWordId(word);
if (wordId == 0) {
wordId = insertWord(word);
}
// если ресурса нет в таблице ресурсов, добавляем
unsigned int urlId = getUrlId(url);
if (urlId == 0) {
urlId = insertUrl(url);
}
std::string wordIdStr = std::to_string(wordId);
std::string urlIdStr = std::to_string(urlId);
// добавляем новую частоту слова на ресурсе
pqxx::transaction<> tx{ *conn };
tx.exec("insert into frequencies (word_id, url_id, frequency)"
"values ('" + tx.esc(wordIdStr) + "', '" + tx.esc(urlIdStr) + "', '" + tx.esc(std::to_string(frequency)) + "') RETURNING id;");
tx.commit();
return true;
} catch(std::exception const& e) {
return false;
}
}
unsigned int DbManager::getWordId(std::string word)
{
// получение id слова
try {
pqxx::work tx{ *conn };
unsigned int id = tx.query_value<unsigned int>("select id from words " "where word = '" + tx.esc(word) + "';");
return id;
} catch (std::exception const& ) {
return 0;
}
}
unsigned int DbManager::getUrlId(std::string url)
{
// получение id ресурса
try {
pqxx::work tx{ *conn };
unsigned int id = tx.query_value<unsigned int>("select id from urls " "where url = '" + tx.esc(url) + "';");
return id;
} catch (std::exception const& ) {
return 0;
}
}
std::vector<int> DbManager::getWordsIds(std::vector<std::string> words)
{
// получние id слов по списку слов
std::vector<int> ids;
for (auto& word : words) {
ids.push_back(getWordId(word));
}
return ids;
}
std::vector<int> DbManager::getUrlsIdsByWord(std::string word)
{
// получение ресурсов по конкретному слову из таблицы частот
std::vector<int> urlIds;
int wordId = getWordId(word);
std::string wordIdStr = std::to_string(wordId);
pqxx::work tx{ *conn };
for (auto [id] : tx.query<int>("select url_id from frequencies " "where word_id = '" + tx.esc(wordIdStr) + "';")) {
urlIds.push_back(id);
}
return urlIds;
}
std::vector<int> DbManager::getUrlsIdsByWords(std::vector<std::string> words)
{
// получение ресурсов, каждый из которых содержит все слова из запроса
// получение просто всех ресурсов по словам из таблицы частот
std::vector<int> urlIds;
std::vector<int> urlIdsAccepted;
std::vector<int> word_ids = getWordsIds(words);
pqxx::work tx{ *conn };
for (auto [urlIdd] : tx.query<int>("select url_id from frequencies " "where word_id in (" + getStringFromVector(word_ids) + ");")) {
urlIds.push_back(urlIdd);
}
// for (auto& i : urlIds) {
// std::cout << i << "\n";
// }
// фильтрация ответа по тем ресурсам, которых вернулось не меньше, чем слов
for (auto pair : adjacent_count(urlIds)) {
int urlId = pair.first;
int count = pair.second;
// std::cout << urlId << "\n";
// std::cout << count << "\n";
// std::cout << words.size() << "\n";
if (words.size() == count) {
urlIdsAccepted.push_back(urlId);
}
}
// for (auto& i : urlIdsAccepted) {
// std::cout << i << "\n";
// }
return urlIdsAccepted;
}
std::vector<std::string> DbManager::getSortedUrlsByWords(std::vector<std::string> words)
{
// получение списка ресурсов, сразу отсортированного по сумме вхождений слов
std::vector<std::string> sortedUrls;
std::vector<int> url_ids = getUrlsIdsByWords(words);
std::vector<int> word_ids = getWordsIds(words);
if (url_ids.size() > 0 and word_ids.size() > 0) {
pqxx::work tx{ *conn };
for (auto& [url, freq] : tx.query<std::string, int>("select u.url, sum(f.frequency) sum_freq from frequencies f "
"join words w on f.word_id = w.id "
"join urls u on f.url_id = u.id "
"where word_id in (" + getStringFromVector(word_ids) + ") "
"and url_id in (" + getStringFromVector(url_ids) + ") "
"group by url "
"order by sum_freq DESC")) {
sortedUrls.push_back(url);
}
}
return sortedUrls;
}