-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
554 lines (444 loc) · 20.3 KB
/
main.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
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
#include <HSGIL/hsgil.hpp>
#include <maved.hpp>
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
void showExampleTable(Connection* con)
{
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
ResultSet* res = stmt->executeQuery("SELECT * FROM contact");
std::cout << std::left
<< std::setw(4) << "ID "
<< std::setw(16) << "First Name"
<< std::setw(16) << "Last Name"
<< std::setw(32) << "Address"
<< std::setw(12) << "Birthdate"
<< std::endl;
while(res->next())
{
std::cout << std::setw(4);
std::cout << res->getInt("contact_id");
std::cout << std::setw(16);
std::cout << res->getString("first_name");
std::cout << std::setw(16);
std::cout << res->getString("last_name");
std::cout << std::setw(32);
std::cout << res->getString("home_address");
std::cout << std::setw(12);
std::cout << res->getString("birthdate");
std::cout << std::endl;
}
std::cout << std::endl;
delete res;
delete stmt;
}
void showFullQueryTable(Connection* con, const char* queryPath = "sql/clients_full_query.sql")
{
std::ifstream f;
f.open(queryPath);
std::string query {};
std::string chunk {};
while(f >> chunk)
{
query += chunk + ' ';
}
f.close();
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
ResultSet* res = stmt->executeQuery(query);
std::cout << std::left
<< std::setw(4) << "ID"
<< std::setw(16) << "Name"
<< std::setw(16) << "Last Name"
<< std::setw(32) << "Address"
<< std::setw(12) << "Birthdate"
<< std::setw(64) << "Phones"
<< std::setw(64) << "Emails"
<< std::endl;
while(res->next())
{
std::cout << std::setw(4);
std::cout << res->getString("ID");
std::cout << std::setw(16);
std::cout << res->getString("Nombre");
std::cout << std::setw(16);
std::cout << res->getString("Apellidos");
std::cout << std::setw(32);
std::cout << res->getString("Direccion");
std::cout << std::setw(12);
std::cout << res->getString("Fecha");
std::cout << std::setw(64);
std::cout << res->getString("Telefonos");
std::cout << std::setw(64);
std::cout << res->getString("Correos");
std::cout << std::endl;
}
std::cout << std::endl;
delete res;
delete stmt;
}
void showEmails(Connection* con)
{
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
ResultSet* res = stmt->executeQuery("SELECT email_id, eaddress, etype, contact_id, CONCAT(c.first_name, ' ', c.last_name) AS name FROM email INNER JOIN contact c USING(contact_id)");
std::cout << std::left
<< std::setw(4) << "ID "
<< std::setw(32) << "Address"
<< std::setw(16) << "Type"
<< std::setw(12) << "Owner's ID"
<< std::setw(32) << "Owner's Full Name"
<< std::endl;
while(res->next())
{
std::cout << std::setw(4);
std::cout << res->getInt("email_id");
std::cout << std::setw(32);
std::cout << res->getString("eaddress");
std::cout << std::setw(16);
std::cout << res->getString("etype");
std::cout << std::setw(12);
std::cout << res->getInt("contact_id");
std::cout << std::setw(32);
std::cout << res->getString("name");
std::cout << std::endl;
}
std::cout << std::endl;
delete res;
delete stmt;
}
void insertContact(Connection* con, const char* first_name, const char* last_name, const char* home_address, const char* birthdate)
{
if((strcmp(first_name, "") == 0) || (strcmp(last_name, "") == 0) || (strcmp(home_address, "") == 0) || (strcmp(birthdate, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("INSERT INTO contact VALUES (NULL, ?, ?, ?, ?)");
prep_stmt->setString(1, first_name);
prep_stmt->setString(2, last_name);
prep_stmt->setString(3, home_address);
prep_stmt->setString(4, birthdate);
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void insertPhone(Connection* con, const char* phone_number, const char* phone_type, const char* contact_id)
{
if((strcmp(phone_number, "") == 0) || (strcmp(phone_type, "") == 0) || (strcmp(contact_id, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("INSERT INTO phone VALUES (?, ?, ?)");
prep_stmt->setInt(1, std::stoi(phone_number));
prep_stmt->setString(2, phone_type);
prep_stmt->setInt(3, std::stoi(contact_id));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void insertEmail(Connection* con, const char* email, const char* email_type, const char* contact_id)
{
if((strcmp(email, "") == 0) || (strcmp(email_type, "") == 0) || (strcmp(contact_id, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("INSERT INTO email VALUES (NULL, ?, ?, ?)");
prep_stmt->setString(1, email);
prep_stmt->setString(2, email_type);
prep_stmt->setInt(3, std::stoi(contact_id));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void updateContact(Connection* con, const char* contact_id, const char* first_name, const char* last_name, const char* home_address, const char* birthdate)
{
if((strcmp(contact_id, "") == 0) || (strcmp(first_name, "") == 0) || (strcmp(last_name, "") == 0) || (strcmp(home_address, "") == 0) || (strcmp(birthdate, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("UPDATE contact SET first_name = ?, last_name = ?, home_address = ?, birthdate = ? WHERE contact_id = ?");
prep_stmt->setString(1, first_name);
prep_stmt->setString(2, last_name);
prep_stmt->setString(3, home_address);
prep_stmt->setString(4, birthdate);
prep_stmt->setInt(5, std::stoi(contact_id));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void updatePhone(Connection* con, const char* phone_number, const char* new_phone_number, const char* phone_type)
{
if((strcmp(phone_number, "") == 0) || (strcmp(new_phone_number, "") == 0) || (strcmp(phone_type, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("UPDATE phone SET phone_number = ?, ptype = ? WHERE phone_number = ?");
prep_stmt->setInt(1, std::stoi(new_phone_number));
prep_stmt->setString(2, phone_type);
prep_stmt->setInt(3, std::stoi(phone_number));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void updateEmail(Connection* con, const char* email_id, const char* email, const char* email_type)
{
if((strcmp(email_id, "") == 0) || (strcmp(email, "") == 0) || (strcmp(email_type, "") == 0))
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("UPDATE email SET eaddress = ?, etype = ? WHERE email_id = ?");
prep_stmt->setString(1, email);
prep_stmt->setString(2, email_type);
prep_stmt->setInt(3, std::stoi(email_id));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
void removeContact(Connection* con, const char* contact_id)
{
if(strcmp(contact_id, "") == 0)
{
return;
}
Statement* stmt = con->createStatement();
stmt->execute("USE contacts_db");
PreparedStatement* prep_stmt = con->prepareStatement("DELETE FROM contact WHERE contact_id = ?");
prep_stmt->setInt(1, std::stoi(contact_id));
prep_stmt->execute();
delete prep_stmt;
delete stmt;
}
int main(int argc, char** argv)
{
mysql::MySQL_Driver* driver;
Connection* con;
driver = mysql::get_mysql_driver_instance();
con = driver->connect("tcp://127.0.0.1:3306", "root", "");
gil::FormWindow window(1280, 720, "Client Manager");
if(!window.isReady())
{
delete con;
return EXIT_FAILURE;
}
gil::InputButton button01;
gil::InputButton button02;
gil::InputButton button03;
gil::InputButton button04;
gil::InputButton button05;
gil::InputButton button06;
gil::InputButton button07;
gil::InputButton button08;
gil::InputButton button09;
gil::InputButton button10;
gil::InputButton button11;
gil::EventHandler eventHandler;
eventHandler.addKeyControl(gil::BUTTON_001, button01, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_002, button02, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_003, button03, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_004, button04, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_005, button05, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_006, button06, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_007, button07, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_008, button08, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_009, button09, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_010, button10, 1.0f);
eventHandler.addKeyControl(gil::BUTTON_011, button11, 1.0f);
window.setEventHandler(eventHandler);
gil::Tag buttonTag01 = window.addButton( 20, 640, 120, 20, 1, "Show Clients");
gil::Tag buttonTag02 = window.addButton(150, 640, 140, 20, 2, "Show Full Clients");
gil::Tag buttonTag03 = window.addButton(300, 640, 140, 20, 3, "Show Emails");
gil::Tag buttonTag04 = window.addButton(450, 640, 100, 20, 4, "Exit");
// Create Client Form
// -----------------------------------------------------------------------------------
gil::Tag labelTag01 = window.addLabel(10, 10, 610, 20, "Create Client Form");
gil::Tag labelTag02 = window.addLabel(10, 40, 100, 20, "Name");
gil::Tag labelTag03 = window.addLabel(10, 70, 100, 20, "Last Name");
gil::Tag labelTag04 = window.addLabel(10, 100, 100, 20, "Address");
gil::Tag labelTag05 = window.addLabel(10, 130, 100, 20, "Birthdate");
gil::Tag nameTag01 = window.addTextBox(120, 40, 500, 20);
gil::Tag lastNameTag01 = window.addTextBox(120, 70, 500, 20);
gil::Tag addressTag01 = window.addTextBox(120, 100, 500, 20);
gil::Tag birthdateTag01 = window.addTextBox(120, 130, 500, 20);
gil::Tag buttonTag05 = window.addButton(120, 160, 120, 20, 5, "Create Client");
// -----------------------------------------------------------------------------------
// Add Phone Form (Check your ID at the table shown with Show Clients and get the ID)
// -----------------------------------------------------------------------------------
gil::Tag labelTag06 = window.addLabel(10, 190, 610, 20, "Add Phone Form");
gil::Tag labelTag07 = window.addLabel(10, 210, 610, 20, "(Check your ID at the table shown with Show Clients and get it)");
gil::Tag labelTag08 = window.addLabel(10, 240, 100, 20, "ID");
gil::Tag labelTag09 = window.addLabel(10, 270, 100, 20, "Phone");
gil::Tag labelTag10 = window.addLabel(10, 300, 100, 20, "Phone Type");
gil::Tag idTag01 = window.addTextBox(120, 240, 500, 20);
gil::Tag phoneTag01 = window.addTextBox(120, 270, 500, 20);
gil::Tag phoneTypeTag01 = window.addTextBox(120, 300, 500, 20);
gil::Tag buttonTag06 = window.addButton(120, 330, 120, 20, 6, "Add Phone");
// -----------------------------------------------------------------------------------
// Add Email Form (Check your ID at the table shown with Show Clients and get the ID)
// -----------------------------------------------------------------------------------
gil::Tag labelTag11 = window.addLabel(10, 360, 610, 20, "Add Email Form");
gil::Tag labelTag12 = window.addLabel(10, 380, 610, 20, "(Check your ID at the table shown with Show Clients and get it)");
gil::Tag labelTag13 = window.addLabel(10, 410, 100, 20, "ID");
gil::Tag labelTag14 = window.addLabel(10, 440, 100, 20, "Email");
gil::Tag labelTag15 = window.addLabel(10, 470, 100, 20, "Email Type");
gil::Tag idTag02 = window.addTextBox(120, 410, 500, 20);
gil::Tag emailTag01 = window.addTextBox(120, 440, 500, 20);
gil::Tag emailTypeTag01 = window.addTextBox(120, 470, 500, 20);
gil::Tag buttonTag07 = window.addButton(120, 500, 120, 20, 7, "Add Email");
// -----------------------------------------------------------------------------------
// Update Client Form
// -----------------------------------------------------------------------------------
gil::Tag labelTag16 = window.addLabel(630, 10, 610, 20, "Update Client Form");
gil::Tag labelTag17 = window.addLabel(630, 30, 610, 20, "(Check your ID at the table shown with Show Clients and get it)");
gil::Tag labelTag18 = window.addLabel(630, 60, 100, 20, "ID");
gil::Tag labelTag19 = window.addLabel(630, 90, 100, 20, "New Name");
gil::Tag labelTag20 = window.addLabel(630, 120, 100, 20, "New L. Name");
gil::Tag labelTag21 = window.addLabel(630, 150, 100, 20, "New Address");
gil::Tag labelTag22 = window.addLabel(630, 180, 100, 20, "New Birthdate");
gil::Tag idTag03 = window.addTextBox(740, 60, 500, 20);
gil::Tag nameTag02 = window.addTextBox(740, 90, 500, 20);
gil::Tag lastNameTag02 = window.addTextBox(740, 120, 500, 20);
gil::Tag addressTag02 = window.addTextBox(740, 150, 500, 20);
gil::Tag birthdateTag02 = window.addTextBox(740, 180, 500, 20);
gil::Tag buttonTag08 = window.addButton(740, 210, 120, 20, 8, "Update Client");
// -----------------------------------------------------------------------------------
// Remove Client Form (Check your ID at the table shown with Show Clients and get the ID)
// -----------------------------------------------------------------------------------
gil::Tag labelTag23 = window.addLabel(630, 240, 610, 20, "Remove Client Form");
gil::Tag labelTag24 = window.addLabel(630, 260, 610, 20, "(Check your ID at the table shown with Show Clients and get it)");
gil::Tag labelTag25 = window.addLabel(630, 290, 100, 20, "ID");
gil::Tag idTag04 = window.addTextBox(740, 290, 500, 20);
gil::Tag buttonTag09 = window.addButton(740, 320, 120, 20, 9, "Remove Client");
// -----------------------------------------------------------------------------------
// Update Phone Form (Check your ID at the table shown with Show Clients and get the ID)
// -----------------------------------------------------------------------------------
gil::Tag labelTag26 = window.addLabel(630, 350, 610, 20, "Update Phone Form");
gil::Tag labelTag27 = window.addLabel(630, 370, 610, 20, "(Use your last phone to change it)");
gil::Tag labelTag28 = window.addLabel(630, 400, 100, 20, "Phone");
gil::Tag labelTag29 = window.addLabel(630, 430, 100, 20, "New Phone");
gil::Tag labelTag30 = window.addLabel(630, 460, 100, 20, "New P. Type");
gil::Tag phoneTag02 = window.addTextBox(740, 400, 500, 20);
gil::Tag phoneTag03 = window.addTextBox(740, 430, 500, 20);
gil::Tag phoneTypeTag03 = window.addTextBox(740, 460, 500, 20);
gil::Tag buttonTag10 = window.addButton(740, 490, 120, 20, 10, "Update Phone");
// -----------------------------------------------------------------------------------
// Update Email Form (Check your ID at the table shown with Show Clients and get the ID)
// -----------------------------------------------------------------------------------
gil::Tag labelTag31 = window.addLabel(630, 520, 610, 20, "Update Email Form");
gil::Tag labelTag32 = window.addLabel(630, 540, 610, 20, "(Check your email ID at the table shown with Show Emails and get it)");
gil::Tag labelTag33 = window.addLabel(630, 570, 100, 20, "ID");
gil::Tag labelTag34 = window.addLabel(630, 600, 100, 20, "New Email");
gil::Tag labelTag35 = window.addLabel(630, 630, 100, 20, "New E. Type");
gil::Tag emailTag02 = window.addTextBox(740, 570, 500, 20);
gil::Tag emailTag03 = window.addTextBox(740, 600, 500, 20);
gil::Tag emailTypeTag03 = window.addTextBox(740, 630, 500, 20);
gil::Tag buttonTag11 = window.addButton(740, 660, 120, 20, 11, "Update Email");
// -----------------------------------------------------------------------------------
while(window.isActive())
{
window.pollEvents();
if(button01.isTriggered())
{
showExampleTable(con);
}
if(button02.isTriggered())
{
if(argc > 1)
{
showFullQueryTable(con, argv[1]);
}
else
{
showFullQueryTable(con);
}
}
if(button03.isTriggered())
{
showEmails(con);
}
if(button04.isTriggered())
{
window.close();
}
if(button05.isTriggered())
{
insertContact(con, window.getTextBoxText(nameTag01).c_str(),
window.getTextBoxText(lastNameTag01).c_str(),
window.getTextBoxText(addressTag01).c_str(),
window.getTextBoxText(birthdateTag01).c_str());
window.setTextBoxText(nameTag01, "");
window.setTextBoxText(lastNameTag01, "");
window.setTextBoxText(addressTag01, "");
window.setTextBoxText(birthdateTag01, "");
}
if(button06.isTriggered())
{
insertPhone(con, window.getTextBoxText(phoneTag01).c_str(),
window.getTextBoxText(phoneTypeTag01).c_str(),
window.getTextBoxText(idTag01).c_str());
window.setTextBoxText(idTag01, "");
window.setTextBoxText(phoneTag01, "");
window.setTextBoxText(phoneTypeTag01, "");
}
if(button07.isTriggered())
{
insertEmail(con, window.getTextBoxText(emailTag01).c_str(),
window.getTextBoxText(emailTypeTag01).c_str(),
window.getTextBoxText(idTag02).c_str());
window.setTextBoxText(idTag02, "");
window.setTextBoxText(emailTag01, "");
window.setTextBoxText(emailTypeTag01, "");
}
if(button08.isTriggered())
{
updateContact(con, window.getTextBoxText(idTag03).c_str(),
window.getTextBoxText(nameTag02).c_str(),
window.getTextBoxText(lastNameTag02).c_str(),
window.getTextBoxText(addressTag02).c_str(),
window.getTextBoxText(birthdateTag02).c_str());
window.setTextBoxText(idTag03, "");
window.setTextBoxText(nameTag02, "");
window.setTextBoxText(lastNameTag02, "");
window.setTextBoxText(addressTag02, "");
window.setTextBoxText(birthdateTag02, "");
}
if(button09.isTriggered())
{
removeContact(con, window.getTextBoxText(idTag04).c_str());
window.setTextBoxText(idTag04, "");
}
if(button10.isTriggered())
{
updatePhone(con, window.getTextBoxText(phoneTag02).c_str(),
window.getTextBoxText(phoneTag03).c_str(),
window.getTextBoxText(phoneTypeTag03).c_str());
window.setTextBoxText(phoneTag02, "");
window.setTextBoxText(phoneTag03, "");
window.setTextBoxText(phoneTypeTag03, "");
}
if(button11.isTriggered())
{
updateEmail(con, window.getTextBoxText(emailTag02).c_str(),
window.getTextBoxText(emailTag03).c_str(),
window.getTextBoxText(emailTypeTag03).c_str());
window.setTextBoxText(emailTag02, "");
window.setTextBoxText(emailTag03, "");
window.setTextBoxText(emailTypeTag03, "");
}
}
delete con;
return EXIT_SUCCESS;
}