-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.cpp
More file actions
628 lines (577 loc) · 16.9 KB
/
library.cpp
File metadata and controls
628 lines (577 loc) · 16.9 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
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
#include "library.h"
#include <fstream>
#include <sstream>
#include <iostream>
#include <vector>
#include <string>
#include <cstdlib>
#include <ctime>
#include <algorithm>
#include "account.h"
#include "book.h"
#include "faculty.h"
#include "librarian.h"
#include "student.h"
#include "user.h"
using namespace std;
std::string trim(const std::string &s)
{
size_t start = s.find_first_not_of(" \t");
size_t end = s.find_last_not_of(" \t");
return (start == std::string::npos) ? "" : s.substr(start, end - start + 1);
}
// Library Initialization which loads data from files
void Library::initialize()
{
// Load books from file
ifstream file("Books.txt");
if (!file)
{
cerr << "Error opening file!" << endl;
return;
}
string line;
while (getline(file, line))
{
stringstream ss(line);
string temp;
int id, year, borrowerId;
string title, author, publisher, isbn, status;
getline(ss, temp, ',');
id = stoi(temp);
getline(ss, title, ',');
getline(ss, author, ',');
getline(ss, publisher, ',');
getline(ss, isbn, ',');
getline(ss, temp, ',');
year = stoi(temp);
getline(ss, status, ',');
getline(ss, temp, ',');
borrowerId = stoi(temp);
books.emplace_back(id, title, author, publisher, isbn, year, status, borrowerId);
}
file.close();
// Load users from file
ifstream file2("Users.txt");
if (!file2)
{
cerr << "Error opening file!" << endl;
return;
}
while (getline(file2, line))
{
stringstream ss(line);
string role, temp_id, temp_roleSpecificId, name, password, email, temp;
int borrowedBooks;
int historySize;
vector<pair<string, string>> borrowedBooksList;
vector<string> history;
getline(ss, role, ',');
getline(ss, temp_id, ',');
int id = stoi(temp_id);
getline(ss, temp_roleSpecificId, ',');
int roleSpecificId = stoi(temp_roleSpecificId);
getline(ss, name, ',');
getline(ss, password, ',');
getline(ss, email, ',');
int finePaid = 0;
if (role == "Student" || role == "Faculty")
{
ss >> finePaid;
ss.ignore(); // Ignore the comma
ss >> borrowedBooks;
ss.ignore(); // Ignore the comma
for (int i = 0; i < borrowedBooks; i++)
{
string book, time;
getline(ss, book, ',');
getline(ss, time, ',');
borrowedBooksList.push_back({book, time});
}
ss >> historySize;
ss.ignore(); // Ignore the comma
while (getline(ss, temp, ','))
{
temp = trim(temp);
if (!temp.empty())
{ // Ensure it is not an empty string
history.push_back(temp);
}
}
}
if (role == "Student")
{
students.emplace_back(id, roleSpecificId, name, password, email);
}
else if (role == "Faculty")
{
faculties.emplace_back(id, roleSpecificId, name, password, email);
}
else if (role == "Librarian")
{
librarians.emplace_back(id, roleSpecificId, name, password, email);
}
if (role == "Student")
{
for (int i = 0; i < borrowedBooksList.size(); i++)
{
students.back().getAccount().addToBorrowedBooks(stoi(borrowedBooksList[i].first), borrowedBooksList[i].second);
}
for (int i = 0; i < history.size(); i++)
{
students.back().getAccount().addToHistory(stoi(history[i]));
}
students.back().getAccount().setAmountpaid(finePaid);
}
else if (role == "Faculty")
{
for (int i = 0; i < borrowedBooksList.size(); i++)
{
faculties.back().getAccount().addToBorrowedBooks(stoi(borrowedBooksList[i].first), borrowedBooksList[i].second);
}
for (int i = 0; i < history.size(); i++)
{
faculties.back().getAccount().addToHistory(stoi(history[i]));
}
faculties.back().getAccount().setAmountpaid(finePaid);
}
}
file2.close();
}
// Display all books
void Library::displayBooks()
{
for (const auto &book : books)
{
book.display();
}
}
// Display all users
void Library::displayUsers()
{
// Display all Students
cout << "Students:" << endl;
for (auto &student : students)
{
cout << "Student ID: " << student.getUserId() << ",RollNo: " << student.getRollNo() << ", Name: " << student.getName() << ", Email: " << student.getEmail() << " " << student.finePerDay << " " << student.maxBooksAllowed << " " << student.maxBorrowPeriod << endl;
vector<Account::BorrowedBook> borrowedBooks = student.getAccount().getBorrowedBooks();
cout << " Borrowed Books:" << borrowedBooks.size() << endl;
for (const auto &borrowedBook : borrowedBooks)
{
cout << " Book ID: " << borrowedBook.bookId << ", Borrowed at: " << borrowedBook.borrowTimestamp << endl;
}
}
// Display all Faculties
cout << "Faculties:" << endl;
for (auto &faculty : faculties)
{
cout << "Faculty ID: " << faculty.getUserId() << ",Employee ID: " << faculty.getEmployeeId() << ", Name: " << faculty.getName() << ", Email: " << faculty.getEmail() << " " << faculty.finePerDay << " " << faculty.maxBooksAllowed << " " << faculty.maxBorrowPeriod << endl;
vector<Account::BorrowedBook> borrowedBooks = faculty.getAccount().getBorrowedBooks();
cout << " Borrowed Books:" << borrowedBooks.size() << endl;
for (const auto &borrowedBook : borrowedBooks)
{
cout << " Book ID: " << borrowedBook.bookId << ", Borrowed at: " << borrowedBook.borrowTimestamp << endl;
}
}
// Display all Librarians
cout << "Librarians:" << endl;
for (auto &librarian : librarians)
{
cout << "Librarian ID: " << librarian.getUserId() << ",Librarian ID: " << librarian.getLibrarianId() << ", Name: " << librarian.getName() << ", Email: " << librarian.getEmail() << endl;
}
}
// Find a book by ID
Book *Library::findBookById(int bookId)
{
for (auto &book : books)
{
if (book.getId() == bookId)
{
return &book;
}
}
// If book not found return nullptr
return nullptr;
}
// Find a student by RollNo
Student *Library::findStudentById(int rollNo)
{
for (auto &student : students)
{
if (student.getRollNo() == rollNo)
{
return &student;
}
}
return nullptr;
}
// Find a faculty by Employee ID
Faculty *Library::findFacultyById(int employeeId)
{
for (auto &faculty : faculties)
{
if (faculty.getEmployeeId() == employeeId)
{
return &faculty;
}
}
return nullptr;
}
// Find a librarian by ID
Librarian *Library::findLibrarianById(int LibrarianId)
{
for (auto &librarian : librarians)
{
if (librarian.getLibrarianId() == LibrarianId)
{
return &librarian;
}
}
return nullptr;
}
// Add a student
void Library::addStudent(Student &student)
{
students.push_back(student);
cout << "Student added successfully" << endl;
}
// Add a faculty
void Library::addFaculty(Faculty &faculty)
{
faculties.push_back(faculty);
cout << "Faculty added successfully" << endl;
}
// Add a librarian
void Library::addLibrarian(Librarian &librarian)
{
librarians.push_back(librarian);
cout << "Librarian added successfully" << endl;
}
// Add a book
void Library::addBook(Book &book)
{
books.push_back(book);
cout << "Book added successfully" << endl;
}
// Remove a user
void Library::removeUser(int &Id, const string &role, int &roleId)
{
if (role == "Student")
{
Student *student = findStudentById(roleId);
if (student == nullptr)
{
cout << "Student not found" << endl;
return;
}
if (student->getAccount().getBorrowedBooks().size() > 0)
{
for (auto &borrowedBook : student->getAccount().getBorrowedBooks())
{
Book *book = findBookById(borrowedBook.bookId);
if (book)
{
book->setStatus("Available");
book->setBorrowerId(-1);
}
}
}
for (auto it = students.begin(); it != students.end();)
{
if (it->getUserId() == Id && it->getRollNo() == roleId)
{
it = students.erase(it); // Erase returns next valid iterator
break; // Stop after deletion
}
else
{
++it; // Only increment if no deletion occurs
}
}
cout << "User removed successfully" << endl;
}
else if (role == "Faculty")
{
Faculty *faculty = findFacultyById(roleId);
if (faculty == nullptr)
{
cout << "Faculty not found" << endl;
return;
}
if (faculty->getAccount().getBorrowedBooks().size() > 0)
{
for (auto &borrowedBook : faculty->getAccount().getBorrowedBooks())
{
Book *book = findBookById(borrowedBook.bookId);
if (book)
{
book->setStatus("Available");
book->setBorrowerId(-1);
}
}
}
for (auto it = faculties.begin(); it != faculties.end();)
{
if (it->getUserId() == Id && it->getEmployeeId() == roleId)
{
it = faculties.erase(it); // Erase returns next valid iterator
break; // Stop after deletion
}
else
{
++it; // Only increment if no deletion occurs
}
}
cout << "User removed successfully" << endl;
}
else if (role == "Librarian")
{
Librarian *librarian = findLibrarianById(roleId);
if (librarian == nullptr)
{
cout << "Librarian not found" << endl;
return;
}
if (librarians.size() == 1)
{
cout << "Cannot remove the only librarian" << endl;
return;
}
for (auto it = librarians.begin(); it != librarians.end();)
{
if (it->getUserId() == Id && it->getLibrarianId() == roleId)
{
it = librarians.erase(it); // Erase returns next valid iterator
break; // Stop after deletion
}
else
{
++it; // Only increment if no deletion occurs
}
}
cout << "User removed successfully" << endl;
}
else
{
cout << "Invalid role" << endl;
}
}
// Remove a book
void Library::removeBook(int &bookId)
{
Book *book = findBookById(bookId);
if (book == nullptr)
{
cout << "Book not found" << endl;
return;
}
if (book->getStatus() == "Borrowed")
{
cout << "Book is borrowed, cannot be removed" << endl;
cout << "Only available books can be removed" << endl;
return;
}
for (auto it = books.begin(); it != books.end();)
{
if (it->getId() == bookId)
{
it = books.erase(it); // Erase returns next valid iterator
break; // Stop after deletion
}
else
{
++it; // Only increment if no deletion occurs
}
}
cout << "Book removed successfully" << endl;
}
// Save books to file
void Library::saveBooksToFile(const string &filename, const vector<Book> &books)
{
// Open file for writing
ofstream file(filename);
if (!file)
{
cerr << "Error opening file for writing!" << endl;
return;
}
for (const auto &book : books)
{
file << book.getId() << ","
<< book.getTitle() << ","
<< book.getAuthor() << ","
<< book.getPublisher() << ","
<< book.getISBN() << ","
<< book.getYear() << ","
<< book.getStatus() << ","
<< book.getBorrowerId()
<< "\n"; // Newline for next book
}
file.close();
}
// Getters
vector<Book> Library::getBooks()
{
return books;
}
vector<Student> Library::getStudents()
{
return students;
}
vector<Faculty> Library::getFaculties()
{
return faculties;
}
vector<Librarian> Library::getLibrarians()
{
return librarians;
}
// Save users to file
void Library::saveUsersToFile(const string &filename,
const vector<Student> &students,
const vector<Faculty> &faculties,
const vector<Librarian> &librarians)
{
ofstream file(filename);
if (!file)
{
cerr << "Error opening file for writing!" << endl;
return;
}
// Write Students
for (const auto &student : students)
{
file << "Student," << student.getUserId() << "," << student.getRollNo() << ","
<< student.getName() << "," << student.getPassword() << "," << student.getEmail() << ","
<< student.getAccount().getAmountpaid() << ","
<< student.getAccount().getBorrowedBooks().size();
// Writing borrowed books and timestamps (if any)
const auto &borrowedBooks = student.getAccount().getBorrowedBooks();
for (const auto &borrowedBook : borrowedBooks)
{
file << "," << borrowedBook.bookId << "," << borrowedBook.borrowTimestamp;
}
// Writing history (if any)
const auto &history = student.getAccount().getHistory();
file << "," << history.size();
for (const int id : history)
{
file << "," << id;
}
file << "\n"; // Move to the next line
}
// Write Faculties
for (const auto &faculty : faculties)
{
file << "Faculty," << faculty.getUserId() << "," << faculty.getEmployeeId() << ","
<< faculty.getName() << "," << faculty.getPassword() << "," << faculty.getEmail() << ","
<< faculty.getAccount().getAmountpaid() << ","
<< faculty.getAccount().getBorrowedBooks().size();
const auto &borrowedBooks = faculty.getAccount().getBorrowedBooks();
for (const auto &borrowedBook : borrowedBooks)
{
file << "," << borrowedBook.bookId << "," << borrowedBook.borrowTimestamp;
}
const auto &history = faculty.getAccount().getHistory();
file << "," << history.size();
for (const int id : history)
{
file << "," << id;
}
file << "\n";
}
// Write Librarians
for (const auto &librarian : librarians)
{
file << "Librarian," << librarian.getUserId() << "," << librarian.getLibrarianId() << ","
<< librarian.getName() << "," << librarian.getPassword() << "," << librarian.getEmail()
<< "\n";
}
file.close();
}
// Find a book by ISBN
Book *Library::findBookbyISBN(string isbn)
{
for (auto &book : books)
{
if (book.getISBN() == isbn)
{
return &book;
}
}
return nullptr;
}
// Find Student User ID from RollNo
int Library::getStudentIdFromRollNo(int rollNo)
{
for (auto &student : students)
{
if (student.getRollNo() == rollNo)
{
return student.getUserId();
}
}
return -1;
}
// Find Faculty User ID from Employee ID
int Library::getFacultyIdFromEmployeeId(int employeeId)
{
for (auto &faculty : faculties)
{
if (faculty.getEmployeeId() == employeeId)
{
return faculty.getUserId();
}
}
return -1;
}
// Find Librarian User ID from Librarian ID
int Library::getLibrarianIdFromLibrarianId(int LibrarianId)
{
for (auto &librarian : librarians)
{
if (librarian.getLibrarianId() == LibrarianId)
{
return librarian.getUserId();
}
}
return -1;
}
// Find Book ID from ISBN
int Library::getBookIdFromISBN(string isbn)
{
for (auto &book : books)
{
if (book.getISBN() == isbn)
{
return book.getId();
}
}
return -1;
}
// Check if a user exists
bool Library::userExists(int id)
{
for (auto &student : students)
{
if (student.getUserId() == id)
{
return true;
}
}
for (auto &faculty : faculties)
{
if (faculty.getUserId() == id)
{
return true;
}
}
for (auto &librarian : librarians)
{
if (librarian.getUserId() == id)
{
return true;
}
}
return false;
}