more buffered input tweaking

This commit is contained in:
John Cupitt 2019-11-01 12:57:48 +00:00
parent ca5d75f7ec
commit 805da46670
2 changed files with 13 additions and 1 deletions

View File

@ -242,6 +242,8 @@ gint64 vips_streami_size( VipsStreami *streami );
typedef struct _VipsStreamib {
VipsStreami parent_object;
/*< private >*/
/* The +1 means there's always a \0 byte at the end.
*/
char input_buffer[VIPS_STREAMIB_BUFFER_SIZE + 1];
@ -249,6 +251,10 @@ typedef struct _VipsStreamib {
char *read_point;
int bytes_remaining;
/* No seeks on buffered streams, so an EOF flag is easy.
*/
gboolean eof;
} VipsStreamib;
typedef struct _VipsStreamibClass {

View File

@ -1114,7 +1114,8 @@ vips_streamib_refill( VipsStreamib *streamib )
*/
streamib->read_postion[bytes_read] = '\0';
how do we siganl EOF?
if( bytes_read == 0 )
streamib->eof = TRUE;
return( 0 );
}
@ -1192,8 +1193,13 @@ vips_streamib_get_line( VipsStreamib *streamib, const char **line )
*/
if( vips_streamib_refill( streamib ) )
return( -1 );
if( streamib->eof )
break;
}
}
return( 0 );
}
/**