-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
412 lines (390 loc) · 10.7 KB
/
main.cpp
File metadata and controls
412 lines (390 loc) · 10.7 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
// <!-- HEADERS --!>
#include <iostream>
#include <stack>
#include <vector>
#include <algorithm>
#include <stdlib.h>
#include <fstream>
#include <ctime>
using namespace std;
// <!-- FUNCTION DECLARATIONS --!>
string dateTime(void);
void insertRecord(const string);
void showRecords(void);
void inputLoop(bool&, string&, const string);
void displayChoices(void);
void exitProgram(void);
int stringToInt(const string);
// <!-- BOOK CLASS --!>
class book {
private:
string datetimeAdded;
public:
string title;
string author;
string datePublished;
string address;
book (void) {}
book (const string t, const string a, const string d, const string ad)
: title(t), author(a), datePublished(d), address(ad), datetimeAdded(dateTime()) {
}
void displayTitle(void) {
cout << title << endl;
return;
}
void displayAuthor(void) {
cout << author << endl;
return;
}
void displayDatePublished(void) {
cout << datePublished << endl;
return;
}
void displayProperties(void) {
cout << "\t\t\t Added Datetime: " + datetimeAdded << endl;
cout << "\t\t\t Title: " << title << endl;
cout << "\t\t\t Author: " << author << endl;
cout << "\t\t\t Date Published: " << datePublished << endl;
cout << "\t\t\t Address: " << address << endl;
return;
}
};
// <!-- FUNCTION DECLARATIONS --!>
void arrangeAlpha(stack<book>& Books);
void bubbleSort(vector<book>& Books);
void pushBook(stack<book>&, book);
void addBook(stack<book>&);
void showBooks(stack<book>&);
void updateBook(stack<book>&);
void selectUpdate(stack<book>&);
void deleteBook(stack<book>&);
void selectDelete(stack<book>&);
int mainMenu(stack<book>&);
// <!-- MAIN FUNCTION --!>
int main (void) {
// Initial objects for testing purposes (You can add more)
stack<book> Books;
mainMenu(Books);
return 0;
}
void bubbleSort(vector<book>& Books) {
bool swapped = true;
int j = 0;
while (swapped) {
swapped = false;
j++;
for (int i = 0; i < Books.size() - j; i++) {
if (Books[i].title > Books[i + 1].title) {
book Book = Books[i];
Books[i] = Books[i + 1];
Books[i + 1] = Book;
swapped = true;
}
}
}
return;
}
void arrangeAlpha(stack<book>& Books) {
vector<book> BooksTempConVec;
if (Books.empty()) {
cout << endl << "\t\t\Empty!" << endl;
return;
}
while (!Books.empty()) {
BooksTempConVec.push_back(Books.top());
Books.pop();
}
bubbleSort(BooksTempConVec);
for (int i = 0; i < BooksTempConVec.size(); i++) {
Books.push(BooksTempConVec[i]);
}
return;
}
// <!-- GETS THE CURRENT DATE & TIME --!>
string dateTime(void) {
time_t rawtime;
struct tm * timeinfo;
char buffer[80];
time (&rawtime);
timeinfo = localtime(&rawtime);
strftime(buffer, sizeof(buffer), "%m-%d-%y %H:%M:%S", timeinfo);
string str(buffer);
return str;
}
// <!-- RECORDS EVENT IN TEXT FILE (IT ACTS AS A DATABASE) --!>
void insertRecord(const string Str) {
ofstream file ("history.txt", ios_base::app | ios_base::out);
file << Str << "\n";
return;
}
// <!-- DISPLAY RECORDS FROM THE TEXT FILE --!>
void showRecords (void) {
system("cls");
int index = 0;
fstream file ("history.txt");
string Str;
cout << endl << "\tRecords" << endl;
while (getline(file, Str)) {
index++;
cout << endl << "\t" << index << ".) " << Str << endl;
}
return;
}
// <!-- INPUT VALUE IN A LOOP --!>
void inputLoop(bool& isRunning, string& var, const string idName) {
while (isRunning) {
system("color a");
cout << endl << "\t\t\tInput " + idName + ": ";
getline(cin, var);
if (var.size() == 0) {
cout << endl << "\t\t\tInsert " + idName + "!"
<< endl << endl << "\t\t\t";
system("color 47");
system("PAUSE");
system("CLS");
displayChoices();
continue;
} else if (!(var.compare("0"))) {
cout << endl << "\t\t\tCanceled!" << endl;
isRunning = false;
return;
} else {
break;
}
}
return;
}
// <!-- PUSH BOOK OBJECT IN THE STACK --!>
void pushBook(stack<book>& Books, book Book) {
Books.push(Book);
return;
}
// <!-- MAIN FUNCTION --!>
void addBook(stack<book>& Books) {
string title;
string author;
string datePublished;
string address;
bool isRunning = true;
cout << endl << "\t\t\tInput [0] to Cancel" << endl;
inputLoop(isRunning, title, "title");
inputLoop(isRunning, author, "author");
inputLoop(isRunning, datePublished, "date published");
inputLoop(isRunning, address, "address");
if (isRunning) {
book Book(title, author, datePublished, address);
pushBook(Books, Book);
insertRecord(title + " was added at " + dateTime());
}
return;
}
// <!-- DISPLAY BOOKS --!>
void showBooks(stack<book>& Books) {
arrangeAlpha(Books);
stack<book> BooksTempCon;
int index = 1;
if (Books.empty()) {
cout << endl << "\t\t\tEmpty!" << endl;
return;
}
while (!Books.empty()) {
BooksTempCon.push(Books.top());
Books.pop();
}
cout << endl;
while (!BooksTempCon.empty()) {
cout << "\t\t\t" << index << ".)" << endl;
Books.push(BooksTempCon.top());
BooksTempCon.top().displayProperties();
BooksTempCon.pop();
index++;
}
return;
}
// <!-- UPDATE BOOK ADDRESS/LOCATION, SINCE YOU CANNOT UPDATE ITS CONTENT --!>
void updateBook(string number, stack<book>& Books) {
string newStr;
int index = 1;
vector<book> BooksTempConVector;
stack<book> BooksTempConStack;
while (!Books.empty()) {
BooksTempConStack.push(Books.top());
Books.pop();
}
while (!BooksTempConStack.empty()) {
if (stringToInt(number) == index) {
cout << endl << "\t\t\tCurrent address: " << BooksTempConStack.top().address << endl;
cout << "\t\t\tSet new address: ";
getline(cin, newStr);
insertRecord(BooksTempConStack.top().title + "'s address was changed from " + BooksTempConStack.top().address + " to " + newStr + " at " + dateTime());
BooksTempConStack.top().address = newStr;
}
BooksTempConVector.push_back(BooksTempConStack.top());
BooksTempConStack.pop();
index++;
}
for (int j = 0; j < BooksTempConVector.size(); j++) {
Books.push(BooksTempConVector[j]);
}
return;
}
// <!-- SELECT BOOK NUMBER IN UPDATE BOOK FUNCTION --!>
void selectUpdate(stack<book>& Books) {
string select, number;
bool isRunning = true;
while (isRunning) {
system("color a");
system("CLS");
cout << endl << "\t\t\t------- UPDATE BOOK -------" << endl;
showBooks(Books);
cout << endl << "\t\t\t[1] UPDATE" <<
endl << "\t\t\t[2] CANCEL" << endl <<
endl << "\t\t\tSELECT [1-2]: ";
getline(cin, select);
if (select == "1") {
if (!Books.empty()) {
cout << endl << "\t\t\tSelect book number: ";
} else {
cout << endl << "\t\t\tStack is empty!" << endl
<< endl << "\t\t\t";
system("PAUSE");
continue;
}
getline(cin, number);
updateBook(number, Books);
cout << endl << "\t\t\t";
system("PAUSE");
} else if (select == "2") {
return;
} else {
system("color 47");
cout << endl << "\t\t\tError!" << endl
<< endl << "\t\t\t";
system("PAUSE");
}
}
return;
}
void deleteBook(string number, stack<book>& Books) {
vector<book> BooksTempConVector;
stack<book> BooksTempConStack;
int index = 1;
while(!Books.empty()) {
BooksTempConStack.push(Books.top());
Books.pop();
}
while(!BooksTempConStack.empty()) {
BooksTempConVector.push_back(BooksTempConStack.top());
BooksTempConStack.pop();
}
for (vector<book>::iterator i = BooksTempConVector.begin(); i < BooksTempConVector.end(); i++) {
if (stringToInt(number) == index) {
cout << endl << "\t\t\t" << (*i).title << " has been deleted." << endl;
insertRecord((*i).title + " has been deleted.");
BooksTempConVector.erase(i);
}
index++;
}
for (int j = 0; j < BooksTempConVector.size(); j++) {
Books.push(BooksTempConVector[j]);
}
return;
}
void selectDelete(stack<book>& Books) {
string select, number;
bool isRunning = true;
while (isRunning) {
system("color a");
system("CLS");
cout << endl << "\t\t\t------- DELETE BOOK -------" << endl;
showBooks(Books);
cout << endl << "\t\t\t[1] DELETE" <<
endl << "\t\t\t[2] CANCEL" << endl <<
endl << "\t\t\tSELECT [1-2]: ";
getline(cin, select);
if (select == "1"){
if (!Books.empty()){
cout << endl << "\t\t\tSelect book number: ";
} else {
cout << endl << "\t\t\tStack is empty!" << endl
<< endl << "\t\t\t";
system("PAUSE");
continue;
}
getline(cin, number);
deleteBook(number, Books);
cout << endl << "\t\t\t";
system("PAUSE");
} else if (select == "2") {
return;
} else {
system("color 47");
cout << endl << "\t\t\tError!" << endl
<< endl << "\t\t\t";
system("PAUSE");
}
}
return;
}
// <!-- DISPLAY THE PROVIDED OPTIONS --!>
void displayChoices (void){
cout << endl
<< "\t\t\t LIBRARY MANAGEMENT SYSTEM" << endl << endl
<< "\t\t\t=======| OPTIONS |=========" << endl << endl
<< "\t\t\t[1] ADD BOOK" << endl
<< "\t\t\t[2] SHOW BOOKS" << endl
<< "\t\t\t[3] UPDATE BOOK" << endl
<< "\t\t\t[4] DELETE BOOK" << endl
<< "\t\t\t[5] SHOW RECORDS" << endl
<< "\t\t\t[6] EXIT" << endl;
return;
}
// <!-- CLOSE THE ENTIRE PROGRAM --!>
void exitProgram(bool& isRunning) {
isRunning = false;
return;
}
// <!-- CONVERT STRING TO INTEGER NUMBER --!>
int stringToInt(string number) {
int num = atoi(number.c_str());
return num;
}
// <!-- THE MAIN MENU OF THE PROGRAM --!>
int mainMenu (stack<book>& Books) {
string user_option;
bool isRunning = true;
do{
system("color a");
displayChoices();
cout << endl << "\t\t\tSELECT [1-6]: ";
getline(cin, user_option);
if(user_option == "1") {
addBook(Books);
cout << endl << "\t\t\t";
} else if(user_option == "2") {
showBooks(Books);
cout << endl << "\t\t\t";
} else if(user_option == "3") {
selectUpdate(Books);
cout << endl << "\t\t\t";
} else if(user_option == "4") {
selectDelete(Books);
cout << endl << "\t\t\t";
} else if (user_option == "5") {
showRecords();
cout << endl << "\t\t\t";
} else if (user_option == "6") {
exitProgram(isRunning);
cout << endl << "\t\t\t";
break;
} else {
system("color 47");
cout << endl << "\t\t\tERROR!" << endl
<< endl << "\t\t\t";
}
system("PAUSE");
system("CLS");
}
while (isRunning);
return EXIT_SUCCESS;
}