This repository was archived by the owner on Jun 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVolunteerManagement.cpp
More file actions
405 lines (361 loc) · 12 KB
/
VolunteerManagement.cpp
File metadata and controls
405 lines (361 loc) · 12 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
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <vector>
using namespace std;
// Structure for Volunteer
struct Volunteer {
int id;
string name;
string skill;
Volunteer* next;
};
// Structure for Mission
struct Mission {
int id;
string name;
string date;
Mission* next;
};
// Structure for Assignment
struct Assignment {
int volunteer_id;
int mission_id;
string date;
Assignment* next;
};
// Class to manage volunteer coordination
class VolunteerManager {
Volunteer* volunteers;
Mission* missions;
Assignment* assignments;
string csv_volunteers;
string csv_missions;
string csv_assignments;
// Convert string to lowercase
string toLower(string str) {
for (char &c : str)
c = tolower(c);
return str;
}
void loadVolunteers() {
ifstream file(csv_volunteers);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Volunteer* newVolunteer = new Volunteer;
newVolunteer->id = stoi(tokens[0]);
newVolunteer->name = tokens[1];
newVolunteer->skill = tokens[2];
newVolunteer->next = nullptr;
if (!volunteers || toLower(volunteers->name) > toLower(newVolunteer->name)) {
newVolunteer->next = volunteers;
volunteers = newVolunteer;
} else {
Volunteer* current = volunteers;
while (current->next && toLower(current->next->name) < toLower(newVolunteer->name))
current = current->next;
newVolunteer->next = current->next;
current->next = newVolunteer;
}
}
}
file.close();
}
void loadMissions() {
ifstream file(csv_missions);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Mission* newMission = new Mission;
newMission->id = stoi(tokens[0]);
newMission->name = tokens[1];
newMission->date = tokens[2];
newMission->next = nullptr;
if (!missions || toLower(missions->name) > toLower(newMission->name)) {
newMission->next = missions;
missions = newMission;
} else {
Mission* current = missions;
while (current->next && toLower(current->next->name) < toLower(newMission->name))
current = current->next;
newMission->next = current->next;
current->next = newMission;
}
}
}
file.close();
}
void loadAssignments() {
ifstream file(csv_assignments);
string line;
while (getline(file, line)) {
vector<string> tokens;
string token;
for (char c : line) {
if (c == ',') {
tokens.push_back(token);
token.clear();
} else {
token += c;
}
}
tokens.push_back(token);
if (tokens.size() == 3) {
Assignment* newAsgmt = new Assignment;
newAsgmt->volunteer_id = stoi(tokens[0]);
newAsgmt->mission_id = stoi(tokens[1]);
newAsgmt->date = tokens[2];
newAsgmt->next = nullptr;
if (!assignments) {
assignments = newAsgmt;
} else {
Assignment* current = assignments;
while (current->next)
current = current->next;
current->next = newAsgmt;
}
}
}
file.close();
}
void saveVolunteers() {
ofstream file(csv_volunteers);
Volunteer* current = volunteers;
while (current) {
file << current->id << "," << current->name << "," << current->skill << "\n";
current = current->next;
}
file.close();
}
void saveMissions() {
ofstream file(csv_missions);
Mission* current = missions;
while (current) {
file << current->id << "," << current->name << "," << current->date << "\n";
current = current->next;
}
file.close();
}
void saveAssignments() {
ofstream file(csv_assignments);
Assignment* current = assignments;
while (current) {
file << current->volunteer_id << "," << current->mission_id << "," << current->date << "\n";
current = current->next;
}
file.close();
}
public:
VolunteerManager(string v_file, string m_file, string a_file) {
volunteers = nullptr;
missions = nullptr;
assignments = nullptr;
csv_volunteers = v_file;
csv_missions = m_file;
csv_assignments = a_file;
loadVolunteers();
loadMissions();
loadAssignments();
}
void addVolunteer() {
int id;
string name, skill;
cout << "Enter volunteer ID: ";
cin >> id;
cin.ignore();
cout << "Enter volunteer name: ";
getline(cin, name);
cout << "Enter volunteer skill: ";
getline(cin, skill);
Volunteer* newVolunteer = new Volunteer;
newVolunteer->id = id;
newVolunteer->name = name;
newVolunteer->skill = skill;
newVolunteer->next = nullptr;
if (!volunteers || toLower(volunteers->name) > toLower(name)) {
newVolunteer->next = volunteers;
volunteers = newVolunteer;
} else {
Volunteer* current = volunteers;
while (current->next && toLower(current->next->name) < toLower(newVolunteer->name))
current = current->next;
newVolunteer->next = current->next;
current->next = newVolunteer;
}
saveVolunteers();
cout << "Volunteer added.\n";
}
void addMission() {
int id;
string name, date;
cout << "Enter mission ID: ";
cin >> id;
cin.ignore();
cout << "Enter mission name: ";
getline(cin, name);
cout << "Enter mission date (YYYY-MM-DD): ";
getline(cin, date);
Mission* newMission = new Mission;
newMission->id = id;
newMission->name = name;
newMission->date = date;
newMission->next = nullptr;
if (!missions || toLower(missions->name) > toLower(name)) {
newMission->next = missions;
missions = newMission;
} else {
Mission* current = missions;
while (current->next && toLower(current->next->name) < toLower(newMission->name))
current = current->next;
newMission->next = current->next;
current->next = newMission;
}
saveMissions();
cout << "Mission added.\n";
}
void assignVolunteer() {
int volunteer_id, mission_id;
string date;
cout << "Enter volunteer ID: ";
cin >> volunteer_id;
cout << "Enter mission ID: ";
cin >> mission_id;
cin.ignore();
cout << "Enter assignment date (YYYY-MM-DD): ";
getline(cin, date);
Volunteer* v = volunteers;
bool volunteer_exists = false;
while (v) {
if (v->id == volunteer_id) {
volunteer_exists = true;
break;
}
v = v->next;
}
Mission* m = missions;
bool mission_exists = false;
while (m) {
if (m->id == mission_id) {
mission_exists = true;
break;
}
m = m->next;
}
if (!volunteer_exists || !mission_exists) {
cout << "Invalid volunteer or mission ID.\n";
return;
}
Assignment* newAsgmt = new Assignment;
newAsgmt->volunteer_id = volunteer_id;
newAsgmt->mission_id = mission_id;
newAsgmt->date = date;
newAsgmt->next = nullptr;
if (!assignments) {
assignments = newAsgmt;
} else {
Assignment* current = assignments;
while (current->next)
current = current->next;
current->next = newAsgmt;
}
saveAssignments();
cout << "Volunteer assigned.\n";
}
void listVolunteers() {
if (!volunteers) {
cout << "No volunteers registered.\n";
return;
}
cout << "ID Name Skill\n";
cout << "--------------------------------\n";
Volunteer* current = volunteers;
while (current) {
cout << left << setw(6) << current->id
<< setw(21) << current->name
<< current->skill << "\n";
current = current->next;
}
}
void listMissions() {
if (!missions) {
cout << "No missions registered.\n";
return;
}
cout << "ID Name Date\n";
cout << "--------------------------------\n";
Mission* current = missions;
while (current) {
cout << left << setw(6) << current->id
<< setw(21) << current->name
<< current->date << "\n";
current = current->next;
}
}
void listAssignments() {
if (!assignments) {
cout << "No assignments made.\n";
return;
}
cout << "VolunteerID MissionID Date\n";
cout << "-------------------------------\n";
Assignment* current = assignments;
while (current) {
cout << left << setw(13) << current->volunteer_id
<< setw(13) << current->mission_id
<< current->date << "\n";
current = current->next;
}
}
};
// Entry point for testing
int main() {
VolunteerManager manager("volunteers.csv", "missions.csv", "assignments.csv");
int choice;
do {
cout << "\nVolunteer Management System\n";
cout << "1. Add Volunteer\n";
cout << "2. Add Mission\n";
cout << "3. Assign Volunteer\n";
cout << "4. List Volunteers\n";
cout << "5. List Missions\n";
cout << "6. List Assignments\n";
cout << "0. Exit\n";
cout << "Enter choice: ";
cin >> choice;
switch (choice) {
case 1: manager.addVolunteer(); break;
case 2: manager.addMission(); break;
case 3: manager.assignVolunteer(); break;
case 4: manager.listVolunteers(); break;
case 5: manager.listMissions(); break;
case 6: manager.listAssignments(); break;
case 0: cout << "Exiting...\n"; break;
default: cout << "Invalid choice.\n";
}
} while (choice != 0);
return 0;
}