-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
417 lines (325 loc) · 12.8 KB
/
main.cpp
File metadata and controls
417 lines (325 loc) · 12.8 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
#include "StudHelper.h"
int main() {
system("clear");
//Connection to the database
cout << "\t\tWelcome to StudHelper!\t\t" << endl;
cout << "Enter data to connect to database:" << endl;
string dbname, name, password, hostaddr, port;
//Enter needed information
cout << "Enter username: ";
getline(cin, name);
//Get password (is hidden)
password = getpass("Enter password: ");
cout << "Enter database name: ";
getline(cin, dbname);
//Enter IPv4 + check if it's right
do {
cout << "Enter host IPv4 address (enter 'd' to use localhost): ";
getline(cin, hostaddr);
if (hostaddr == "d")
hostaddr = "127.0.0.1";
} while(!is_ip(hostaddr));
//Eneter port + check if it's opened
do {
cout << "Enter port (enter 'd' to use default port): ";
getline(cin, port);
if (port == "d")
port = "5432";
} while(!is_port(hostaddr, port));
//Create StudHelper object
StudHelper& stud_helper = StudHelper::get_instance(dbname, name, password, hostaddr, port);
//PreMenu
preMenu:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'c' - check connection" << endl;
cout << "'h' - print help information" << endl;
cout << "'e' - exit the program" << endl;
//Make choice depending on pressed button
switch(getch()) {
//Check connection to database
case static_cast<int>('c'): {
system("clear");
stud_helper.check_connection();
if (stud_helper.check_table())
goto menu;
else
goto createTable;
}
//Print helpful information
case static_cast<int>('h'): {
system("clear");
//Get current date and time
time_t time = system_clock::to_time_t(system_clock::now());
cout << "The program works with PostgreSQL" << endl;
cout << "If you have suggestions, write: mrvlad008@gmail.com" << endl;
cout << "Developer: Vladislav Koliadenko" << endl;
cout << "Current date/time: " << ctime(&time) << endl;
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto preMenu;
break;
}
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto preMenu;
}
//Create table (if needed)
createTable:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'t' - create table (the table is missing)" << endl;
cout << "'h' - print help information" << endl;
cout << "'e' - exit the program" << endl;
//Make choice depending on pressed button
switch(getch()) {
//Create table
case static_cast<int>('t'): {
system("clear");
stud_helper.create_table();
goto menu;
}
//Print helpful information
case static_cast<int>('h'): {
system("clear");
//Get current date and time
time_t time = system_clock::to_time_t(system_clock::now());
cout << "The program works with PostgreSQL" << endl;
cout << "If you have suggestions, write: mrvlad008@gmail.com" << endl;
cout << "Developer: Vladislav Koliadenko" << endl;
cout << "Current date/time: " << ctime(&time) << endl;
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto createTable;
break;
}
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto createTable;
}
//Menu
menu:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'d' - get data" << endl;
cout << "'a' - add data" << endl;
cout << "'x' - delete data" << endl;
cout << "'c' - change data" << endl;
cout << "'i' - get information (academic performance/connection/developer)" << endl;
cout << "'e' - exit the program" << endl;
//Make choice depending on pressed button
switch(getch()) {
//Get needed data
case static_cast<int>('d'): {
get_data_retry:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'a' - get all data" << endl;
cout << "'s' - get certain subject" << endl;
cout << "'m' - go to the menu" << endl;
cout << "'e' - exit the program" << endl;
switch(getch()) {
//Get all data
case static_cast<int>('a'): {
system("clear");
stud_helper.get_data();
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Get only needed subject
case static_cast<int>('s'): {
system("clear");
string subj;
cout << "Enter subject name: ";
getline(cin, subj);
stud_helper.get_subject(subj);
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Go to the menu
case static_cast<int>('m'):
goto menu;
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto get_data_retry;
}
break;
}
//Add data to the table
case static_cast<int>('a'): {
system("clear");
string subj;
list<int> marks;
cout << "Enter subject name: ";
getline(cin, subj);
cout << "Enter marks (enter 'd' when you done):" << endl;
string temp;
//Add data to the list, as method works with it
while(cout << "-> " && getline(cin, temp) && temp != "d")
marks.push_back(stoi(temp));
stud_helper.insert_data(marks, subj);
goto menu;
}
//Delete needed data from the table
case static_cast<int>('x'): {
delete_data_retry:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'s' - delete certain subject" << endl;
cout << "'d' - delete certain mark" << endl;
cout << "'m' - go to the menu" << endl;
cout << "'e' - exit the program" << endl;
switch(getch()) {
//Delete whole subject
case static_cast<int>('s'): {
system("clear");
string subj;
cout << "Enter subject name: ";
getline(cin, subj);
stud_helper.delete_subject(subj);
goto menu;
}
//Delete certain mark by its ID
case static_cast<int>('d'): {
int id = 0;
cout << "Enter mark ID: ";
cin >> id;
stud_helper.delete_data(id);
goto menu;
}
//Go to the menu
case static_cast<int>('m'):
goto menu;
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto delete_data_retry;
}
break;
}
//Change mark by its ID
case static_cast<int>('c'): {
system("clear");
int id = 0,
mark = 0;
cout << "Enter mark ID: ";
cin >> id;
cout << "Enter mark you want to change with: ";
cin >> mark;
stud_helper.change_data(id, mark);
goto menu;
}
//Get needed information
case static_cast<int>('i'): {
info_retry:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'p' - get information about academic performance" << endl;
cout << "'c' - get connection information" << endl;
cout << "'d' - get information about developer" << endl;
cout << "'m' - go to the menu" << endl;
cout << "'e' - exit the program" << endl;
switch(getch()) {
//Get information about yours academic performance
case static_cast<int>('p'): {
system("clear");
string subj;
cout << "Enter subject name: ";
getline(cin, subj);
retryChoise:
system("clear");
cout << "Press certain button to select function:" << endl;
cout << "'y' - get progress information of given subject (exam is present)" << endl;
cout << "'n' - get progress information of given subject (exam isn't present)" << endl;
cout << "'m' - go to the menu" << endl;
cout << "'e' - exit the program" << endl;
switch(getch()) {
//Get information about yours academic performance considering if exam is presented in the subject
case static_cast<int>('y'): {
system("clear");
stud_helper.get_adv_info(subj, true);
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Get information about yours academic performance considering if exam isn't presented in the subject
case static_cast<int>('n'): {
system("clear");
stud_helper.get_adv_info(subj, false);
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Go to the menu
case static_cast<int>('m'):
goto menu;
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto retryChoise;
}
break;
}
//Get information about connection to database
case static_cast<int>('c'): {
system("clear");
stud_helper.get_info();
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Get information about daveloper
case static_cast<int>('d'): {
system("clear");
//Get current date and time
time_t time = system_clock::to_time_t(system_clock::now());
cout << "The program works with PostgreSQL" << endl;
cout << "If you have suggestions, write: mrvlad008@gmail.com" << endl;
cout << "Developer: Vladislav Koliadenko" << endl;
cout << "Current date/time: " << ctime(&time) << endl;
cout << "Press 'm' to go to the menu or any other button to exit the program" << endl;
if (int ch = getch(); ch == static_cast<int>('m'))
goto menu;
break;
}
//Go to the menu
case static_cast<int>('m'):
goto menu;
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto info_retry;
}
break;
}
//Exit the program
case static_cast<int>('e'):
exit(EXIT_SUCCESS);
//If needed button wasn't pressed, retry
default:
goto menu;
}
return 0;
}