* io.c (appendline): reformed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21503 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-14 03:38:06 +00:00
parent d4beba3f3e
commit ff80e84db9
2 changed files with 12 additions and 15 deletions

View File

@ -1,4 +1,6 @@
Wed Jan 14 12:35:20 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> Wed Jan 14 12:38:02 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* io.c (appendline): reformed.
* io.c (rb_io_s_pipe): reduced nest of rb_ensure of main block. * io.c (rb_io_s_pipe): reduced nest of rb_ensure of main block.

23
io.c
View File

@ -2016,7 +2016,7 @@ appendline(rb_io_t *fptr, int delim, VALUE *strp, long *lp)
if (NEED_READCONV(fptr)) { if (NEED_READCONV(fptr)) {
make_readconv(fptr, 0); make_readconv(fptr, 0);
while (1) { do {
const char *p, *e; const char *p, *e;
int searchlen; int searchlen;
if (fptr->cbuf_len) { if (fptr->cbuf_len) {
@ -2050,15 +2050,12 @@ appendline(rb_io_t *fptr, int delim, VALUE *strp, long *lp)
return (unsigned char)RSTRING_PTR(str)[RSTRING_LEN(str)-1]; return (unsigned char)RSTRING_PTR(str)[RSTRING_LEN(str)-1];
} }
} }
} while (more_char(fptr) != -1);
if (more_char(fptr) == -1) { *lp = limit;
*lp = limit; return EOF;
return EOF;
}
}
} }
while (1) { do {
long pending = READ_DATA_PENDING_COUNT(fptr); long pending = READ_DATA_PENDING_COUNT(fptr);
if (pending > 0) { if (pending > 0) {
const char *p = READ_DATA_PENDING_PTR(fptr); const char *p = READ_DATA_PENDING_PTR(fptr);
@ -2082,15 +2079,13 @@ appendline(rb_io_t *fptr, int delim, VALUE *strp, long *lp)
*lp = limit; *lp = limit;
if (e) return delim; if (e) return delim;
if (limit == 0) if (limit == 0)
return (unsigned char)RSTRING_PTR(str)[RSTRING_LEN(str)-1]; return (unsigned char)RSTRING_PTR(str)[RSTRING_LEN(str)-1];
} }
rb_thread_wait_fd(fptr->fd); rb_thread_wait_fd(fptr->fd);
rb_io_check_closed(fptr); rb_io_check_closed(fptr);
if (io_fillbuf(fptr) < 0) { } while (io_fillbuf(fptr) >= 0);
*lp = limit; *lp = limit;
return EOF; return EOF;
}
}
} }
static inline int static inline int