-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibrary.cpp
More file actions
337 lines (278 loc) · 6.58 KB
/
Copy pathLibrary.cpp
File metadata and controls
337 lines (278 loc) · 6.58 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
#include "Library.h"
#include <iostream>
#include <fstream>
#include <sstream>
using namespace std;
void Library::addBook(Book book) {
books.push_back(book);
saveBooks();
}
void Library::addMember(Member member) {
members.push_back(member);
saveMembers();
}
void Library::addTransaction(Transaction transaction) {
transactions.push_back(transaction);
}
void Library::displayAllBooks() {
cout << "\n===== ALL BOOKS =====\n";
for (Book book : books) {
book.displayBook();
cout << "----------------------\n";
}
}
void Library::displayAllMembers() {
cout << "\n===== ALL MEMBERS =====\n";
for (Member member : members) {
member.displayMember();
cout << "----------------------\n";
}
}
void Library::displayAllTransactions() {
cout << "\n===== ALL TRANSACTIONS =====\n";
for (Transaction transaction : transactions) {
transaction.displayTransaction();
cout << "----------------------\n";
}
}
void Library::searchBook(int id)
{
for (Book book : books)
{
if (book.getBookId() == id)
{
cout << "\nBook Found\n";
book.displayBook();
return;
}
}
cout << "\nBook not found.\n";
}
void Library::deleteBook(int id)
{
for (int i = 0; i < books.size(); i++)
{
if (books[i].getBookId() == id)
{
books.erase(books.begin() + i);
saveBooks();
cout << "Book deleted successfully.\n";
return;
}
}
cout << "Book not found.\n";
}
void Library::searchMember(int id)
{
for (Member member : members)
{
if (member.getMemberId() == id)
{
cout << "Member Found\n";
member.displayMember();
return;
}
}
cout << "Member not found.\n";
}
void Library::issueBook(int bookId, int memberId, string issueDate)
{
Book* selectedBook = nullptr;
Member* selectedMember = nullptr;
// Find the book
for (Book &book : books)
{
if (book.getBookId() == bookId)
{
selectedBook = &book;
break;
}
}
// Find the member
for (Member &member : members)
{
if (member.getMemberId() == memberId)
{
selectedMember = &member;
break;
}
}
if (selectedBook == nullptr)
{
cout << "Book not found.\n";
return;
}
if (selectedMember == nullptr)
{
cout << "Member not found.\n";
return;
}
if (!selectedBook->getAvailability())
{
cout << "Book is already issued.\n";
return;
}
selectedBook->setAvailability(false);
saveBooks();
int transactionId = transactions.size() + 1;
Transaction transaction(
transactionId,
bookId,
memberId,
issueDate
);
transactions.push_back(transaction);
saveTransactions();
cout << "Book issued successfully.\n";
}
void Library::returnBook(int transactionId)
{
for (Transaction &transaction : transactions)
{
if (transaction.getTransactionId() == transactionId)
{
if (transaction.getReturnStatus())
{
cout << "Book already returned.\n";
return;
}
transaction.setReturnStatus(true);
saveTransactions();
for (Book &book : books)
{
if (book.getBookId() == transaction.getBookId())
{
book.setAvailability(true);
saveBooks();
break;
}
}
cout << "Book returned successfully.\n";
return;
}
}
cout << "Transaction not found.\n";
}
void Library::saveBooks()
{
ofstream file("books.txt");
for (Book book : books)
{
file
<< book.getBookId() << ","
<< book.getTitle() << ","
<< book.getAuthor() << ","
<< book.getAvailability()
<< endl;
}
file.close();
}
void Library::saveMembers()
{
ofstream file("members.txt");
for (Member member : members)
{
file
<< member.getMemberId() << ","
<< member.getName() << ","
<< member.getEmail()
<< endl;
}
file.close();
}
void Library::saveTransactions()
{
ofstream file("transactions.txt");
for (Transaction transaction : transactions)
{
file
<< transaction.getTransactionId() << ","
<< transaction.getBookId() << ","
<< transaction.getMemberId() << ","
<< transaction.getIssueDate() << ","
<< transaction.getReturnStatus()
<< endl;
}
file.close();
}
void Library::loadBooks()
{
ifstream file("books.txt");
if (!file)
return;
string line;
while (getline(file, line))
{
stringstream ss(line);
string id;
string title;
string author;
string available;
getline(ss, id, ',');
getline(ss, title, ',');
getline(ss, author, ',');
getline(ss, available);
Book book(
stoi(id),
title,
author
);
book.setAvailability(stoi(available));
books.push_back(book);
}
file.close();
}
void Library::loadMembers()
{
ifstream file("members.txt");
if (!file)
return;
string line;
while (getline(file, line))
{
stringstream ss(line);
string id;
string name;
string email;
getline(ss, id, ',');
getline(ss, name, ',');
getline(ss, email);
Member member(
stoi(id),
name,
email
);
members.push_back(member);
}
file.close();
}
void Library::loadTransactions()
{
ifstream file("transactions.txt");
if (!file)
return;
string line;
while (getline(file, line))
{
stringstream ss(line);
string transactionId;
string bookId;
string memberId;
string issueDate;
string returned;
getline(ss, transactionId, ',');
getline(ss, bookId, ',');
getline(ss, memberId, ',');
getline(ss, issueDate, ',');
getline(ss, returned);
Transaction transaction(
stoi(transactionId),
stoi(bookId),
stoi(memberId),
issueDate
);
transaction.setReturnStatus(stoi(returned));
transactions.push_back(transaction);
}
file.close();
}