forked from mbert/elvis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lowbuf.c
1505 lines (1324 loc) · 41 KB
/
lowbuf.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
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* lowbuf.c */
/* Copyright 1995 by Steve Kirkendall */
/* This file contains functions which divide the session file into several
* buffers. These functions use session.c, and are used by buffer.c
*/
#include "elvis.h"
#ifdef FEATURE_RCSID
char id_lowbuf[] = "$Id: lowbuf.c,v 2.46 2003/10/17 17:41:23 steve Exp $";
#endif
/* These control the sizes of some tiny caches for storing line offsets and
* info about random offsets. You can disable these by making them 0. This
* is intended to make lowline() run faster.
*/
#define LINECACHE 4
#if USE_PROTOTYPES
static short checksum(BLK *blk);
static BLKNO delblock(_BLKNO_ blklist, _LBLKNO_ lblkno, COUNT *ncharsptr, COUNT *nlinesptr);
static BLKNO insblock(_BLKNO_ blklist, _LBLKNO_ before, _BLKNO_ chars, _COUNT_ nchars, _COUNT_ nlines);
static BLKNO lockchars(_BLKNO_ bufinfo, _LBLKNO_ lblkno, _BLKNO_ blkno);
static void unlockchars(_BLKNO_ bufinfo, _LBLKNO_ lblkno, _BLKNO_ blkno, int chgchars, int chglines);
static void helpinit(_BLKNO_ bufinfo, void (*bufproc)(_BLKNO_ bufinfo, long nchars, long nlines, long changes, long prevloc, CHAR *name));
#endif
#if LINECACHE
static void clobbercache P_((_BLKNO_ dst));
#endif
/******************************************************************************/
/* Some internal functions... */
/* Compute the checksum for a bufinfo block */
static short checksum(blk)
BLK *blk; /* block whose checksum should be calculated */
{
short oldsum;
register short sum;
register short *scan;
/* remember the old sum, and then force it to 0 temporarily */
oldsum = blk->bufinfo.checksum;
blk->bufinfo.checksum = 0;
/* count the sum, treating the block as an array of BLKNOs. */
for (sum = 0, scan = &blk->sumshorts[o_blksize / sizeof(short)];
scan != blk->sumshorts;
)
{
/* We know that o_blksize is a power of 2, >= 256. We can
* safely assume that sizeof(short) is also a power of 2, <=16,
* so we can safely unroll this loop.
*/
sum += scan[-1] + scan[-2] + scan[-3] + scan[-4]
+ scan[-5] + scan[-6] + scan[-7] + scan[-8]
+ scan[-9] + scan[-10] + scan[-11] + scan[-12]
+ scan[-13] + scan[-14] + scan[-15] + scan[-16];
scan -= 16;
}
/* restore the old sum, but then return the new sum */
blk->bufinfo.checksum = oldsum;
return sum;
}
/* This function deletes one whole CHARS block from a BLKLIST block, and
* returns the BLKNO of the altered version of the block which the "blklist"
* argument referred to. This function is recursive.
*/
static BLKNO delblock(blklist, lblkno, ncharsptr, nlinesptr)
_BLKNO_ blklist; /* a BLKLIST block */
_LBLKNO_ lblkno; /* index into blklist's array of blocks */
COUNT *ncharsptr; /* number of characters deleted */
COUNT *nlinesptr; /* number of lines deleted */
{
BLKNO next;
BLK *blk;
assert(blklist != 0);
/* if the lblkno is in a later block, then delete it recursively
* and watch out for the next blklist being copied-on-write!
*/
if (lblkno >= SES_MAXBLKLIST)
{
blklist = seslock(blklist, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
next = delblock(blk->blklist.next, (LBLKNO)(lblkno - SES_MAXBLKLIST), ncharsptr, nlinesptr);
if (next == blk->blklist.next)
{
sesunlock(blklist, ElvFalse);
}
else
{
blk->blklist.next = next;
sesunlock(blklist, ElvTrue);
}
return blklist;
}
/* the doomed lblkno is in this block. Free the char block */
(void)seslock(blklist, ElvFalse, SES_BLKLIST);
blk = sesblk(blklist);
assert(blk->blklist.blk[lblkno].blkno != 0);
sesfree(blk->blklist.blk[lblkno].blkno);
/* copy the chars & lines counts to caller's variables */
if (ncharsptr) *ncharsptr = blk->blklist.blk[lblkno].nchars;
if (nlinesptr) *nlinesptr = blk->blklist.blk[lblkno].nlines;
/* If it is the only block in this blklist (and, by implication,
* this is the final blklist), then free the blklist block.
*/
if (lblkno == 0 && blk->blklist.blk[1].blkno == 0)
{
sesunlock(blklist, ElvFalse);
sesfree(blklist);
return 0;
}
sesunlock(blklist, ElvFalse);
/* shift this blklist's blk[] array to delete the element */
blklist = seslock(blklist, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
while (lblkno < SES_MAXBLKLIST - 1)
{
blk->blklist.blk[lblkno] = blk->blklist.blk[lblkno + 1];
lblkno++;
}
/* shift in a 0 (in the last block) or the first item from the
* next blklist block.
*/
if (blk->blklist.next == 0)
{
/* shift in a 0 */
blk->blklist.blk[lblkno].blkno = 0;
blk->blklist.blk[lblkno].nchars = 0;
blk->blklist.blk[lblkno].nlines = 0;
}
else
{
/* shift in the first element of the next blklist's blk[] */
next = blk->blklist.next;
(void)seslock(next, ElvFalse, SES_BLKLIST);
blk->blklist.blk[lblkno] = sesblk(next)->blklist.blk[0];
sesalloc(blk->blklist.blk[lblkno].blkno, SES_CHARS);
sesunlock(next, ElvFalse);
/* recursively shift following blklists' blk[] arrays */
blk->blklist.next = delblock(next, 0, (COUNT *)0, (COUNT *)0);
}
/* return BLKNO of altered version of this blklist */
sesunlock(blklist, ElvTrue);
return blklist;
}
/* This function inserts a CHARS block into the blklist, at a given LBLKNO.
* If necessary, it will also allocate a new BLKLIST block to extend the
* blklist.
*
* This function is recursive; each invocation returns the blklist argument,
* or the blkno of an updated version of that block.
*/
static BLKNO insblock(blklist, before, chars, nchars, nlines)
_BLKNO_ blklist; /* a BLKLIST */
_LBLKNO_ before; /* where to insert a block */
_BLKNO_ chars; /* the CHARS block to be inserted */
_COUNT_ nchars; /* number of character in "chars" */
_COUNT_ nlines; /* number of lines in "chars" */
{
BLKNO next; /* the block after blklist */
BLK *blk; /* contents of a BUFINFO or BLKLIST block */
int i;
assert(chars != 0 && nchars != 0 && nchars < SES_MAXCHARS && nlines <= nchars);
/* if no blklist, then create one */
if (!blklist)
{
assert(before == 0);
/* give the buffer its first blkno */
blklist = sesalloc(0, SES_BLKLIST);
/* make the new CHARS block be its first entry */
(void)seslock(blklist, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
blk->blklist.blk[0].blkno = chars;
blk->blklist.blk[0].nchars = nchars;
blk->blklist.blk[0].nlines = nlines;
sesunlock(blklist, ElvTrue);
}
/* should the chars block be inserted into this blklist block? */
else if (before < SES_MAXBLKLIST)
{
/* yes! Get this blocklist block */
blklist = seslock(blklist, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
/* if the blklist is full, then insert the last item of
* this block before the first item in the next block.
*/
i = SES_MAXBLKLIST - 1;
if (blk->blklist.blk[i].blkno)
{
blk->blklist.next = insblock(blk->blklist.next, 0,
blk->blklist.blk[i].blkno,
blk->blklist.blk[i].nchars,
blk->blklist.blk[i].nlines);
}
/* insert the chars block into this blklist block */
for (; (unsigned)i > before; --i)
{
blk->blklist.blk[i] = blk->blklist.blk[i - 1];
}
blk->blklist.blk[before].blkno = chars;
blk->blklist.blk[before].nchars = nchars;
blk->blklist.blk[before].nlines = nlines;
/* done! */
sesunlock(blklist, ElvTrue);
}
else /* chars will be inserted into a later blklist block */
{
blklist = seslock(blklist, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
next = insblock(blk->blklist.next, (LBLKNO)(before - SES_MAXBLKLIST), chars, nchars, nlines);
if (blk->blklist.next != next)
{
blk->blklist.next = next;
sesunlock(blklist, ElvTrue);
}
else
{
sesunlock(blklist, ElvFalse);
}
}
return blklist;
}
/* This function locks a CHARS block for writing. Doing this may require
* doing a copy-on-write, which may in turn require doing a copy-on-write
* of the blklist block which refers to the CHARS block, and so on back to
* the bufinfo block. Returns the BLKNO of the CHARS block.
*/
static BLKNO lockchars(bufinfo, lblkno, blkno)
_BLKNO_ bufinfo; /* a BUFINFO block */
_LBLKNO_ lblkno; /* index info BLKLIST of the CHARS block */
_BLKNO_ blkno; /* physical block number of the CHARS block */
{
BLKNO locked; /* BLKNO of various blocks after locking */
BLKNO blklist, next; /* BLKLIST blocks */
BLK *blk;
assert(bufinfo != 0 && blkno != 0);
#ifdef DEBUG_SCAN
scan__nobuf();
#endif
/* step 1: lock the chars block. If its BLKNO remains unchanged,
* then we're done.
*/
locked = seslock(blkno, ElvTrue, SES_CHARS);
if (locked == blkno)
{
return blkno;
}
/* step 2: fetch the bufinfo block. */
next = seslock(bufinfo, ElvFalse, SES_BUFINFO);
assert(next == bufinfo);
blk = sesblk(bufinfo);
/* step 3: lock the blklist block which contains the requested
* chars block. Since blklist blocks are never shared, this
* shouldn't require copy-on-write.
*/
blklist = seslock(blk->bufinfo.first, ElvTrue, SES_BLKLIST);
blk = sesblk(blklist);
while (lblkno >= SES_MAXBLKLIST)
{
next = seslock(blk->blklist.next, ElvTrue, SES_BLKLIST);
assert(next != 0);
sesunlock(blklist, ElvFalse);
blklist = next;
lblkno -= SES_MAXBLKLIST;
blk = sesblk(blklist);
}
assert(blk->blklist.blk[lblkno].blkno == blkno);
/* step 4: replace the blkno in the blklist */
blk->blklist.blk[lblkno].blkno = locked;
sesunlock(blklist, ElvTrue);
sesunlock(bufinfo, ElvFalse);
return locked;
}
/* This function unlocks a CHARS block which has been locked by lockchars(),
* and then updates the nchars and nlines statistics in the blklist block.
* It is assumed that no copy-on-write will be necessary for the blklist block;
* if it was, lockchars() would have done it.
*/
static void unlockchars(bufinfo, lblkno, blkno, chgchars, chglines)
_BLKNO_ bufinfo; /* a BUFINFO block */
_LBLKNO_ lblkno; /* index into BLKLIST of the CHARS block */
_BLKNO_ blkno; /* physical block number of CHARS block */
int chgchars; /* change in the number of characters */
int chglines; /* change in the number of lines */
{
BLKNO blklist, next;
BLK *blk;
assert(bufinfo != 0 && blkno != 0);
/* update block statistics, if necessary */
if (chgchars != 0 || chglines != 0)
{
/* locate the BLKLIST block that refers to this CHARS block */
(void)seslock(bufinfo, ElvFalse, SES_BUFINFO);
blklist = sesblk(bufinfo)->bufinfo.first;
assert(blklist != 0);
sesunlock(bufinfo, ElvFalse);
for (; lblkno >= SES_MAXBLKLIST; lblkno -= SES_MAXBLKLIST)
{
(void)seslock(blklist, ElvFalse, SES_BLKLIST);
next = sesblk(blklist)->blklist.next;
sesunlock(blklist, ElvFalse);
blklist = next;
assert(blklist != 0);
}
/* update the nchars and nlines counts */
next = seslock(blklist, ElvTrue, SES_BLKLIST);
assert(next == blklist);
blk = sesblk(blklist);
blk->blklist.blk[lblkno].nchars += chgchars;
assert(blk->blklist.blk[lblkno].nchars != 0
&& blk->blklist.blk[lblkno].nchars < SES_MAXCHARS);
blk->blklist.blk[lblkno].nlines += chglines;
assert(blk->blklist.blk[lblkno].nlines < SES_MAXCHARS);
assert(blk->blklist.blk[lblkno].blkno == blkno);
sesunlock(blklist, ElvTrue);
}
/* unlock the chars block for writing */
sesunlock(blkno, ElvTrue);
}
/******************************************************************************/
/* session restarting function */
#ifdef FEATURE_MISC
/* This function helps lowinit(), by initializing a single buffer from the
* session file.
*/
static void helpinit(bufinfo, bufproc)
_BLKNO_ bufinfo; /* a BUFINFO block */
void (*bufproc)P_((_BLKNO_ bufinfo, long nchars, long nlines, long changes, long prevloc, CHAR *name));
{
BLKNO blklist, next;
BLK *binfo, *blist;
long nchars = 0, nlines = 0;
int i;
/* mark the bufinfo block as being "allocated", and lock it in memory */
next = sesalloc(bufinfo, SES_BUFINFO);
assert(next == bufinfo);
(void)seslock(bufinfo, ElvFalse, SES_BUFINFO);
binfo = sesblk(bufinfo);
/* if it is damaged, skip it */
if (checksum(binfo) != binfo->bufinfo.checksum)
{
fprintf(stderr, "found a bad version of \"%s\"\n", binfo->bufinfo.name);
sesunlock(bufinfo, ElvFalse);
return;
}
/* for each blklist block... */
for (blklist = binfo->bufinfo.first; blklist; blklist = next)
{
/* mark the blklist block as being "allocated", & lock it */
(void)seslock(sesalloc(blklist, SES_BLKLIST), ElvFalse, SES_BLKLIST);
blist = sesblk(blklist);
/* For each chars block mentioned in the BLKLIST... */
for (i = 0; (unsigned)i < SES_MAXBLKLIST && blist->blklist.blk[i].blkno; i++)
{
assert(blist->blklist.blk[i].nchars < SES_MAXCHARS);
assert(blist->blklist.blk[i].nlines <= blist->blklist.blk[i].nchars);
/* mark the CHARS block as being "allocated" */
next = sesalloc(blist->blklist.blk[i].blkno, SES_CHARS);
assert(next == blist->blklist.blk[i].blkno);
/* count lines & chars in block */
nchars += blist->blklist.blk[i].nchars;
nlines += blist->blklist.blk[i].nlines;
}
/* find the next blklist, and then unlock this one */
next = blist->blklist.next;
sesunlock(blklist, ElvFalse);
}
/* let the BUFFER module initialize itself */
(*bufproc)(bufinfo, nchars, nlines, binfo->bufinfo.changes, binfo->bufinfo.prevloc, toCHAR(binfo->bufinfo.name));
/* unlock the bufinfo block */
sesunlock(bufinfo, ElvFalse);
}
#endif /* FEATURE_MISC */
/* This function uses sesopen() to open or create a session file. Then it
* looks for any existing buffers, and marks their blocks as being "allocated".
* It also calls a function (supplied as an argument) so that the BUFFER module
* can also do its own bookkeeping for the found buffer.
*/
void lowinit(bufproc)
void (*bufproc) P_((_BLKNO_ bufinfo, long nchars, long nlines, long changes, long prevloc, CHAR *name));
{
#ifdef FEATURE_MISC
BLK *blk;
BLKNO blkno, next;
int i;
#endif
/* create or open the session file */
sesopen(o_recovering);
#ifdef FEATURE_MISC
/* lock the superblock */
(void)seslock(0, ElvFalse, SES_SUPER);
blk = sesblk(0);
/* for each buffer mentioned in the superblock... */
for (i = 0; (unsigned)i < SES_MAXSUPER; i++)
{
/* ... skipping empty slots... */
if (blk->super.buf[i])
{
/* process the buffer */
helpinit(blk->super.buf[i], bufproc);
}
}
/* continue on to SUPER2 blocks, if any. Be sure to mark the SUPER2's
* as being "allocated".
*/
blkno = blk->super.next;
sesunlock(0, ElvFalse);
while (blkno)
{
/* mark the block as allocated, and lock it into memory */
(void)seslock(sesalloc(blkno, SES_SUPER2), ElvFalse, SES_SUPER2);
/* for each buffer mentioned in the superblock... */
for (i = 0; (unsigned)i < SES_MAXSUPER2; i++)
{
/* ... skipping empty slots... */
if (blk->super2.buf[i])
{
/* process the buffer */
helpinit(blk->super2.buf[i], bufproc);
}
}
/* find the next block */
next = blk->super2.next;
sesunlock(blkno, ElvFalse);
blkno = next;
}
#endif /* FEATURE_MISC */
}
/******************************************************************************/
/* buffer creation/destruction functions. */
/* Create a new buffer in the session file */
BLKNO lowalloc(name)
char *name; /* name of the buffer to create */
{
BLKNO bufinfo;
BLKNO super;
BLKNO next;
BLK *blk;
int i;
safeinspect();
/* Allocate a block, and lock it for writing */
bufinfo = seslock(sesalloc(0, SES_BUFINFO), ElvTrue, SES_BUFINFO);
/* Fill in the block's info */
blk = sesblk(bufinfo);
blk->bufinfo.changes = 0L;
blk->bufinfo.prevloc = 0L;
blk->bufinfo.reserved = 0;
blk->bufinfo.first = 0;
strncpy(blk->bufinfo.name, name, (size_t)SES_MAXBUFINFO);
blk->bufinfo.checksum = checksum(blk);
/* Unlock the block */
sesunlock(bufinfo, ElvTrue);
/* Lock the superblock for writing */
super = seslock(0, ElvTrue, SES_SUPER);
assert(super == 0);
blk = sesblk(super);
/* Find an empty slot in the bufs list, and put this buffer there */
i = -1;
do
{
/* if we reached the end of this block, start next */
if ((unsigned)++i >= (super==0 ? SES_MAXSUPER : SES_MAXSUPER2))
{
sesunlock(super, ElvFalse);
next = (super==0 ? blk->super.next : blk->super2.next);
if (next == 0)
{
/* need to allocate a new super2 */
next = seslock(super, ElvTrue, SES_SUPER);
assert(next == super);
next = sesalloc(0, SES_SUPER2);
if (super == 0)
{
blk->super.buf[i] = next;
}
else
{
blk->super2.buf[i] = next;
}
sesunlock(super, ElvTrue);
}
super = seslock(next, ElvTrue, SES_SUPER2);
assert(super == next);
blk = sesblk(super);
i = 0;
}
} while (((super==0) ? blk->super.buf[i] : blk->super2.buf[i]) != 0);
if (super == 0)
{
blk->super.buf[i] = bufinfo;
}
else
{
blk->super2.buf[i] = bufinfo;
}
/* Unlock the superblock (or its super2 block) */
sesunlock(super, ElvTrue);
safeinspect();
return bufinfo;
}
/* Create a copy of an existing buffer in the session file. This is used
* for creating "undo" versions of a buffer before changing it.
*/
BLKNO lowdup(originfo)
_BLKNO_ originfo; /* BUFINFO block of original lowbuf */
{
BLKNO dupinfo, dupblklist, prevdup = 0;
BLKNO scan, next;
BLK *blk, *dupblk = NULL, *dupbiblk;
int i;
#if LINECACHE
clobbercache(originfo);
#endif
/* Lock the originfo block */
(void)seslock(originfo, ElvFalse, SES_BUFINFO);
blk = sesblk(originfo);
/* Create a buffer */
dupinfo = lowalloc(blk->bufinfo.name);
/* Lock its bufinfo block for writing */
scan = seslock(dupinfo, ElvTrue, SES_BUFINFO);
assert(scan == dupinfo);
/* Copy the original bufinfo into the new bufinfo */
dupbiblk = sesblk(dupinfo);
memcpy(dupbiblk, blk, (size_t)o_blksize);
/* Unlock the original bufinfo block */
sesunlock(originfo, ElvFalse);
/* For each blklist block... */
scan = blk->bufinfo.first;
while (scan)
{
/* allocate a new blklist block, for the new buffer */
dupblklist = sesalloc(0, SES_BLKLIST);
/* link the new blklist block into the new buffer's list */
if (prevdup != 0)
{
dupblk->blklist.next = dupblklist;
sesunlock(prevdup, ElvTrue);
}
else
{
dupbiblk->bufinfo.first = dupblklist;
}
/* Lock the blklist blocks */
(void)seslock(scan, ElvFalse, SES_BLKLIST);
blk = sesblk(scan);
next = seslock(dupblklist, ElvTrue, SES_BLKLIST);
assert(next == dupblklist);
dupblk = sesblk(dupblklist);
prevdup = dupblklist;
/* copy the contents from one blklist to the other */
memcpy(dupblk, blk, (size_t)o_blksize);
/* For each chars block... */
for (i = 0; (unsigned)i < SES_MAXBLKLIST && blk->blklist.blk[i].blkno; i++)
{
/* Increment allocation count on the chars block */
(void)sesalloc(blk->blklist.blk[i].blkno, SES_CHARS);
}
assert((unsigned)i == SES_MAXBLKLIST || !blk->blklist.next);
/* unlock the blklist blocks, and procede to next blklist */
next = blk->blklist.next;
sesunlock(scan, ElvFalse);
scan = next;
}
/* unlock the final new blklist block (if any) */
if (dupblk)
{
sesunlock(prevdup, ElvTrue);
}
/* Unlock the new bufinfo block for writing */
dupbiblk->bufinfo.checksum = checksum(dupbiblk);
sesunlock(dupinfo, ElvTrue);
return dupinfo;
}
/* This function deletes a buffer from the session file. */
void lowfree(bufinfo)
_BLKNO_ bufinfo; /* BUFINFO block of lowbuf to destroy */
{
BLKNO scan, next;
BLK *blk;
int i;
#if LINECACHE
clobbercache(bufinfo);
#endif
/* Lock the superblock for writing */
scan = seslock(0, ElvTrue, SES_SUPER);
assert(scan == 0);
blk = sesblk(0);
/* Find this buffer in the bufs list, and replace it with 0 */
i = -1;
do
{
/* if we reached the end of this block, start next */
if ((unsigned)++i >= (scan==0 ? SES_MAXSUPER : SES_MAXSUPER2))
{
next = (scan==0 ? blk->super.next : blk->super2.next);
sesunlock(scan, ElvFalse);
assert(next != 0);
scan = seslock(next, ElvTrue, SES_BLKLIST);
assert(scan == next);
blk = sesblk(scan);
i = 0;
}
} while ((unsigned)((scan==0) ? blk->super.buf[i] : blk->super2.buf[i]) != bufinfo);
if (scan == 0)
{
blk->super.buf[i] = 0;
}
else
{
blk->super2.buf[i] = 0;
}
/* Unlock the superblock for writing, and then flush it to disk.
* Flushing it is important because we're about to free the blocks
* from this buffer, and those blocks are likely to be reallocated
* right away for some other purpose. If elvis crashed at that time
* and the super block had never been flushed, then the session file
* might be too scrambled for elvis to read it successfully.
*/
sesunlock(scan, ElvTrue);
sesflush(scan);
/* Lock the bufinfo block */
(void)seslock(bufinfo, ElvFalse, SES_BUFINFO);
/* For each blklist block... */
for (scan = sesblk(bufinfo)->bufinfo.first; scan; scan = next)
{
/* Lock the blklist block */
(void)seslock(scan, ElvFalse, SES_BLKLIST);
/* For each chars block... */
blk = sesblk(scan);
for (i = 0; (unsigned)i < SES_MAXBLKLIST && blk->blklist.blk[i].blkno; i++)
{
/* free the chars block */
sesfree(blk->blklist.blk[i].blkno);
}
assert((unsigned)i == SES_MAXBLKLIST || !blk->blklist.next);
/* Unlock the blklist block */
next = blk->blklist.next;
sesunlock(scan, ElvFalse);
/* Free the blklist block */
sesfree(scan);
}
/* Unlock the bufinfo block */
sesunlock(bufinfo, ElvFalse);
/* Free the bufinfo block */
sesfree(bufinfo);
}
/* Change the title of a buffer */
void lowtitle(bufinfo, title)
_BLKNO_ bufinfo; /* bufinfo block whose title is to be changed */
CHAR *title; /* the new title */
{
BLK *blk;
#ifdef DEBUG_SESSION
BLKNO blkno;
blkno = seslock(bufinfo, ElvTrue, SES_BUFINFO);
assert(blkno == bufinfo);
#else
(void)seslock(bufinfo, ElvTrue, SES_BUFINFO);
#endif
blk = sesblk(bufinfo);
assert(blk);
CHARncpy(blk->bufinfo.name, title, (size_t)SES_MAXBUFINFO);
sesunlock(bufinfo, ElvTrue);
}
/******************************************************************************/
#if LINECACHE
static struct
{
BLKNO bufinfo;/* bufinfo of a known line, or 0 for none */
long lineno; /* line number */
long offset; /* offset of the start of the line */
} linecache[LINECACHE];
static int lineidx; /* index into linecache[] of slot to recycle */
#endif /* LINECACHE */
#if LINECACHE
static void clobbercache(dst)
_BLKNO_ dst; /* bufinfo of a changed buffer */
{
register int i;
for (i = 0; i < LINECACHE; i++)
#if 0
if (linecache[i].bufinfo == dst)
#endif
linecache[i].bufinfo = 0;
}
#endif /* LINECACHE */
/* convert a line number to an offset, for a given buffer */
long lowline(bufinfo, lineno)
_BLKNO_ bufinfo; /* BUFINFO of the buffer */
long lineno; /* line number (starting with 1) */
{
BLK *blk; /* contents of a bufinfo block or blklist block */
BLKNO blklist;/* used for stepping from one blklist to next */
BLKNO next; /* the next blklist block, after this one */
long offset; /* total offset seen */
int i; /* used for scanning through blklist.blk[] */
int nlines; /* number of lines/chars in block */
#if LINECACHE
long origline;/* a copy of lineno */
/* check the cache first */
for (i = 0; i < LINECACHE; i++)
{
if (linecache[i].bufinfo == bufinfo && linecache[i].lineno == lineno)
{
return linecache[i].offset;
}
}
origline = lineno;
#endif /* LINECACHE */
/* outside this function, line numbers start with 1, but in here they start at 0 */
lineno--;
/* find the first blklist */
(void)seslock(bufinfo, ElvFalse, SES_BUFINFO);
blklist = sesblk(bufinfo)->bufinfo.first;
sesunlock(bufinfo, ElvFalse);
/* if empty buffer then return 0 */
if (!blklist)
{
return 0;
}
/* for each blklist... */
for (offset = 0; ; blklist = next)
{
assert(blklist != 0);
/* for each element of blklist->blk[]... */
seslock(blklist, ElvFalse, SES_BLKLIST);
blk = sesblk(blklist);
for (i = 0; (unsigned)i < SES_MAXBLKLIST && blk->blklist.blk[i].blkno; i++)
{
/* see if we've found the right chars block yet */
if ((nlines = blk->blklist.blk[i].nlines) >= lineno)
{
/* unlock the blklist, and lock the chars block */
next = blk->blklist.blk[i].blkno;
i = blk->blklist.blk[i].nchars;
sesunlock(blklist, ElvFalse);
(void)seslock(next, ElvFalse, SES_CHARS);
blk = sesblk(next);
/* AT THIS POINT...
* lineno = number of newlines to move past
* in this CHARS block.
* nlines = total number of newlines in this
* CHARS block
* i = total chars in this CHARS block
* offset = offset of start of this block
*/
/* locate the line within the chars block */
if (lineno + lineno <= nlines)
{
/* count newlines from front of block */
for (i = 0; lineno > 0; offset++, i++)
{
assert((unsigned)i < SES_MAXCHARS);
if (blk->chars.chars[i] == '\n')
{
lineno--;
}
}
}
else
{
/* count newlines from rear of block */
for (offset += i, lineno -= nlines; ; )
{
assert(i > 0);
if (blk->chars.chars[--i]=='\n')
{
if (lineno++ == 0)
break;
}
offset--;
}
}
#if LINECACHE
/* stuff information into the cache */
linecache[lineidx].bufinfo = bufinfo;
linecache[lineidx].offset = offset;
linecache[lineidx].lineno = origline;
lineidx = (lineidx + 1) % LINECACHE;
#endif /* LINECACHE */
/* return the offset */
sesunlock(next, ElvFalse);
return offset;
}
lineno -= blk->blklist.blk[i].nlines;
offset += blk->blklist.blk[i].nchars;
}
/* find the next blklist */
next = blk->blklist.next;
assert(!next || (unsigned)i == SES_MAXBLKLIST);
sesunlock(blklist, ElvFalse);
if (!next)
{
/* there is no next blklist block -- return final offset */
return offset;
}
}
/*NOTREACHED*/
}
/******************************************************************************/
/* Convert a byte offset into a BLKNO. This function scans a buffer's
* blklist blocks, and uses the character counts there to determine
* which block contains the character for a given offset.
*
* Optionally, it can also determine how many characters are to the left
* or right of the offset, in that block. If "left" and "right" aren't NULL,
* the variables they point to will be set. (The character at the offset
* is included * in the "right" count.) It can similarly set a variable
* indicating the logical block number of the block containing the offset.
*
* There are three special cases:
* * If a negative offset is given, it is treated as 0.
* * If an offset past the end of the buffer is given, it is treated as
* being a byte in the last block, after the last byte in that block;
* this is *usually* where the next byte would be appended; the "right"
* value is then set to 0 (under all other conditions, it would be at
* least 1).
* * If the buffer has no blocks, then all variables and the return
* value will be 0.
*/
BLKNO lowoffset(bufinfo, offset, left, right, lptr, linenum)
_BLKNO_ bufinfo; /* BUFINFO of the lowbuf */
long offset; /* offset into the buffer */
COUNT *left; /* output: number of preceding bytes in CHARS block */
COUNT *right; /* output: number of following bytes in CHARS block */
LBLKNO *lptr; /* output: logical block number of CHARS block */
long *linenum;/* output: line number */
{
BLKNO blklist;/* used for stepping from one blklist to next */
BLKNO next; /* the next blklist block, after this one */
LBLKNO lblkno; /* counts overall LBLKNO of the given offset */
long lnum; /* counts newlines */
BLK *blk; /* contents of a bufinfo or blklist block */
register int i; /* used for scanning through blklist.blk[] */
int nlines; /* lines in current CHARS block */
int nchars; /* chars in current CHARS block */
register struct blki_s *blki;
BLKNO maxblklist = SES_MAXBLKLIST;
/* treat negative offsets as 0 */
if (offset < 0)
{
offset = 0;
}
/* find the first blklist */
(void)seslock(bufinfo, ElvFalse, SES_BUFINFO);
blklist = sesblk(bufinfo)->bufinfo.first;
sesunlock(bufinfo, ElvFalse);
/* if the buffer has no blocks, then any offset is past the end of
* the buffer, so do the "*right = 0" thing.
*/
if (!blklist)
{
if (left) *left = 0;
if (right) *right = 0;
if (lptr) *lptr = 0;
if (linenum) *linenum = 0;
return 0;
}
/* for each blklist... */
for (lblkno = 0, lnum = 1; ; lblkno += maxblklist, blklist = next)
{
assert(blklist != 0);
/* for each element of blklist->blk[]... */
seslock(blklist, ElvFalse, SES_BLKLIST);
blk = sesblk(blklist);
for (i = 0, blki = blk->blklist.blk;
i < maxblklist && blki->blkno;
lnum += blki->nlines, i++, blki++)
{
/* see if we've found it yet */
offset -= blki->nchars;
if (offset < 0L)
{
/* Yes! Return the info */
next = blki->blkno;
nlines = blki->nlines;
nchars = blki->nchars;
sesunlock(blklist, ElvFalse);
if (lptr) *lptr = lblkno + i;
i = offset + nchars;
if (left) *left = i;
if (right) *right = (unsigned short)-offset;
if (linenum)