-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStudHelper.cpp
More file actions
437 lines (335 loc) · 12.1 KB
/
StudHelper.cpp
File metadata and controls
437 lines (335 loc) · 12.1 KB
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
#include "StudHelper.h"
//Initialize field for Singleton
StudHelper* StudHelper::m_instance = nullptr;
StudHelperDestroyer StudHelper::m_destroyer;
//Delete StudHelper object
StudHelperDestroyer::~StudHelperDestroyer() { delete m_instance; }
//Initialize StudHelper object
void StudHelperDestroyer::initialize(StudHelper* studh) { m_instance = studh; }
//Create StudHelper object
StudHelper& StudHelper::get_instance(const string& dbname, const string& name, const string& password,
const string& hostaddr = "127.0.0.1", const string& port = "5432") {
//If object wasn't created, make new
if(!m_instance) {
m_instance = new StudHelper(dbname, name, password, hostaddr, port);
m_destroyer.initialize(m_instance);
}
return* m_instance;
}
//Check connection to database
void StudHelper::check_connection() {
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Check if table exists
bool StudHelper::check_table() {
string sql;
bool is_tbl = false;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "select exists ("
"select * "
"from information_schema.tables "
"where table_schema = 'public' "
"and table_name = 'marks'"
");";
//Create non-transactional query
nontransaction nontrans(conn);
result res(nontrans.exec(sql));
//If table exists, return true
if(res[0][0].as<bool>())
is_tbl = true;
conn.close();
return is_tbl;
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Create table
void StudHelper::create_table() {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "create table marks("
"id int primary key not null, "
"subject text not null, "
"mark int"
");";
//Create and execute transactional query
work wrk(conn);
wrk.exec(sql);
wrk.commit();
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Get data from table
void StudHelper::get_data() {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "select * from marks "
"group by id, subject "
"order by subject asc;";
//Create non-transactional query
nontransaction nontrans(conn);
result res(nontrans.exec(sql));
//Print all data in table
for(const auto& val : res) {
cout << "ID = " << val[0].as<int>() << '\t';
cout << "Subject = " << val[1].as<string>() << '\t';
cout << "Mark = " << val[2].as<int>() << endl;
}
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Get certain subject
void StudHelper::get_subject(const string& subject) {
string sql;
int marks_total = 0;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "select * from marks "
"where subject = '" + subject + "' "
"group by id, subject "
"order by subject asc;";
//Create non-transactional query
nontransaction nontrans(conn);
result res(nontrans.exec(sql));
//Print all data about given subject
for(const auto& val : res) {
cout << "ID = " << val[0].as<int>() << '\t';
cout << "Subject = " << val[1].as<string>() << '\t';
cout << "Mark = " << val[2].as<int>() << endl;
//Get and print sum of marks
marks_total += val[2].as<int>();
}
cout << "Sum of " << subject << " points: " << marks_total << endl;
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Insert data in table
void StudHelper::insert_data(const list<int>& marks, const string& subject) {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Automatically write SQL query depending on amount of marks
for(const auto& val : marks) {
sql.append("insert into marks(id, subject, mark) values(floor(100000 + random() * 900000)::int")
.append(", '").append(subject).append("', ").append(to_string(val)).append(");");
}
//Create and execute transactional query
work wrk(conn);
wrk.exec(sql);
wrk.commit();
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Delete certain mark depending on its ID
void StudHelper::delete_data(const int& id) {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "delete from marks "
"where id = " + to_string(id) + ';';
//Create and execute transactional query
work wrk(conn);
wrk.exec(sql);
wrk.commit();
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Delete certain subject
void StudHelper::delete_subject(const string& subject) {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "delete from marks "
"where subject = '" + subject + "';";
//Create and execute transactional query
work wrk(conn);
wrk.exec(sql);
wrk.commit();
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Change mark depending on its ID
void StudHelper::change_data(const int& id, const int& mark) {
string sql;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "update marks "
"set mark = " + to_string(mark) + ' ' +
"where id = " + to_string(id) + ';';
//Create and execute transactional query
work wrk(conn);
wrk.exec(sql);
wrk.commit();
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Get information about connection
void StudHelper::get_info() {
cout << "Database name: " << StudHelper::get_dbname() << endl;
cout << "Username: " << StudHelper::get_name() << endl;
cout << "Password: " << StudHelper::get_password() << endl;
cout << "Host address: " << StudHelper::get_hostaddr() << endl;
cout << "Port: " << StudHelper::get_port() << endl;
}
//Get useful information and advices about certain subject
void StudHelper::get_adv_info(const string& subject, bool has_exam = false) {
string sql;
int marks_total = 0;
try {
//Create connection object and initialize it
connection conn("dbname = " + m_dbname + " user = " + m_name + " password = " + m_password +
" hostaddr = " + m_hostaddr + " port = " + m_port);
//Basic check if connection is opened
if(!conn.is_open())
exit(EXIT_FAILURE);
//Write SQL query
sql = "select id, mark from marks "
"where subject = '" + subject + "' "
"group by id;";
//Create non-transactional query
nontransaction nontrans(conn);
result res(nontrans.exec(sql));
for(const auto& val : res) {
//Sum all the marks of given subject
marks_total += val[1].as<int>();
//If mark = 0, print warning
if(val[1].as<int>() == 0)
cout << val[1].as<string>() << " (ID: " << val[0].as<string>() << ") should be retaken!" << endl;
}
//Print sum of all marks
cout << "Sum of " << subject << " points: " << marks_total << endl;
//Needed points for certain progress
const int PTS_EXAM_REQUIRED = 21;
const int PTS_CREDIT_REQUIRED = 60;
const int PTS_CREDIT_MIN_REQUIRED = 30;
//Print warnings depending on sum of marks and exam presence
if(has_exam) {
if(marks_total < PTS_EXAM_REQUIRED)
cout << "You should get " << PTS_EXAM_REQUIRED - marks_total << " points to be allowed to the exam!" << endl;
if(marks_total < PTS_CREDIT_REQUIRED)
cout << "You should get " << PTS_CREDIT_REQUIRED - marks_total << " points to get credit!" << endl;
}
else {
if(marks_total < PTS_CREDIT_MIN_REQUIRED)
cout << "You should get " << PTS_CREDIT_MIN_REQUIRED - marks_total << " points to be allowed to get credit!" << endl;
if(marks_total < PTS_CREDIT_REQUIRED)
cout << "You should get " << PTS_CREDIT_REQUIRED - marks_total << " points to get credit!" << endl;
}
conn.close();
}
catch(const exception& exc) {
cerr << exc.what() << endl;
exit(EXIT_FAILURE);
}
}
//Function-helper to track pressing on buttons
int getch() {
struct termios oldattr {}, newattr {};
int ch;
tcgetattr(STDIN_FILENO, &oldattr);
newattr = oldattr;
newattr.c_lflag &= ~(static_cast<unsigned>(ICANON) | static_cast<unsigned>(ECHO));
tcsetattr(STDIN_FILENO, TCSANOW, &newattr);
ch = getchar();
tcsetattr(STDIN_FILENO, TCSANOW, &oldattr);
return ch;
}
//Function-helper to check if port is opened
bool is_port(const string& ip, const string& port) { return (TcpSocket().connect(ip, stoi(port)) == Socket::Done); }
//Function-helper to check if IPv4 was entered right
bool is_ip(const string& ip) {
struct sockaddr_in sa {};
return inet_pton(AF_INET, ip.c_str(), &(sa.sin_addr)) != 0;
}