forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmined2.c
More file actions
1678 lines (1486 loc) · 43.3 KB
/
Copy pathmined2.c
File metadata and controls
1678 lines (1486 loc) · 43.3 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
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
/*
* Part 2 of the mined editor.
*/
/* ======================================================================== *
* Move Commands *
* ======================================================================== */
#include "mined.h"
#include <string.h>
/*
* Move one line up.
*/
void UP(void)
{
if (y == 0) { /* Top line of screen. Scroll one line */
(void) reverse_scroll();
move_to(x, y);
}
else /* Move to previous line */
move_to(x, y - 1);
}
/*
* Move one line down.
*/
void DN(void)
{
if (y == last_y) { /* Last line of screen. Scroll one line */
if (bot_line->next == tail && bot_line->text[0] != '\n') {
dummy_line(); /* Create new empty line */
DN();
return;
}
else {
(void) forward_scroll();
move_to(x, y);
}
}
else /* Move to next line */
move_to(x, y + 1);
}
/*
* Move left one position.
*/
void LF(void)
{
if (x == 0 && get_shift(cur_line->shift_count) == 0) {/* Begin of line */
if (cur_line->prev != header) {
UP(); /* Move one line up */
move_to(LINE_END, y);
}
}
else
move_to(x - 1, y);
}
/*
* Move right one position.
*/
void RT(void)
{
if (*cur_text == '\n') {
if (cur_line->next != tail) { /* Last char of file */
DN(); /* Move one line down */
move_to(LINE_START, y);
}
}
else
move_to(x + 1, y);
}
/*
* Move to coordinates [0, 0] on screen.
*/
void HIGH(void)
{
move_to(0, 0);
}
/*
* Move to coordinates [0, YMAX] on screen.
*/
void LOW(void)
{
move_to(0, last_y);
}
/*
* Move to begin of line.
*/
void BL(void)
{
move_to(LINE_START, y);
}
/*
* Move to end of line.
*/
void EL(void)
{
move_to(LINE_END, y);
}
/*
* GOTO() prompts for a linenumber and moves to that line.
*/
void GOTO(void)
{
int number;
LINE *line;
if (get_number("Please enter line number.", &number) == ERRORS)
return;
if (number <= 0 || (line = proceed(header->next, number - 1)) == tail)
error("Illegal line number: ", num_out((long) number));
else
move_to(x, find_y(line));
}
/*
* Scroll forward one page or to eof, whatever comes first. (Bot_line becomes
* top_line of display.) Try to leave the cursor on the same line. If this is
* not possible, leave cursor on the line halfway the page.
*/
void PD(void)
{
register int i;
for (i = 0; i < screenmax; i++)
if (forward_scroll() == ERRORS)
break; /* EOF reached */
if (y - i < 0) /* Line no longer on screen */
move_to(0, screenmax >> 1);
else
move_to(0, y - i);
}
/*
* Scroll backwards one page or to top of file, whatever comes first. (Top_line
* becomes bot_line of display). The very bottom line (YMAX) is always blank.
* Try to leave the cursor on the same line. If this is not possible, leave
* cursor on the line halfway the page.
*/
void PU(void)
{
register int i;
for (i = 0; i < screenmax; i++)
if (reverse_scroll() == ERRORS)
break; /* Top of file reached */
set_cursor(0, ymax); /* Erase very bottom line */
#ifdef UNIX
tputs(CE, 0, _putchar);
#else
string_print(blank_line);
#endif /* UNIX */
if (y + i > screenmax) /* line no longer on screen */
move_to(0, screenmax >> 1);
else
move_to(0, y + i);
}
/*
* Go to top of file, scrolling if possible, else redrawing screen.
*/
void HO(void)
{
if (proceed(top_line, -screenmax) == header)
PU(); /* It fits. Let PU do it */
else {
reset(header->next, 0);/* Reset top_line, etc. */
RD(); /* Display full page */
}
move_to(LINE_START, 0);
}
/*
* Go to last line of file, scrolling if possible, else redrawing screen
*/
void EF(void)
{
if (tail->prev->text[0] != '\n')
dummy_line();
if (proceed(bot_line, screenmax) == tail)
PD(); /* It fits. Let PD do it */
else {
reset(proceed(tail->prev, -screenmax), screenmax);
RD(); /* Display full page */
}
move_to(LINE_START, last_y);
}
/*
* Scroll one line up. Leave the cursor on the same line (if possible).
*/
void SU(void)
{
if (top_line->prev == header) /* Top of file. Can't scroll */
return;
(void) reverse_scroll();
set_cursor(0, ymax); /* Erase very bottom line */
#ifdef UNIX
tputs(CE, 0, _putchar);
#else
string_print(blank_line);
#endif /* UNIX */
move_to(x, (y == screenmax) ? screenmax : y + 1);
}
/*
* Scroll one line down. Leave the cursor on the same line (if possible).
*/
void SD(void)
{
if (forward_scroll() != ERRORS)
move_to(x, (y == 0) ? 0 : y - 1);
else
set_cursor(x, y);
}
/*
* Perform a forward scroll. It returns ERRORS if we're at the last line of the
* file.
*/
int forward_scroll(void)
{
if (bot_line->next == tail) /* Last line of file. No dice */
return ERRORS;
top_line = top_line->next;
bot_line = bot_line->next;
cur_line = cur_line->next;
set_cursor(0, ymax);
line_print(bot_line);
return FINE;
}
/*
* Perform a backwards scroll. It returns ERRORS if we're at the first line
* of the file.
*/
int reverse_scroll(void)
{
if (top_line->prev == header)
return ERRORS; /* Top of file. Can't scroll */
if (last_y != screenmax) /* Reset last_y if necessary */
last_y++;
else
bot_line = bot_line->prev; /* Else adjust bot_line */
top_line = top_line->prev;
cur_line = cur_line->prev;
/* Perform the scroll */
set_cursor(0, 0);
#ifdef UNIX
tputs(AL, 0, _putchar);
#else
string_print(rev_scroll);
#endif /* UNIX */
set_cursor(0, 0);
line_print(top_line);
return FINE;
}
/*
* A word is defined as a number of non-blank characters separated by tabs
* spaces or linefeeds.
*/
/*
* MP() moves to the start of the previous word. A word is defined as a
* number of non-blank characters separated by tabs spaces or linefeeds.
*/
void MP(void)
{
move_previous_word(NO_DELETE);
}
void move_previous_word(FLAG remove)
{
register char *begin_line;
register char *textp;
char start_char = *cur_text;
char *start_pos = cur_text;
/* Fist check if we're at the beginning of line. */
if (cur_text == cur_line->text) {
if (cur_line->prev == header)
return;
start_char = '\0';
}
LF();
begin_line = cur_line->text;
textp = cur_text;
/* Check if we're in the middle of a word. */
if (!alpha(*textp) || !alpha(start_char)) {
while (textp != begin_line && (white_space(*textp) || *textp == '\n'))
textp--;
}
/* Now we're at the end of previous word. Skip non-blanks until a blank comes */
while (textp != begin_line && alpha(*textp))
textp--;
/* Go to the next char if we're not at the beginning of the line */
if (textp != begin_line && *textp != '\n')
textp++;
/* Find the x-coordinate of this address, and move to it */
move_address(textp);
if (remove == DELETE)
delete(cur_line, textp, cur_line, start_pos);
}
/*
* MN() moves to the start of the next word. A word is defined as a number of
* non-blank characters separated by tabs spaces or linefeeds. Always keep in
* mind that the pointer shouldn't pass the '\n'.
*/
void MN(void)
{
move_next_word(NO_DELETE);
}
void move_next_word(FLAG remove)
{
register char *textp = cur_text;
/* Move to the end of the current word. */
while (*textp != '\n' && alpha(*textp))
textp++;
/* Skip all white spaces */
while (*textp != '\n' && white_space(*textp))
textp++;
/* If we're deleting. delete the text in between */
if (remove == DELETE) {
delete(cur_line, cur_text, cur_line, textp);
return;
}
/* If we're at end of line. move to the first word on the next line. */
if (*textp == '\n' && cur_line->next != tail) {
DN();
move_to(LINE_START, y);
textp = cur_text;
while (*textp != '\n' && white_space(*textp))
textp++;
}
move_address(textp);
}
/* ======================================================================== *
* Modify Commands *
* ======================================================================== */
/*
* DCC deletes the character under the cursor. If this character is a '\n' the
* current line is joined with the next one.
* If this character is the only character of the line, the current line will
* be deleted.
*/
void DCC(void)
{
if (*cur_text == '\n')
delete(cur_line,cur_text, cur_line->next,cur_line->next->text);
else
delete(cur_line, cur_text, cur_line, cur_text + 1);
}
/*
* DPC deletes the character on the left side of the cursor. If the cursor is
* at the beginning of the line, the last character if the previous line is
* deleted.
*/
void DPC(void)
{
if (x == 0 && cur_line->prev == header)
return; /* Top of file */
LF(); /* Move one left */
DCC(); /* Delete character under cursor */
}
/*
* DLN deletes all characters until the end of the line. If the current
* character is a '\n', then delete that char.
*/
void DLN(void)
{
if (*cur_text == '\n')
DCC();
else
delete(cur_line, cur_text, cur_line, cur_text + length_of(cur_text) -1);
}
/*
* DNW() deletes the next word (as described in MN())
*/
void DNW(void)
{
if (*cur_text == '\n')
DCC();
else
move_next_word(DELETE);
}
/*
* DPW() deletes the next word (as described in MP())
*/
void DPW(void)
{
if (cur_text == cur_line->text)
DPC();
else
move_previous_word(DELETE);
}
/*
* Insert character `character' at current location.
*/
void S(int character)
{
static char buffer[2];
buffer[0] = character;
/* Insert the character */
if (insert(cur_line, cur_text, buffer) == ERRORS)
return;
/* Fix screen */
if (character == '\n') {
set_cursor(0, y);
if (y == screenmax) { /* Can't use display */
line_print(cur_line);
(void) forward_scroll();
}
else {
reset(top_line, y); /* Reset pointers */
display(0, y, cur_line, last_y - y);
}
move_to(0, (y == screenmax) ? y : y + 1);
}
else if (x + 1 == XBREAK)/* If line must be shifted, just call move_to*/
move_to(x + 1, y);
else { /* else display rest of line */
put_line(cur_line, x, FALSE);
move_to(x + 1, y);
}
}
/*
* CTL inserts a control-char at the current location. A message that this
* function is called is displayed at the status line.
*/
void CTL(void)
{
register char ctrl;
status_line("Enter control character.", NULL);
if ((ctrl = getchar()) >= '\01' && ctrl <= '\037') {
S(ctrl); /* Insert the char */
clear_status();
}
else
error ("Unknown control character", NULL);
}
/*
* LIB insert a line at the current position and moves back to the end of
* the previous line.
*/
void LIB(void)
{
S('\n'); /* Insert the line */
UP(); /* Move one line up */
move_to(LINE_END, y); /* Move to end of this line */
}
/*
* Line_insert() inserts a new line with text pointed to by `string'.
* It returns the address of the new line.
*/
LINE *line_insert(register LINE *line, char *string, int len)
{
register LINE *new_line;
/* Allocate space for LINE structure and text */
new_line = install_line(string, len);
/* Install the line into the double linked list */
new_line->prev = line;
new_line->next = line->next;
line->next = new_line;
new_line->next->prev = new_line;
/* Increment nlines */
nlines++;
return new_line;
}
/*
* Insert() insert the string `string' at the given line and location.
*/
int insert(register LINE *line, char *location, char *string)
{
register char *bufp = text_buffer; /* Buffer for building line */
register char *textp = line->text;
if (length_of(textp) + length_of(string) >= MAX_CHARS) {
error("Line too long", NULL);
return ERRORS;
}
modified = TRUE; /* File has been modified */
/* Copy part of line until `location' has been reached */
while (textp != location)
*bufp++ = *textp++;
/* Insert string at this location */
while (*string != '\0')
*bufp++ = *string++;
*bufp = '\0';
if (*(string - 1) == '\n') /* Insert a new line */
(void) line_insert(line, location, length_of(location));
else /* Append last part of line */
copy_string(bufp, location);
/* Install the new text in this line */
free_space(line->text);
line->text = alloc(length_of(text_buffer) + 1);
copy_string(line->text, text_buffer);
return FINE;
}
/*
* Line_delete() deletes the argument line out of the line list. The pointer to
* the next line is returned.
*/
LINE *line_delete(register LINE *line)
{
register LINE *next_line = line->next;
/* Delete the line */
line->prev->next = line->next;
line->next->prev = line->prev;
/* Free allocated space */
free_space(line->text);
free_space((char*)line);
/* Decrement nlines */
nlines--;
return next_line;
}
/*
* Delete() deletes all the characters (including newlines) between the
* startposition and endposition and fixes the screen accordingly. It
* returns the number of lines deleted.
*/
void delete(register LINE *start_line, char *start_textp, LINE *end_line,
char *end_textp)
{
register char *textp = start_line->text;
register char *bufp = text_buffer; /* Storage for new line->text */
LINE *line, *stop;
int line_cnt = 0; /* Nr of lines deleted */
int count = 0;
int shift = 0; /* Used in shift calculation */
int nx = x;
modified = TRUE; /* File has been modified */
/* Set up new line. Copy first part of start line until start_position. */
while (textp < start_textp) {
*bufp++ = *textp++;
count++;
}
/* Check if line doesn't exceed MAX_CHARS */
if (count + length_of(end_textp) >= MAX_CHARS) {
error("Line too long", NULL);
return;
}
/* Copy last part of end_line if end_line is not tail */
copy_string(bufp, (end_textp != NULL) ? end_textp : "\n");
/* Delete all lines between start and end_position (including end_line) */
line = start_line->next;
stop = end_line->next;
while (line != stop && line != tail) {
line = line_delete(line);
line_cnt++;
}
/* Check if last line of file should be deleted */
if (end_textp == NULL && length_of(start_line->text) == 1 && nlines > 1) {
start_line = start_line->prev;
(void) line_delete(start_line->next);
line_cnt++;
}
else { /* Install new text */
free_space(start_line->text);
start_line->text = alloc(length_of(text_buffer) + 1);
copy_string(start_line->text, text_buffer);
}
/* Fix screen. First check if line is shifted. Perhaps we should shift it back*/
if (get_shift(start_line->shift_count)) {
shift = (XBREAK - count_chars(start_line)) / SHIFT_SIZE;
if (shift > 0) { /* Shift line `shift' back */
if (shift >= get_shift(start_line->shift_count))
start_line->shift_count = 0;
else
start_line->shift_count -= shift;
nx += shift * SHIFT_SIZE;/* Reset x value */
}
}
if (line_cnt == 0) { /* Check if only one line changed */
if (shift > 0) { /* Reprint whole line */
set_cursor(0, y);
line_print(start_line);
}
else { /* Just display last part of line */
set_cursor(x, y);
put_line(start_line, x, TRUE);
}
move_to(nx, y); /* Reset cur_text */
return;
}
shift = last_y; /* Save value */
reset(top_line, y);
display(0, y, start_line, shift - y);
move_to((line_cnt == 1) ? nx : 0, y);
}
/* ======================================================================== *
* Yank Commands *
* ======================================================================== */
LINE *mark_line; /* For marking position. */
char *mark_text;
int lines_saved; /* Nr of lines in buffer */
/*
* PT() inserts the buffer at the current location.
*/
void PT(void)
{
register int fd; /* File descriptor for buffer */
if ((fd = scratch_file(READ)) == ERRORS)
error("Buffer is empty.", NULL);
else {
file_insert(fd, FALSE);/* Insert the buffer */
(void) close(fd);
}
}
/*
* IF() prompt for a filename and inserts the file at the current location
* in the file.
*/
void IF(void)
{
register int fd; /* File descriptor of file */
char name[LINE_LEN]; /* Buffer for file name */
/* Get the file name */
if (get_file("Get and insert file:", name) != FINE)
return;
if ((fd = open(name, 0)) < 0)
error("Cannot open ", name);
else {
file_insert(fd, TRUE); /* Insert the file */
(void) close(fd);
}
}
/*
* File_insert() inserts a an opened file (as given by filedescriptor fd)
* at the current location.
*/
void file_insert(int fd, FLAG old_pos)
{
char line_buffer[MAX_CHARS]; /* Buffer for next line */
register LINE *line = cur_line;
register int line_count = nlines; /* Nr of lines inserted */
LINE *page = cur_line;
int ret = ERRORS;
/* Get the first piece of text (might be ended with a '\n') from fd */
if (get_line(fd, line_buffer) == ERRORS)
return; /* Empty file */
/* Insert this text at the current location. */
if (insert(line, cur_text, line_buffer) == ERRORS)
return;
/* Repeat getting lines (and inserting lines) until EOF is reached */
while ((ret = get_line(fd, line_buffer)) != ERRORS && ret != NO_LINE)
line = line_insert(line, line_buffer, ret);
if (ret == NO_LINE) { /* Last line read not ended by a '\n' */
line = line->next;
(void) insert(line, line->text, line_buffer);
}
/* Calculate nr of lines added */
line_count = nlines - line_count;
/* Fix the screen */
if (line_count == 0) { /* Only one line changed */
set_cursor(0, y);
line_print(line);
move_to((old_pos == TRUE) ? x : x + length_of(line_buffer), y);
}
else { /* Several lines changed */
reset(top_line, y); /* Reset pointers */
while (page != line && page != bot_line->next)
page = page->next;
if (page != bot_line->next || old_pos == TRUE)
display(0, y, cur_line, screenmax - y);
if (old_pos == TRUE)
move_to(x, y);
else if (ret == NO_LINE)
move_to(length_of(line_buffer), find_y(line));
else
move_to(0, find_y(line->next));
}
/* If nr of added line >= REPORT, print the count */
if (line_count >= REPORT)
status_line(num_out((long) line_count), " lines added.");
}
/*
* WB() writes the buffer (yank_file) into another file, which
* is prompted for.
*/
void WB(void)
{
register int new_fd; /* Filedescriptor to copy file */
int yank_fd; /* Filedescriptor to buffer */
register int cnt; /* Count check for read/write */
int ret = 0; /* Error check for write */
char file[LINE_LEN]; /* Output file */
/* Checkout the buffer */
if ((yank_fd = scratch_file(READ)) == ERRORS) {
error("Buffer is empty.", NULL);
return;
}
/* Get file name */
if (get_file("Write buffer to file:", file) != FINE)
return;
/* Creat the new file */
if ((new_fd = creat(file, 0644)) < 0) {
error("Cannot create ", file);
return;
}
status_line("Writing ", file);
/* Copy buffer into file */
while ((cnt = read(yank_fd, text_buffer, sizeof(text_buffer))) > 0)
if (write(new_fd, text_buffer, cnt) != cnt) {
bad_write(new_fd);
ret = ERRORS;
break;
}
/* Clean up open files and status_line */
(void) close(new_fd);
(void) close(yank_fd);
if (ret != ERRORS) /* Bad write */
file_status("Wrote", chars_saved, file, lines_saved, TRUE, FALSE);
}
/*
* MA sets mark_line (mark_text) to the current line (text pointer).
*/
void MA(void)
{
mark_line = cur_line;
mark_text = cur_text;
status_line("Mark set", NULL);
}
/*
* YA() puts the text between the marked position and the current
* in the buffer.
*/
void YA(void)
{
set_up(NO_DELETE);
}
/*
* DT() is essentially the same as YA(), but in DT() the text is deleted.
*/
void DT(void)
{
set_up(DELETE);
}
/*
* Set_up is an interface to the actual yank. It calls checkmark () to check
* if the marked position is still valid. If it is, yank is called with the
* arguments in the right order.
*/
void set_up(FLAG remove)
{
switch (checkmark()) {
case NOT_VALID :
error("Mark not set.", NULL);
return;
case SMALLER :
yank(mark_line, mark_text, cur_line, cur_text, remove);
break;
case BIGGER :
yank(cur_line, cur_text, mark_line, mark_text, remove);
break;
case SAME : /* Ignore stupid behaviour */
yank_status = EMPTY;
chars_saved = 0L;
status_line("0 characters saved in buffer.", NULL);
break;
}
}
/*
* Check_mark() checks if mark_line and mark_text are still valid pointers. If
* they are it returns SMALLER if the marked position is before the current,
* BIGGER if it isn't or SAME if somebody didn't get the point.
* NOT_VALID is returned when mark_line and/or mark_text are no longer valid.
* Legal() checks if mark_text is valid on the mark_line.
*/
FLAG checkmark(void)
{
register LINE *line;
FLAG cur_seen = FALSE;
/* Special case: check is mark_line and cur_line are the same. */
if (mark_line == cur_line) {
if (mark_text == cur_text) /* Even same place */
return SAME;
if (legal() == ERRORS) /* mark_text out of range */
return NOT_VALID;
return (mark_text < cur_text) ? SMALLER : BIGGER;
}
/* Start looking for mark_line in the line structure */
for (line = header->next; line != tail; line = line->next) {
if (line == cur_line)
cur_seen = TRUE;
else if (line == mark_line)
break;
}
/* If we found mark_line (line != tail) check for legality of mark_text */
if (line == tail || legal() == ERRORS)
return NOT_VALID;
/* cur_seen is TRUE if cur_line is before mark_line */
return (cur_seen == TRUE) ? BIGGER : SMALLER;
}
/*
* Legal() checks if mark_text is still a valid pointer.
*/
int legal(void)
{
register char *textp = mark_line->text;
/* Locate mark_text on mark_line */
while (textp != mark_text && *textp++ != '\0')
;
return (*textp == '\0') ? ERRORS : FINE;
}
/*
* Yank puts all the text between start_position and end_position into
* the buffer.
* The caller must check that the arguments to yank() are valid. (E.g. in
* the right order)
*/
void yank(LINE *start_line, char *start_textp, LINE *end_line, char *end_textp,
FLAG remove)
{
register LINE *line = start_line;
register char *textp = start_textp;
int fd;
/* Creat file to hold buffer */
if ((fd = scratch_file(WRITE)) == ERRORS)
return;
chars_saved = 0L;
lines_saved = 0;
status_line("Saving text.", NULL);
/* Keep writing chars until the end_location is reached. */
while (textp != end_textp) {
if (write_char(fd, *textp) == ERRORS) {
(void) close(fd);
return;
}
if (*textp++ == '\n') { /* Move to the next line */
line = line->next;
textp = line->text;
lines_saved++;
}
chars_saved++;
}
/* Flush the I/O buffer and close file */
if (flush_buffer(fd) == ERRORS) {
(void) close(fd);
return;
}
(void) close(fd);
yank_status = VALID;
/*
* Check if the text should be deleted as well. If it should, the following
* hack is used to save a lot of code. First move back to the start_position.
* (This might be the location we're on now!) and them delete the text.
* It might be a bit confusing the first time somebody uses it.
* Delete() will fix the screen.
*/
if (remove == DELETE) {
move_to(find_x(start_line, start_textp), find_y(start_line));
delete(start_line, start_textp, end_line, end_textp);
}
status_line(num_out(chars_saved), " characters saved in buffer.");
}
/*
* Scratch_file() creates a uniq file in /usr/tmp. If the file couldn't
* be created other combinations of files are tried until a maximum
* of MAXTRAILS times. After MAXTRAILS times, an error message is given
* and ERRORS is returned.
*/
#define MAXTRAILS 26
int scratch_file(FLAG mode)
{
static int trials = 0; /* Keep track of trails */
register char *y_ptr, *n_ptr;
int fd; /* Filedescriptor to buffer */
/* If yank_status == NOT_VALID, scratch_file is called for the first time */
if (yank_status == NOT_VALID && mode == WRITE) { /* Create new file */
/* Generate file name. */
y_ptr = &yank_file[11];
n_ptr = num_out((long) getpid());
while ((*y_ptr = *n_ptr++) != '\0')
y_ptr++;
*y_ptr++ = 'a' + trials;
*y_ptr = '\0';
/* Check file existence */
if (access(yank_file, 0) == 0 || (fd = creat(yank_file, 0644)) < 0) {
if (trials++ >= MAXTRAILS) {
error("Unable to creat scratchfile.", NULL);
return ERRORS;
}
else
return scratch_file(mode);/* Have another go */
}
}
else if ((mode == READ && (fd = open(yank_file, 0)) < 0) ||
(mode == WRITE && (fd = creat(yank_file, 0644)) < 0)) {
yank_status = NOT_VALID;