2010-08-10 00:39:43 +02:00
|
|
|
line_buffer API
|
|
|
|
===============
|
|
|
|
|
|
|
|
The line_buffer library provides a convenient interface for
|
|
|
|
mostly-line-oriented input.
|
|
|
|
|
|
|
|
Each line is not permitted to exceed 10000 bytes. The provided
|
|
|
|
functions are not thread-safe or async-signal-safe, and like
|
|
|
|
`fgets()`, they generally do not function correctly if interrupted
|
|
|
|
by a signal without SA_RESTART set.
|
|
|
|
|
|
|
|
Calling sequence
|
|
|
|
----------------
|
|
|
|
|
|
|
|
The calling program:
|
|
|
|
|
2010-10-11 04:41:06 +02:00
|
|
|
- initializes a `struct line_buffer` to LINE_BUFFER_INIT
|
2010-08-10 00:39:43 +02:00
|
|
|
- specifies a file to read with `buffer_init`
|
2011-03-25 05:09:19 +01:00
|
|
|
- processes input with `buffer_read_line`, `buffer_skip_bytes`,
|
|
|
|
and `buffer_copy_bytes`
|
2010-08-10 00:39:43 +02:00
|
|
|
- closes the file with `buffer_deinit`, perhaps to start over and
|
|
|
|
read another file.
|
|
|
|
|
2010-10-11 04:41:06 +02:00
|
|
|
When finished, the caller can use `buffer_reset` to deallocate
|
|
|
|
resources.
|
2010-08-10 00:39:43 +02:00
|
|
|
|
2011-01-03 04:10:59 +01:00
|
|
|
Using temporary files
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
Temporary files provide a place to store data that should not outlive
|
|
|
|
the calling program. A program
|
|
|
|
|
|
|
|
- initializes a `struct line_buffer` to LINE_BUFFER_INIT
|
|
|
|
- requests a temporary file with `buffer_tmpfile_init`
|
|
|
|
- acquires an output handle by calling `buffer_tmpfile_rewind`
|
|
|
|
- uses standard I/O functions like `fprintf` and `fwrite` to fill
|
|
|
|
the temporary file
|
|
|
|
- declares writing is over with `buffer_tmpfile_prepare_to_read`
|
|
|
|
- can re-read what was written with `buffer_read_line`,
|
2011-03-25 05:09:19 +01:00
|
|
|
`buffer_copy_bytes`, and so on
|
2011-01-03 04:10:59 +01:00
|
|
|
- can reuse the temporary file by calling `buffer_tmpfile_rewind`
|
|
|
|
again
|
|
|
|
- removes the temporary file with `buffer_deinit`, perhaps to
|
|
|
|
reuse the line_buffer for some other file.
|
|
|
|
|
|
|
|
When finished, the calling program can use `buffer_reset` to deallocate
|
|
|
|
resources.
|
|
|
|
|
2010-08-10 00:39:43 +02:00
|
|
|
Functions
|
|
|
|
---------
|
|
|
|
|
2011-01-03 04:09:38 +01:00
|
|
|
`buffer_init`, `buffer_fdinit`::
|
|
|
|
Open the named file or file descriptor for input.
|
|
|
|
buffer_init(buf, NULL) prepares to read from stdin.
|
|
|
|
On failure, returns -1 (with errno indicating the nature
|
|
|
|
of the failure).
|
2010-08-10 00:39:43 +02:00
|
|
|
|
|
|
|
`buffer_deinit`::
|
|
|
|
Stop reading from the current file (closing it unless
|
|
|
|
it was stdin). Returns nonzero if `fclose` fails or
|
|
|
|
the error indicator was set.
|
|
|
|
|
|
|
|
`buffer_read_line`::
|
|
|
|
Read a line and strip off the trailing newline.
|
|
|
|
On failure or end of file, returns NULL.
|
|
|
|
|
|
|
|
`buffer_copy_bytes`::
|
|
|
|
Read `len` bytes of input and dump them to the standard output
|
|
|
|
stream. Returns early for error or end of file.
|
|
|
|
|
|
|
|
`buffer_skip_bytes`::
|
|
|
|
Discards `len` bytes from the input stream (stopping early
|
2010-10-11 04:44:21 +02:00
|
|
|
if necessary because of an error or eof). Return value is
|
|
|
|
the number of bytes successfully read.
|
2010-08-10 00:39:43 +02:00
|
|
|
|
|
|
|
`buffer_reset`::
|
|
|
|
Deallocates non-static buffers.
|