2 * Licensed under a two-clause BSD-style license.
3 * See LICENSE for details.
6 #include "git-compat-util.h"
7 #include "line_buffer.h"
10 #define LINE_BUFFER_LEN 10000
11 #define COPY_BUFFER_LEN 4096
13 /* Create memory pool for char sequence of known length */
14 obj_pool_gen(blob, char, 4096)
16 static char line_buffer[LINE_BUFFER_LEN];
19 int buffer_init(const char *filename)
21 infile = filename ? fopen(filename, "r") : stdin;
27 int buffer_deinit(void)
31 return ferror(infile);
33 err |= fclose(infile);
37 /* Read a line without trailing newline. */
38 char *buffer_read_line(void)
41 if (!fgets(line_buffer, sizeof(line_buffer), infile))
42 /* Error or data exhausted. */
44 end = line_buffer + strlen(line_buffer);
47 else if (feof(infile))
48 ; /* No newline at end of file. That's fine. */
52 * There is probably a saner way to deal with this,
53 * but for now let's return an error.
59 char *buffer_read_string(uint32_t len)
62 blob_free(blob_pool.size);
63 s = blob_pointer(blob_alloc(len + 1));
64 s[fread(s, 1, len, infile)] = '\0';
65 return ferror(infile) ? NULL : s;
68 void buffer_copy_bytes(uint32_t len)
70 char byte_buffer[COPY_BUFFER_LEN];
72 while (len > 0 && !feof(infile) && !ferror(infile)) {
73 in = len < COPY_BUFFER_LEN ? len : COPY_BUFFER_LEN;
74 in = fread(byte_buffer, 1, in, infile);
76 fwrite(byte_buffer, 1, in, stdout);
78 buffer_skip_bytes(len);
84 void buffer_skip_bytes(uint32_t len)
86 char byte_buffer[COPY_BUFFER_LEN];
88 while (len > 0 && !feof(infile) && !ferror(infile)) {
89 in = len < COPY_BUFFER_LEN ? len : COPY_BUFFER_LEN;
90 in = fread(byte_buffer, 1, in, infile);
95 void buffer_reset(void)