1 /* io.c: This file contains the i/o routines for the ed line editor */
3 * Copyright (c) 1993 Andrew Moore, Talke Studio.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * @(#)io.c,v 1.1 1994/02/01 00:34:41 alm Exp
28 * $FreeBSD: head/bin/ed/io.c 300692 2016-05-25 18:38:30Z truckman $
33 /* read_file: read a named file/pipe into the buffer; return line count */
35 read_file(char *fn
, long n
)
41 fp
= (*fn
== '!') ? popen(fn
+ 1, "r") : fopen(strip_escapes(fn
), "r");
43 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
44 errmsg
= "cannot open input file";
47 if ((size
= read_stream(fp
, n
)) < 0) {
48 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
49 errmsg
= "error reading input file";
51 if ((cs
= (*fn
== '!') ? pclose(fp
) : fclose(fp
)) < 0) {
52 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
53 errmsg
= "cannot close input file";
55 if (size
< 0 || cs
< 0)
58 fprintf(stdout
, "%lu\n", size
);
59 return current_addr
- n
;
62 static char *sbuf
; /* file i/o buffer */
63 static int sbufsz
; /* file i/o buffer size */
64 int newline_added
; /* if set, newline appended to input file */
66 /* read_stream: read a stream into the editor buffer; return status */
68 read_stream(FILE *fp
, long n
)
70 line_t
*lp
= get_addressed_line_node(n
);
72 unsigned long size
= 0;
73 int o_newline_added
= newline_added
;
74 int o_isbinary
= isbinary
;
75 int appended
= (n
== addr_last
);
78 isbinary
= newline_added
= 0;
81 for (current_addr
= n
; (len
= get_stream_line(fp
)) > 0; size
+= len
) {
83 if (put_sbuf_line(sbuf
) == NULL
) {
90 else if ((up
= push_undo_stack(UADD
, current_addr
,
91 current_addr
)) == NULL
) {
99 if (appended
&& size
&& o_isbinary
&& o_newline_added
)
100 fputs("newline inserted\n", stderr
);
101 else if (newline_added
&& (!appended
|| (!isbinary
&& !o_isbinary
)))
102 fputs("newline appended\n", stderr
);
103 if (isbinary
&& newline_added
&& !appended
)
107 newline_added
= appended
? newline_added
: o_newline_added
;
108 isbinary
= isbinary
| o_isbinary
;
110 size
+= 8 - size
% 8; /* adjust DES size */
115 /* get_stream_line: read a line of text from a stream; return line length */
117 get_stream_line(FILE *fp
)
122 while (((c
= des
? get_des_char(fp
) : getc(fp
)) != EOF
|| (!feof(fp
) &&
123 !ferror(fp
))) && c
!= '\n') {
124 REALLOC(sbuf
, sbufsz
, i
+ 1, ERR
);
125 if (!(sbuf
[i
++] = c
))
128 REALLOC(sbuf
, sbufsz
, i
+ 2, ERR
);
131 else if (ferror(fp
)) {
132 fprintf(stderr
, "%s\n", strerror(errno
));
133 errmsg
= "cannot read input file";
140 return (isbinary
&& newline_added
&& i
) ? --i
: i
;
144 /* write_file: write a range of lines to a named file/pipe; return line count */
146 write_file(char *fn
, const char *mode
, long n
, long m
)
152 fp
= (*fn
== '!') ? popen(fn
+1, "w") : fopen(strip_escapes(fn
), mode
);
154 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
155 errmsg
= "cannot open output file";
158 if ((size
= write_stream(fp
, n
, m
)) < 0) {
159 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
160 errmsg
= "error writing output file";
162 if ((cs
= (*fn
== '!') ? pclose(fp
) : fclose(fp
)) < 0) {
163 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
164 errmsg
= "cannot close output file";
166 if (size
< 0 || cs
< 0)
169 fprintf(stdout
, "%lu\n", size
);
170 return n
? m
- n
+ 1 : 0;
174 /* write_stream: write a range of lines to a stream; return status */
176 write_stream(FILE *fp
, long n
, long m
)
178 line_t
*lp
= get_addressed_line_node(n
);
179 unsigned long size
= 0;
185 for (; n
&& n
<= m
; n
++, lp
= lp
->q_forw
) {
186 if ((s
= get_sbuf_line(lp
)) == NULL
)
189 if (n
!= addr_last
|| !isbinary
|| !newline_added
)
191 if (put_stream_line(fp
, s
, len
) < 0)
196 flush_des_file(fp
); /* flush buffer */
197 size
+= 8 - size
% 8; /* adjust DES size */
203 /* put_stream_line: write a line of text to a stream; return status */
205 put_stream_line(FILE *fp
, const char *s
, int len
)
208 if ((des
? put_des_char(*s
++, fp
) : fputc(*s
++, fp
)) < 0) {
209 fprintf(stderr
, "%s\n", strerror(errno
));
210 errmsg
= "cannot write file";
216 /* get_extended_line: get an extended line from stdin */
218 get_extended_line(int *sizep
, int nonl
)
220 static char *cvbuf
= NULL
; /* buffer */
221 static int cvbufsz
= 0; /* buffer size */
228 if ((l
= t
- ibufp
) < 2 || !has_trailing_escape(ibufp
, ibufp
+ l
- 1)) {
233 REALLOC(cvbuf
, cvbufsz
, l
, NULL
);
234 memcpy(cvbuf
, ibufp
, l
);
235 *(cvbuf
+ --l
- 1) = '\n'; /* strip trailing esc */
236 if (nonl
) l
--; /* strip newline */
238 if ((n
= get_tty_line()) < 0)
240 else if (n
== 0 || ibuf
[n
- 1] != '\n') {
241 errmsg
= "unexpected end-of-file";
244 REALLOC(cvbuf
, cvbufsz
, l
+ n
, NULL
);
245 memcpy(cvbuf
+ l
, ibuf
, n
);
247 if (n
< 2 || !has_trailing_escape(cvbuf
, cvbuf
+ l
- 1))
249 *(cvbuf
+ --l
- 1) = '\n'; /* strip trailing esc */
250 if (nonl
) l
--; /* strip newline */
252 REALLOC(cvbuf
, cvbufsz
, l
+ 1, NULL
);
259 /* get_tty_line: read a line of text from stdin; return line length */
268 switch (c
= getchar()) {
271 REALLOC(ibuf
, ibufsz
, i
+ 2, ERR
);
272 if (!(ibuf
[i
++] = c
)) isbinary
= 1;
281 fprintf(stderr
, "stdin: %s\n", strerror(errno
));
282 errmsg
= "cannot read stdin";
301 #define ESCAPES "\a\b\f\n\r\t\v\\"
302 #define ESCCHARS "abfnrtv\\"
304 /* put_tty_line: print text to stdout */
306 put_tty_line(const char *s
, int l
, long n
, int gflag
)
317 if ((gflag
& GLS
) && ++col
> cols
) {
318 fputs("\\\n", stdout
);
321 if (!scripted
&& !isglobal
&& ++lc
> rows
) {
323 fputs("Press <RETURN> to continue... ", stdout
);
325 if (get_tty_line() < 0)
331 if (31 < *s
&& *s
< 127 && *s
!= '\\')
336 if (*s
&& (cp
= strchr(ESCAPES
, *s
)) != NULL
)
337 putchar(ESCCHARS
[cp
- ESCAPES
]);
339 putchar((((unsigned char) *s
& 0300) >> 6) + '0');
340 putchar((((unsigned char) *s
& 070) >> 3) + '0');
341 putchar(((unsigned char) *s
& 07) + '0');