-
Notifications
You must be signed in to change notification settings - Fork 0
/
forensicRecordStorage.cpp
431 lines (425 loc) · 10.2 KB
/
forensicRecordStorage.cpp
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
/*
C++ PROGRAM FOR FORENSIC RECORD STORAGE
AUTHOR: SWAPNIL SAXENA
COMPUTER SCIENCE AND ENGINEERING
JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY
*/
#include<stdio.h>
#include<iostream>
#include<cstdlib>
#include<string>
#include<map>
#include<string.h>
#include<ctype.h>
#include<conio.h>
#include "include/global.h"
#include "include/prototype.h"
#include "include/blood.h"
#include "include/dep.h"
#include "include/gender.h"
#include "include/pass.h"
#include "include/user.h"
#include "include/admin.h"
#include "include/nadmin.h"
#include "include/doc.h"
#include "include/invest.h"
#include "include/crim.h"
#include "include/et.h"
/***************************UTILITY FUNCTIONS****************************/
void importAdmin();
void importDoctor();
void importInvestigator();
void importCriminal();
void importEternal();
void exportAdmin();
void exportDoctor();
void exportInvestigator();
void exportCriminal();
void exportEternal();
void mainFunctionsHelp();
void mainFunctions();
void logInToAccountHelp();
void logInToAccount();
/***************************MAIN FUNCTION****************************/
int main(){
importAdmin();
importDoctor();
importInvestigator();
importCriminal();
importEternal();
/****************************WRITE HERE************************************/
/*Admin *p = new Admin;
adminData[p->getUserName()]=p;*/
mainFunctions();
/****************************WRITE HERE************************************/
exportAdmin();
exportDoctor();
exportInvestigator();
exportCriminal();
exportEternal();
cout<<"EXPORT SUCCESSFUL";
return 1;
}
/***************************UTILITY FUNCTIONS****************************/
void importAdmin(){
FILE *fp;
int objSize = sizeof(Admin);
int fileSize = 0;
int objNum = 0;
Admin *temp;
fp = fopen("admin.bin","r");
// check if the file exists
// if not make a file of such name
if(!fp){
fp = fopen("admin.bin","w");
fclose(fp);
fp = fopen("admin.bin","r");
}
// calculate size of file
if (fp){
fseek (fp, 0, SEEK_END);
fileSize = ftell(fp);
rewind(fp);
}
else{
// if file pointer is still null something's wrong
cout<<"FATAL ERROR: FILE POINTER NOT FOUND!!\n EXITING";
exit(0);
}
// calculate the number of objects saved
objNum = fileSize/objSize;
// read them iteratively
for(int i=0; i<objNum; i++){
temp = (Admin*)malloc(objSize);
fread(temp,objSize,1,fp);
adminData[string(temp->getUserName())] = temp;
}
fclose(fp);
return;
}
void importDoctor(){
FILE *fp;
int objSize = sizeof(Doctor);
int fileSize = 0;
int objNum = 0;
Doctor *temp;
fp = fopen("doctor.bin","r");
// check if the file exists
// if not make a file of such name
if(!fp){
fp = fopen("doctor.bin","w");
fclose(fp);
fp = fopen("doctor.bin","r");
}
// calculate size of file
if (fp){
fseek (fp, 0, SEEK_END);
fileSize = ftell(fp);
rewind(fp);
}
else{
// if file pointer is still null something's wrong
cout<<"FATAL ERROR: FILE POINTER NOT FOUND!!\n EXITING";
exit(0);
}
// calculate the number of objects saved
objNum = fileSize/objSize;
// read them iteratively
for(int i=0; i<objNum; i++){
temp = (Doctor*)malloc(objSize);
fread(temp,objSize,1,fp);
doctorData[string(temp->getUserName())] = temp;
}
fclose(fp);
return;
}
void importInvestigator(){
FILE *fp;
int objSize = sizeof(Investigator);
int fileSize = 0;
int objNum = 0;
Investigator *temp;
fp = fopen("investigator.bin","r");
// check if the file exists
// if not make a file of such name
if(!fp){
fp = fopen("investigator.bin","w");
fclose(fp);
fp = fopen("investigator.bin","r");
}
// calculate size of file
if (fp){
fseek (fp, 0, SEEK_END);
fileSize = ftell(fp);
rewind(fp);
}
else{
// if file pointer is still null something's wrong
cout<<"FATAL ERROR: FILE POINTER NOT FOUND!!\n EXITING";
exit(0);
}
// calculate the number of objects saved
objNum = fileSize/objSize;
// read them iteratively
for(int i=0; i<objNum; i++){
temp = (Investigator*)malloc(objSize);
fread(temp,objSize,1,fp);
investigatorData[string(temp->getUserName())] = temp;
}
fclose(fp);
return;
}
void importCriminal(){
FILE *fp;
int objSize = sizeof(Criminal);
int fileSize = 0;
int objNum = 0;
Criminal *temp;
fp = fopen("criminal.bin","r");
// check if the file exists
// if not make a file of such name
if(!fp){
fp = fopen("criminal.bin","w");
fclose(fp);
fp = fopen("criminal.bin","r");
}
// calculate size of file
if (fp){
fseek (fp, 0, SEEK_END);
fileSize = ftell(fp);
rewind(fp);
}
else{
// if file pointer is still null something's wrong
cout<<"FATAL ERROR: FILE POINTER NOT FOUND!!\n EXITING";
exit(0);
}
// calculate the number of objects saved
objNum = fileSize/objSize;
// read them iteratively
for(int i=0; i<objNum; i++){
temp = (Criminal*)malloc(objSize);
fread(temp,objSize,1,fp);
criminalData[string(temp->getName())] = temp;
}
fclose(fp);
return;
}
void importEternal(){
FILE *fp;
int objSize = sizeof(Eternal);
int fileSize = 0;
int objNum = 0;
Eternal *temp;
fp = fopen("eternal.bin","r");
// check if the file exists
// if not make a file of such name
if(!fp){
fp = fopen("eternal.bin","w");
fclose(fp);
fp = fopen("eternal.bin","r");
}
// calculate size of file
if (fp){
fseek (fp, 0, SEEK_END);
fileSize = ftell(fp);
rewind(fp);
}
else{
// if file pointer is still null something's wrong
cout<<"FATAL ERROR: FILE POINTER NOT FOUND!!\n EXITING";
exit(0);
}
// calculate the number of objects saved
objNum = fileSize/objSize;
// read them iteratively
for(int i=0; i<objNum; i++){
temp = (Eternal*)malloc(objSize);
fread(temp,objSize,1,fp);
eternalData[string(temp->getName())] = temp;
}
fclose(fp);
return;
}
void exportAdmin(){
FILE *fp;
fp = fopen("admin.bin","w");
int objSize = sizeof(Admin);
Admin *temp;
if(adminData.empty()){
return;
}
map<string,Admin*,less<string> >::iterator iter;
for(iter = adminData.begin(); iter != adminData.end(); iter++ ){
temp = iter->second;
fwrite(temp,objSize,1,fp);
}
fclose(fp);
return;
}
void exportDoctor(){
FILE *fp;
fp = fopen("doctor.bin","w");
int objSize = sizeof(Doctor);
Doctor *temp;
if(doctorData.empty()){
return;
}
map<string,Doctor*,less<string> >::iterator iter;
for(iter = doctorData.begin(); iter != doctorData.end(); iter++ ){
temp = iter->second;
fwrite(temp,objSize,1,fp);
}
fclose(fp);
return;
}
void exportInvestigator(){
FILE *fp;
fp = fopen("investigator.bin","w");
int objSize = sizeof(Investigator);
Investigator *temp;
if(doctorData.empty()){
return;
}
map<string,Investigator*,less<string> >::iterator iter;
for(iter = investigatorData.begin(); iter != investigatorData.end(); iter++ ){
temp = iter->second;
fwrite(temp,objSize,1,fp);
}
fclose(fp);
return;
}
void exportCriminal(){
FILE *fp;
fp = fopen("criminal.bin","w");
int objSize = sizeof(Criminal);
Criminal *temp;
if(criminalData.empty()){
return;
}
map<string,Criminal*,less<string> >::iterator iter;
for(iter = criminalData.begin(); iter != criminalData.end(); iter++ ){
temp = iter->second;
fwrite(temp,objSize,1,fp);
}
fclose(fp);
return;
}
void exportEternal(){
FILE *fp;
fp = fopen("eternal.bin","w");
int objSize = sizeof(Eternal);
Eternal *temp;
if(eternalData.empty()){
return;
}
map<string,Eternal*,less<string> >::iterator iter;
for(iter = eternalData.begin(); iter != eternalData.end(); iter++ ){
temp = iter->second;
fwrite(temp,objSize,1,fp);
}
fclose(fp);
return;
}
void mainFunctionsHelp(){
cout<<"YOU MAY\n"
<<"1. SIGN IN TO AN ACCOUNT USING \"LOG\"\n"
<<"2. GET HELP WITH USING \"/?\"\n"
<<"3. EXIT USING \"EXIT\"\n";
return;
}
void mainFunctions(){
char com[10];
// label to get commands again and again
getCom:
cout<<"ENTER YOUR COMMAND: ";
cin>>com;
for(int i =0;(i<10)&&(com[i]!='\0');i++){
com[i] = toupper(com[i]);
}
if(strcmp(com,"LOG")==0){
logInToAccount();
goto getCom;
}
else if(strcmp(com,"EXIT")==0){
return;
}
else if(strcmp(com,"/?")==0){
mainFunctionsHelp();
goto getCom;
}
else{
cout<<"YOU ENTERED SOMETHING ELSE\n";
cout<<"THIS MAY HELP YOU\n";
mainFunctionsHelp();
goto getCom;
}
return;
}
void logInToAccountHelp(){
cout<<"YOU MAY\n"
<<"1. SIGN IN TO ADMIN ACCOUNT USING \"ADMIN\"\n"
<<"2. SIGN IN TO DOCTOR ACCOUNT USING \"DOCTOR\"\n"
<<"3. SIGN IN TO INVESTIGATOR ACCOUNT USING \"INVESTIGATOR\"\n"
<<"4. GO TO PREVIOUS MENU USING \"..\"\n"
<<"5. GET HELP WITH USING \"/?\"\n"
/*<<"6. EXIT USING \"EXIT\"\n"*/;
return;
}
void logInToAccount(){
char username[31];
int session;
int id;
Admin *refA;
Doctor *refD;
Investigator *refI;
cout<<"Enter Username: ";
cin>>username;
map<string,Admin*,less<string> >::iterator iterA;
map<string,Doctor*,less<string> >::iterator iterD;
map<string,Investigator*,less<string> >::iterator iterI;
iterA = adminData.find(string(username));
iterD = doctorData.find(string(username));
iterI = investigatorData.find(string(username));
if(iterA != adminData.end()){
refA = iterA->second;
session = refA->getSess();
if(session != 0){
// call with session key
refA->accessAccount(session);
}
else{
cout<<"\nWRONG KEY";
return;
}
}
else if(iterD != doctorData.end()){
refD = iterD->second;
session = refD->getSess();
if(session != 0){
// call with session key
refD->accessAccount(session);
}
else{
cout<<"\nWRONG KEY";
return;
}
}
else if(iterI != investigatorData.end()){
refI = iterI->second;
session = refI->getSess();
if(session != 0){
// call with session key
refI->accessAccount(session);
}
else{
cout<<"\nWRONG KEY";
return;
}
}
else{
cout<<"INVALID USERNAME";
return;
}
return;
}