-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
566 lines (438 loc) · 24.9 KB
/
main.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
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
#include "pch.h"
#include <iostream>
#include <stdio.h>
#include <process.h>
#include <memory.h>
#include <string.h>
#include <stdlib.h>
#pragma warning (disable : 4996)
FILE *Sfl;
FILE *Sind;
FILE *SP;
//templates for FileNames
#define file_name_fl "S.fl"
#define file_name_ind "S.ind"
#define file_name_flSp "S.fl"
//remplates for access mode in C file
#define _modeTemplate_rb "r+b"
#define _modeTemplate_wb "w+b"
const char comm_getM[] = "getM";//getM Id
const char comm_getS[] = "getS";//getS id1 id2
const char comm_delM[] = "delM";//delM id
const char comm_delS[] = "delS";//delS id1 id2
const char comm_updateM[] = "updateM";//updateM id text
const char comm_updateS[] = "updateS";//updateS id1 id2 text
const char comm_insertM[] = "insertM";//insertM id text
const char comm_insertS[] = "insertS";//insertS id id2 text
struct elementM {
short Sadderess; //first S id
char data[30];
};
struct elementS {
short id;
short isA;
short prev;
short next;
char data[24];
};
int getM(short id, char* target) {
elementM M;
indexM Index;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&Index, sizeof(indexM), 1, Sind) == 0) {
if (feof(Sind)) { return -1; }
else exit(0); //error
}
} while (Index.id != id); //find
if (Index.isA == 0) {
return -1;
}
fseek(Sfl, sizeof(elementM)*Index.address, SEEK_SET);
if (fread(&M, sizeof(elementM), 1, Sfl) == 0) {
exit(0); //error
}
strcpy_s(target, 30, M.data);
return Index.id;
}
int getS(short mId, short sId, char* target) {
elementM M;
elementS S;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) {
if (feof(Sind)) return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0) { return -1; }
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET);
if (fread(&M, sizeof(elementM), 1, Sfl) == 0)exit(0);
short addr = M.Sadderess;
do {
if (addr == -1)return -1;
fseek(SP, sizeof(elementS)*addr, SEEK_SET); //addressing SS
if (fread(&S, sizeof(elementS), 1, SP) == 0)exit(0);//element get S
addr = S.next;
} while (S.id != sId);
if (S.isA == 0)return -1;
strcpy_s(target, 24, S.data);
return S.id;
}
//видаляє запис
int delM(short mId) {
elementM M;
elementS S;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind))return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0) {
return -1;
}
iM.isA = 0;
fseek(Sind, -(long)sizeof(indexM), SEEK_CUR);
if (fwrite(&iM, sizeof(indexM), 1, Sind) == 0) return -1;
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fread(&M, sizeof(elementM), 1, Sfl) == 0)
exit(0); //element get M
//error
short addr = M.Sadderess;
do {
if (addr == -1)return 1;
fseek(SP, sizeof(elementS)*addr, SEEK_SET); //adressing SS
if (fread(&S, sizeof(elementS), 1, SP) == 0) { //element get S
exit(0); //error
}
addr = S.next;
S.isA = 0;
fseek(SP, -(long)sizeof(elementS), SEEK_CUR);
fwrite(&S, sizeof(elementS), 1, SP);
} while (1);
fflush(Sind);
fflush(Sfl);
fflush(SP);
return 1;
}
int delS(short mId, short sId) {
elementM M;
elementS S;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind)) return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0) { return -1; }
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fread(&M, sizeof(elementM), 1, Sfl) == 0)exit(0); //element get M
short addr = M.Sadderess;
while (1) {
if (addr == -1)return -1;
fseek(SP, sizeof(elementS)*addr, SEEK_SET); //adressing SS
if (fread(&S, sizeof(elementS), 1, SP) == 0) { //element get S
exit(0); //error
}
if (S.id == sId) break;
addr = S.next;
}
if (S.isA == 0)return -1;
S.isA = 0;
fseek(SP, addr * sizeof(elementS), SEEK_SET);
if (fwrite(&S, sizeof(elementS), 1, SP) == 0) return -1;
fflush(SP);
return S.id;
}
int updateM(short mId, char* data) {
elementM M;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind)) return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0) {
return -1;
}
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fread(&M, sizeof(elementM), 1, Sfl) == 0) { //element get M
exit(0); //error
}
strcpy_s(M.data, 30, data); //copy data to file
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing to write
if (fwrite(&M, sizeof(elementM), 1, Sfl) == 0) {
return -1;
}
fflush(Sfl);
return iM.id;
}
int updateS(short mId, short sId, char* data) {
elementM M;
elementS S;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind)) return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0) { return -1; }
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fread(&M, sizeof(elementM), 1, Sfl) == 0)exit(0); //element get M
short addr = M.Sadderess;
while (1) {
if (addr == -1)return -1;
fseek(SP, sizeof(elementS)*addr, SEEK_SET); //adressing SS
if (fread(&S, sizeof(elementS), 1, SP) == 0) { //element get S
exit(0); //error
}
if (S.id == sId) break;
addr = S.next;
}
if (S.isA == 0)return -1;
strcpy_s(S.data, 24, data);
fseek(SP, addr * sizeof(elementS), SEEK_SET);
if (fwrite(&S, sizeof(elementS), 1, SP) == 0) return -1;
fflush(SP);
return S.id;
}
int insertM(short mId, char * data) {
elementM M;
indexM iM;
M.Sadderess = -1;
strcpy_s(M.data, 30, data);
int alv = 1;
int free = -1;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind)) { alv = 0; break; }
else {
int err = ferror(Sind);
printf("%d", err);
exit(0);
}//error
}
} while (iM.id != mId); //find
if (alv) {
if (iM.isA == 1) return -1;
iM.isA = 1;
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fwrite(&M, sizeof(elementM), 1, Sfl) == 0) return -1;
fseek(Sind, -(long)sizeof(elementM), SEEK_CUR);
if (fwrite(&iM, sizeof(elementM), 1, Sind) == 0) return -1;
fflush(Sind);
fflush(Sfl);
return iM.address;
}
else {
fseek(Sfl, 0, SEEK_END); //adressing
if (fwrite(&M, sizeof(elementM), 1, Sfl) == 0) return -1;
iM.id = mId;
iM.isA = 1;
iM.address = ftell(Sfl) / sizeof(elementM) - 1;
fseek(Sind, 0, SEEK_END); //adressing
if (fwrite(&iM, sizeof(indexM), 1, Sind) == 0) return -1;
fflush(Sind);
fflush(Sfl);
return iM.address;
}
}
int insertS(short mId, short sId, char* data) {
elementM M;
elementS S;
indexM iM;
fseek(Sind, 0, SEEK_SET);
fseek(Sfl, 0, SEEK_SET);
fseek(SP, 0, SEEK_SET);
do {
if (fread(&iM, sizeof(indexM), 1, Sind) == 0) { //index
if (feof(Sind))return -1;
else exit(0); //error
}
} while (iM.id != mId); //find
if (iM.isA == 0)return -1;
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET); //adressing
if (fread(&M, sizeof(elementM), 1, Sfl) == 0) exit(0); //element get M
if (M.Sadderess == -1) {
S.id = sId;
S.isA = 1;
S.prev = -1;
S.next = -1;
strcpy_s(S.data, 24, data);
fseek(SP, 0, SEEK_END);
if (fwrite(&S, sizeof(elementS), 1, SP) == 0) return -1;
M.Sadderess = ftell(SP) / sizeof(elementS) - 1;
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET);
if (fwrite(&M, sizeof(elementM), 1, Sfl) == 0) return -1;
}
else {
short addr = M.Sadderess;
while (1) {
if (addr == -1)break;
fseek(SP, sizeof(elementS)*addr, SEEK_SET); //adressing SS
if (fread(&S, sizeof(elementS), 1, SP) == 0) { //element get S
exit(0); //error
}
if (S.id == sId) break;
addr = S.next;
}
if (addr != -1) { //replace element
if (S.isA == 1)return -1;
S.id = sId;
S.isA = 1;
strcpy_s(S.data, 24, data);
fseek(SP, addr * sizeof(elementS), SEEK_SET);
if (fwrite(&S, sizeof(elementS), 1, SP) == 0) return -1;
}
else {
addr = M.Sadderess;
S.id = sId;
S.isA = 1;
strcpy_s(S.data, 24, data);
S.next = addr;
S.prev = -1;
fseek(SP, 0, SEEK_END);
if (fwrite(&S, sizeof(elementS), 1, SP) == 0) return -1;
M.Sadderess = ftell(SP) / sizeof(elementS) - 1;
fseek(Sfl, sizeof(elementM)*iM.address, SEEK_SET);
if (fwrite(&M, sizeof(elementM), 1, Sfl) == 0) return -1;
}
}
fflush(SP);
fflush(Sfl);
return 0;
}
//sHOW CONSOLE interface
void showInterface() {
printf(" getM Id ---Show a record by id from the first table\n");
printf(" getS id1 id2 ---show subrecord by foreign key\n");
printf(" delM id ---delete from first table \n");
printf(" delS id1 id2 ---delete subrecord from second table\n");
printf(" updateS id1 id2 text ---update subrecord from second table with indexes\n");
printf(" insertM id text ---create in first\n");
printf(" insertS id id2 text ---crreate in second ( subrecord )\n");
printf(" ---------------------------------------------------------\n");
}
//Create or open existing files
void openOrCreateFile() {
//init files
if ((Sfl = fopen(file_name_fl, _modeTemplate_rb)) == NULL)
if ((Sfl = fopen(file_name_fl, _modeTemplate_wb)) == NULL) {
exit(0);
}
if ((Sind = fopen(file_name_ind, _modeTemplate_rb)) == NULL)
if ((Sind = fopen(file_name_ind, _modeTemplate_wb)) == NULL) {
exit(0);
}
if ((SP = fopen(file_name_flSp, _modeTemplate_rb)) == NULL)
if ((SP = fopen(file_name_flSp, _modeTemplate_wb)) == NULL) {
exit(0);
}
}
//terminal
void waitingForResponseTerminal() {
//menu sector
char text[50];
char comm[50];
int arg1 = 0;
int arg2 = 0;
char arg3[50];
while (1) {
gets_s(text);
sscanf(text, "%s", comm);
//parsing
if (strcmp(comm, comm_getM) == 0) {
if (sscanf(text, "%s %d", comm, &arg1) == 2) {
if (getM(arg1, text) != -1) printf(" %d: %s \n", arg1, text);
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_getS) == 0) {
if (sscanf(text, "%s %d %d", comm, &arg1, &arg2) == 3) {
if (getS(arg1, arg2, text) != -1) printf(" %d->%d: %s \n", arg1, arg2, text);
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_delM) == 0) {
if (sscanf(text, "%s %d", comm, &arg1) == 2) {
if (delM(arg1) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_delS) == 0) {
if (sscanf(text, "%s %d %d", comm, &arg1, &arg2) == 3) {
if (delS(arg1, arg2) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_updateM) == 0) {
if (sscanf(text, "%s %d %s", comm, &arg1, arg3) == 3) {
if (updateM(arg1, arg3) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_updateS) == 0) {
if (sscanf(text, "%s %d %d %s", comm, &arg1, &arg2, arg3) == 4) {
if (updateS(arg1, arg2, arg3) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_insertM) == 0) {
if (sscanf(text, "%s %d %s", comm, &arg1, arg3) == 3) {
if (insertM(arg1, arg3) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, comm_insertS) == 0) {
if (sscanf(text, "%s %d %d %s", comm, &arg1, &arg2, arg3) == 4) {
if (insertS(arg1, arg2, arg3) != -1) printf(" ok\n");
else printf(" error\n");
}
else printf(" error argument\n");
}
else if (strcmp(comm, "help") == 0) {
printf("bulo len pisat\n");
}
else {
printf("command not found\n");
//comm not found;
}
}
}
int main() {
showInterface();
openOrCreateFile();
waitingForResponseTerminal();
system("pause");
}
struct indexM {
short id;
short isA;
short address;
};