1 /* $NetBSD: io.c,v 1.10 2014/03/23 05:06:42 dholland Exp $ */
3 /* io.c: This file contains the i/o routines for the ed line editor */
5 * Copyright (c) 1993 Andrew Moore, Talke Studio.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/cdefs.h>
33 static char *rcsid
= "@(#)io.c,v 1.1 1994/02/01 00:34:41 alm Exp";
35 __RCSID("$NetBSD: io.c,v 1.10 2014/03/23 05:06:42 dholland Exp $");
42 /* read_file: read a named file/pipe into the buffer; return line count */
44 read_file(char *fn
, long n
)
50 fp
= (*fn
== '!') ? popen(fn
+ 1, "r") : fopen(strip_escapes(fn
), "r");
52 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
53 seterrmsg("cannot open input file");
55 } else if ((size
= read_stream(fp
, n
)) < 0)
57 else if (((*fn
== '!') ? pclose(fp
) : fclose(fp
)) < 0) {
58 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
59 seterrmsg("cannot close input file");
63 fprintf(stderr
, "%lu\n", size
);
64 return current_addr
- n
;
68 char *sbuf
; /* file i/o buffer */
69 int sbufsz
; /* file i/o buffer size */
70 int newline_added
; /* if set, newline appended to input file */
72 /* read_stream: read a stream into the editor buffer; return status */
74 read_stream(FILE *fp
, long n
)
76 line_t
*lp
= get_addressed_line_node(n
);
78 unsigned long size
= 0;
79 int o_newline_added
= newline_added
;
80 int o_isbinary
= isbinary
;
81 int appended
= (n
== addr_last
);
84 isbinary
= newline_added
= 0;
87 for (current_addr
= n
; (len
= get_stream_line(fp
)) > 0; size
+= len
) {
89 if (put_sbuf_line(sbuf
) == NULL
) {
96 else if ((up
= push_undo_stack(UADD
, current_addr
,
97 current_addr
)) == NULL
) {
105 if (appended
&& size
&& o_isbinary
&& o_newline_added
)
106 fputs("newline inserted\n", stderr
);
107 else if (newline_added
&& (!appended
|| (!isbinary
&& !o_isbinary
)))
108 fputs("newline appended\n", stderr
);
109 if (isbinary
&& newline_added
&& !appended
)
113 newline_added
= appended
? newline_added
: o_newline_added
;
114 isbinary
= isbinary
| o_isbinary
;
116 size
+= 8 - size
% 8; /* adjust DES size */
121 /* get_stream_line: read a line of text from a stream; return line length */
123 get_stream_line(FILE *fp
)
128 while (((c
= des
? get_des_char(fp
) : getc(fp
)) != EOF
|| (!feof(fp
) &&
129 !ferror(fp
))) && c
!= '\n') {
130 REALLOC(sbuf
, sbufsz
, i
+ 1, ERR
);
131 if (!(sbuf
[i
++] = c
))
134 REALLOC(sbuf
, sbufsz
, i
+ 2, ERR
);
137 else if (ferror(fp
)) {
138 fprintf(stderr
, "%s\n", strerror(errno
));
139 seterrmsg("cannot read input file");
146 return (isbinary
&& newline_added
&& i
) ? --i
: i
;
150 /* write_file: write a range of lines to a named file/pipe; return line count */
152 write_file(const char *fn
, const char *mode
, long n
, long m
)
157 fp
= (*fn
== '!') ? popen(fn
+1, "w") : fopen(strip_escapes(fn
), mode
);
159 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
160 seterrmsg("cannot open output file");
162 } else if ((size
= write_stream(fp
, n
, m
)) < 0)
164 else if (((*fn
== '!') ? pclose(fp
) : fclose(fp
)) < 0) {
165 fprintf(stderr
, "%s: %s\n", fn
, strerror(errno
));
166 seterrmsg("cannot close output file");
170 fprintf(stderr
, "%lu\n", size
);
171 return n
? m
- n
+ 1 : 0;
175 /* write_stream: write a range of lines to a stream; return status */
177 write_stream(FILE *fp
, long n
, long m
)
179 line_t
*lp
= get_addressed_line_node(n
);
180 unsigned long size
= 0;
186 for (; n
&& n
<= m
; n
++, lp
= lp
->q_forw
) {
187 if ((s
= get_sbuf_line(lp
)) == NULL
)
190 if (n
!= addr_last
|| !isbinary
|| !newline_added
)
192 if (put_stream_line(fp
, s
, len
) < 0)
197 flush_des_file(fp
); /* flush buffer */
198 size
+= 8 - size
% 8; /* adjust DES size */
204 /* put_stream_line: write a line of text to a stream; return status */
206 put_stream_line(FILE *fp
, char *s
, int len
)
209 if ((des
? put_des_char(*s
++, fp
) : fputc(*s
++, fp
)) < 0) {
210 fprintf(stderr
, "%s\n", strerror(errno
));
211 seterrmsg("cannot write file");
217 /* get_extended_line: get a an extended line from stdin */
219 get_extended_line(int *sizep
, int nonl
)
221 static char *cvbuf
= NULL
; /* buffer */
222 static int cvbufsz
= 0; /* buffer size */
229 if ((l
= t
- ibufp
) < 2 || !has_trailing_escape(ibufp
, ibufp
+ l
- 1)) {
234 REALLOC(cvbuf
, cvbufsz
, l
, NULL
);
235 memcpy(cvbuf
, ibufp
, l
);
236 *(cvbuf
+ --l
- 1) = '\n'; /* strip trailing esc */
237 if (nonl
) l
--; /* strip newline */
239 if ((n
= get_tty_line()) < 0)
241 else if (n
== 0 || ibuf
[n
- 1] != '\n') {
242 seterrmsg("unexpected end-of-file");
245 REALLOC(cvbuf
, cvbufsz
, l
+ n
, NULL
);
246 memcpy(cvbuf
+ l
, ibuf
, n
);
248 if (n
< 2 || !has_trailing_escape(cvbuf
, cvbuf
+ l
- 1))
250 *(cvbuf
+ --l
- 1) = '\n'; /* strip trailing esc */
251 if (nonl
) l
--; /* strip newline */
253 REALLOC(cvbuf
, cvbufsz
, l
+ 1, NULL
);
260 /* get_tty_line: read a line of text from stdin; return line length */
269 switch (c
= getchar()) {
272 REALLOC(ibuf
, ibufsz
, i
+ 2, ERR
);
273 if (!(ibuf
[i
++] = c
)) isbinary
= 1;
282 fprintf(stderr
, "stdin: %s\n", strerror(errno
));
283 seterrmsg("cannot read stdin");
302 #define ESCAPES "\a\b\f\n\r\t\v\\"
303 #define ESCCHARS "abfnrtv\\"
305 /* put_tty_line: print text to stdout */
307 put_tty_line(char *s
, int l
, long n
, int gflag
)
320 if ((gflag
& GLS
) && ++col
> cols
) {
321 fputs("\\\n", stdout
);
324 if (!scripted
&& !isglobal
&& ++lc
> rows
) {
326 fputs("Press <RETURN> to continue... ", stdout
);
328 if (get_tty_line() < 0)
334 if (31 < *s
&& *s
< 127 && *s
!= '\\')
339 if (*s
&& (cp
= strchr(ESCAPES
, *s
)) != NULL
)
340 putchar(ESCCHARS
[cp
- ESCAPES
]);
342 putchar((((unsigned char) *s
& 0300) >> 6) + '0');
343 putchar((((unsigned char) *s
& 070) >> 3) + '0');
344 putchar(((unsigned char) *s
& 07) + '0');