-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor_def.c
674 lines (480 loc) · 13.9 KB
/
editor_def.c
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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define DIM 1026
#define PLUTO 300
//void inserisci_VETT(char *str, int curr);
// N_redo aumenta ogni volta che faccio effettivamente un undo e diminuisce quando faccio redo
//N_undo diminuisce quando facci undo e qumenta quando faccio C o D
typedef struct sidelist{
char *nstr; //fare dimensione variabile dipendente da strlen
struct sidelist *next;
}strnode;
typedef struct node{
int idx1, idx2, totLINES, totLINES_R;
strnode *side, *currlist; //testa della sidelist
char cmd;
char **stato;
}URnode;
//var GLOBALI-----------------------------------------------------------
int diff=0, dimensione1=10000, totrighe=0, count=0 , first_saveundo=0, dimensione2=50000, pippo=300;//dimensione tiene conto di quanto è grande per il momento il numero di righe allocate
int UR_count=0 , N_redo=0, N_undo=0;// count aumenta quando chiedo redo e diminuisce quando chiedo undo
URnode **Undo_V, **Redo_V;
strnode *LP, *CP;
char *temp;
URnode *lastStato;
char **testo;
//var GLOBALI----------------------------------------------------------
int max(int a, int b);
int min(int a, int b);
void saveUndo(int ind1, int ind2, char command, char *str, int totrighe, char *currstr);
void Undo();
void Redo();
void SaveState();
int main(){
//FILE *stdin=fopen("Altering_History_2_input.txt","r");
LP = NULL;
CP = NULL;
int ind1 = 0, ind2 = 0, curr=0, r_flag=0;
char S_ind1[DIM], S_ind2[DIM]; //penso che 100 basti
char str[DIM];
char cmnd[DIM];
char instruction;
testo=(char**)malloc(sizeof(char*)*dimensione1);
Undo_V=malloc(sizeof(URnode*)*dimensione2);
Redo_V=malloc(sizeof(URnode*)*dimensione2);
while(1){
first_saveundo = 0;
//riconoscimento del comando da eseguire--------------------------------------------------------------------------------------
fgets (cmnd, 1026 , stdin);
if(cmnd[0] == 'q'){
//ricordarsi di fare le FREE
return 0;
}
int i=0,k=0,j=0;
while(cmnd[i]!=',' && cmnd[i]!='u' && cmnd[i]!='r'){
S_ind1[i]=cmnd[i];
i++;
}
S_ind1[i]='\0';
if(cmnd[i]==','){
k=i+1;
while(cmnd[k]!='c' && cmnd[k]!='p' && cmnd[k]!='d'){
S_ind2[j]=cmnd[k];
k++;
j++;
}
S_ind2[j]='\0';
}
if(cmnd[i] == 'u' || cmnd[i] == 'r'){
ind1=atoi(S_ind1);
instruction=cmnd[i];
}
else{
ind1=atoi(S_ind1);
ind2=atoi(S_ind2);
instruction=cmnd[k];
diff=ind2-ind1+1;
}
//--------------------------------------------------------------------------------------------------------------------------
if( instruction == 'c'){
char c='\0';
curr=ind1;
//----------------- parte dell' undo ----------------------------------------//
if(UR_count < 0)
Undo(); //qundo faccio gli undo aumento N_redo e diminuisco N_undo
else
if(UR_count>0)
Redo(); // quando faccio redo aumenta N_undo e diminuisce N_redo
//----------------- parte dell' undo ----------------------------------------//
do{
fgets(str, DIM , stdin);
if(totrighe>=dimensione1-2){
dimensione1=dimensione1 + 2000;
testo=(char**)realloc(testo,sizeof(char*)*dimensione1);
}
if(curr>totrighe){
testo[curr]=NULL; //nella change mi salvo il testo che c'era scritto precedentemente
testo[curr]=(char*)malloc(sizeof(char)*(strlen(str)+1));
saveUndo(curr, ind2, instruction, &c, totrighe, testo[curr]);
strcpy(testo[curr],str);
totrighe++;
}
else{
// Save State
temp = testo[curr];
testo[curr]=NULL;
testo[curr]=(char*)malloc(sizeof(char)*(strlen(str)+1));
saveUndo(curr, ind2, instruction, temp, totrighe, testo[curr]);
strcpy(testo[curr],str);
}
curr++;
diff--;
}while(diff>0);
if(getchar()!='.'){
printf("errore nel change\n");
return 0;
}
else
getchar();
if(N_undo%PLUTO == 0 || N_undo==1)
SaveState();
N_redo=0; // perchè se sono in una change flusho la redo
}
if(instruction == 'p'){
//----------------- parte dell' undo ----------------------------------------//
if(UR_count < 0)
Undo(); //qundo faccio gli undo aumento N_redo e diminuisco N_undo
else
if(UR_count>0)
Redo(); // quando faccio redo aumenta N_undo e diminuisce N_redo
//----------------- parte dell' undo ----------------------------------------//
curr=ind1;
while(diff>0 && curr<=totrighe){
if(curr == 0 && ind2 == 0)
break;
printf("%s", testo[curr]);
diff--;
curr++;
}
while(diff>0){
printf(".\n");
diff--;
}
}
if(instruction == 'd'){
//----------------- parte dell' undo ----------------------------------------//
if(UR_count < 0)
Undo(); //qundo faccio gli undo aumento N_redo e diminuisco N_undo
else
if(UR_count>0)
Redo(); // quando faccio redo aumenta N_undo e diminuisce N_redo
//----------------- parte dell' undo ----------------------------------------//
int a, b;
char c;
a = ind2+1;
b = ind1;
if(b>totrighe || ind2==0){
c = 'A';
saveUndo(ind1, ind2, c, &c, totrighe, &c);
}
if(a<=totrighe){
while(b<=ind2){
saveUndo(ind1, ind2, instruction, testo[b], totrighe, &c);
b++;
}
b = ind1;
while(a<=totrighe){
testo[b] = testo[a];
a++;
b++;
}
totrighe = totrighe-diff;
while(diff>0){
//testo[b][0] = '\0';
testo[b] = NULL;
b++;
diff--;
}
}
else{
while(b<=totrighe){
saveUndo(ind1, totrighe, instruction, testo[b], totrighe, &c);
//testo[b][0] = '\0';
testo[b] = NULL;
b++;
}
if(ind1<=totrighe)
totrighe = ind1-1;
}
if(N_undo%PLUTO == 0 || N_undo==1)
SaveState();
N_redo=0; // perchè se sono in una delete flusho la redo
//aumenta il numero di undo disponibili
}
if(instruction == 'u'){
//printf("zio\n");
UR_count = UR_count - ind1;
if(UR_count < 0)
UR_count=max(UR_count , N_undo*(-1)); // se il numero di undo disponibili è minore di quelli richiesti devo fare quelli disponibili al massimo
// max perchè sono negativi e quindi ragiono al contrario
//printf("%d\n", UR_count);
}
if(instruction == 'r'){
//printf("bella\n");
UR_count = UR_count + ind1;
if(UR_count > 0)
UR_count=min(UR_count , N_redo);
//printf("%d\n", UR_count);
}
//printf("Totrighe: %d\n", totrighe);
}//while
return 0;
}//main
int max(int a, int b){
if(a>b)
return a;
return b;
}
int min(int a, int b){
if(a<b)
return a;
return b;
}
void saveUndo(int ind1, int ind2, char command, char *str, int totrighe, char *currstr){ // farla come prima ma con totrighe che aiuta
if(first_saveundo == 0){
N_undo++; //ho messo N_undo++ nella save undo e ho tolto il +1 ma non va comunque
if(N_undo>(dimensione2-6)){
dimensione2=dimensione2+50000;
Undo_V=realloc(Undo_V, sizeof(URnode*)*dimensione2);
}
if(Undo_V[N_undo] == NULL)
Undo_V[N_undo] = (URnode*)malloc(sizeof(URnode));
Undo_V[N_undo]->side = NULL;
Undo_V[N_undo]->currlist = NULL;
Undo_V[N_undo]->idx1 = ind1;
Undo_V[N_undo]->idx2 = ind2;
Undo_V[N_undo]->cmd = command;
Undo_V[N_undo]->totLINES=totrighe; // nuovo
Undo_V[N_undo]->stato = NULL;
first_saveundo = 1;
}
strnode *l = (strnode*)malloc(sizeof(strnode));
l->nstr = str;
if(Undo_V[N_undo]->side == NULL){ // sidelist appena creata (vuota)
l->next = NULL;
Undo_V[N_undo]->side = l;
LP = l;
}
else{ //sidelist che già contiene elementi
LP->next = l;
LP = l;
l->next = NULL;
}
if(currstr != "A"){
strnode *z = (strnode*)malloc(sizeof(strnode));
//l->nstr=malloc(sizeof(char)*(strlen(testo[ind1+j])+1));
z->nstr = currstr;
//testo[ind1+j][0] = '\0'; // non sono sicuro
//printf("???????: %s\n", l->nstr);
//printf("out if\n");
if(Undo_V[N_undo]->currlist == NULL){ // sidelist appena creata (vuota)
//printf("in if\n");
z->next = NULL;
Undo_V[N_undo]->currlist = z;
CP = z;
}
else{ //sidelist che già contiene elementi
CP->next = z;
CP = z;
z->next = NULL;
}
//printf("UNDO: %s\n", CP->nstr)
}
//printf("---%s\n", LP->nstr);
}
void Undo(){
int ind1, ind2, diff, j, a, b, totL;
char instruction;
//printf("%d\n", N_undo);
if(UR_count*(-1)>=PLUTO){
//printf("1\n");
while(1){
Undo_V[N_undo]->totLINES_R = totrighe;
if(UR_count*(-1)<PLUTO && Undo_V[N_undo]->stato != NULL){
//testo = Undo_V[N_undo]->stato;
for(int i=1; i<=totrighe; i++)
testo[i] = Undo_V[N_undo]->stato[i];
//dimensione1 = 5000;
//printf("---------------------------------------\n");
//printf("totrighe: %d\n", totrighe);
//for(int i=1;i<=totrighe;i++)
// printf("%s",testo[i]);
//printf("\n\n");
//for(int i=1;testo[i]!=NULL;i++)
//printf("%s",testo[i]);
//printf("---------------------------------------\n");
//UR_count++;
//printf("%d\n", N_undo);
//printf("%d\n", UR_count);
break;
}
totrighe = Undo_V[N_undo]->totLINES;
//printf("2\n");
Redo_V[N_redo+1] = Undo_V[N_undo];
Undo_V[N_undo] = NULL;
UR_count++; //è negativo, lo stiamo diminuendo
N_redo++;
N_undo--;
}
}
//printf("%d\n", UR_count);
while(UR_count<0){
//printf("1\n");
if(N_undo<0)
printf("errore\n");
if(Undo_V[N_undo]==NULL)
printf("errore\n");
Undo_V[N_undo]->totLINES_R = totrighe;
instruction = Undo_V[N_undo]->cmd;
ind1 = Undo_V[N_undo]->idx1;
ind2 = Undo_V[N_undo]->idx2;
diff = (ind2-ind1)+1;
totL=Undo_V[N_undo]->totLINES; // il numero di righe che c'erano prima di fare l'istruzione di cui ora sto facendo l'undo
if(instruction == 'c'){ //undo della change
int j=0;
LP=Undo_V[N_undo]->side;
while(diff>0){
testo[ind1+j] = LP->nstr;
LP = LP->next;
j++;
diff--;
}
}
if(instruction == 'd'){ //undo della delete
a = totrighe;
b = totL; //totrighe+diff;
while(a>=ind1){
testo[b] = testo[a];
b--;
a--;
}
a = a+1;
LP=Undo_V[N_undo]->side;
while(diff>0){
testo[a] = LP->nstr;
LP = LP->next;
a++;
diff--;
}
}
//spostare dal vettore dell'undo a quello del redo il nodo
totrighe=totL;
Redo_V[N_redo+1] = Undo_V[N_undo];
Undo_V[N_undo] = NULL;
UR_count++;
N_undo--;
N_redo++;
} // while
//printf("N_redo: %d\n", N_redo);
//printf("N_undo: %d\n", N_undo );
//printf("totrighe end while: %d\n", totrighe );
} //parentesi UNDO
void Redo(){
//printf("N_redo2: %d\n",N_redo);
//printf("UR_count: %d\n",UR_count);
int ind1, ind2, diff, j, a, b, totL_R;
char instruction;
if(UR_count>=PLUTO){
//printf("talla\n");
while(1){
//printf("rota\n");
if(UR_count<PLUTO && Redo_V[N_redo]->stato != NULL){
//printf("laca\n");
for(int i=1; i<totrighe+100; i++)
testo[i] = Redo_V[N_redo]->stato[i];
//printf("---------------------------------------\n");
//printf("totrighe: %d\n", totrighe);
//for(int i=1;i<=totrighe;i++)
//printf("%s",testo[i]);
//printf("\n\n");
//for(int i=1;testo[i]!=NULL;i++)
//printf("%s",testo[i]);
//printf("---------------------------------------\n");
//testo = Redo_V[N_redo]->stato;
//UR_count;
break;
}
totrighe = Redo_V[N_redo]->totLINES_R;
Undo_V[N_undo+1] = Redo_V[N_redo];
Redo_V[N_redo] = NULL;
UR_count--; //è negativo, lo stiamo diminuendo
N_redo--;
N_undo++;
}
}
//printf("bella\n");
//printf("%d\n", UR_count);
//printf("REDO\n");
//printf("N_undo: %d\n", N_undo);
//printf("UR_count: %d\n", UR_count);
//printf("N_redo: %d\n", N_redo);
while(UR_count>0){
instruction = Redo_V[N_redo]->cmd;
ind1 = Redo_V[N_redo]->idx1;
ind2 = Redo_V[N_redo]->idx2;
diff = (ind2-ind1)+1;
totL_R = Redo_V[N_redo]->totLINES_R;
if(instruction == 'c'){ //redo della change
int j=0;
LP=Redo_V[N_redo]->currlist;
while(diff>0){
//printf("ind1: %d, ind2: %d\n", ind1, ind2);
//printf("text-> %s\n", LP->nstr);
//if(Redo_V[N_redo]->side->nstr[0] == '\0') // forse va fatto Redo_V[N_redo]->side->nstr == NULL;
// totrighe++;
testo[ind1+j] = LP->nstr;
LP = LP->next;
j++;
diff--;
}
}
if(instruction == 'd'){
int a, b;
char c;
a = ind2+1;
b = ind1;
if(a<=totrighe){
while(a<=totrighe){
testo[b] = testo[a];
a++;
b++;
}
totrighe = totrighe-diff;
while(diff>0){
//testo[b][0] = '\0';
testo[b] = NULL;
b++;
diff--;
}
}
else{//piglia 2 casi, tutto fuori e mezzo
while(b<=totrighe){
//testo[b][0] = '\0';
testo[b] = NULL;
b++;
}
if(ind1<=totrighe)
totrighe = ind1-1;
}
}
//spostare dal vettore dell'undo a quello del redo il nodo
Undo_V[N_undo+1] = Redo_V[N_redo];
Redo_V[N_redo] = NULL;
UR_count--;
N_redo--;
N_undo++;
totrighe = totL_R;
//printf("%d\n", totrighe); //credo ci sia un problema quando salviamo totLINES_R
//printf("%d\n",N_redo );
//printf("rita\n");
}// while
}// redo
void SaveState(){
//SaveState-------------------------------------------------------------------------
//printf("---------------------------------------\n");
//printf("bella pello stato\n");
//printf("N_undo: %d\n", N_undo);
Undo_V[N_undo]->stato = NULL;
Undo_V[N_undo]->stato = (char**)malloc(sizeof(char*)*(totrighe+5000));
for(int i=1; testo[i] != NULL; i++)
Undo_V[N_undo]->stato[i] = testo[i];
//printf("totrighe: %d\n", totrighe);
//for(int i=1;i<=totrighe;i++)
//printf("%s",testo[i]);
//printf("\n\n");
//for(int i=1;testo[i]!=NULL;i++)
//printf("%s",testo[i]);
//printf("---------------------------------------\n");
//SaveState-------------------------------------------------------------------------
}