2010-08-10 00:39:43 +02:00
|
|
|
#ifndef LINE_BUFFER_H_
|
|
|
|
#define LINE_BUFFER_H_
|
|
|
|
|
2010-10-11 04:39:21 +02:00
|
|
|
#include "strbuf.h"
|
|
|
|
|
|
|
|
#define LINE_BUFFER_LEN 10000
|
|
|
|
|
|
|
|
struct line_buffer {
|
|
|
|
char line_buffer[LINE_BUFFER_LEN];
|
|
|
|
FILE *infile;
|
|
|
|
};
|
2011-03-25 05:09:19 +01:00
|
|
|
#define LINE_BUFFER_INIT { "", NULL }
|
2010-10-11 04:39:21 +02:00
|
|
|
|
2010-10-11 04:41:06 +02:00
|
|
|
int buffer_init(struct line_buffer *buf, const char *filename);
|
2011-01-03 04:09:38 +01:00
|
|
|
int buffer_fdinit(struct line_buffer *buf, int fd);
|
2010-10-11 04:41:06 +02:00
|
|
|
int buffer_deinit(struct line_buffer *buf);
|
2011-01-03 04:10:59 +01:00
|
|
|
|
|
|
|
int buffer_tmpfile_init(struct line_buffer *buf);
|
|
|
|
FILE *buffer_tmpfile_rewind(struct line_buffer *buf); /* prepare to write. */
|
|
|
|
long buffer_tmpfile_prepare_to_read(struct line_buffer *buf);
|
|
|
|
|
2010-10-11 04:51:21 +02:00
|
|
|
int buffer_ferror(struct line_buffer *buf);
|
2010-10-11 04:41:06 +02:00
|
|
|
char *buffer_read_line(struct line_buffer *buf);
|
2011-01-03 04:06:32 +01:00
|
|
|
int buffer_read_char(struct line_buffer *buf);
|
2011-01-03 04:37:36 +01:00
|
|
|
size_t buffer_read_binary(struct line_buffer *buf, struct strbuf *sb, size_t len);
|
2010-12-28 11:26:17 +01:00
|
|
|
/* Returns number of bytes read (not necessarily written). */
|
|
|
|
off_t buffer_copy_bytes(struct line_buffer *buf, off_t len);
|
2010-10-11 04:44:21 +02:00
|
|
|
off_t buffer_skip_bytes(struct line_buffer *buf, off_t len);
|
2010-08-10 00:39:43 +02:00
|
|
|
|
|
|
|
#endif
|