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
|
/* io.c: i/o routines for the ed line editor */
/* GNU ed - The GNU line editor.
Copyright (C) 1993, 1994 Andrew Moore, Talke Studio
Copyright (C) 2006, 2007 Antonio Diaz Diaz.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "ed.h"
/* static buffers */
static char *sbuf; /* file i/o buffer */
static int sbufsz; /* file i/o buffer size */
/* print text to stdout */
char put_tty_line( const char *s, int len, const int gflags, const char traditional )
{
const char escapes[] = "\a\b\f\n\r\t\v\\";
const char escchars[] = "abfnrtv\\";
int col = 0;
if( gflags & GNP ) { printf( "%d\t", current_addr() ); col = 8; }
while( --len >= 0 )
{
const unsigned char ch = *s++;
if( !( gflags & GLS ) ) putchar( ch );
else
{
if( ++col > window_columns() ) { col = 1; fputs( "\\\n", stdout ); }
if( ch >= 32 && ch <= 126 && ch != '\\' ) putchar( ch );
else
{
char *cp = strchr( escapes, ch );
++col; putchar('\\');
if( cp ) putchar( escchars[cp-escapes] );
else
{
col += 2;
putchar( ( ( ch >> 6 ) & 7 ) + '0' );
putchar( ( ( ch >> 3 ) & 7 ) + '0' );
putchar( ( ch & 7 ) + '0' );
}
}
}
}
if( !traditional && ( gflags & GLS ) ) putchar('$');
putchar('\n');
return 1;
}
/* print a range of lines to stdout */
char display_lines( int from, const int to, const int gflags, const char traditional )
{
line_t *ep = search_line_node( inc_addr( to ) );
line_t *bp = search_line_node( from );
if( !from ) { set_error_msg( "Invalid address" ); return 0; }
while( bp != ep )
{
char *s = get_sbuf_line( bp );
if( !s ) return 0;
set_current_addr( from++ );
if( !put_tty_line( s, bp->len, gflags, traditional ) ) return 0;
bp = bp->q_forw;
}
return 1;
}
/* return the parity of escapes preceding a character in a string */
char trailing_escape( const char *s, const char *t )
{
if( s == t || *( t - 1 ) != '\\' ) return 0;
return !trailing_escape( s, t - 1 );
}
/* get an extended line from stdin */
const char *get_extended_line( const char *ibufp2, int *lenp, const char nonl )
{
static char *cvbuf = 0; /* buffer */
static int cvbufsz = 0; /* buffer size */
const char *t = ibufp2;
int len;
while( *t++ != '\n' ) ;
if( ( len = t - ibufp2 ) < 2 || !trailing_escape( ibufp2, ibufp2 + len - 1 ) )
{ if( lenp ) *lenp = len; return ibufp2; }
if( lenp ) *lenp = -1;
if( !resize_buffer( &cvbuf, &cvbufsz, len ) ) return 0;
memcpy( cvbuf, ibufp2, len );
--len; cvbuf[len-1] = '\n'; /* strip trailing esc */
if( nonl ) --len; /* strip newline */
while( 1 )
{
int len2;
if( !( ibufp2 = get_tty_line( &len2 ) ) ) return 0;
if( len2 == 0 || ibufp2[len2-1] != '\n' )
{ set_error_msg( "Unexpected end-of-file" ); return 0; }
if( !resize_buffer( &cvbuf, &cvbufsz, len + len2 ) ) return 0;
memcpy( cvbuf + len, ibufp2, len2 );
len += len2;
if( len2 < 2 || !trailing_escape( cvbuf, cvbuf + len - 1 ) ) break;
--len; cvbuf[len-1] = '\n'; /* strip trailing esc */
if( nonl ) --len; /* strip newline */
}
if( !resize_buffer( &cvbuf, &cvbufsz, len + 1 ) ) return 0;
cvbuf[len] = 0;
if( lenp ) *lenp = len;
return cvbuf;
}
/* read a line of text from stdin; return pointer to buffer and line length */
const char *get_tty_line( int *lenp )
{
static char *ibuf = 0; /* ed command-line buffer */
static int ibufsz = 0; /* ed command-line buffer size */
int i = 0, oi = -1;
while( 1 )
{
const int c = getchar();
if( c == EOF )
{
if( ferror( stdin ) )
{
show_strerror( "stdin", errno ); set_error_msg( "Cannot read stdin" );
clearerr( stdin ); if( lenp ) *lenp = 0;
return 0;
}
else
{
clearerr( stdin ); if( i != oi ) { oi = i; continue; }
if( i ) ibuf[i] = 0; if( lenp ) *lenp = i;
return ibuf;
}
}
else
{
if( !resize_buffer( &ibuf, &ibufsz, i + 2 ) )
{ if( lenp ) *lenp = 0; return 0; }
ibuf[i++] = c; if( !c ) set_binary(); if( c != '\n' ) continue;
ibuf[i] = 0; if( lenp ) *lenp = i;
return ibuf;
}
}
}
/* read a line of text from a stream; return line length */
int read_stream_line( FILE *fp, char *newline_added_now )
{
int c, i = 0;
while( 1 )
{
if( !resize_buffer( &sbuf, &sbufsz, i + 2 ) ) return -1;
c = getc( fp ); if( c == EOF ) break;
sbuf[i++] = c;
if( !c ) set_binary(); else if( c == '\n' ) break;
}
sbuf[i] = 0;
if( c == EOF )
{
if( ferror( fp ) )
{
show_strerror( 0, errno );
set_error_msg( "Cannot read input file" );
return -1;
}
else if( i )
{
sbuf[i] = '\n'; sbuf[i+1] = 0; *newline_added_now = 1;
if( !isbinary() ) ++i;
}
}
return i;
}
/* read a stream into the editor buffer; return size of data read */
long read_stream( FILE *fp, const int addr )
{
line_t *lp = search_line_node( addr );
undo_t *up = 0;
long size = 0;
const char o_isbinary = isbinary();
const char appended = ( addr == last_addr() );
char newline_added_now = 0;
set_current_addr( addr );
while( 1 )
{
int len = read_stream_line( fp, &newline_added_now );
if( len > 0 ) size += len; else if( !len ) break; else return -1;
disable_interrupts();
if( !put_sbuf_line( sbuf, current_addr() ) )
{ enable_interrupts(); return -1; }
lp = lp->q_forw;
if( up ) up->tail = lp;
else if( !( up = push_undo_stack( UADD, -1, -1 ) ) )
{ enable_interrupts(); return -1; }
enable_interrupts();
}
if( addr && appended && size && o_isbinary && newline_added() )
fputs( "Newline inserted\n", stderr );
else if( newline_added_now && appended )
fputs( "Newline appended\n", stderr );
if( isbinary() && !o_isbinary && newline_added_now && !appended ) ++size;
if( !size ) newline_added_now = 1;
if( appended && newline_added_now ) set_newline_added();
return size;
}
/* read a named file/pipe into the buffer; return line count */
int read_file( const char *filename, const int addr, const char scripted )
{
FILE *fp;
long size;
if( *filename == '!' ) fp = popen( filename + 1, "r" );
else fp = fopen( strip_escapes( filename ), "r" );
if( !fp )
{
show_strerror( filename, errno );
set_error_msg( "Cannot open input file" );
return -1;
}
if( ( size = read_stream( fp, addr ) ) < 0 ) return -1;
if( ( (*filename == '!' ) ? pclose( fp ) : fclose( fp ) ) < 0 )
{
show_strerror( filename, errno );
set_error_msg( "Cannot close input file" );
return -1;
}
if( !scripted ) fprintf( stderr, "%lu\n", size );
return current_addr() - addr;
}
/* write a line of text to a stream */
char write_stream_line( FILE *fp, const char *s, int len )
{
while( len-- )
if( fputc( *s++, fp ) < 0 )
{
show_strerror( 0, errno );
set_error_msg( "Cannot write file" );
return 0;
}
return 1;
}
/* write a range of lines to a stream */
long write_stream( FILE *fp, int from, const int to )
{
line_t *lp = search_line_node( from );
long size = 0;
while( from && from <= to )
{
int len;
char *s = get_sbuf_line( lp );
if( !s ) return -1;
len = lp->len;
if( from != last_addr() || !isbinary() || !newline_added() )
s[len++] = '\n';
if( !write_stream_line( fp, s, len ) ) return -1;
size += len;
++from; lp = lp->q_forw;
}
return size;
}
/* write a range of lines to a named file/pipe; return line count */
int write_file( const char *filename, const char *mode,
const int from, const int to, const char scripted )
{
FILE *fp;
long size;
if( *filename == '!' ) fp = popen( filename + 1, "w" );
else fp = fopen( strip_escapes( filename ), mode );
if( !fp )
{
show_strerror( filename, errno );
set_error_msg( "Cannot open output file" );
return -1;
}
if( ( size = write_stream( fp, from, to ) ) < 0 ) return -1;
if( ( (*filename == '!' ) ? pclose( fp ) : fclose( fp ) ) < 0 )
{
show_strerror( filename, errno );
set_error_msg( "Cannot close output file" );
return -1;
}
if( !scripted ) fprintf( stderr, "%lu\n", size );
return from ? to - from + 1 : 0;
}
|