-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
528 lines (500 loc) · 18.1 KB
/
main.cpp
File metadata and controls
528 lines (500 loc) · 18.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
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
/*
Lisa Lin (lisalin@my.unt.edu)
Homework 3 Assignment - Library Management System
Started: 3/12/2021
Main file
*/
#include <iostream>
#include <time.h>
#include <string>
#include <fstream>
#include "Book.h"
#include "Books.h"
#include "Loan.h"
#include "Loans.h"
#include "Patron.h"
#include "Patrons.h"
using namespace std;
/*
store/load functions
*/
void storeAll(Books books, Patrons patrons, Loans loans) {
books.store();
patrons.store();
loans.store();
cout << "Stored successfully." << endl << endl;
}
void loadAll(Books books, Patrons patrons, Loans loans) {
ifstream fin;
/*
NOTE ABOUT FILES
If one file is missing/can't be found then none of them can be loaded - use individual loading.
*/
fin.open("books.dat");
if (fin.fail())
{
cout << "File could not be found." << endl;
return;
}
fin.close();
fin.open("patrons.dat");
if (fin.fail())
{
cout << "File could not be found." << endl;
return;
}
fin.close();
fin.open("loans.dat");
if (fin.fail())
{
cout << "File could not be found." << endl;
return;
}
fin.close();
// load
cout << "Loaded successfully." << endl << endl;
}
int main() {
/*
* declaring variables
*/
Books books;
//Loans loans;
Patrons patrons;
Loans loans;
string libraryName;
/*
* time
*/
time_t currentTime = time(0);
time(¤tTime); //current time
/*
* print out due date (after 10 days)
* time_t newTime = currentTime + 864000;
* cout << asctime(localtime(&newTime));
*/
/*
* KEY for variables
* c = first choice
* bookC = choice for book menu
* patronC = choice for patron menu
* loanC = choice for loan menu
*/
int c, bookC, patronC, loanC;
cout << "Welcome to the Library Management System!" << endl;
cout << "CSCE 1040 HW3 - Lisa Lin" << endl;
cout << "Contact information: lisalin@my.unt.edu" << endl;
cout << "---------------------------------------" << endl << endl;
cout << "Enter library name: ";
getline(cin, libraryName);
/*
* program menu
*/
do {
cout << endl << "- " << libraryName << " Management System -" << endl;
cout << "Today's Date: " << ctime(¤tTime) << endl;
cout << " - Main Menu -" << endl;
cout << "What would you like to do?\n" << endl;
cout << "0 - Quit program" << endl;
cout << "1 - Book operations" << endl;
cout << "2 - Patron operations" << endl;
cout << "3 - Loan operations" << endl;
cout << "4 - Store all information" << endl;
cout << "5 - Load all information" << endl;
cout << "6 - More information about program" << endl << endl;
cout << "Enter your choice: ";
cin >> c;
switch (c)
{
case 0:
cout << "Thank you for using the library management system. " << endl;
return 0;
case 1:
{
do {
// book operations menu
cout << endl << "<<< BOOK OPERATIONS >>>" << endl << endl;
cout << "0 - Return to main menu" << endl;
cout << "1 - Add a book" << endl;
cout << "2 - Edit a book" << endl;
cout << "3 - Delete a book" << endl;
cout << "4 - Find a book" << endl;
cout << "5 - Print all book information" << endl;
cout << "6 - Find and print single book information" << endl;
cout << "7 - Store book information" << endl;
cout << "8 - Load book information" << endl << endl;
cout << "Select an option: ";
cin >> bookC;
cout << endl;
switch (bookC)
{
case 0:
cout << "Exiting book menu..." << endl << endl;
break;
case 1:
{
/*
* Add book
*/
books.addBook();
break;
}
case 2:
{
/*
* edit book
*/
books.editBook();
break;
}
case 3:
{
/*
* delete book
*/
if (books.emptyBook())
{
cout << "No books have been created." << endl;
break;
}
int bookID;
cout << "Enter book ID to be deleted: ";
cin >> bookID;
if (books.findBook(bookID) == NULL)
{ // if the book can't be found
cout << "Invalid book ID. Please try again." << endl;
break;
}
if (books.findBook(bookID) == NULL)
{
books.deleteBook(bookID);
}
else
{
cout << "Book has been assigned to a loan already, so it cannot be deleted." << endl;
}
break;
}
case 4:
{
/*
* find book
*/
books.searchBook();
break;
}
case 5:
{
/*
* print all books
*/
books.printAllBooks();
break;
}
case 6:
{
/*
* find and print
*/
books.findAndPrint();
break;
}
case 7:
{
/*
* store book information
*/
books.store();
break;
}
case 8:
{
/*
* load patron information
*/
books.load();
break;
}
default:
cout << "Invalid option, please select another." << endl;
break;
}
} while (bookC != 0);
break;
}
case 2:
{
do {
// Patron operations menu
cout << endl << "<<< PATRON OPERATIONS >>>" << endl << endl;
cout << "0 - Return to main menu" << endl;
cout << "1 - Add a patron" << endl;
cout << "2 - Edit a patron" << endl;
cout << "3 - Delete a patron" << endl;
cout << "4 - Find a patron" << endl;
cout << "5 - Print all patrons' information" << endl;
cout << "6 - Find and print single patron information" << endl;
cout << "7 - Pay fines" << endl;
cout << "8 - Store patron information" << endl;
cout << "9 - Load patron information" << endl << endl;
cout << "Select an option: ";
cin >> patronC;
cout << endl;
switch (patronC)
{
case 0:
/*
* exit
*/
cout << "Exiting patron menu..." << endl << endl;
break;
case 1:
{
/*
* add patron
*/
patrons.addPatron();
break;
}
case 2:
{
/*
* edit patron
*/
patrons.editPatron();
break;
}
case 3:
{
/*
* delete patron
*/
if (patrons.emptyNewPatron())
{
cout << "No patrons have been created." << endl;
break;
}
int patronID;
cout << "Enter patro ID to be deleted: ";
cin >> patronID;
if (patrons.findPatron(patronID) == NULL)
{ // if the patron can't be found
cout << "Invalid patron ID. Please try again." << endl;
break;
}
if (patrons.findPatron(patronID) == NULL)
{
patrons.deletePatron(patronID);
}
else
{
cout << "Patron has been assigned to a loan already, so it cannot be deleted." << endl;
}
break;
}
case 4:
{
/*
* find patron
*/
patrons.searchPatron();
break;
}
case 5:
{
/*
* print all patron info
*/
patrons.printAllPatrons();
break;
}
case 6:
{
/*
* find and print single patron info
*/
patrons.findAndPrintPatron();
break;
}
case 7:
{
/*
* pay fines
*/
patrons.payFines();
break;
}
case 8:
{
/*
* store patron information
*/
patrons.store();
break;
}
case 9:
{
/*
* load patron information
*/
patrons.load();
}
default:
cout << "Invalid option, please select another." << endl;
break;
}
} while (patronC != 0);
break;
}
case 3:
{
do {
// Patron operations menu
cout << endl << " <<< LOAN OPERATIONS >>>" << endl;
cout << endl << "0 - Return to main menu" << endl;
cout << "1 - Check out book" << endl;
cout << "2 - Check in book" << endl;
cout << "3 - List all overdue books" << endl;
cout << "4 - List all overdue books for a patron" << endl;
cout << "5 - Recheck book" << endl;
cout << "6 - Report lost book" << endl;
cout << "7 - Edit loan" << endl;
cout << "8 - Update loan status" << endl;
cout << "9 - Print all loan information" << endl;
cout << "10 - Store loan information" << endl;
cout << "11 - Load loan information" << endl << endl;
cout << "Select an option: ";
cin >> loanC;
cout << endl;
switch (patronC)
{
case 0:
/*
* exit
*/
cout << "Exiting loan menu..." << endl << endl;
break;
case 1:
{
/*
* check out
*/
loans.checkOutBook(&books, &patrons);
break;
}
case 2:
{
/*
* check in
*/
loans.checkInBook(&books, &patrons);
break;
}
case 3:
{
/*
* list overdue books
*/
loans.listAllOverdue();
break;
}
case 4:
{
/*
* list overdue for patron
*/
loans.listSpecificOverdue();
break;
}
case 5:
{
/*
* recheck
*/
loans.recheckBook();
break;
}
case 6:
{
/*
* rep lost
*/
loans.reportLost(&books, &patrons);
break;
}
case 7:
{
/*
* edit loan
*/
loans.editLoan(&books, &patrons);
break;
}
case 8:
{
/*
* update loan status
*/
loans.updateLoan(&books, &patrons);
break;
}
case 9:
{
/*
* print all
*/
loans.printAllLoans();
break;
}
case 10:
{
/*
store
*/
loans.store();
break;
}
case 11:
{
//load
loans.load();
break;
}
default:
cout << "Invalid option, please select another." << endl;
break;
}
} while (loanC != 0);
break;
}
case 4: {
/*
* store all information
*/
storeAll(books, patrons, loans);
break;
}
case 5: {
/*
* Load all information
*/
loadAll(books, patrons, loans);
break;
}
case 6: {
cout << "<<< MORE INFORMATION ABOUT PROGRAM >>>" << endl << endl;
cout << "This program was created by Lisa Lin for Homework 3 for CSCE 1040." << endl;
cout << "Patrons can borrow a maximum of 6 books, and cannot borrow books if they have any overdue books." << endl;
cout << "When books are reported as lost, the loan is deleted and the fine amount is added to the patron's file." << endl;
cout << "The loan period is 10 days, with the recheck adding 10 days to the end." << endl;
cout << "The fine is $0.25 every 24 hours." << endl;
cout << "Please enjoy using the management system!" << endl;
break;
}
default:
cout << "Invalid Option, please try again." << endl;
break;
}
} while (c != 0);
return 0;
}